/* ============================================================
   AUTOBODY — layout & components
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  letter-spacing: var(--head-spacing);
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.eyebrow {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-head);
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  border: 0; cursor: pointer;
  padding: 16px 26px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 14px 30px -12px var(--accent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -14px var(--accent); }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--fg); transform: translateY(-2px); }
.btn-lg { padding: 19px 34px; font-size: 17px; }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 26px; width: auto; display: block; }
.logo-on-light { display: none; }
:root[data-vibe="light"] .logo-on-dark { display: none; }
:root[data-vibe="light"] .logo-on-light { display: block; }
.foot .logo-img { height: 34px; }
.nav-links { display: flex; gap: 34px; }
.nav-links a { font-size: 15px; color: var(--fg-dim); font-weight: 500; transition: color .18s; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-mob-cta { display: none; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 9px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--fg); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
:root[data-vibe="bold"] .nav-toggle { border-radius: 4px; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: 150px; padding-bottom: 80px; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(var(--grid-dot) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: radial-gradient(120% 90% at 60% 0%, #000 30%, transparent 75%);
}
.hero-glow {
  position: absolute; z-index: 0; width: 900px; height: 900px; border-radius: 50%;
  right: -240px; top: -260px; pointer-events: none;
  background: radial-gradient(circle, var(--accent) 0%, transparent 62%);
  opacity: var(--hero-glow); filter: blur(30px);
  mix-blend-mode: screen;
}
:root[data-vibe="light"] .hero-glow { mix-blend-mode: normal; opacity: .22; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 12px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.badge s { color: var(--fg-faint); text-decoration-color: var(--warn); }

.hero h1 { font-size: clamp(40px, 6vw, 78px); margin: 26px 0 0; }
.hero h1 .hl { color: var(--accent); }
.hero-sub { font-size: clamp(17px, 1.5vw, 20px); color: var(--fg-dim); max-width: 30ch; margin-top: 22px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-price { margin-top: 26px; font-size: 15px; color: var(--fg-dim); display: flex; align-items: center; flex-wrap: wrap; gap: 4px 8px; }
.hero-price b { font-family: var(--font-head); color: var(--fg); font-size: 17px; white-space: nowrap; }

/* hero visual / 3D slot */
.hero-visual { position: relative; aspect-ratio: 1 / 0.92; }
.hero-visual .ring {
  position: absolute; inset: 6% 2%; border-radius: 50%;
  border: 1px dashed var(--line-strong);
  background: radial-gradient(circle at 50% 60%, var(--accent-soft), transparent 60%);
}
.slot-3d {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius);
}
.slot-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 5;
  font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg-faint); background: color-mix(in srgb, var(--bg) 70%, transparent);
  padding: 5px 10px; border-radius: 8px; border: 1px solid var(--line); pointer-events: none;
}
.hero-spec {
  position: absolute; z-index: 6; background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 15px; box-shadow: var(--shadow);
  font-size: 13px; display: flex; align-items: center; gap: 11px;
}
.hero-spec .k { font-family: var(--font-head); font-weight: 800; font-size: 19px; }
.hero-spec.s1 { top: 12%; left: -6%; }
.hero-spec.s2 { bottom: 14%; right: -4%; }
.hero-spec .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }

/* ---------- stat strip ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 70px; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 0; text-align: left; border-left: 1px solid var(--line); padding-left: 26px; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.03em; line-height: 1; }
.stats-3 .stats-inner { grid-template-columns: repeat(3, 1fr); }
.stat .lbl { color: var(--fg-dim); font-size: 14px; margin-top: 8px; }

/* ---------- section frame ---------- */
section { position: relative; }
section[id], header[id] { scroll-margin-top: 88px; }
.sec { padding: clamp(70px, 9vw, 130px) 0; }
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(32px, 4.4vw, 58px); margin-top: 18px; }
.sec-head p { color: var(--fg-dim); font-size: 18px; margin-top: 18px; }

