:root {
  --bg: #060912;
  --bg-soft: #0a1020;
  --surface: rgba(14, 22, 39, 0.92);
  --surface-soft: rgba(12, 18, 31, 0.88);
  --border: rgba(78, 118, 209, 0.26);
  --border-strong: rgba(123, 164, 255, 0.34);
  --text: #f7f9fe;
  --muted: #a3adbf;
  --subtle: #72809a;
  --lime: #b5f52d;
  --shadow: rgba(2, 6, 23, 0.5);
  --max: 1180px;
  --section-pad: clamp(72px, 11vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(84, 126, 255, 0.18), transparent 24%),
    radial-gradient(circle at 78% 14%, rgba(181, 245, 45, 0.11), transparent 18%),
    linear-gradient(180deg, #050811 0%, #060912 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 88%);
}

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

img {
  display: block;
}

.site-shell {
  position: relative;
  z-index: 1;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  backdrop-filter: blur(16px);
  background: rgba(6, 9, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar.compact {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(84, 126, 255, 0.2);
}

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

.nav a:hover,
.footer-links a:hover,
.secondary-link:hover {
  color: var(--text);
}

.nav-cta,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.nav-cta,
.primary-link {
  padding: 0 22px;
  color: #08110c;
  background: var(--lime);
  box-shadow: 0 18px 34px rgba(181, 245, 45, 0.22);
}

.secondary-link {
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(17, 24, 39, 0.72);
}

.nav-cta:hover,
.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-1px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100svh - 76px);
  padding: 34px 0 36px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(84, 126, 255, 0.12), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(181, 245, 45, 0.14), transparent 24%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  padding: 28px 0;
}

.hero h1,
.section-heading h2,
.signal-inner h2,
.final-cta h2,
.legal-layout h1,
.seo-hero h1,
.seo-block h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.92;
}

.hero-text,
.section-heading p,
.signal-inner p,
.story-item p,
.calc-link span,
.share-copy p,
.audience-card p,
.plan-copy,
.origin-grid p,
.final-cta p,
.footer p,
.legal-layout p,
.legal-layout li,
.seo-hero p,
.seo-feature p,
.seo-note,
.seo-faq p,
.related-links a {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 35rem;
  margin-top: 18px;
  font-size: 1.1rem;
}

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

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

.hero-facts {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  color: var(--subtle);
  font-size: 0.95rem;
}

.hero-facts span::before,
.feature-list li::before,
.muted-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  vertical-align: middle;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(181, 245, 45, 0.42);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.poster-sheet {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(14, 22, 39, 0.96), rgba(8, 13, 23, 0.94)),
    radial-gradient(circle at 16% 14%, rgba(84, 126, 255, 0.16), transparent 22%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 44px 90px var(--shadow);
  overflow: hidden;
}

.poster-sheet::after {
  content: "";
  position: absolute;
  inset: auto -8% -20% auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(181, 245, 45, 0.16), transparent 72%);
  filter: blur(12px);
}

.poster-kicker,
.poster-address,
.mini-label,
.rail-label,
.share-label,
.plan-badge,
.legal-updated {
  color: var(--subtle);
  font-size: 0.82rem;
}

.poster-address {
  margin-top: 10px;
}

.poster-price-row,
.poster-verdict {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.poster-price-row > div,
.poster-verdict > div,
.rail-panel,
.share-card,
.story-item,
.audience-card,
.price-panel,
.seo-feature,
.seo-note,
.calc-link,
.calc-link-muted {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(10, 16, 29, 0.84);
}

.poster-price-row > div,
.poster-verdict > div {
  padding: 16px 16px 18px;
}

.poster-price-row span,
.poster-verdict span {
  display: block;
}

.poster-price-row strong,
.poster-verdict strong,
.rail-panel strong,
.share-card strong,
.price-line,
.seo-metric strong {
  display: block;
  margin-top: 7px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

.poster-price-row strong,
.poster-verdict strong {
  font-size: 1.18rem;
}

.poster-verdict strong {
  color: var(--lime);
}

.poster-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.stamp {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--lime);
  border: 1px solid rgba(181, 245, 45, 0.28);
  background: rgba(181, 245, 45, 0.06);
  font-weight: 800;
}

.report-rail {
  display: grid;
  gap: 16px;
  padding-left: 28px;
}

.rail-panel {
  padding: 18px 18px 20px;
}

.rail-panel strong {
  font-size: 1.12rem;
}

.rail-panel p,
.share-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.rail-panel-accent {
  border-color: rgba(181, 245, 45, 0.28);
  background:
    linear-gradient(180deg, rgba(15, 28, 17, 0.92), rgba(10, 17, 12, 0.88));
}

.section-block {
  padding: var(--section-pad) 0 0;
}

.signal-band {
  padding-top: 8px;
}

.signal-inner {
  padding: 28px 32px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(180deg, rgba(11, 17, 29, 0.9), rgba(7, 11, 20, 0.82));
}

.signal-inner h2,
.section-heading h2,
.final-cta h2,
.legal-layout h1,
.seo-hero h1,
.seo-block h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.section-heading {
  max-width: 48rem;
}

.section-heading p {
  margin-top: 14px;
}

.story-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.story-item,
.audience-card {
  padding: 24px;
}

.story-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--lime);
  border: 1px solid rgba(181, 245, 45, 0.24);
  background: rgba(181, 245, 45, 0.06);
  font-weight: 800;
}

