:root {
  --bg: #070a13;
  --panel: #0f1629;
  --panel-2: #121d35;
  --text: #f5f8ff;
  --muted: #aab6ca;
  --line: rgba(255,255,255,.12);
  --brand: #77d7ff;
  --brand-2: #b7f7d5;
  --shadow: 0 24px 80px rgba(0,0,0,.32);
  --radius: 24px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(119, 215, 255, .18), transparent 34rem),
    radial-gradient(circle at 84% 5%, rgba(183, 247, 213, .13), transparent 36rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--text);
  color: #07111c;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
}
.skip-link:focus { left: 16px; }
.site-header {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px;
  min-height: 72px;
  position: sticky;
  top: 12px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 10, 19, .78);
  backdrop-filter: blur(18px);
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #07111c;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 950;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 750;
  padding: 10px 13px;
  border-radius: 999px;
}
.site-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,.06);
}
.menu-toggle { display: none; }
.nav-cta, .button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--line);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.nav-cta, .button.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #07111c;
  border: 0;
}
.nav-cta:hover, .button.primary:hover {
  color: #07111c;
  transform: translateY(-1px);
}
.button.secondary {
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.button.secondary:hover {
  color: var(--text);
  border-color: rgba(119,215,255,.45);
  transform: translateY(-1px);
}
main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 36px;
  padding: 74px 0 50px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 950;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1 {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 6.2rem);
  line-height: .92;
  letter-spacing: -.075em;
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.045em;
}
h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}
.hero-sub, .page-hero p, .section-header p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.23rem);
  max-width: 790px;
}
.hero-actions, .trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.trust-strip span {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: .92rem;
}
.hero-card, .card, .proof-card, .price-card, .contact-card, .notice, .steps article, .feature-list article, .founder-link-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.066), rgba(255,255,255,.032));
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-card {
  padding: 30px;
}
.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.hero-card p, .card p, .proof-card p, .price-card p, .contact-card p, .notice p, .steps p, .feature-list p, .founder-link-card p, li, .muted {
  color: var(--muted);
}
.status-pill {
  display: inline-flex;
  margin-bottom: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(119,215,255,.12);
  color: var(--brand);
  font-weight: 900;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.metric-row div {
  min-height: 94px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.metric-row strong, .metric-row span {
  display: block;
}
.metric-row strong { color: var(--text); }
.metric-row span {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 6px;
}
.section, .page-hero, .legal-page { padding: 76px 0; }
.section-header { margin-bottom: 28px; }
.card-grid, .steps, .feature-list, .proof-grid, .pricing-grid, .contact-grid {
  display: grid;
  gap: 18px;
}
.card-grid.three, .steps, .feature-list, .proof-grid, .pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}
.contact-grid { grid-template-columns: repeat(2, 1fr); }
.card, .proof-card, .price-card, .contact-card, .steps article, .feature-list article, .notice {
  padding: 26px;
}
.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--brand);
  font-weight: 950;
}
.flow-clean {
  display: grid;
  grid-template-columns: 1fr 68px 1.06fr 68px 1.1fr;
  align-items: center;
  gap: 0;
}
.flow-node {
  min-height: 122px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  font-weight: 950;
}
.flow-node.active {
  border-color: rgba(119,215,255,.5);
  background: linear-gradient(180deg, rgba(119,215,255,.13), rgba(255,255,255,.05));
}
.flow-arrow {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(119,215,255,.2), var(--brand));
}
.flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  transform: translateY(-50%) rotate(45deg);
}
.proof-card { min-height: 220px; }
.proof-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  color: #07111c;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 950;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.founder-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 30px;
  background: linear-gradient(180deg, rgba(119,215,255,.09), rgba(255,255,255,.035));
  color: var(--text);
}
.founder-link-card:hover {
  color: var(--text);
  border-color: rgba(119,215,255,.5);
  transform: translateY(-1px);
}
.founder-link-card p { max-width: 780px; }
.founder-link-card.large { min-height: 260px; }
.linkedin-pill {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #07111c;
  font-weight: 950;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price {
  color: var(--text) !important;
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -.05em;
}
.price-card.highlighted {
  border-color: rgba(119,215,255,.45);
  background: linear-gradient(180deg, rgba(119,215,255,.13), rgba(255,255,255,.04));
}
.price-card ul {
  padding-left: 1.1rem;
}
.price-card li {
  margin: 8px 0;
}
.notice a, .legal-page a {
  color: var(--brand);
  font-weight: 900;
}
.legal-page {
  max-width: 860px;
}
.legal-page h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  margin-bottom: 20px;
}
.legal-page h2 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 34px 0 10px;
}
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 40px auto 20px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .85fr .9fr;
  gap: 28px;
}
.site-footer h2 {
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.site-footer a {
  display: block;
  color: var(--muted);
  margin: 8px 0;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 18px;
  color: var(--muted);
  font-size: .92rem;
}
@media (max-width: 980px) {
  .site-header {
    position: static;
    border-radius: 24px;
    flex-wrap: wrap;
  }
  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: var(--text);
    padding: 10px 14px;
    font-weight: 900;
  }
  .site-nav {
    display: none;
    order: 4;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .site-nav.open { display: grid; }
  .site-nav a {
    justify-content: center;
    background: rgba(255,255,255,.04);
  }
  .nav-cta { flex: 1 1 260px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
  }
  .card-grid.three, .steps, .feature-list, .proof-grid, .pricing-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .flow-clean {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .flow-arrow {
    width: 2px;
    height: 36px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(119,215,255,.2), var(--brand));
  }
  .flow-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }
  .cta-band, .founder-link-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .linkedin-pill { width: 100%; }
}
@media (max-width: 560px) {
  main, .site-header, .site-footer {
    width: min(100% - 20px, var(--max));
  }
  h1 {
    font-size: clamp(2.25rem, 13vw, 3.6rem);
  }
  .button, .nav-cta {
    width: 100%;
  }
  .metric-row {
    grid-template-columns: 1fr;
  }
  .section, .page-hero, .legal-page {
    padding: 54px 0;
  }
}