/* ---------- comparison ---------- */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; position: relative; }
.vs-badge {
  position: absolute; left: 50%; top: 50%; margin: -32px 0 0 -32px; z-index: 5;
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg); border: 1px solid var(--line-strong);
  font-family: var(--font-head); font-weight: 800; font-size: 18px; box-shadow: var(--shadow);
}
.col { border-radius: var(--radius); padding: 34px; border: 1px solid var(--line); }
.col.kasko { background: var(--surface); }
.col.us { background: linear-gradient(180deg, var(--accent-soft), transparent 60%), var(--surface); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.col-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.col h3 { font-size: 24px; }
.col .price-tag { font-family: var(--font-head); font-weight: 800; font-size: 16px; }
.col.kasko .price-tag { color: var(--warn); }
.col.us .price-tag { color: var(--accent); }
.col .sub { color: var(--fg-dim); font-size: 14px; margin-bottom: 22px; }
.feat { display: flex; gap: 13px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px; align-items: flex-start; }
.feat .fic { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; margin-top: 1px; }
.col.kasko .fic { background: color-mix(in srgb, var(--warn) 18%, transparent); color: var(--warn); }
.col.us .fic { background: var(--accent); color: var(--accent-ink); }
.feat b { font-weight: 700; }

/* ---------- benefits ---------- */
.bens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ben {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .25s ease, border-color .25s ease, background .25s;
  position: relative; overflow: hidden;
}
.ben:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.ben-ic {
  display: block; width: 120px; height: 120px; margin: 4px auto 16px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .45));
}
.ben h3 { font-size: 21px; }
.ben p { color: var(--fg-dim); font-size: 15px; margin-top: 10px; }
.ben .idx { position: absolute; top: 22px; right: 24px; font-family: var(--font-head); font-weight: 800; color: var(--fg-faint); font-size: 14px; }

/* ---------- pricing + calculator ---------- */
.calc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px); margin-bottom: 38px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.calc h3 { font-size: clamp(24px, 2.6vw, 34px); }
.calc .hint { color: var(--fg-dim); font-size: 15px; margin: 12px 0 28px; }
.calc-field label { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--fg-dim); display: flex; justify-content: space-between; }
.calc-field label b { color: var(--fg); font-size: 18px; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: var(--surface-2); margin-top: 16px; outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 4px solid var(--bg); box-shadow: 0 0 0 1px var(--accent); transition: transform .12s; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 4px solid var(--bg); }
.calc-scale { display: flex; justify-content: space-between; color: var(--fg-faint); font-size: 12px; margin-top: 10px; }
.calc-out { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px; text-align: center; }
.calc-out .reco { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.calc-out .save { font-family: var(--font-head); font-weight: 800; font-size: clamp(38px, 6vw, 60px); line-height: 1; margin: 12px 0 4px; letter-spacing: -0.04em; }
.calc-out .save .suf { font-size: 0.34em; color: var(--fg-dim); display: block; margin-top: 6px; letter-spacing: 0; }
.calc-out .vs-line { color: var(--fg-dim); font-size: 14px; margin-top: 10px; }
.calc-out .vs-line s { color: var(--fg-faint); }
.calc-out .vs-line b { color: var(--fg); }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tier {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; transition: transform .25s, border-color .25s;
}
.tier:hover { transform: translateY(-6px); }
.tier.feat-tier { border-color: var(--accent); box-shadow: 0 30px 70px -40px var(--accent); }
.tier-flag { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 5px 12px; border-radius: 100px; align-self: flex-start; margin-bottom: 14px; }
.tier .kind { font-family: var(--font-head); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-dim); }
.tier .name { font-family: var(--font-head); font-weight: 800; font-size: 30px; margin: 2px 0 6px; }
.tier .desc { color: var(--fg-dim); font-size: 14px; min-height: 42px; }
.tier .cost { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 2px; }
.tier .cost .big { font-family: var(--font-head); font-weight: 800; font-size: 40px; letter-spacing: -0.03em; }
.tier .cost .per { color: var(--fg-dim); font-size: 14px; }
.tier .mo { color: var(--fg-faint); font-size: 13px; margin-bottom: 22px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; }
.tier li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; color: var(--fg-dim); }
.tier li .ck { color: var(--accent); flex: none; margin-top: 2px; }
.tier li b { color: var(--fg); font-weight: 600; }
.tier .btn { width: 100%; justify-content: center; margin-top: auto; }
.tier:not(.feat-tier) .btn { background: var(--surface-2); color: var(--fg); }
.tier:not(.feat-tier) .btn:hover { background: var(--surface-2); border-color: var(--fg); transform: translateY(-2px); }
.note { color: var(--fg-faint); font-size: 13px; margin-top: 20px; text-align: center; }