.story-item h3,
.calc-link strong,
.audience-card h3,
.price-panel h3,
.seo-feature h2,
.seo-feature h3,
.seo-faq h3,
.legal-layout h2 {
  margin: 18px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.calc-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.calc-link,
.calc-link-muted {
  display: block;
  padding: 22px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.calc-link:hover {
  transform: translateY(-2px);
  border-color: rgba(181, 245, 45, 0.22);
  background: rgba(13, 20, 34, 0.92);
}

.calc-link strong,
.calc-link-muted strong {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.calc-link-muted {
  background: rgba(10, 15, 25, 0.56);
}

.share-grid,
.origin-grid,
.footer-shell {
  display: grid;
  gap: 28px;
}

.share-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  align-items: center;
}

.feature-list,
.muted-list,
.seo-bullet-list,
.related-links {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.muted-list li,
.seo-bullet-list li {
  margin-top: 10px;
  color: var(--muted);
}

.muted-list li::before {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.share-stack {
  display: grid;
  gap: 16px;
}

.share-card {
  padding: 20px 22px 24px;
}

.share-card strong {
  font-size: 1.2rem;
}

.share-card.accent {
  border-color: rgba(181, 245, 45, 0.28);
  background:
    linear-gradient(180deg, rgba(15, 28, 17, 0.9), rgba(10, 17, 12, 0.86));
}

.launch-note {
  margin: 18px 0 0;
  color: var(--text);
  font-weight: 700;
}

.store-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  min-width: 196px;
  padding: 11px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 20, 0.82);
  color: var(--text);
  box-shadow:
    0 14px 30px rgba(2, 6, 23, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(181, 245, 45, 0.22);
  background: rgba(10, 16, 29, 0.92);
}

.store-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  flex: 0 0 38px;
}

.store-badge-icon img {
  width: 20px;
  height: 20px;
}

.store-badge-label small,
.store-badge-label strong {
  display: block;
}

.store-badge-label small {
  color: var(--subtle);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge-label strong {
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.phone-showcase {
  position: relative;
  min-height: 650px;
}

.phone-mockup {
  position: absolute;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #02050c;
  box-shadow: 0 42px 80px rgba(2, 6, 23, 0.48);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 24px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(3, 7, 16, 0.92);
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  inset: 12px 54px auto 54px;
  height: 610px;
}

.phone-left {
  left: -4px;
  top: 154px;
  width: 180px;
  height: 390px;
  transform: rotate(-8deg);
}

.phone-right {
  right: -4px;
  top: 204px;
  width: 190px;
  height: 412px;
  transform: rotate(8deg);
}

.hero-proof-grid,
.trust-grid,
.app-gallery-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.hero-proof-card,
.trust-card,
.contact-card,
.app-shot-card,
.cta-panel,
.seo-example-card,
.formula-panel {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(10, 16, 29, 0.84);
}

.hero-proof-card,
.trust-card,
.contact-card {
  padding: 22px;
}

.hero-proof-card h3,
.trust-card h3,
.contact-card h3,
.app-shot-card h3,
.cta-panel h2,
.seo-example-card h2,
.formula-panel h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.hero-proof-card p,
.trust-card p,
.contact-card p,
.app-shot-card p,
.cta-panel p,
.seo-example-card p,
.formula-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero-proof-card strong,
.trust-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.trust-grid {
  margin-top: 28px;
}

.app-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.app-shot-card {
  overflow: hidden;
}

.app-shot-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-shot-body {
  padding: 18px 18px 20px;
}

.pricing-stack {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.price-panel {
  padding: 24px;
}

.price-panel-pro {
  border-color: rgba(181, 245, 45, 0.28);
  background:
    linear-gradient(180deg, rgba(17, 31, 20, 0.94), rgba(10, 18, 12, 0.9));
  box-shadow: 0 28px 60px rgba(8, 14, 10, 0.28);
}

.price-panel-plus {
  background: rgba(11, 18, 31, 0.9);
}

.price-panel-plus .price-line {
  font-size: clamp(1.85rem, 3.3vw, 2.6rem);
}

.price-panel-free {
  background: rgba(9, 14, 24, 0.62);
}

.price-panel-free .price-line {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.price-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--lime);
  border: 1px solid rgba(181, 245, 45, 0.26);
  background: rgba(181, 245, 45, 0.08);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.price-line {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.subprice,
.price-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.plan-tagline {
  margin-top: 6px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.price-note {
  color: var(--lime);
  font-weight: 800;
}

.price-panel .primary-link,
.price-panel .secondary-link {
  width: 100%;
  margin-top: 18px;
}

.origin-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  align-items: end;
  padding: 26px 0 8px;
}

.final-cta {
  padding: var(--section-pad) 0 clamp(84px, 13vw, 140px);
}

.final-cta-shell {
  padding: 44px clamp(24px, 4vw, 44px);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(11, 17, 29, 0.92), rgba(7, 11, 20, 0.9)),
    radial-gradient(circle at 84% 22%, rgba(181, 245, 45, 0.12), transparent 22%);
  text-align: center;
}

.footer {
  padding: 0 0 42px;
}

.footer-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding-top: 10px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-support {
  display: grid;
  gap: 12px;
}

.footer-badges {
  margin-top: 18px;
}

.legal-page {
  min-height: 100svh;
}

.legal-layout,
.seo-page-shell {
  padding: 54px 0 90px;
}

.legal-layout {
  max-width: 780px;
}

.legal-layout section + section,
.seo-block + .seo-block {
  margin-top: 28px;
}

.legal-layout h2 {
  font-size: 1.3rem;
}

.seo-page-shell {
  width: min(calc(100% - 40px), 1020px);
  margin: 0 auto;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.7fr);
  gap: 24px;
  align-items: end;
  padding-top: 12px;
}

.seo-hero p {
  margin-top: 18px;
  max-width: 40rem;
}

.seo-metric-stack {
  display: grid;
  gap: 14px;
}

.seo-metric {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.seo-metric strong {
  font-size: 1.6rem;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.seo-feature {
  padding: 22px;
}

.seo-note {
  padding: 22px;
  margin-top: 24px;
}

.seo-example-card {
  padding: 24px;
  margin-top: 24px;
}

.seo-example-grid,
.formula-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.example-column,
.formula-panel {
  padding: 20px;
}

.example-column h3,
.example-output-card h3,
.formula-panel h3,
.cta-panel h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.example-list,
.formula-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.example-list li,
.formula-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.example-list li:first-child,
.formula-list li:first-child {
  border-top: 0;
}

.example-list strong,
.formula-list strong {
  color: var(--text);
}

.example-output-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(181, 245, 45, 0.22);
  background:
    linear-gradient(180deg, rgba(15, 28, 17, 0.92), rgba(10, 17, 12, 0.88));
}

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

.example-output-grid > div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(5, 10, 18, 0.32);
}

.example-output-grid span {
  display: block;
  color: var(--subtle);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-output-grid strong {
  display: block;
  margin-top: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.seo-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.cta-panel {
  padding: 26px;
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.seo-faq {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.seo-faq article {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-faq article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.related-links a {
  display: block;
  padding: 12px 0;
}

.waitlist-shell {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.waitlist-shell.is-open {
  display: block;
}

.waitlist-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
}

.waitlist-modal {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), 560px);
  margin: min(10vh, 96px) auto 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 18, 31, 0.98), rgba(8, 12, 22, 0.98));
  box-shadow: 0 38px 80px rgba(2, 6, 23, 0.58);
}

.waitlist-panel {
  padding: 28px;
}

.waitlist-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.5rem;
  cursor: pointer;
}

.waitlist-copy,
.waitlist-footnote,
.waitlist-feedback {
  color: var(--muted);
  line-height: 1.66;
}

.waitlist-form {
  margin-top: 20px;
}

.waitlist-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.waitlist-input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(123, 164, 255, 0.24);
  color: var(--text);
  background: rgba(5, 10, 18, 0.72);
  font: inherit;
}

.waitlist-input:focus {
  outline: 0;
  border-color: rgba(181, 245, 45, 0.52);
  box-shadow: 0 0 0 3px rgba(181, 245, 45, 0.12);
}

.waitlist-feedback {
  min-height: 24px;
  margin: 10px 0 0;
}

.waitlist-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.waitlist-cancel,
.waitlist-submit,
.waitlist-done {
  width: 100%;
}

.modal-open {
  overflow: hidden;
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px 12px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 18, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 46px rgba(2, 6, 23, 0.48);
}

.mobile-sticky-copy span,
.mobile-sticky-copy strong {
  display: block;
}

.mobile-sticky-copy span {
  color: var(--subtle);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mobile-sticky-copy strong {
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.home-premium {
  overflow: clip;
}

.brand-hero {
  min-height: calc(100svh - 78px);
  padding: 34px 0 60px;
}

.brand-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 56px;
  align-items: center;
}

.brand-hero-copy {
  max-width: 580px;
  padding: 28px 0;
}

.brand-hero-copy h1 {
  max-width: 8ch;
}

.brand-hero-lead {
  max-width: 28rem;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.5;
}

.brand-hero-support {
  max-width: 35rem;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.76;
}

.hero-store-row {
  margin-top: 22px;
}

.hero-launch-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(181, 245, 45, 0.24);
  background: rgba(181, 245, 45, 0.08);
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 0 24px rgba(181, 245, 45, 0.08);
}

.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(123, 164, 255, 0.18);
  color: var(--muted);
  background: rgba(10, 16, 28, 0.72);
  font-size: 0.87rem;
}

.hero-trust-line span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(181, 245, 45, 0.44);
}

.hero-stage {
  position: relative;
  min-height: 760px;
}

.hero-main-device,
.hero-device,
.device-frame,
.hero-report-card,
.hero-deals-card {
  border-radius: 34px;
  border: 1px solid rgba(123, 164, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(13, 21, 37, 0.96), rgba(8, 14, 24, 0.92)),
    radial-gradient(circle at 18% 0%, rgba(84, 126, 255, 0.16), transparent 32%);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 42px rgba(84, 126, 255, 0.12);
  overflow: hidden;
}

.hero-main-device::before,
.hero-device::before,
.device-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 24px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(3, 7, 16, 0.96);
}

