/* ────────── GOLDRA / Compliant Light Landing ────────── */

:root {
  /* palette — warm cream + aged bronze gold (editorial feel) */
  --bg:        #FBF7EE;
  --bg-soft:   #F2EDE2;
  --bg-card:   #FFFFFF;
  --ink:       #14110B;
  --ink-2:     #2A241A;
  --ink-3:     #5A5040;
  --muted:     #8A8275;
  --muted-2:   #B5AE9F;

  --gold:      #A8853A;
  --gold-2:    #876924;
  --gold-soft: #E5D29E;
  --gold-tint: rgba(168, 133, 58, 0.10);
  --gold-edge: rgba(168, 133, 58, 0.32);

  --graphite:  #111111;
  --graphite-2:#1A1A1A;

  --line:      rgba(17, 17, 17, 0.10);
  --line-2:    rgba(17, 17, 17, 0.06);

  /* type */
  --f-body:    "Manrope", -apple-system, system-ui, "Segoe UI", sans-serif;
  --f-ui:      "Inter", -apple-system, system-ui, "Segoe UI", sans-serif;

  /* shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* shadows — soft, premium */
  --shadow-sm: 0 1px 2px rgba(17,17,17,0.04), 0 1px 1px rgba(17,17,17,0.02);
  --shadow-md: 0 6px 24px rgba(17,17,17,0.06), 0 2px 6px rgba(17,17,17,0.04);
  --shadow-lg: 0 24px 56px rgba(17,17,17,0.10), 0 6px 18px rgba(17,17,17,0.04);
  --shadow-gold: 0 18px 42px rgba(168,133,58,0.24);

  /* rhythm */
  --pad-x:     22px;
  --pad-y:     72px;
  --pad-y-sm:  44px;
  --container: 1180px;
  --gap:       28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;        /* нет горизонтального выезда / тёмной полосы справа */
  max-width: 100%;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }

/* type */
h1, h2, h3, h4 {
  font-family: var(--f-ui);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 5.2vw, 64px); line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.2; }

p  { margin: 0; color: var(--ink-2); }
.lede {
  color: var(--ink-3);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  max-width: 56ch;
  text-wrap: pretty;
}
.dim { color: var(--muted); }

