
:root {
  --bg: #050505;
  --shell: #050505;
  --card: #111111;
  --card-strong: #171717;
  --text: #f4efe7;
  --muted: rgba(244,239,231,0.65);
  --line: rgba(255,255,255,0.06);
  --accent: #e8c36a;
  --accent-2: #c9a227;
  --accent-text: #14110b;
  --shadow: 0 24px 80px rgba(0,0,0,0.45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.92), transparent 34%),
    linear-gradient(180deg, var(--shell) 0%, var(--bg) 42%, var(--bg) 100%);
  color: var(--text);
  font-family: "Gotham Pro", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.page-shell { padding: 0 12px 28px; }
.page { width: 100%; max-width: 430px; margin: 0 auto; }
.hero, .section, .footer {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero { margin-top: 14px; border-radius: 34px; overflow: hidden; }
.hero-media { position: relative; min-height: 460px; background: #000; }
.hero-media img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,12,19,0.08) 0%, rgba(9,12,19,0.18) 55%, rgba(9,12,19,0.78) 100%);
}
.hero-on-photo {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.eyebrow {
  display: inline-flex; align-items: center; min-height: 28px; padding: 0 12px;
  border-radius: 999px; background: rgba(0,0,0,0.45); backdrop-filter: blur(8px);
  border: 1px solid rgba(214,178,122,0.45);
  font-size: 11px; line-height: 1; letter-spacing: 0.08em; text-transform: uppercase; color: #f7e7c6;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badges span,
.badge-gold {
  display: inline-flex; min-height: 34px; align-items: center; padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f0d7a2 0%, #d6b27a 55%, #b8904e 100%);
  border: 1px solid rgba(255,236,190,0.7);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  font-size: 12px; font-weight: 700; color: #1a140b;
}
.hero-headline {
  padding: 18px 20px 4px;
  background: linear-gradient(180deg, rgba(214,178,122,0.14) 0%, transparent 100%);
}
.hero h1 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244,239,231,0.86);
}
.offer-bar { display: flex; justify-content: space-between; gap: 14px; padding: 18px 20px 0; }
.offer-label { color: var(--muted); font-size: 12px; margin-bottom: 4px; }
.offer-value { font-size: 20px; line-height: 1.2; font-weight: 700; }
.countdown { text-align: right; }
.countdown-title { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.countdown-row { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.time-box {
  display: inline-flex; width: 36px; height: 42px; align-items: center; justify-content: center;
  border-radius: 14px; background: var(--card-strong); border: 1px solid var(--line);
  font-size: 18px; font-weight: 700;
}
.time-sep { font-size: 18px; font-weight: 700; color: var(--muted); }
.price-box {
  margin: 18px 20px 0; padding: 18px 18px 20px; border-radius: 24px;
  background: linear-gradient(180deg, var(--card-strong) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--line);
}
.price-old { color: var(--muted); font-size: 18px; text-decoration: line-through; margin-bottom: 6px; }
.price-current { font-size: 34px; line-height: 1; font-weight: 700; color: var(--accent); letter-spacing: -0.03em; }
.price-note { margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.cta-button {
  display: flex; align-items: center; justify-content: center;
  width: calc(100% - 40px); min-height: 58px; margin: 18px 20px 0; border: 0;
  border-radius: 999px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--accent-text); font-size: 16px; font-weight: 700; letter-spacing: 0.01em;
  cursor: pointer; box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}
.meta-line { display: flex; justify-content: space-between; gap: 12px; padding: 14px 20px 24px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.section { margin-top: 14px; border-radius: 30px; padding: 22px 18px; }
.section-head { margin-bottom: 18px; }
.section-kicker { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.section h2 { margin: 0; font-size: 28px; line-height: 1.08; letter-spacing: -0.03em; }
.feature-card { background: var(--card-strong); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.feature-card img { aspect-ratio: 3 / 4; object-fit: cover; }
.story-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}
.story-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card-body { padding: 18px; }
.feature-card-body p, .narrative p, .mosaic-copy p, .review-card p, .benefit-item p, .order-copy p, .footer p {
  margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62;
}
.notes-grid { display: grid; gap: 12px; margin-top: 18px; }
.notes-grid div { padding: 14px; border-radius: 18px; background: rgba(255,255,255,0.03); border: 1px solid var(--line); }
.notes-grid span { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.notes-grid strong { font-size: 14px; line-height: 1.5; font-weight: 500; }
.mosaic { display: grid; gap: 12px; }
.mosaic-card { overflow: hidden; border-radius: 24px; background: var(--card-strong); border: 1px solid var(--line); }
.mosaic-card img { aspect-ratio: 4 / 4.6; object-fit: cover; }
.mosaic-copy { padding: 16px; }
.mosaic-copy h3, .benefit-item h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.2; }
.narrative { margin-top: 14px; padding: 18px; border-radius: 24px; background: var(--card-strong); border: 1px solid var(--line); }
.reviews-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 88%; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { scroll-snap-align: start; padding: 16px; border-radius: 24px; background: var(--card-strong); border: 1px solid var(--line); }
.review-top { display: grid; grid-template-columns: 62px 1fr; gap: 12px; align-items: center; margin-bottom: 14px; }
.review-top img { width: 62px; height: 62px; object-fit: cover; border-radius: 18px; }
.review-top strong { display: block; margin-bottom: 4px; font-size: 15px; }
.review-top span { display: block; color: var(--muted); font-size: 12px; line-height: 1.4; }
.reviews-controls { display: flex; justify-content: flex-end; gap: 10px; margin-top: 14px; }
.slider-btn {
  min-width: 104px; height: 44px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--card-strong); color: var(--text); cursor: pointer;
}
.benefits-grid { display: grid; gap: 12px; }
.benefit-item { text-align: center; padding: 18px 16px; border-radius: 24px; background: var(--card-strong); border: 1px solid var(--line); }
.benefit-item img { width: 58px; height: 58px; margin: 0 auto 12px; object-fit: contain; }
.order-card { border-radius: 26px; overflow: hidden; background: var(--card-strong); border: 1px solid var(--line); }
.order-media img { aspect-ratio: 4 / 4.6; object-fit: cover; }
.order-copy, .order-form { padding: 18px; }
.order-copy h2 { margin: 0 0 10px; }
.order-form { padding-top: 0; }
.field-wrap { display: block; margin-bottom: 14px; }
.field-wrap > span { display: block; margin-bottom: 8px; font-size: 13px; color: var(--muted); }
.field {
  width: 100%; height: 58px; padding: 0 18px; border-radius: 18px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.02); color: var(--text); outline: none;
}
.field::placeholder { color: rgba(244,239,231,0.45); }
.field:focus { border-color: rgba(166, 133, 79, 0.6); }
.field.invalid { border-color: #d85b5b; }
.field-error { display: block; min-height: 18px; margin-top: 8px; font-size: 12px; line-height: 1.4; color: #d85b5b; }
.submit-button { width: 100%; margin: 8px 0 0; }
.policy-note { margin-top: 12px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.form-status { min-height: 18px; margin-top: 8px; color: #d85b5b; font-size: 12px; line-height: 1.4; }
.submit-button:disabled { cursor: wait; opacity: .7; }
.footer { margin-top: 14px; padding: 22px 18px 28px; border-radius: 30px; text-align: center; }
.footer-brand { margin-bottom: 12px; font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.footer-links a { color: var(--text); }
.doc-page { min-height: 100vh; padding: 20px 12px; }
.doc-card {
  width: 100%; max-width: 760px; margin: 0 auto; padding: 26px 20px;
  background: var(--card); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow);
}
.doc-card h1 { margin: 0 0 14px; font-size: 30px; line-height: 1.06; }
.doc-card h2 { margin: 22px 0 10px; font-size: 18px; line-height: 1.25; }
.doc-card p, .doc-card li { color: var(--muted); font-size: 14px; line-height: 1.68; }
.doc-card ul { padding-left: 18px; margin: 10px 0 0; }
.doc-back {
  display: inline-flex; align-items: center; min-height: 42px; padding: 0 14px;
  border-radius: 999px; border: 1px solid var(--line); margin-top: 20px;
}
@media (min-width: 431px) {
  .page-shell { padding-left: 18px; padding-right: 18px; }
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
  min-height: 56px;
  padding: 8px 18px 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d7a2 0%, #d6b27a 48%, #b8904e 100%);
  color: #1a140b;
  box-shadow: 0 14px 32px rgba(0,0,0,0.38), 0 0 0 1px rgba(255,236,190,0.45);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(0);
  opacity: 1;
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-cta.is-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}
.sticky-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #1a140b;
  color: #f0d7a2;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.sticky-cta-text {
  font-size: 14px;
  line-height: 1.2;
}
.page-shell { padding-bottom: 88px; }
.purchase-toast {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 84px;
  z-index: 80;
  max-width: 360px;
  margin: 0 auto;
  padding: 10px 12px 12px;
  border-radius: 18px;
  background: #1e2a33;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  color: #fff;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.purchase-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.toast-app {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8ab4c8;
}
.toast-app-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2aa6e0;
  box-shadow: 0 0 0 3px rgba(42,166,224,0.22);
}
.toast-row { display: flex; align-items: center; gap: 10px; }
.toast-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; flex-shrink: 0;
}
.toast-content { min-width: 0; }
.toast-content strong { display: block; font-size: 14px; line-height: 1.2; }
.toast-content span { display: block; margin-top: 2px; font-size: 13px; color: rgba(255,255,255,0.82); }
.toast-content em { display: block; margin-top: 2px; font-size: 11px; font-style: normal; color: #8ab4c8; }

.hero-media video,
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media video {
  position: absolute;
  inset: 0;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 16px;
}
.trust-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(214,178,122,0.28);
  color: #f7e7c6;
  font-size: 12px;
  font-weight: 500;
}
.bullets {
  margin: 14px 20px 0;
  padding: 0;
  list-style: none;
}
.bullets li {
  position: relative;
  padding: 0 0 10px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}
.bullets li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.video-frame {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  max-height: 520px;
}
.video-frame video {
  position: absolute;
  inset: 0;
}
.caption {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.top-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 12px 0;
  padding: 12px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1b2a24 0%, #12362d 48%, #0e241e 100%);
  border: 1px solid rgba(110, 214, 176, 0.35);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.top-offer-left { display: flex; align-items: center; gap: 10px; }
.top-offer-sale {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(180deg, #7ef0c4 0%, #2ec993 100%);
  color: #072017; font-size: 16px; font-weight: 800;
}
.top-offer-now { font-size: 22px; line-height: 1; font-weight: 800; color: #f7fff9; }
.top-offer-was { margin-top: 4px; font-size: 12px; color: rgba(247,255,249,0.62); text-decoration: line-through; }
.top-offer-right { text-align: right; font-size: 11px; line-height: 1.35; color: #b7ebd6; }

.trust-row { padding: 0 0 16px; }
.trust-row span {
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.trust-gold {
  background: linear-gradient(180deg, #f0d7a2 0%, #d6b27a 55%, #b8904e 100%) !important;
  border-color: rgba(255,236,190,0.7) !important;
  color: #1a140b !important;
}
.trust-mint {
  background: linear-gradient(180deg, #7ce8c4 0%, #2fbe94 100%) !important;
  border-color: rgba(180,255,226,0.55) !important;
  color: #06241b !important;
}

.video-frame {
  aspect-ratio: 720 / 910;
  max-height: none;
  background: #0b0d11;
}
.video-frame video {
  object-fit: contain;
  object-position: center center;
}

.order-card .reviews-track { padding: 0 18px 4px; }
.order-card .reviews-controls { padding: 0 18px 8px; }
.review-top { grid-template-columns: 48px 1fr; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 18px;
}
.order-deal {
  margin: 8px 18px 6px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(240,215,162,0.16) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(214,178,122,0.35);
}
.order-deal-price span {
  display: block;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 13px;
}
.order-deal-price strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.order-deal-price em {
  display: block;
  margin: 6px 0 12px;
  font-style: normal;
  color: var(--muted);
  font-size: 13px;
}
.order-deal-btn { width: 100%; margin: 0; }

body {
  background: #050505 !important;
}
.page-shell { padding-top: 8px; }
.hero, .section, .footer {
  background: #0b0b0b;
  border-color: rgba(232,195,106,0.12);
}
.hero-media { min-height: 420px; border-radius: 0; }
.hero-ribbon {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 78px; padding: 10px 8px 14px;
  background: linear-gradient(180deg, #f0d78c 0%, #c9a227 100%);
  color: #14110b; text-align: center; font-size: 11px; font-weight: 800;
  line-height: 1.25; clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 88%, 0 100%);
}
.hero-chip {
  position: absolute; left: 14px; bottom: 58px; z-index: 2;
  max-width: 78%; padding: 10px 12px; border-radius: 10px;
  background: rgba(0,0,0,0.62); color: #fff; font-size: 13px; line-height: 1.35;
}
.hero-price-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 10px; padding: 18px 20px 0;
}
.hero-price-main .price-current {
  font-size: 36px; color: #e8c36a; letter-spacing: -0.04em;
}
.price-old-inline {
  display: inline-block; margin-right: 6px;
  color: #8a8a8a; text-decoration: line-through; font-size: 16px;
}
.price-for {
  display: inline-block; margin-left: 4px; padding: 3px 8px;
  border-radius: 6px; background: #c6283a; color: #fff; font-size: 11px; font-weight: 800;
}
.sale-pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 14px; border-radius: 12px;
  background: #e63b5a; color: #fff; font-size: 14px; font-weight: 800;
  box-shadow: 0 8px 20px rgba(230,59,90,0.28);
}
.stock-bar {
  margin: 12px 20px 0; padding: 10px 12px; border-radius: 10px;
  background: #3a1018; color: #f3c3c9; text-align: center;
  font-size: 13px; font-weight: 600;
}
.cta-button {
  background: linear-gradient(180deg, #f3d98a 0%, #d4af37 100%);
  color: #14110b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-row span { font-weight: 700; }
.trust-gold {
  background: linear-gradient(180deg, #f0d7a2 0%, #d6b27a 55%, #b8904e 100%) !important;
  border-color: rgba(255,236,190,0.7) !important;
  color: #1a140b !important;
}
.trust-dark {
  background: #1a1a1a !important;
  border: 1px solid rgba(232,195,106,0.35) !important;
  color: #f0d7a2 !important;
}
.trust-mint { display: none; }
.top-offer { display: none !important; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; display: block;
}
.order-deal-btn { text-transform: uppercase; }
.sticky-cta {
  background: linear-gradient(180deg, #f3d98a 0%, #d4af37 100%);
  color: #14110b;
}

.hero-stats {
  position: absolute;
  left: 12px;
  right: 96px;
  bottom: 56px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(232,195,106,0.45);
  color: #f3e2b3;
  font-size: 12px;
  font-weight: 700;
}
.sale-pill {
  background: linear-gradient(180deg, #f3d98a 0%, #d4af37 100%) !important;
  color: #14110b !important;
  box-shadow: 0 8px 20px rgba(212,175,55,0.28) !important;
}
.price-for {
  background: #2a2212;
  color: #f3d98a;
}
.stock-bar {
  background: #1a160d;
  color: #e8c36a;
  border: 1px solid rgba(232,195,106,0.28);
}
.copy-frame {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(232,195,106,0.07) 0%, rgba(255,255,255,0.02) 100%);
  border-top: 1px solid rgba(232,195,106,0.18);
}
.copy-frame p {
  margin: 0 0 12px !important;
  color: #efe6d4 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  font-weight: 400;
}
.copy-lead {
  color: #f3d98a !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}
.copy-frame p:last-child { margin-bottom: 0 !important; }
.cta-button.in-copy {
  width: 100%;
  margin: 16px 0 0;
  min-height: 52px;
  font-size: 15px;
}