.hero-main-device {
  position: absolute;
  right: 22px;
  top: 24px;
  width: min(390px, 100%);
  padding: 12px;
  animation: floatStage 9s ease-in-out infinite;
}

.hero-main-device img,
.hero-device img,
.device-frame img {
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.hero-device {
  position: absolute;
  padding: 10px;
}

.hero-device-analysis {
  top: 102px;
  left: 0;
  width: 240px;
  transform: rotate(-7deg);
  animation: floatStage 11s ease-in-out infinite reverse;
}

.hero-device-budget {
  right: 0;
  bottom: 86px;
  width: 242px;
  transform: rotate(7deg);
  animation: floatStage 10s ease-in-out infinite;
}

.hero-report-card,
.hero-deals-card {
  position: absolute;
  padding: 18px;
  border-radius: 28px;
}

.hero-report-card {
  left: 74px;
  bottom: 10px;
  width: 290px;
  border-color: rgba(181, 245, 45, 0.18);
  background:
    linear-gradient(180deg, rgba(9, 16, 28, 0.96), rgba(5, 11, 18, 0.94)),
    radial-gradient(circle at 82% 12%, rgba(181, 245, 45, 0.16), transparent 28%);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 34px rgba(181, 245, 45, 0.12);
}

.hero-deals-card {
  right: 34px;
  top: 38px;
  width: 190px;
  padding: 14px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(11, 18, 31, 0.94), rgba(7, 12, 20, 0.92)),
    radial-gradient(circle at 84% 14%, rgba(84, 126, 255, 0.16), transparent 32%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 28px rgba(84, 126, 255, 0.1);
}

.hero-deals-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.94rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.hero-report-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.hero-report-card img {
  width: 100%;
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #fff;
}

.hero-deals-card img {
  width: 100%;
  margin-top: 12px;
  border-radius: 16px;
}

.app-access-band {
  padding-top: 22px;
}

.app-access-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 30px;
  border: 1px solid rgba(123, 164, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(10, 16, 28, 0.94), rgba(7, 12, 21, 0.92)),
    radial-gradient(circle at 84% 18%, rgba(181, 245, 45, 0.11), transparent 26%);
  box-shadow: 0 24px 56px rgba(2, 6, 23, 0.28);
}

