
:root {
  --bg: #14171c;
  --shell: #1a1e24;
  --card: #22282f;
  --card-strong: #2a313a;
  --text: #f4efe7;
  --muted: rgba(244,239,231,0.65);
  --line: rgba(255,255,255,0.06);
  --accent: #d6b27a;
  --accent-2: #9e7641;
  --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: 540px; background: #000; }
.hero-media img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,12,19,0.24) 0%, rgba(9,12,19,0.48) 34%, rgba(9,12,19,0.82) 100%);
}
.hero-copy {
  position: absolute; inset: auto 22px 22px 22px; z-index: 1; color: #fff;
}
.eyebrow {
  display: inline-flex; align-items: center; min-height: 30px; padding: 0 12px;
  border-radius: 999px; background: rgba(255,255,255,0.14); backdrop-filter: blur(6px);
  font-size: 11px; line-height: 1; letter-spacing: 0.08em; text-transform: uppercase;
}
.hero h1 { margin: 14px 0 12px; font-size: 34px; line-height: 1.04; letter-spacing: -0.03em; }
.hero-text { margin: 0; max-width: 320px; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.9); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.hero-badges span {
  display: inline-flex; min-height: 34px; align-items: center; padding: 0 12px;
  border-radius: 999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
  font-size: 12px; color: rgba(255,255,255,0.92);
}
.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; }
.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; }
}