.eyebrow {
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.is-light { color: var(--gold-soft); }
.eyebrow.is-light::before { background: var(--gold); }

.kicker {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
}
.section {
  padding-top: var(--pad-y);
  padding-bottom: var(--pad-y);
  position: relative;
}
.section.is-dark {
  background: var(--graphite);
  color: #ECEAE3;
}
.section.is-dark h2,
.section.is-dark h3 { color: #FAF6EA; }
.section.is-dark .lede { color: #C7C2B4; }
.section.is-dark .dim { color: #807A6C; }

.stack { display: flex; flex-direction: column; gap: var(--gap); }
.stack-sm { display: flex; flex-direction: column; gap: 14px; }
.stack-xs { display: flex; flex-direction: column; gap: 10px; }
.row { display: flex; align-items: center; gap: 12px; }
.spacer { flex: 1; }

/* ───── topbar ───── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #F0DBA0, var(--gold) 50%, #8B6F2E 100%);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(17,17,17,0.10) inset,
    0 4px 10px rgba(200,162,74,0.30);
  flex: 0 0 auto;
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 5px;
  border-radius: 50%;
  border: 0.5px solid rgba(17,17,17,0.20);
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name {
  font-family: var(--f-ui);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  font-weight: 500;
}
.top-cta {
  display: none;
}
@media (min-width: 720px) {
  .top-cta { display: inline-flex; }
}

/* ───── buttons ───── */
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 26px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #D6B260 0%, var(--gold) 55%, #A88638 100%);
  color: #1A1408;
  box-shadow:
    0 1px 0 rgba(255,243,205,0.6) inset,
    0 0 0 1px rgba(120,92,30,0.18) inset,
    var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -40%;
  width: 30%;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  animation: btnShimmer 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShimmer {
  0%   { left: -40%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,243,205,0.7) inset,
    0 0 0 1px rgba(120,92,30,0.20) inset,
    0 22px 50px rgba(200,162,74,0.32);
}
.btn-primary:active { transform: translateY(0); }
.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(17,17,17,0.18);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}
.btn-block { width: 100%; }
.btn-arrow { transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: var(--shadow-sm) !important;
}

/* ───── HERO ───── */
.hero {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 0% -20%, rgba(168,133,58,0.10), transparent 60%),
    radial-gradient(700px 400px at 110% 30%, rgba(168,133,58,0.05), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
  }
  /* На десктопе визуал слева, текст справа — отличается от классической схемы */
  .hero-grid > *:first-child { order: 2; }
  .hero-grid > *:last-child  { order: 1; }
}
.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, var(--gold), var(--gold-2) 60%, #8B6F2E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-trust {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-top: 8px;
}
.hero-trust .chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  background: #fff;
}
.hero-trust .chip .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-cta-row {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta-row .meta {
  font-family: var(--f-ui);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* hero visual — gold bullion plate (square editorial frame) */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #FFFCF4, #EFE9D8);
  border: 1px solid var(--gold-edge);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(17,17,17,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-visual .label-tl,
.hero-visual .label-tr,
.hero-visual .label-bl,
.hero-visual .label-br {
  position: absolute;
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}
.hero-visual .label-tl { top: 24px; left: 24px; }
.hero-visual .label-tr { top: 24px; right: 24px; text-align: right; }
.hero-visual .label-bl { bottom: 24px; left: 24px; }
.hero-visual .label-br { bottom: 24px; right: 24px; text-align: right; }
.hero-visual .corner {
  position: absolute;
  width: 14px; height: 14px;
}
.hero-visual .corner.tl { top: 14px; left: 14px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.hero-visual .corner.tr { top: 14px; right: 14px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.hero-visual .corner.bl { bottom: 14px; left: 14px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.hero-visual .corner.br { bottom: 14px; right: 14px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }

/* stacked bullion bars — premium feel */
.bullion-stack {
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 72%;
  aspect-ratio: 1.1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: bullionFloat 7s ease-in-out infinite;
}
@keyframes bullionFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 6px)); }
}
.bullion-bar {
  display: block;
  width: 78%;
  height: 22%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #F5DA9A 0%, #D8B45E 30%, #B98E36 60%, #E3C474 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,243,205,0.7),
    inset 0 -3px 8px rgba(94, 67, 14, 0.35),
    0 12px 32px rgba(167, 130, 50, 0.32);
  position: relative;
}
.bullion-bar::before {
  content: "";
  position: absolute; inset: 5px;
  border-radius: 6px;
  border: 1px solid rgba(94, 67, 14, 0.22);
}
.bullion-bar.b1 {
  width: 86%;
  z-index: 3;
}
.bullion-bar.b1::after {
  content: "AU · 999.9";
  position: absolute;
  left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: clamp(13px, 1.8vw, 17px);
  letter-spacing: 0.14em;
  color: rgba(60, 42, 8, 0.55);
}
.bullion-bar.b2 {
  width: 72%;
  z-index: 2;
  opacity: 0.92;
}
.bullion-bar.b3 {
  width: 58%;
  z-index: 1;
  opacity: 0.82;
}

/* hero meta row */
.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--f-ui);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  font-weight: 500;
}
.meta-dot {
  width: 4px; height: 4px;
  background: var(--muted-2);
  border-radius: 50%;
  display: inline-block;
}