.app-access-copy h2,
.community-shell h2 {
  margin: 10px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.05em;
}

.app-access-copy p,
.app-access-note {
  color: var(--muted);
  line-height: 1.68;
}

.app-access-note {
  margin-top: 10px;
  color: var(--lime);
  font-weight: 700;
}

.app-access-badges {
  justify-content: flex-end;
  margin-top: 0;
}

.section-heading-tight {
  max-width: 740px;
}

.section-heading-tight h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.momentum-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.mobile-workflow {
  display: none;
}

.mobile-workflow-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.mobile-workflow-card {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(123, 164, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(12, 19, 33, 0.92), rgba(7, 12, 22, 0.9)),
    radial-gradient(circle at 12% 0%, rgba(84, 126, 255, 0.11), transparent 40%);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.24);
}

.mobile-workflow-frame {
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(123, 164, 255, 0.16);
  background: rgba(8, 13, 23, 0.88);
}

.mobile-workflow-frame img {
  width: 100%;
  border-radius: 18px;
}

.mobile-workflow-card h3 {
  margin: 16px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.mobile-workflow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.desktop-detail-stack {
  display: contents;
}

.community-shell {
  padding: 30px 32px;
  border-radius: 32px;
  border: 1px solid rgba(123, 164, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 16, 28, 0.94), rgba(7, 12, 20, 0.9)),
    radial-gradient(circle at 14% 0%, rgba(84, 126, 255, 0.11), transparent 38%);
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.24);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.community-card {
  display: block;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(123, 164, 255, 0.14);
  background: rgba(8, 13, 23, 0.82);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.community-card:hover {
  transform: translateY(-2px);
  border-color: rgba(181, 245, 45, 0.22);
  box-shadow: 0 18px 34px rgba(181, 245, 45, 0.08);
}

.community-card strong,
.community-card span {
  display: block;
}

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

.community-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.momentum-card {
  padding: 26px 24px 24px;
  border-radius: 28px;
  border: 1px solid rgba(123, 164, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(13, 20, 34, 0.92), rgba(8, 13, 22, 0.88)),
    radial-gradient(circle at 12% 0%, rgba(84, 126, 255, 0.12), transparent 40%);
  box-shadow: 0 22px 52px rgba(2, 6, 23, 0.28);
}

.momentum-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(181, 245, 45, 0.14);
  color: var(--lime);
  font-weight: 800;
  font-size: 0.82rem;
}

