:root {
  color-scheme: light;
  --green-950: #061710;
  --green-900: #0c2a20;
  --green-800: #123528;
  --green-700: #1b4d3a;
  --green-500: #3d8a68;
  --gold-600: #c6841a;
  --gold-500: #e9a62b;
  --gold-200: #f2d895;
  --cream-50: #fffaf0;
  --cream-100: #faf7f1;
  --cream-200: #f2ece1;
  --ink: #16211d;
  --muted: #607267;
  --line: rgba(22, 33, 29, 0.12);
  --line-dark: rgba(250, 247, 241, 0.14);
  --shadow: 0 20px 60px rgba(6, 23, 16, 0.18);
  --radius: 8px;
  --wrap: 1120px;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html,
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background: var(--cream-100);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--gold-500);
  color: #17110a;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

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

.trust-strip {
  position: relative;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 9px 16px;
  background: var(--green-950);
  color: rgba(250, 247, 241, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.trust-strip span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 max(16px, calc((100vw - var(--wrap)) / 2));
  background: rgba(12, 42, 32, 0.78);
  color: var(--cream-100);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.topbar.is-scrolled {
  background: rgba(12, 42, 32, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.brand-mark,
.app-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--gold-200), var(--gold-600));
  color: #17110a;
  font-family: var(--font-display);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(233, 166, 43, 0.24);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: 0.03em;
}

.brand-copy small {
  color: rgba(250, 247, 241, 0.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: center;
  font-size: 13px;
  color: rgba(250, 247, 241, 0.72);
}

.nav a:hover {
  color: var(--cream-50);
}

.topbar-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--cream-100);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(82svh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-900);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  opacity: 0.72;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 23, 16, 0.96) 0%, rgba(6, 23, 16, 0.78) 42%, rgba(6, 23, 16, 0.36) 100%),
    linear-gradient(0deg, rgba(6, 23, 16, 0.88) 0%, transparent 34%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 48px;
  padding: 96px 0 54px;
}

.hero-copy {
  max-width: 680px;
  color: var(--cream-50);
}

.eyebrow,
.section-label,
.plan-label {
  margin: 0 0 14px;
  color: var(--gold-200);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-kicker {
  max-width: 720px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(25px, 3.7vw, 42px);
  line-height: 1.12;
  color: var(--gold-200);
}

.hero-text {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(250, 247, 241, 0.8);
  font-size: clamp(16px, 1.8vw, 19px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
  color: #17110a;
  box-shadow: 0 12px 30px rgba(198, 132, 26, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-quiet {
  border-color: rgba(250, 247, 241, 0.24);
  color: var(--cream-50);
  background: rgba(250, 247, 241, 0.08);
}

.btn-secondary {
  background: var(--green-900);
  color: var(--cream-100);
}

.product-float {
  margin: 0;
  align-self: center;
  justify-self: end;
  width: min(320px, 100%);
  padding: 18px;
  border: 1px solid rgba(242, 216, 149, 0.28);
  border-radius: var(--radius);
  background: rgba(6, 23, 16, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.product-float img {
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.35));
}

.product-float figcaption {
  margin-top: 10px;
  color: rgba(250, 247, 241, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.proof-bar {
  background: var(--green-950);
  color: var(--cream-100);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
}

.proof-grid div {
  padding: 26px 22px;
  background: var(--green-950);
}

.proof-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--gold-200);
}

.proof-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(250, 247, 241, 0.7);
  font-size: 13px;
}

.section {
  padding: clamp(72px, 10vw, 116px) 0;
}

.section-light {
  background: var(--cream-100);
}

.section-deep,
.section-offer,
.section-app {
  background: var(--green-900);
  color: var(--cream-100);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}

.split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.section-copy p {
  color: var(--muted);
  font-size: 17px;
}

.section-deep .section-copy p,
.section-app .section-copy p,
.section-offer .center-copy p {
  color: rgba(250, 247, 241, 0.72);
}

.section-light .section-label {
  color: var(--green-700);
}

.center-copy {
  width: min(760px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.center-copy p {
  color: var(--muted);
  font-size: 17px;
}

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

.axis-card,
.plan,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.axis-card {
  padding: 24px;
}

.axis-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-600);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
}

.axis-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ingredient-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ingredient-cloud span {
  padding: 10px 14px;
  border: 1px solid rgba(242, 216, 149, 0.22);
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.07);
  color: rgba(250, 247, 241, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.product-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-700);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 6px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

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

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--cream-100);
  background: rgba(250, 247, 241, 0.06);
  border-color: rgba(250, 247, 241, 0.14);
}

.plan-featured,
.plan-recommended {
  border-color: rgba(242, 216, 149, 0.44);
  background: rgba(242, 216, 149, 0.1);
}

.badge {
  position: absolute;
  right: 16px;
  top: -13px;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--gold-500);
  color: #17110a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan h3 {
  font-family: var(--font-display);
  font-size: 24px;
}