/* ───── WHY GOLD (block 2) — cards ───── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 620px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(180deg, var(--gold-edge), transparent 60%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-edge);
}
.why-card:hover::before { opacity: 1; }
.why-card:hover .ico {
  background: var(--gold);
  color: #1A1408;
}
.why-card .ico {
  transition: background .25s ease, color .25s ease;
}
.why-card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
}
.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.why-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
}
.why-card .num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--muted-2);
  font-weight: 500;
}

/* ───── INFO BLOCK ───── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 880px) {
  .info-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }
}
.info-list {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.info-list .row-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  align-items: start;
}
.info-list .row-item .n {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  padding-top: 3px;
}
.info-list .row-item .ttl {
  font-family: var(--f-ui);
  font-size: 17px;
  font-weight: 600;
  color: #FAF6EA;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.info-list .row-item .sub {
  font-size: 14.5px;
  color: #B5B0A2;
  line-height: 1.55;
}

.info-note {
  display: flex; gap: 14px;
  padding: 20px 22px;
  background: rgba(200, 162, 74, 0.08);
  border: 1px solid rgba(200, 162, 74, 0.22);
  border-radius: var(--r-md);
  font-size: 14px;
  color: #DAD3C0;
  line-height: 1.55;
  margin-top: 8px;
}
.info-note .info-icon {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  margin-top: 1px;
}

/* ───── QUIZ INVITE (block 4 preview) ───── */
.quiz-invite {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: 36px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFAF7 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
@media (min-width: 880px) {
  .quiz-invite {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 48px;
    gap: 56px;
  }
}
.quiz-invite .preview {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.quiz-invite .preview .progress {
  height: 4px;
  background: rgba(17,17,17,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}
.quiz-invite .preview .progress > i {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  animation: progPulse 3.6s ease-in-out infinite;
}
@keyframes progPulse {
  0%   { width: 12%; }
  50%  { width: 75%; }
  100% { width: 12%; }
}
.quiz-invite .preview .pq {
  font-family: var(--f-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.quiz-invite .preview .po {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--f-ui);
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.quiz-invite .preview .po.is-on {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(200,162,74,0.07), rgba(200,162,74,0));
}
.quiz-invite .preview .po .radio {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex: 0 0 auto;
  position: relative;
}
.quiz-invite .preview .po.is-on .radio {
  border-color: var(--gold);
}
.quiz-invite .preview .po.is-on .radio::after {
  content: "";
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}

/* ───── STRONG CTA (block 5) ───── */
.strong-cta {
  position: relative;
  background: var(--graphite);
  color: #FAF6EA;
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px);
  overflow: hidden;
}
.strong-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 320px at 100% 0%, rgba(200,162,74,0.18), transparent 60%),
    radial-gradient(500px 280px at 0% 100%, rgba(200,162,74,0.08), transparent 60%);
  pointer-events: none;
}
.strong-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
}
@media (min-width: 820px) {
  .strong-cta-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
}
.strong-cta h2 { color: #FAF6EA; }
.strong-cta .lede { color: #C7C2B4; max-width: 50ch; }
.strong-cta-features {
  display: flex; flex-direction: column; gap: 14px;
}
.strong-cta-features .feat {
  display: flex; gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: #DAD3C0;
  line-height: 1.5;
}
.strong-cta-features .feat .tick {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #1A1408;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ───── FORM (block 6) ───── */
.form-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
  display: flex; flex-direction: column; gap: 16px;
  color: var(--ink);
}
.form-card .form-title {
  font-family: var(--f-ui);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.form-card .form-sub {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
  margin-top: -10px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field-lbl {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field input {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,74,0.15);
}
.field.is-error input { border-color: #C4503A; }
.field.is-error input:focus { box-shadow: 0 0 0 3px rgba(196,80,58,0.15); }
.field-err {
  font-size: 12px;
  color: #C4503A;
}

.consent-note {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}
.consent-note a {
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.consent-note a:hover { color: var(--ink); border-color: var(--ink); }

/* ───── DISCLAIMER strip ───── */
.disclaimer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.disclaimer-inner {
  display: flex; gap: 18px;
  padding: 28px 0;
  align-items: flex-start;
}
.disclaimer .icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  margin-top: 2px;
}
.disclaimer .text {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.6;
}
.disclaimer .text strong {
  color: var(--ink);
  font-weight: 600;
}

/* ───── FOOTER ───── */
.footer {
  background: var(--graphite);
  color: #C7C2B4;
  padding: 56px 0 24px;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
@media (min-width: 820px) {
  .footer .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 56px;
  }
}
.footer h4 {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #B5B0A2;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer .brand-name { color: #FAF6EA; }
.footer .brand-sub { color: #8A8270; }
.footer .footer-narr {
  font-size: 13.5px;
  color: #B5B0A2;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 36ch;
}
.footer ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer ul a {
  color: #DAD3C0;
  text-decoration: none;
  font-size: 14px;
  transition: color .15s;
}
.footer ul a:hover { color: var(--gold); }
.footer .contact-row {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
}
.footer .contact-row span.k {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8A8270;
  font-weight: 500;
  margin-bottom: 2px;
}
.footer .contact-row a {
  color: #FAF6EA;
  text-decoration: none;
  border-bottom: 1px solid rgba(250,246,234,0.18);
  align-self: flex-start;
}
.footer .contact-row a:hover { color: var(--gold); border-color: var(--gold); }

.footer .footer-discl {
  font-size: 12.5px;
  color: #908A7C;
  line-height: 1.65;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .footer-discl strong {
  color: #C7C2B4;
  font-weight: 600;
}
.footer .footer-bottom {
  display: flex; gap: 18px;
  align-items: center; justify-content: space-between;
  padding-top: 22px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #8A8270;
}
.footer .footer-bottom .legal-id {
  letter-spacing: 0.04em;
}

/* ───── QUIZ OVERLAY ───── */
.quiz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex; align-items: stretch; justify-content: center;
  animation: ovIn .25s ease;
}
@keyframes ovIn { from { opacity: 0; } to { opacity: 1; } }
.quiz-frame {
  width: 100%;
  max-width: 560px;
  margin: auto;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: 0 40px 80px rgba(0,0,0,0.30);
  display: flex; flex-direction: column;
  overflow: hidden;
  max-height: calc(100vh - 32px);
  animation: framePop .35s cubic-bezier(.2,.7,.2,1);
}
@media (max-width: 600px) {
  .quiz-overlay { padding: 0; }
  .quiz-frame {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    margin: 0;
  }
}
@keyframes framePop {
  from { transform: translateY(16px); opacity: 0.6; }
  to   { transform: translateY(0); opacity: 1; }
}
.quiz-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-2);
}
.quiz-progress {
  flex: 1;
  height: 4px;
  background: rgba(17,17,17,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.quiz-step-num {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}
.quiz-close {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  color: var(--muted); width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  transition: all .15s;
}
.quiz-close:hover { color: var(--ink); background: rgba(17,17,17,0.05); }

.quiz-body {
  flex: 1;
  padding: 32px 26px 24px;
  display: flex; flex-direction: column; gap: 24px;
  overflow-y: auto;
  animation: stepIn .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quiz-q-eyebrow {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
}
.quiz-q-title {
  font-family: var(--f-ui);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  appearance: none;
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  color: var(--ink-2);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: center;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.quiz-opt:hover {
  border-color: var(--gold-2);
  transform: translateX(2px);
}
.quiz-opt[aria-checked="true"] {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(200,162,74,0.08), rgba(200,162,74,0));
  color: var(--ink);
}
.quiz-opt .radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  position: relative;
  flex: 0 0 auto;
  transition: border-color .15s;
}
.quiz-opt[aria-checked="true"] .radio { border-color: var(--gold); }
.quiz-opt[aria-checked="true"] .radio::after {
  content: "";
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
}

.quiz-foot {
  padding: 18px 22px calc(env(safe-area-inset-bottom, 0px) + 18px);
  border-top: 1px solid var(--line-2);
  display: flex; gap: 10px;
  background: #fff;
}
.quiz-foot .btn { flex: 1; }
.btn-back {
  flex: 0 0 52px !important;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-3);
  padding: 14px;
}
.btn-back:hover { border-color: var(--ink); color: var(--ink); }

/* quiz form step */
.quiz-form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
}

/* success state inside quiz */
.success {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 48px 32px;
  gap: 20px;
}
.success .seal {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold) 60%, var(--gold-2));
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 14px 36px rgba(200,162,74,0.30);
  animation: sealIn .55s cubic-bezier(.34,1.56,.64,1);
}
@keyframes sealIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* privacy modal */
.pp-backdrop {
  position: fixed; inset: 0;
  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: ovIn .2s ease;
}
.pp-sheet {
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  background: #fff;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: framePop .3s cubic-bezier(.2,.7,.2,1);
}
.pp-head {
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--line-2);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
}
.pp-head h3 {
  font-family: var(--f-ui);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
}
.pp-body {
  padding: 20px 24px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.pp-body h4 {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin: 6px 0 -4px;
}
.pp-body p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}
.pp-list {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
}
.pp-list li::marker { color: var(--gold); }
.pp-foot {
  padding: 16px 24px calc(env(safe-area-inset-bottom, 0px) + 16px);
  border-top: 1px solid var(--line-2);
}

/* sticky CTA */
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 30;
  padding: 14px var(--pad-x) calc(env(safe-area-inset-bottom, 0px) + 14px);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.85) 35%, #fff 100%);
  display: flex; justify-content: center;
  pointer-events: none;
}
.sticky-cta .btn {
  pointer-events: auto;
  box-shadow:
    0 1px 0 rgba(255,243,205,0.7) inset,
    0 0 0 1px rgba(120,92,30,0.20) inset,
    0 12px 30px rgba(200,162,74,0.28),
    0 0 0 8px rgba(255,255,255,0.4);
}
@media (min-width: 760px) {
  .sticky-cta { display: none; }
}