.momentum-card h3,
.feature-copy h2,
.trust-band-copy h2,
.sample-report-note strong {
  margin: 16px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.045em;
}

.sample-report-note strong {
  display: block;
}

.momentum-card p,
.feature-copy p,
.trust-band-copy p,
.trust-inline span,
.sample-report-note p {
  color: var(--muted);
  line-height: 1.68;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.feature-split-reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.feature-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.feature-copy .primary-link {
  margin-top: 20px;
}

.feature-kicker {
  margin-top: 18px;
  color: var(--lime);
  font-weight: 800;
}

.feature-visual {
  position: relative;
}

.device-frame {
  padding: 14px;
}

.device-frame-large {
  max-width: 420px;
  margin-inline: auto;
}

.report-spotlight {
  position: relative;
}

.report-spotlight::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 52%;
  background: radial-gradient(circle at center, rgba(181, 245, 45, 0.08), transparent 62%);
  pointer-events: none;
}

.report-showcase {
  margin-top: 28px;
}

.report-window {
  width: min(100%, 1080px);
  margin: 0 auto;
  border-radius: 30px;
  border: 1px solid rgba(123, 164, 255, 0.18);
  background: rgba(7, 12, 22, 0.88);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  overflow: hidden;
}

.report-window-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.92rem;
}

.report-window-bar strong {
  margin-left: 6px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.report-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.report-window img {
  width: 100%;
  background: #f6f9ff;
}

.trust-band {
  padding-top: 12px;
}

.trust-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 24px;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(123, 164, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(9, 14, 25, 0.96), rgba(6, 11, 19, 0.94)),
    radial-gradient(circle at 12% 0%, rgba(84, 126, 255, 0.12), transparent 38%),
    radial-gradient(circle at 92% 22%, rgba(181, 245, 45, 0.1), transparent 28%);
  box-shadow: 0 28px 68px rgba(2, 6, 23, 0.3);
}

.trust-band-copy h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.trust-band-points {
  display: grid;
  gap: 16px;
}

.trust-inline {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(123, 164, 255, 0.16);
  background: rgba(9, 15, 26, 0.72);
}