.plan img {
  width: 100%;
  height: 132px;
  object-fit: contain;
  margin: 8px 0 14px;
}

.from,
.installment,
.unit,
.bonus {
  margin-bottom: 8px;
  color: rgba(250, 247, 241, 0.66);
  font-size: 13px;
}

.from s {
  color: #ffb4ac;
}

.price {
  margin-bottom: 4px;
  color: var(--gold-200);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.price span,
.price small {
  font-family: var(--font-body);
  font-size: 16px;
}

.bonus {
  margin-top: auto;
  color: var(--gold-200);
  font-weight: 800;
}

.plan .btn {
  width: 100%;
  margin-top: 16px;
}

.app-band {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(36px, 7vw, 80px);
  align-items: center;
}

.app-phone {
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: 302px;
  min-height: 588px;
  padding: 18px;
  border: 1px solid rgba(242, 216, 149, 0.38);
  border-radius: 38px;
  background: #06120d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: rgba(250, 247, 241, 0.58);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px 20px;
}

.app-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.app-head strong,
.app-head small {
  display: block;
}

.app-head small {
  color: rgba(250, 247, 241, 0.52);
  font-size: 12px;
}

.mini-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.08);
  border: 1px solid rgba(250, 247, 241, 0.1);
}

.mini-card.gold {
  border-color: rgba(242, 216, 149, 0.36);
  background: rgba(242, 216, 149, 0.12);
}

.mini-card small {
  color: rgba(250, 247, 241, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-card strong {
  color: var(--gold-200);
}

.mini-card span {
  color: rgba(250, 247, 241, 0.68);
  font-size: 13px;
}

.mini-progress {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 168px;
  margin: 22px 0;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(250, 247, 241, 0.1);
  background: rgba(250, 247, 241, 0.04);
}

.mini-progress span {
  flex: 1;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--gold-200), var(--green-500));
}

.mini-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.mini-nav span {
  height: 46px;
  border-radius: var(--radius);
  background: rgba(250, 247, 241, 0.08);
}

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

details {
  padding: 0;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

summary::marker {
  color: var(--gold-600);
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  border: 1px solid rgba(242, 216, 149, 0.35);
  border-radius: var(--radius);
  background: rgba(12, 42, 32, 0.94);
  color: var(--cream-100);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: translateY(140%);
  transition: transform 220ms ease;
}

.sticky-cta.is-visible {
  transform: none;
}

.sticky-cta strong,
.sticky-cta small {
  display: block;
}

.sticky-cta small {
  color: rgba(250, 247, 241, 0.62);
  font-size: 12px;
}

.sticky-cta .btn {
  min-height: 46px;
  padding: 0 16px;
}

.footer {
  padding: 40px 0 110px;
  background: var(--green-950);
  color: rgba(250, 247, 241, 0.7);
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer strong {
  color: var(--cream-100);
}

.footer p {
  max-width: 650px;
  margin: 8px 0 0;
  font-size: 13px;
}

.footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: end;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-inner,
  .split,
  .split-reverse,
  .app-band {
    grid-template-columns: 1fr;
  }

  .product-float {
    justify-self: start;
    width: min(280px, 76vw);
  }

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

@media (max-width: 680px) {
  .trust-strip {
    justify-content: start;
    overflow: auto;
    flex-wrap: nowrap;
  }

  .topbar {
    height: 64px;
  }

  .brand-copy small {
    display: none;
  }

  .topbar-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: calc(100svh - 190px);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 23, 16, 0.98) 0%, rgba(6, 23, 16, 0.78) 74%, rgba(6, 23, 16, 0.46) 100%),
      linear-gradient(0deg, rgba(6, 23, 16, 0.92) 0%, transparent 38%);
  }

  .hero-inner {
    padding: 68px 0 34px;
    gap: 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .product-float {
    display: none;
  }

  .proof-grid,
  .axis-grid,
  .plans,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .center-copy {
    text-align: left;
  }

  .phone-shell {
    width: min(302px, 100%);
  }

  .sticky-cta {
    display: flex;
  }
}

.legal-page {
  background: var(--cream-100);
}

.legal-page h1 {
  margin-bottom: 24px;
  color: var(--green-900);
  font-size: clamp(40px, 6vw, 72px);
}

.legal-page h2 {
  margin-top: 34px;
  color: var(--green-900);
  font-size: clamp(24px, 3vw, 34px);
}

.legal-page p {
  max-width: 820px;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