/* ---------- footer cta ---------- */
.foot { border-top: 1px solid var(--line); padding: clamp(60px,8vw,100px) 0 50px; }
.foot-cta { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.foot-cta h2 { font-size: clamp(30px, 4.4vw, 56px); }
.foot-cta p { color: var(--fg-dim); font-size: 18px; margin: 18px 0 32px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--fg-dim); font-size: 14px; border-top: 1px solid var(--line); padding-top: 30px; }
.foot-bottom .logo { color: var(--fg); }
.foot-links { display: flex; gap: 22px; }

/* ---------- reveal anim ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; } .reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; } .reveal.d5 { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 10px auto 0; }
  .hero-spec.s1 { left: 0; } .hero-spec.s2 { right: 0; }
  .vs { display: flex; flex-direction: column; }
  .vs-badge { position: relative; left: auto; top: auto; margin: -12px auto; order: 1; }
  .col.kasko { order: 0; }
  .col.us { order: 2; }
  .bens { grid-template-columns: repeat(2, 1fr); }
  .calc, .tiers { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--line);
    padding: 4px var(--gut) 14px;
    opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav.open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 13px 2px; border-bottom: 1px solid var(--line); font-size: 16px; color: var(--fg); }
  .nav-links a:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: 0 !important; padding-left: 0 !important; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .bens { grid-template-columns: 1fr; }
  .trust-sep { display: none; }
  /* declutter the header on phones: logo + burger only, CTA moves into the menu */
  .nav-cta > .btn { display: none; }
  .nav-mob-cta { display: inline-flex; width: 100%; justify-content: center; margin-top: 12px; }
}

/* ============================================================
   VIBE-SPECIFIC CHARACTER
   garage = soft premium dark · bold = sharp brutalist loud
   ============================================================ */

/* ---- GARAGE: refined, warm, rounded ---- */
:root[data-vibe="garage"] .hero h1 .hl,
:root[data-vibe="garage"] .stat .num { text-shadow: 0 0 40px var(--accent-soft); }
:root[data-vibe="garage"] .ben,
:root[data-vibe="garage"] .tier,
:root[data-vibe="garage"] .col,
:root[data-vibe="garage"] .calc { backdrop-filter: blur(2px); }

/* ---- BOLD: brutalist, sharp corners, UPPERCASE, accent-loud ---- */
:root[data-vibe="bold"] {
  --radius: 4px;
  --radius-sm: 4px;
}
:root[data-vibe="bold"] .logo { text-transform: uppercase; }
:root[data-vibe="bold"] h1,
:root[data-vibe="bold"] h2,
:root[data-vibe="bold"] .name { text-transform: uppercase !important; }
:root[data-vibe="bold"] .hero h1 { font-size: clamp(44px, 7.2vw, 92px); line-height: 0.92; }
:root[data-vibe="bold"] .sec-head h2 { font-size: clamp(36px, 5.4vw, 70px); }
:root[data-vibe="bold"] .btn { border-radius: 4px !important; }
:root[data-vibe="bold"] .badge { border-radius: 4px; border-width: 2px; border-color: var(--fg); }
:root[data-vibe="bold"] .tier-flag { border-radius: 0; }

