:root {
  --bg: #090d18;
  --bg-soft: #10172a;
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.085);
  --line: rgba(255,255,255,.12);
  --text: #f7f9ff;
  --muted: #b6bfd4;
  --ink: #111827;
  --paper: #f5f7fb;
  --accent: #9f7aea;
  --accent-2: #63d3ff;
  --accent-3: #c5ffdd;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(9,13,24,.78);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, rgba(159,122,234,.95), rgba(99,211,255,.9));
  color: #07101d;
  box-shadow: 0 8px 30px rgba(126,169,255,.22);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: "Space Grotesk", sans-serif; letter-spacing: .08em; font-size: 15px; }
.brand-text small { color: var(--muted); font-size: 9px; margin-top: 4px; letter-spacing: .02em; }

.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; }
.nav-links a:not(.nav-cta) { color: #dbe2f2; }
.nav-links a:hover { color: white; }
.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: white;
  color: #0c1222;
  font-weight: 700;
}
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: white; display: block; margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 78% 20%, rgba(113,84,223,.18), transparent 34%),
    radial-gradient(circle at 20% 25%, rgba(64,172,255,.10), transparent 30%),
    linear-gradient(180deg, #090d18 0%, #0c1222 100%);
}
.hero-glow { position: absolute; filter: blur(80px); opacity: .35; pointer-events:none; border-radius: 50%; }
.hero-glow-one { width: 280px; height: 280px; right: 5%; top: 10%; background: #7e5bef; }
.hero-glow-two { width: 240px; height: 240px; left: 2%; bottom: 0; background: #2fbdff; }
.hero-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.eyebrow {
  font-size: 12px;
  letter-spacing: .19em;
  font-weight: 800;
  color: #9fcfff;
  margin-bottom: 18px;
}
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; line-height: 1.1; margin-top: 0; }
h1 { font-size: clamp(48px, 7vw, 86px); letter-spacing: -.055em; margin-bottom: 28px; }
h1 span { background: linear-gradient(90deg, #c9b9ff, #8fdcff, #baffd1); -webkit-background-clip: text; color: transparent; }
.hero-lead { font-size: 19px; color: #c6cfdf; max-width: 760px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 21px; border-radius: 12px;
  font-weight: 800; font-size: 14px; transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #0a1020; background: linear-gradient(90deg, #c2adff, #84d9ff); }
.btn-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.035); }
.hero-note { color: #8693aa; font-size: 13px; }

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.panel-kicker { color: #92a0ba; font-size: 11px; letter-spacing: .18em; font-weight: 800; margin-bottom: 10px; }
.panel-item { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.panel-item:last-child { border-bottom: 0; }
.panel-item > span { color: #8edcff; font-family: "Space Grotesk"; font-weight: 700; }
.panel-item strong { display: block; margin-bottom: 4px; }
.panel-item p { margin: 0; color: #aab5c9; font-size: 14px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0a0f1c; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid > div { padding: 25px 22px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { display: block; font-size: 14px; margin-bottom: 3px; }
.trust-grid span { color: #8f9ab0; font-size: 12px; }

.section { padding: 105px 0; background: var(--paper); color: var(--ink); }
.section-dark { background: #0c1222; color: white; }
.section-heading { max-width: 800px; margin-bottom: 50px; }
.section-heading h2 { font-size: clamp(36px, 5vw, 58px); letter-spacing: -.04em; margin-bottom: 18px; }
.section-heading p { font-size: 18px; color: #5d6677; margin: 0; }
.section-dark .section-heading p { color: #aab4c9; }

.cards { display: grid; gap: 18px; }
.four-col { grid-template-columns: repeat(4, 1fr); }
.card {
  border: 1px solid #dfe5ee; border-radius: 18px; padding: 26px;
  background: white; min-height: 285px;
}
.card-icon { color: #6a55c8; font-weight: 800; font-family: "Space Grotesk"; font-size: 13px; margin-bottom: 40px; }
.card h3 { font-size: 23px; letter-spacing: -.025em; }
.card p { color: #606a7b; margin-bottom: 0; }

.use-cases {
  margin-top: 24px; border-radius: 20px; padding: 28px;
  background: #0d1424; color: white;
  display: grid; grid-template-columns: .75fr 1.25fr; gap: 32px; align-items: center;
}
.use-copy h3 { font-size: 32px; margin-bottom: 0; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-grid span { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); padding: 9px 12px; border-radius: 999px; color: #ced7e8; font-size: 13px; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-step { border-top: 1px solid rgba(255,255,255,.16); padding-top: 22px; }
.process-step span { color: #8fdcff; font-weight: 800; }
.process-step h3 { font-size: 27px; margin: 38px 0 10px; }
.process-step p { color: #aeb8ca; }

.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.founder-card {
  border: 1px solid #dfe5ee;
  border-radius: 22px;
  background: white;
  padding: 30px;
}
.founder-monogram {
  width: 64px; height: 64px; border-radius: 18px; display:grid; place-items:center;
  background: #111827; color:white; font-family:"Space Grotesk"; font-size:20px; font-weight:700; margin-bottom: 32px;
}
.founder-title { font-size: 11px; letter-spacing:.17em; color:#755ed1; font-weight:800; }
.founder-body h3 { font-size: 31px; margin: 7px 0 16px; }
.founder-body p { color:#596273; }

.podcast-section { background: linear-gradient(135deg, #171329, #0d1724); color: white; }
.podcast-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap:50px; align-items:center; }
.podcast-grid h2 { font-size: clamp(38px,5vw,60px); letter-spacing:-.04em; }
.podcast-grid p { color:#b7c2d4; font-size:17px; }
.podcast-card { border:1px solid var(--line); border-radius:24px; padding:34px; background:rgba(255,255,255,.055); }
.podcast-label { letter-spacing:.18em; font-size:11px; color:#94dcff; font-weight:800; }
.podcast-card h3 { font-size:36px; margin:16px 0 12px; }
.text-link { display:inline-block; margin-top:12px; color:#a9dfff; font-weight:700; }

.cta-section { padding: 40px 0; background: #f5f7fb; color: var(--ink); }
.cta-box {
  background: linear-gradient(120deg, #10182c, #17112b);
  color:white; padding:46px; border-radius:26px;
  display:grid; grid-template-columns: 1fr auto; gap:40px; align-items:center;
}
.cta-box h2 { margin-bottom:0; font-size: clamp(30px,4vw,48px); letter-spacing:-.035em; max-width:850px; }

.contact-section { padding-top: 80px; }
.contact-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap:50px; align-items:start; }
.contact-grid h2 { font-size:50px; margin-bottom:15px; }
.contact-grid p { color:#687182; font-size:17px; }
.contact-card { border:1px solid #dfe5ee; border-radius:20px; overflow:hidden; background:white; }
.contact-card a { display:flex; justify-content:space-between; gap:20px; padding:20px 22px; border-bottom:1px solid #e7ebf1; }
.contact-card a:last-child { border-bottom:0; }
.contact-card strong { color:#111827; }
.contact-card span { color:#748095; font-size:13px; text-align:right; }

.site-footer { background:#090d18; border-top:1px solid var(--line); padding:30px 0; }
.footer-grid { display:flex; justify-content:space-between; gap:30px; align-items:center; }
.footer-copy { color:#8792a7; font-size:12px; }

@media (max-width: 980px) {
  .nav-links {
    position:absolute; left:20px; right:20px; top:76px;
    display:none; flex-direction:column; align-items:stretch; gap:0;
    background:#0e1526; border:1px solid var(--line); border-radius:16px; padding:10px;
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:13px 12px; }
  .nav-cta { text-align:center; margin-top:4px; }
  .menu-toggle { display:block; }
  .hero-grid, .podcast-grid, .contact-grid, .use-cases { grid-template-columns:1fr; }
  .four-col, .process-grid { grid-template-columns:1fr 1fr; }
  .founder-grid { grid-template-columns:1fr; }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right:0; }
  .trust-grid > div { border-bottom:1px solid var(--line); }
  .cta-box { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .brand-text small { display:none; }
  .hero { padding:76px 0 66px; }
  h1 { font-size:48px; }
  .hero-lead { font-size:17px; }
  .hero-actions .btn { width:100%; }
  .trust-grid, .four-col, .process-grid { grid-template-columns:1fr; }
  .trust-grid > div { border-right:0; }
  .section { padding:76px 0; }
  .section-heading h2 { font-size:38px; }
  .card { min-height:auto; }
  .use-cases { padding:22px; }
  .podcast-card { padding:26px; }
  .cta-box { padding:30px; }
  .contact-card a { flex-direction:column; gap:4px; }
  .contact-card span { text-align:left; }
  .footer-grid { flex-direction:column; align-items:flex-start; }
}