/* reveal anim helpers */
.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.fade-up.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .bullion, .quiz-invite .preview .progress > i { animation: none !important; }
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ───── inline-опрос внутри Strong CTA (тёмный фон) ───── */
.cta-quiz {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.cta-quiz-q {
  border: 0;
  margin: 0;
  padding: 0;
}
.cta-quiz-q legend {
  display: block;
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 600;
  color: #FAF6EA;
  margin-bottom: 10px;
  padding: 0;
  letter-spacing: -0.005em;
}
.cta-quiz-n {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-right: 10px;
}
.cta-quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cqo {
  position: relative;
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #DAD3C0;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 500;
  transition: border-color .15s, background .15s, color .15s;
}
.cqo:hover {
  border-color: var(--gold);
  color: #FAF6EA;
}
.cqo input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
}
.cqo:has(input:checked) {
  background: var(--gold-tint);
  border-color: var(--gold);
  color: var(--gold-soft);
}
.cqo:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ───── консент-плейн ─── используем native checkbox ───── */
.consent-note { line-height: 1.55; }
.consent-note a {
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.consent-note a:hover { color: var(--ink); border-color: var(--ink); }

/* ═══════════ Узкие экраны (iPhone SE / 12 / 13 mini ≤430px) ═══════════ */
@media (max-width: 430px) {
  :root { --pad-x: 16px; }

  /* кнопки — компактнее, не вылезают за край */
  .btn { padding: 14px 18px; font-size: 14px; gap: 8px; }
  .btn-sm { padding: 9px 14px; font-size: 12.5px; }

  /* CTA-ряды — в столбик, кнопки на всю ширину (главный фикс «съезжания») */
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta-row .btn { width: 100%; }
  .hero-cta-row .meta { text-align: center; }
  .hero-meta-row { gap: 8px; }

  /* тёмный CTA-блок и карточки — меньше внутренние отступы */
  .strong-cta { padding: 24px 18px; }
  .why-card { padding: 22px 18px; }
  .form-card { padding: 22px 18px; }

  /* квиз-оверлей — кнопки подвала не разъезжаются */
  .quiz-body { padding: 26px 18px 20px; }
  .quiz-head { padding: 16px 18px; }
  .quiz-foot { padding: 14px 18px calc(env(safe-area-inset-bottom, 0px) + 14px); gap: 8px; }
  .quiz-foot .btn { font-size: 14px; padding: 13px 10px; }
  .btn-back { flex: 0 0 46px !important; padding: 13px; }
  .quiz-q-title { font-size: 21px; }
  .quiz-invite { padding: 24px 18px; }

  /* мобильная плавающая кнопка — на всю ширину */
  .sticky-cta .btn { width: 100%; }
}

/* очень узкие (≤340px) */
@media (max-width: 340px) {
  .btn { padding: 13px 14px; font-size: 13.5px; }
  h1 { font-size: 30px; }
}
