:root {
  --bg: #07101a;
  --bg-2: #0d1726;
  --panel: rgba(10, 16, 27, 0.92);
  --panel-strong: rgba(16, 25, 41, 0.96);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --text: #f4f7fb;
  --text-soft: #dce8f7;
  --muted: #afbdd4;
  --line: rgba(137, 156, 198, 0.18);
  --line-strong: rgba(137, 156, 198, 0.3);
  --accent: #47dcc9;
  --accent-2: #8ef7ec;
  --accent-deep: #123832;
  --accent-text: #032722;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.22);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.68;
  color: var(--text);
  background:
    radial-gradient(circle at 5% 0%, rgba(71, 220, 201, 0.22), transparent 22%),
    radial-gradient(circle at 100% 10%, rgba(142, 247, 236, 0.1), transparent 20%),
    linear-gradient(180deg, #07101a 0%, #040910 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 16, 26, 0.78);
  border-bottom: 1px solid rgba(137, 156, 198, 0.08);
}

.topbar-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-inner {
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #dfe8f6;
}

.brand-glyph {
  position: relative;
  display: inline-flex;
  width: 50px;
  height: 28px;
}

.brand-glyph-track {
  position: absolute;
  inset: 0;
  margin: auto 0;
  height: 8px;
  border-radius: 999px;
}

.brand-glyph-track-light {
  width: 30px;
  left: 0;
  background: linear-gradient(90deg, #c7cfdd, #eef3fa);
  clip-path: polygon(0 0, 74% 0, 100% 50%, 74% 100%, 0 100%, 18% 50%);
}

.brand-glyph-track-accent {
  width: 34px;
  right: 0;
  background: linear-gradient(90deg, #0e8494, #47dcc9);
  clip-path: polygon(0 50%, 20% 0, 78% 0, 100% 50%, 78% 100%, 20% 100%);
}

.brand-wordmark {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-wordmark strong,
.brand-wordmark small {
  display: block;
}

.brand-wordmark strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-wordmark small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.topnav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  padding: 68px 0 34px;
}

.hero-mist {
  position: absolute;
  z-index: 0;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.75;
  pointer-events: none;
}

.hero-mist-left {
  top: 40px;
  left: -40px;
  background: radial-gradient(circle, rgba(71, 220, 201, 0.18), transparent 68%);
}

.hero-mist-right {
  right: -30px;
  top: 84px;
  background: radial-gradient(circle, rgba(142, 247, 236, 0.12), transparent 68%);
}

.hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.92fr);
  gap: 38px;
  padding: 48px;
  background:
    linear-gradient(155deg, rgba(11, 20, 36, 0.98), rgba(8, 14, 24, 0.98)),
    linear-gradient(180deg, rgba(71, 220, 201, 0.08), transparent 35%);
  border: 1px solid rgba(71, 220, 201, 0.14);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(71, 220, 201, 0.08), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(142, 247, 236, 0.08), transparent 16%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

h1 {
  font-size: clamp(2.7rem, 4.55vw, 4.6rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0;
}

.hero-lead {
  margin-top: 20px;
  max-width: 58ch;
  font-size: 1.16rem;
  line-height: 1.78;
  color: #dfeaf8;
}

.hero-copy {
  min-width: 0;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.signal-chip {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(137, 156, 198, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.signal-value {
  color: #f9fbff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.signal-label {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions-inline {
  margin-top: 22px;
}

.hero-actions-center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 140ms ease, opacity 140ms ease, background 140ms ease;
  box-shadow: var(--shadow-soft);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-text);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
  color: #e8eef8;
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.94rem;
}

.hero-note {
  margin-top: 14px;
  color: #d8e5f6;
  font-size: 1rem;
  line-height: 1.72;
  max-width: 56ch;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-inline span,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(61, 217, 197, 0.1);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-side {
  display: grid;
  gap: 18px;
  min-width: 0;
  align-content: start;
}

.cover-asset {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(71, 220, 201, 0.16);
  background:
    radial-gradient(circle at 20% 15%, rgba(71, 220, 201, 0.16), transparent 30%),
    linear-gradient(155deg, rgba(16, 24, 39, 0.98), rgba(9, 15, 25, 0.98));
  box-shadow: var(--shadow-soft);
}

.cover-asset::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% 20%;
  height: 140px;
  background: radial-gradient(circle, rgba(71, 220, 201, 0.18), transparent 58%);
  pointer-events: none;
}

.cover-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(137, 156, 198, 0.16);
  color: #deebff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cover-title {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  margin-bottom: 14px;
  font-size: 1.6rem;
  line-height: 1.12;
  max-width: 13ch;
}

.cover-routes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 20px 0 18px;
}

.cover-route {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  opacity: 0.95;
  transform-origin: left center;
  animation: flowPulse 2.8s ease-in-out infinite;
}

.cover-route-light {
  width: 78%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(221, 228, 240, 0.6));
}

.cover-route-accent {
  width: 88%;
  margin-left: auto;
  background: linear-gradient(90deg, rgba(71, 220, 201, 0.16), rgba(71, 220, 201, 0.95));
  animation-delay: 0.34s;
}

.cover-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 30px;
  padding-top: 4px;
}

