:root {
  --bg: #091115;
  --bg-soft: #0d1b21;
  --panel: rgba(12, 27, 34, 0.78);
  --panel-strong: #112630;
  --line: rgba(138, 187, 170, 0.22);
  --line-strong: rgba(138, 187, 170, 0.38);
  --text: #f4f7f3;
  --muted: #a9b8b2;
  --accent: #75f0a2;
  --accent-deep: #173a2d;
  --accent-warm: #ffd088;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(117, 240, 162, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 208, 136, 0.1), transparent 30%),
    linear-gradient(180deg, #071015 0%, #0a1318 50%, #081014 100%);
  font-family: "Manrope", sans-serif;
}

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

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 17, 21, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text,
.topnav a,
.button,
.plan-tag,
.status-pill,
.step-index {
  font-family: "Space Grotesk", sans-serif;
}

.brand-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.topnav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.topnav a:hover,
.footer-links a:hover,
.footer-brand:hover .brand-text {
  color: var(--text);
}

.topbar-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.topbar-cta,
.button-primary {
  background: linear-gradient(135deg, #76f0a2, #f8cf93);
  color: #071115;
  font-weight: 700;
}

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

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

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  padding: 82px 0 56px;
  align-items: start;
}

.hero.hero-single {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* Benefits list */
.hero-benefits {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.hero-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(117, 240, 162, 0.12);
  color: var(--accent);
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-mockup {
  width: 100%;
  max-width: 400px;
  border-radius: 36px;
  border: 2px solid var(--line-strong);
  background: linear-gradient(180deg, #0f2028 0%, #0a171e 100%);
  box-shadow: var(--shadow), 0 0 60px rgba(117, 240, 162, 0.06);
  overflow: hidden;
  padding: 24px;
}

.phone-screen {
  display: grid;
  gap: 16px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.phone-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.phone-card-accent {
  background: linear-gradient(160deg, rgba(18, 48, 40, 0.92), rgba(18, 38, 48, 0.96));
  border-color: rgba(117, 240, 162, 0.18);
}

.phone-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.phone-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.cta-banner h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  max-width: 14ch;
}

.hero-lead,
.section-heading p,
.feature-card p,
.plan-copy,
.footer-copy,
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 58ch;
  margin: 22px 0 28px;
  font-size: 1.06rem;
}

.hero-form {
  margin-bottom: 16px;
}

.hero-form-row {
  display: flex;
  gap: 10px;
}

.hero-email-input {
  flex: 1;
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 180ms ease;
}

.hero-email-input::placeholder {
  color: var(--muted);
}

.hero-email-input:focus {
  border-color: var(--accent);
}

.hero-submit {
  white-space: nowrap;
  min-height: 54px;
  padding: 0 28px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  font-family: "Space Grotesk", sans-serif;
}

.hero-form-feedback {
  margin: 10px 0 0;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.hero-form-feedback.success {
  color: var(--accent);
}

.hero-form-feedback.error {
  color: #f07575;
}

.hero-micro-guarantee {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-social-proof {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
}

.store-launch {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.store-launch-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: auto;
  max-width: 100%;
}

.store-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #040607;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.hero-highlights li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-panel {
  position: relative;
}

.panel-frame,
.feature-card,
.plan-card,
.cta-banner,
.faq-list,
.weekly-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.panel-frame {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-xl);
  min-height: 540px;
}

.panel-frame::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% 35%;
  height: 260px;
  background: radial-gradient(circle, rgba(117, 240, 162, 0.28), transparent 70%);
}

.panel-topline,
.mini-metrics,
.plans-grid,
.footer {
  display: flex;
  align-items: center;
}

.panel-topline {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.status-pill,
.plan-tag,
.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.status-pill {
  background: rgba(117, 240, 162, 0.14);
  color: var(--accent);
}

.status-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.goal-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}

.goal-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font: inherit;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.goal-chip:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  color: var(--text);
}

.goal-chip.is-active {
  border-color: rgba(117, 240, 162, 0.4);
  background: rgba(117, 240, 162, 0.12);
  color: var(--accent);
}

.weekly-card {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  padding: 18px;
}

.weekly-card-accent {
  background: linear-gradient(160deg, rgba(18, 48, 40, 0.92), rgba(18, 38, 48, 0.96));
  margin-bottom: 18px;
  min-height: 162px;
}

.weekly-card h3,
.feature-card h3,
.plan-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.mini-label {
  margin: 0 0 8px;
  color: var(--accent-warm);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.weekly-grid,
.steps-grid,
.feature-stack,
.plans-grid {
  display: grid;
  gap: 18px;
}

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

.mini-metrics {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.mini-metrics span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.86rem;
}

.metric-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.metric-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.section {
  padding: 30px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2,
.cta-banner h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.narrow {
  max-width: 620px;
}

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

.feature-card,
.plan-card,
.faq-list,
.cta-banner {
  border-radius: var(--radius-lg);
}

.feature-card,
.plan-card {
  padding: 24px;
}

.feature-card.large-card {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(20, 44, 52, 0.92), rgba(10, 24, 29, 0.92));
}

.step-index {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

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

.compact-stack {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-card {
  min-height: 100%;
}

.feature-list,
.plan-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li,
.plan-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
}

.feature-list li::before,
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

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

.plan-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.plan-card.featured {
  position: relative;
  background: linear-gradient(180deg, rgba(17, 51, 44, 0.95), rgba(9, 28, 22, 0.95));
  border-color: rgba(117, 240, 162, 0.36);
  transform: translateY(-8px);
}

.plan-tag {
  width: fit-content;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.plan-card.featured .plan-tag {
  background: rgba(117, 240, 162, 0.15);
  color: var(--accent);
}

.plan-price {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.3rem;
  letter-spacing: -0.05em;
}

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

.faq-list {
  padding: 10px 18px;
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 12px 0 0;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: start;
  gap: 28px;
  margin-top: 34px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(17, 43, 35, 0.98), rgba(13, 31, 38, 0.95));
  overflow: hidden;
}

.cta-actions {
  display: grid;
  gap: 12px;
  width: 100%;
}

.cta-side {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 380px;
  justify-self: end;
  align-content: start;
}

.cta-side .hero-form-row {
  flex-direction: column;
}

.cta-side .hero-submit {
  width: 100%;
}

.store-launch-footer {
  margin-top: 0;
  width: 100%;
}

.store-launch-footer .store-launch-copy {
  font-size: 0.9rem;
}

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

.cta-banner > div:first-child {
  min-width: 0;
}

.footer {
  justify-content: space-between;
  gap: 24px;
  padding: 42px 0 8px;
  color: var(--muted);
}

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

.footer-copy {
  max-width: 34ch;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-note {
  margin: 0;
  max-width: 34ch;
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1080px) {
  .hero,
  .cta-banner,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .steps-grid,
  .plans-grid,
  .feature-stack,
  .compact-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card.large-card {
    grid-column: span 2;
  }

  .footer-note {
    text-align: left;
  }

  .hero.hero-single {
    grid-template-columns: 1fr;
  }

  .hero-phone-mockup {
    width: 280px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 22px), var(--content-width));
    padding-top: 16px;
  }

  .topbar {
    position: static;
    border-radius: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .topnav {
    display: none;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 34px;
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .hero-form-row {
    flex-direction: column;
  }

  .hero-submit {
    width: 100%;
    min-height: 56px;
    font-size: 1.05rem;
  }

  .hero-email-input {
    min-height: 56px;
    font-size: 1.05rem;
  }

  .weekly-grid,
  .steps-grid,
  .feature-stack,
  .plans-grid,
  .compact-stack {
    grid-template-columns: 1fr;
  }

  .feature-card.large-card {
    grid-column: span 1;
  }

  .cta-banner {
    display: grid;
  }

  .panel-frame,
  .feature-card,
  .plan-card,
  .cta-banner {
    padding: 18px;
  }

  .section {
    padding: 22px 0;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading p,
  .feature-card p,
  .plan-copy,
  .faq-list p {
    font-size: 0.96rem;
  }

  .store-badges {
    width: auto;
  }

  .faq-list {
    padding: 6px 14px;
  }

  .cta-banner {
    margin-top: 18px;
  }

  .hero-phone-mockup {
    width: 100%;
    max-width: 320px;
    border-radius: 28px;
  }

  .hero-benefits li {
    font-size: 0.95rem;
  }
}
