.home-page {
  background: #ffffff;
}

/* Hero */

.home-hero {
  padding: clamp(44px, 6vw, 76px) 0 clamp(54px, 7vw, 88px);
  background:
    radial-gradient(circle at 78% 14%, rgba(47, 49, 146, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.9fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.home-hero-copy h1 {
  max-width: 650px;
  color: var(--navy);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 850;
  line-height: 0.99;
  letter-spacing: -0.052em;
}

.home-hero-lede {
  max-width: 610px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.62;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.disabled-button {
  opacity: 0.48;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.15);
}

.home-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.home-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* Product preview */

.product-preview-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(47, 49, 146, 0.10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 49, 146, 0.18), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(47, 49, 146, 0.05), transparent 45%),
    linear-gradient(180deg, #ffffff, #f9faff);
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.10);
}

.preview-topline,
.preview-progress,
.preview-grid,
.preview-footer {
  position: relative;
  z-index: 1;
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.preview-topline span,
.preview-progress span,
.preview-footer span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.preview-topline strong {
  display: block;
  max-width: 360px;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.045em;
}

.preview-topline small {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.preview-progress {
  padding: 18px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.preview-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.preview-progress strong {
  color: var(--accent);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.preview-progress-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bg-soft);
}

.preview-progress-track div {
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.preview-grid article {
  min-height: 148px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.preview-grid article span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.preview-grid article strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
}

.preview-grid article p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.preview-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(47, 49, 146, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(47, 49, 146, 0.04), rgba(47, 49, 146, 0.08));
  color: var(--navy);
}

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

.mini-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.mini-chip-row small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(47, 49, 146, 0.08);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.preview-footer button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
}

/* Shared sections */

.problem-section,
.system-section,
.features-section,
.final-cta-section {
  padding: clamp(48px, 5vw, 78px) 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 24px;
}

.section-heading.centered {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(47, 49, 146, 0.36);
}

.section-heading h2,
.system-copy h2,
.final-cta-panel h2 {
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading p,
.system-copy p,
.final-cta-panel p {
  max-width: 650px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* Problem */

.problem-section {
  background: #ffffff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.problem-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.problem-grid span {
  display: inline-flex;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.problem-grid h3 {
  max-width: 280px;
  margin-top: 26px;
  color: var(--navy);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.05em;
}

.problem-grid p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

/* System */

.system-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 49, 146, 0.10), transparent 34%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  color: var(--ink);
}

.system-panel {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.system-copy .section-label,
.system-copy h2 {
  color: var(--navy);
}

.system-copy .section-label::before {
  background: rgba(47, 49, 146, 0.42);
}

.system-copy p {
  color: var(--muted);
}

.system-steps {
  display: grid;
  gap: 12px;
}

.system-steps article {
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.system-steps span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-steps strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.system-steps p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Features */

.features-section {
  padding-top: 0;
  background: #ffffff;
}

.feature-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid-home article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 15px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 19px;
  font-weight: 900;
}

.feature-grid-home h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.feature-grid-home p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.58;
}

/* Final CTA */

.final-cta-section {
  padding-top: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.final-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(135deg, var(--accent), #5659d8);
  box-shadow: 0 34px 90px rgba(47, 49, 146, 0.24);
}

.final-cta-panel .section-label,
.final-cta-panel h2 {
  color: #ffffff;
}

.final-cta-panel .section-label::before {
  background: rgba(255, 255, 255, 0.42);
}

.final-cta-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.final-cta-actions {
  display: grid;
  gap: 12px;
}

.final-cta-actions .button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.mini-waitlist-form {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  max-width: 720px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mini-waitlist-form label {
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-waitlist-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.mini-waitlist-row input {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.mini-waitlist-row .button {
  min-height: 54px;
  border: 0;
  background: #ffffff;
  color: var(--accent);
  box-shadow: none;
}

.mini-waitlist-form .fineprint {
  color: rgba(255, 255, 255, 0.66);
}

/* Responsive */

@media (max-width: 1100px) {
  .home-hero-grid,
  .system-panel,
  .final-cta-panel {
    grid-template-columns: 1fr;
  }

  .product-preview-card {
    max-width: 720px;
  }

  .feature-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .home-hero {
    padding-top: 36px;
  }

  .home-hero-copy h1 {
    font-size: clamp(36px, 9.4vw, 50px);
    line-height: 1;
  }

  .home-hero-lede {
    font-size: 16px;
  }

  .home-actions .button {
    width: 100%;
  }

  .preview-grid,
  .feature-grid-home,
  .mini-waitlist-row {
    grid-template-columns: 1fr;
  }

  .preview-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .preview-footer button,
  .mini-waitlist-row .button {
    width: 100%;
  }

  .section-heading h2,
  .system-copy h2,
  .final-cta-panel h2 {
    font-size: clamp(34px, 9.8vw, 48px);
  }

  .product-preview-card,
  .system-panel,
  .final-cta-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .preview-topline {
    flex-direction: column;
  }
}

/* Final CTA */

.final-cta-section {
  padding: clamp(52px, 7vw, 92px) 0;
  background: #f7f9fc;
}

.final-cta-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.20), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, var(--accent), #5659d8);
  box-shadow: 0 34px 90px rgba(47, 49, 146, 0.24);
}

.final-cta-copy .section-label,
.final-cta-copy h2 {
  color: #ffffff;
}

.final-cta-copy .section-label::before {
  background: rgba(255, 255, 255, 0.42);
}

.final-cta-copy h2 {
  max-width: 520px;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.final-cta-copy p {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.62;
}

.final-preview-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 470px;
  margin-left: auto;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.18);
}

.final-preview-kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-preview-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.final-preview-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.launch-status {
  display: inline-flex;
  width: max-content;
  align-items: center;
  margin-top: 24px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(47, 49, 146, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.final-pricing-link {
  display: inline-flex;
  width: max-content;
  margin-top: 24px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .home-hero-grid,
  .system-panel,
  .final-cta-panel {
    grid-template-columns: 1fr;
  }

  .product-preview-card {
    max-width: 720px;
  }

  .feature-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .final-preview-card {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .home-hero {
    padding-top: 36px;
  }

  .home-hero-copy h1 {
    font-size: clamp(36px, 9.4vw, 50px);
    line-height: 1;
  }

  .home-hero-lede {
    font-size: 16px;
  }

  .home-actions .button {
    width: 100%;
  }

  .preview-grid,
  .feature-grid-home {
    grid-template-columns: 1fr;
  }

  .preview-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .preview-footer button {
    width: 100%;
  }

  .section-heading h2,
  .system-copy h2,
  .final-cta-panel h2 {
    font-size: clamp(34px, 9.8vw, 48px);
  }

  .product-preview-card,
  .system-panel,
  .final-cta-panel,
  .final-preview-card {
    padding: 22px;
    border-radius: 28px;
  }

  .preview-topline {
    flex-direction: column;
  }
}