/* loud accent on key surfaces */
:root[data-vibe="bold"] .hero-glow { filter: blur(10px); }
:root[data-vibe="bold"] .stat .num { color: var(--accent); }
:root[data-vibe="bold"] .vs-badge { background: var(--accent); color: var(--accent-ink); border: 0; border-radius: 4px; transform: rotate(-6deg); }
:root[data-vibe="bold"] .eyebrow::before { width: 40px; height: 4px; }
:root[data-vibe="bold"] .eyebrow { font-size: 14px; }

/* hard borders instead of soft cards */
:root[data-vibe="bold"] .ben,
:root[data-vibe="bold"] .tier,
:root[data-vibe="bold"] .col,
:root[data-vibe="bold"] .calc,
:root[data-vibe="bold"] .calc-out { border-width: 2px; }
:root[data-vibe="bold"] .ben:hover { border-color: var(--accent); transform: translateY(-6px); }
:root[data-vibe="bold"] .col.us { border-width: 2px; border-color: var(--accent); }
:root[data-vibe="bold"] .tier.feat-tier { border-width: 3px; box-shadow: 14px 14px 0 -2px var(--accent); }
:root[data-vibe="bold"] .feat .fic { border-radius: 3px; }
:root[data-vibe="bold"] .hero-spec,
:root[data-vibe="bold"] .hero-spec .ic,
:root[data-vibe="bold"] .logo .mark { border-radius: 4px; }

/* ============================================================
   VIBE: PREMIUM — продающий дорогой (luxury automotive)
   warm graphite + champagne-gold hairlines, glass sheen,
   refined type, soft golden glows
   ============================================================ */
:root[data-vibe="premium"] {
  --radius: 24px;
  --radius-sm: 16px;
}
/* warm ambient wash over the whole page */
:root[data-vibe="premium"] body {
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(216,196,154,0.10), transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(216,196,154,0.05), transparent 60%),
    var(--bg);
}
/* champagne shimmer on the headline highlight */
:root[data-vibe="premium"] .hero h1 .hl {
  color: transparent;
  background: linear-gradient(100deg, var(--champagne) 0%, #FBF3E0 45%, var(--champagne) 100%);
  -webkit-background-clip: text; background-clip: text;
}
:root[data-vibe="premium"] .eyebrow { color: var(--champagne); letter-spacing: 0.26em; }
:root[data-vibe="premium"] .eyebrow::before { background: var(--champagne); }

/* glass surfaces with a fine top sheen + warm hairline */
:root[data-vibe="premium"] .ben,
:root[data-vibe="premium"] .tier,
:root[data-vibe="premium"] .col,
:root[data-vibe="premium"] .calc,
:root[data-vibe="premium"] .calc-out,
:root[data-vibe="premium"] .fig,
:root[data-vibe="premium"] .reel {
  background-image: linear-gradient(180deg, rgba(216,196,154,0.07), transparent 40%);
  border-color: var(--line);
  backdrop-filter: blur(4px);
}
:root[data-vibe="premium"] .ben { position: relative; }
:root[data-vibe="premium"] .ben::before,
:root[data-vibe="premium"] .tier::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: .5;
}
:root[data-vibe="premium"] .ben:hover { border-color: var(--line-strong); transform: translateY(-6px); }

