:root{
  --ink:rgba(255,255,255,0.94);
  --muted:rgba(255,255,255,0.78);
  --muted2:rgba(255,255,255,0.64);

  --bg:#050816;
  --bg2:#060a1a;

  --surface:rgba(255,255,255,0.06);
  --stroke:rgba(255,255,255,0.12);

  --primary:#6d28d9;
  --primary2:#22d3ee;

  --shadow: 0 22px 70px rgba(0,0,0,0.45);
  --shadow2: 0 12px 34px rgba(0,0,0,0.34);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(109,40,217,0.48), transparent 58%),
    radial-gradient(820px 520px at 90% 12%, rgba(34,211,238,0.32), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2) 55%, #050816 100%);
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.96; }

.wrap{ max-width:1180px; margin:0 auto; padding:0 24px; }

.nav{
  position:sticky; top:0;
  backdrop-filter: blur(14px);
  background: rgba(5,8,22,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index:50;
}
.nav-inner{ padding:14px 0 10px 0; }
.brand-center{
  display:flex; justify-content:center; align-items:center;
  padding:2px 0 10px 0;
}
.brand-center img{
  width:92px;
  height:auto;
  display:block;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.35));
}
.nav-links{
  display:flex; justify-content:center; gap:8px; flex-wrap:wrap;
  padding:0 0 6px 0;
  color: rgba(255,255,255,0.76);
  font-size:14px;
}
.nav-links a{
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav-links a:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
}
.nav-links .cta{
  background: linear-gradient(90deg, rgba(109,40,217,0.35), rgba(34,211,238,0.25));
  border: 1px solid rgba(255,255,255,0.12);
}

.hero{ padding:86px 0 54px 0; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap:26px;
  align-items:stretch;
}
.h1{
  font-size:54px;
  line-height:1.06;
  margin:0 0 16px 0;
  letter-spacing:-0.7px;
}
.sub{
  color: var(--muted);
  font-size:18px;
  line-height:1.85;
  max-width:800px;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  font-size:13px;
  color: rgba(255,255,255,0.90);
  margin: 18px 0 0 0;
}
.dot{
  width:9px; height:9px; border-radius:50%;
  background: linear-gradient(180deg, var(--primary2), var(--primary));
  box-shadow: 0 0 0 4px rgba(34,211,238,0.10);
}

.hero-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.hero-media{
  min-height:240px;
  background:
    linear-gradient(180deg, rgba(5,8,22,0.12), rgba(5,8,22,0.78)),
    url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1800&q=70') center/cover no-repeat;
}
.hero-card-body{ padding:18px 18px 22px 18px; }
.hero-card-body h3{ margin:0 0 10px 0; font-size:16px; }
.hero-card-body p{ margin:0; color: var(--muted); font-size:14px; line-height:1.78; }

.section{ padding:54px 0; }
.section h2{
  margin:0 0 12px 0;
  font-size:30px;
  letter-spacing:-0.25px;
  text-align:center;
}
.lead{
  color: var(--muted);
  font-size:16px;
  line-height:1.9;
  max-width:940px;
  margin: 0 auto;
  text-align:center;
}

.grid3{
  margin-top:24px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding:24px;
  box-shadow: var(--shadow2);
}
.card h3{ margin:0 0 10px 0; font-size:16px; }
.card p{ margin:0; color: var(--muted); font-size:14px; line-height:1.8; }

.card-link{ display:block; }
.card-link:hover{ transform: translateY(-2px); transition: transform .18s ease; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  margin-top:22px;
  align-items:stretch;
}
.panel{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow2);
}
.panel .media{
  min-height:250px;
  background-size:cover;
  background-position:center;
}
.panel .body{ padding:22px; }
.panel .body h3{ margin:0 0 10px 0; font-size:16px; }
.panel .body p{ margin:0; color: var(--muted); font-size:14px; line-height:1.8; }

.steps{
  margin-top:20px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow2);
}
.step b{ display:block; margin-bottom:8px; font-size:14px; }
.step span{ color: var(--muted); font-size:13px; line-height:1.65; }

.diagram{
  margin-top:22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding:18px;
  box-shadow: var(--shadow2);
}
.diagram svg{ width:100%; height:auto; display:block; }

.founder{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:24px;
  align-items:center;
  margin-top:22px;
}
.founder img{
  width:100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  display:block;
}
.kicker{
  color: rgba(34,211,238,0.95);
  font-weight:600;
  letter-spacing:0.2px;
  font-size:12px;
  text-transform:uppercase;
  margin: 0 0 10px 0;
}

.form-wrap{
  margin: 0 auto;
  max-width: 860px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow2);
  padding: 22px;
}
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top: 10px;
}
label{ font-size:13px; color: var(--muted2); display:block; margin: 0 0 6px 0; }
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5,8,22,0.45);
  color: rgba(255,255,255,0.92);
  outline:none;
}
textarea{ min-height: 120px; resize: vertical; }
.full{ grid-column: 1 / -1; }

button{
  appearance:none;
  cursor:pointer;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(90deg, rgba(109,40,217,0.45), rgba(34,211,238,0.35));
  color: rgba(255,255,255,0.92);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}
button:hover{ opacity:.96; }

.footer{
  padding:34px 0 48px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  background: rgba(5,8,22,0.38);
}
.footer .wrap{ text-align:center; }
.footer-logo{
  display:flex;
  justify-content:center;
  margin-bottom:12px;
}
.footer-logo img{ width:92px; height:auto; filter: drop-shadow(0 12px 20px rgba(0,0,0,0.35)); }
.footer small{
  display:block;
  color: var(--muted2);
  margin-top: 6px;
}
.footer em{
  color: rgba(255,255,255,0.70);
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .grid3{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .founder{ grid-template-columns:1fr; }
  .h1{ font-size:42px; }
  .brand-center img{ width:82px; }
  .form-grid{ grid-template-columns:1fr; }
}