.trust-inline strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.calculators-band .calc-link-grid {
  margin-top: 26px;
}

.sample-report-page .seo-page-shell {
  padding-top: 28px;
}

.sample-report-hero {
  align-items: start;
}

.sample-report-frame {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.report-window-static img {
  display: block;
}

.sample-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.sample-report-note {
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(123, 164, 255, 0.14);
  background: rgba(10, 16, 28, 0.74);
}

@keyframes floatStage {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .brand-hero-grid,
  .app-access-shell,
  .share-grid,
  .origin-grid,
  .seo-hero,
  .feature-split,
  .feature-split-reverse,
  .trust-band-grid {
    grid-template-columns: 1fr;
  }

  .report-rail {
    padding-left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calc-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid,
  .audience-grid,
  .seo-grid,
  .hero-proof-grid,
  .trust-grid,
  .app-gallery-grid,
  .contact-grid,
  .seo-example-grid,
  .formula-grid,
  .momentum-grid,
  .sample-report-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 820px;
  }

  .hero-main-device {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-deals-card {
    right: 28px;
    top: 30px;
  }

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

@media (max-width: 760px) {
  .topbar {
    padding: 16px 18px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
    max-width: 9ch;
  }

  .brand-hero {
    padding-bottom: 26px;
  }

  .brand-hero-grid {
    gap: 28px;
  }

  .section-block {
    padding-top: clamp(40px, 11vw, 60px);
  }

  .brand-hero-lead {
    font-size: 1.05rem;
  }

  .brand-hero-support {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .poster-sheet,
  .signal-inner,
  .final-cta-shell,
  .story-item,
  .audience-card,
  .price-panel,
  .share-card,
  .seo-feature,
  .seo-note {
    border-radius: 26px;
  }

  .poster-price-row,
  .poster-verdict,
  .report-rail,
  .calc-link-grid,
  .related-links,
  .example-output-grid,
  .waitlist-actions,
  .seo-cta-grid {
    grid-template-columns: 1fr;
  }

  .price-panel-head {
    flex-direction: column;
    align-items: start;
  }

  .hero-actions,
  .hero-actions.centered {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-link,
  .secondary-link,
  .nav-cta {
    width: 100%;
  }

  .signal-inner,
  .final-cta-shell {
    padding: 26px 22px;
  }

  .section-shell,
  .seo-page-shell,
  .legal-layout {
    width: min(calc(100% - 28px), var(--max));
  }

  .store-badge {
    width: 100%;
  }

  .phone-showcase {
    min-height: auto;
    padding-bottom: 12px;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-main-device,
  .hero-device,
  .hero-report-card,
  .hero-deals-card {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    transform: none;
    animation: none;
  }

  .hero-main-device,
  .hero-device {
    padding: 10px;
  }

  .hero-report-card {
    padding: 16px;
  }

  .hero-deals-card {
    padding: 14px;
  }

  .hero-trust-line {
    gap: 10px;
  }

  .hero-trust-line span {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-store-row,
  .app-access-badges,
  .footer-badges,
  .contact-grid .store-badge-row,
  .seo-hero .store-badge-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-launch-pill {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .store-badge {
    min-width: 0;
    min-height: 54px;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 16px;
  }

  .store-badge-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
  }

  .store-badge-icon img {
    width: 18px;
    height: 18px;
  }

  .store-badge-label small {
    font-size: 0.64rem;
  }

  .store-badge-label strong {
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .app-access-shell,
  .community-shell {
    padding: 22px 20px;
    border-radius: 26px;
  }

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

  .community-card {
    padding: 16px;
  }

  .phone-mockup {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    transform: none;
    margin-top: 18px;
  }

  .phone-mockup img {
    aspect-ratio: 9 / 19.5;
  }

  .phone-main,
  .phone-left,
  .phone-right {
    width: 100%;
    height: auto;
  }

  .mobile-workflow {
    display: block;
  }

  .desktop-detail-stack {
    display: none;
  }

  .momentum-card p,
  .calc-link span,
  .trust-inline span,
  .plan-copy {
    line-height: 1.52;
  }

  .calc-link span {
    display: none;
  }

  .price-panel {
    padding: 20px;
  }

  .price-line {
    font-size: clamp(1.72rem, 9vw, 2.3rem);
  }

  .mobile-sticky-cta {
    display: flex;
    padding: 10px 10px 10px 14px;
    border-radius: 18px;
  }

  .topbar.compact .brand span {
    display: none;
  }
}