/* featured tier glows gold instead of accent */
:root[data-vibe="premium"] .tier.feat-tier {
  border-color: var(--champagne);
  box-shadow: 0 40px 90px -44px rgba(216,196,154,0.55);
}
:root[data-vibe="premium"] .tier-flag {
  background: linear-gradient(100deg, var(--champagne), #EBDCB8);
  color: #1A1206;
}

/* refined badges, chips, dividers */
:root[data-vibe="premium"] .badge { border-color: var(--line-strong); background: rgba(22,19,15,0.7); backdrop-filter: blur(6px); }
:root[data-vibe="premium"] .hero-spec { background-image: linear-gradient(180deg, rgba(216,196,154,0.08), transparent); }
:root[data-vibe="premium"] .hero-spec .ic { background: rgba(216,196,154,0.14); color: var(--champagne); }
:root[data-vibe="premium"] .vs-badge { background: var(--surface); border-color: var(--champagne); color: var(--champagne); }
:root[data-vibe="premium"] .ring { border-color: rgba(216,196,154,0.28); }
:root[data-vibe="premium"] .stat .num { background: linear-gradient(180deg, var(--fg), var(--champagne)); -webkit-background-clip: text; background-clip: text; color: transparent; }
:root[data-vibe="premium"] .faq-item.open .faq-ic,
:root[data-vibe="premium"] .nav.scrolled { border-bottom-color: var(--line-strong); }
:root[data-vibe="premium"] .slot-tag { border-color: var(--line-strong); }

/* ============================================================
   KASKO VIDEO SECTION
   ============================================================ */
.kasko { background: var(--surface); border-block: 1px solid var(--line); }
.kasko-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.reel {
  position: relative; width: 100%; max-width: 340px; aspect-ratio: 9 / 16;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); background: #000; justify-self: center;
}
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel .reel-tag {
  position: absolute; top: 14px; left: 14px; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: color-mix(in srgb, #000 55%, transparent); color: #fff; padding: 7px 12px; border-radius: 100px; backdrop-filter: blur(6px);
}
.reel .reel-tag .lv { width: 7px; height: 7px; border-radius: 50%; background: var(--warn); box-shadow: 0 0 0 4px color-mix(in srgb, var(--warn) 35%, transparent); }
.kasko-copy h2 { font-size: clamp(30px, 4vw, 52px); }
.kasko-copy .lead { color: var(--fg-dim); font-size: 18px; margin-top: 18px; max-width: 52ch; }
.kasko-figs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.fig { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; background: var(--bg-2); }
.fig .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.03em; line-height: 1; white-space: nowrap; }
.fig.bad .n { color: var(--warn); }
.fig .t { color: var(--fg-dim); font-size: 13px; margin-top: 8px; }

/* ============================================================
   WORKSHOP GALLERY
   ============================================================ */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; }
.gal-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius-sm); border: 1px solid var(--line); position: relative; background: var(--surface); }
.gal-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gal-grid figure:hover img { transform: scale(1.06); }
.gal-grid figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px;
  font-size: 13px; color: #fff; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
.gal-grid figure:hover figcaption { opacity: 1; transform: none; }
.gal-grid .c2 { grid-column: span 2; }
.gal-grid .r2 { grid-row: span 2; }
@media (max-width: 760px) {
  .kasko-inner { grid-template-columns: 1fr; }
  .reel { max-width: 280px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; gap: 10px; }
  .gal-grid figure { aspect-ratio: 1 / 1; }
  .gal-grid .c2 { grid-column: auto; }
  .gal-grid .r2 { grid-row: auto; }
  .gal-grid figure:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .kasko-figs { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-inner { display: grid; grid-template-columns: 0.66fr 1.34fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.faq-head { position: sticky; top: 110px; }
.faq-head h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 16px; }
.faq-head p { color: var(--fg-dim); font-size: 16px; margin-top: 16px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; color: var(--fg);
  font-family: var(--font-head); font-weight: 700; font-size: clamp(17px, 1.7vw, 21px); letter-spacing: -0.01em;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-ic {
  flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; font-size: 22px; font-weight: 400; line-height: 1;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, border-color .25s;
}
.faq-item.open .faq-ic { transform: rotate(135deg); background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.7,.2,1); }
.faq-a-inner { padding: 0 56px 26px 4px; color: var(--fg-dim); font-size: 16px; line-height: 1.6; }
.faq-a-inner b { color: var(--fg); font-weight: 600; }
@media (max-width: 760px) {
  .faq-inner { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .faq-a-inner { padding-right: 12px; }
}