.cover-strip-item {
  display: grid;
  gap: 10px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(137, 156, 198, 0.18);
}

.cover-strip-item strong {
  display: block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.98rem;
  color: #eef5ff;
}

.cover-strip-item span {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cover-copy {
  position: relative;
  z-index: 1;
  color: #d7e5f6;
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.74;
}

.mini-card,
.panel,
.step,
details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.022));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.mini-card,
.panel,
details {
  padding: 24px;
}

.mini-card h3 {
  margin-bottom: 22px;
}

.mini-card ul.clean {
  margin-top: 14px;
  gap: 18px;
}

.mini-card ul.clean li {
  font-size: 1rem;
  line-height: 1.62;
}

.mini-card p,
.panel p,
details p,
.section-head p,
.footer {
  color: var(--muted);
}

.section {
  padding: 30px 0;
}

.founder-strip {
  padding-top: 8px;
}

.founder-strip-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(137, 156, 198, 0.15);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(8, 13, 23, 0.96), rgba(8, 13, 23, 0.96));
  box-shadow: var(--shadow-soft);
}

.founder-strip-copy p + p {
  margin-top: 14px;
}

.founder-strip-points {
  display: grid;
  gap: 14px;
}

.founder-point {
  display: grid;
  gap: 4px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(137, 156, 198, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.founder-point-title {
  color: #f4f8ff;
  font-weight: 800;
}

.founder-point-copy {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 18px;
}

.section-head p {
  margin-top: 12px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.credibility-grid,
.proof-grid {
  display: grid;
  gap: 20px;
}

.credibility-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.credibility-lead,
.credibility-panel,
.proof-card,
.mid-cta {
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.credibility-lead,
.credibility-panel,
.proof-card {
  padding: 28px;
}

.credibility-lead {
  background:
    linear-gradient(145deg, rgba(15, 25, 40, 0.96), rgba(8, 14, 24, 0.96)),
    linear-gradient(180deg, rgba(71, 220, 201, 0.08), transparent 40%);
}

.credibility-lead p + p {
  margin-top: 14px;
}

.credibility-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.02));
}

.mid-cta {
  padding: 34px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(71, 220, 201, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(10, 16, 27, 0.96), rgba(7, 12, 21, 0.96));
}

.mid-cta h2,
.mid-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.mid-cta p {
  margin-top: 12px;
  color: var(--muted);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(10, 16, 27, 0.96), rgba(10, 16, 27, 0.96));
}

.proof-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(71, 220, 201, 0.12);
  color: var(--accent);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
}

.proof-card p {
  margin-top: 10px;
}

.stack {
  display: grid;
  gap: 12px;
}

ul.clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

ul.clean li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 1.04rem;
  font-weight: 560;
  line-height: 1.72;
}

ul.clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.process {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(18, 29, 48, 0.88), rgba(11, 18, 31, 0.88));
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(61, 217, 197, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.pricing-card {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(71, 220, 201, 0.1), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, rgba(10, 16, 27, 0.96), rgba(10, 16, 27, 0.96));
  border: 1px solid rgba(71, 220, 201, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 12px 0 10px;
}

.price strong {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.price span {
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 14px;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: #f6f9ff;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 12px;
}

.cta-band {
  margin: 30px 0 54px;
  padding: 40px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(71, 220, 201, 0.16), rgba(142, 247, 236, 0.08)),
    linear-gradient(180deg, rgba(8, 14, 24, 0.98), rgba(8, 14, 24, 0.98));
  border: 1px solid rgba(71, 220, 201, 0.16);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.cta-band p {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  padding: 0 0 42px;
  font-size: 0.94rem;
}

.mini-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.mini-card-kicker {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-card-accent {
  background:
    linear-gradient(180deg, rgba(71, 220, 201, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(14, 23, 37, 0.96), rgba(14, 23, 37, 0.96));
  border-color: rgba(71, 220, 201, 0.18);
}

.price-block {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.price-block strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2.8rem;
  letter-spacing: -0.05em;
}

.price-block span {
  color: var(--muted);
  font-size: 0.95rem;
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.72);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 920px) {
  .topbar-inner,
  .footer-inner,
  .topnav {
    flex-wrap: wrap;
  }

  .hero-card,
  .grid-2,
  .credibility-grid,
  .proof-grid,
  .founder-strip-card {
    grid-template-columns: 1fr;
  }

  .signal-row {
    grid-template-columns: 1fr;
  }

  .cover-strip {
    grid-template-columns: 1fr;
  }

  .brand-wordmark small {
    display: none;
  }

  .hero-card,
  .cta-band,
  .pricing-card,
  .founder-strip-card {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .topnav {
    gap: 10px 14px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .step {
    grid-template-columns: 1fr;
  }
}
