/* ============================================================
   GRIPR v2 — Art-directed editorial e-commerce
   Direction: precision tool meets climbing brand.
   Bone paper · ink · orange-roche · grain · blueprint.
   ============================================================ */

:root {
  --paper:   #E7E0D1;   /* warm bone */
  --paper-2: #DED6C4;
  --chalk:   #F4F0E6;
  --ink:     #15120D;
  --ink-2:   #1C1813;
  --ink-3:   #262019;
  --stone:   #8C8270;
  --stone-d: #6B6253;
  --accent:  #E2552B;
  --accent-d:#C8431F;
  --amber:   #E8A33D;
  --green:   #5A7D4F;

  --line:        rgba(20,18,13,0.16);
  --line-soft:   rgba(20,18,13,0.09);
  --line-dark:   rgba(244,240,230,0.14);
  --line-dark-s: rgba(244,240,230,0.07);

  --maxw: 1280px;
  --gut: 40px;

  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'Hanken Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--chalk); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 200; pointer-events: none;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- type helpers ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: 0.005em;
}
.label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}
.accent { color: var(--accent); }
.outline {
  color: transparent;
  -webkit-text-stroke: 1.6px currentColor;
}

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  mix-blend-mode: difference;
  transition: transform .5s var(--ease);
}
.hdr.hide { transform: translateY(-100%); }
.hdr-in {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; color: #fff;
}
.logo {
  font-family: var(--display); font-size: 27px; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 11px;
}
.logo .glyph {
  width: 13px; height: 22px; background: currentColor;
  clip-path: polygon(0 0, 100% 22%, 78% 100%, 22% 78%);
}
.hnav { display: flex; align-items: center; gap: 34px; }
.hnav a { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; opacity: 0.85; transition: opacity .2s; }
.hnav a:hover { opacity: 1; }
.hnav .num { font-family: var(--mono); font-size: 12px; opacity: 0.5; margin-right: 4px; }

/* fixed corner buy chip (outside difference) */
.buychip {
  position: fixed; z-index: 101; right: var(--gut); bottom: 26px;
  background: var(--accent); color: var(--chalk);
  padding: 14px 22px; border-radius: 2px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 40px -14px rgba(226,85,43,0.8);
  transform: translateY(140%); transition: transform .5s var(--ease), background .2s;
}
.buychip.show { transform: translateY(0); }
.buychip:hover { background: var(--accent-d); }
.buychip .k { font-family: var(--mono); font-size: 11px; opacity: 0.8; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-weight: 800; letter-spacing: 0.01em; font-size: 15px;
  padding: 18px 30px; border-radius: 2px;
  position: relative; overflow: hidden; white-space: nowrap;
  transition: transform .3s var(--ease);
}
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-fill { background: var(--accent); color: var(--chalk); }
.btn-fill::after {
  content: ""; position: absolute; inset: 0; background: var(--ink);
  transform: translateY(101%); transition: transform .4s var(--ease); z-index: 0;
}
.btn-fill:hover::after { transform: translateY(0); }
.btn-fill span, .btn-fill .arr { position: relative; z-index: 1; }
.btn-line {
  background: transparent; color: currentColor;
  box-shadow: inset 0 0 0 1.5px currentColor;
}
.btn-line:hover { background: currentColor; }
.btn-line:hover span, .btn-line:hover .arr { color: var(--ink); }
.btn-line span, .btn-line .arr { transition: color .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; background: var(--ink); color: var(--chalk);
  min-height: 100vh; padding: 100px 0 0; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-bg-word {
  position: absolute; bottom: -4%; left: -2%; z-index: 0;
  font-family: var(--display); font-size: 30vw; line-height: 0.7;
  color: rgba(244,240,230,0.035); text-transform: uppercase;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.hero-glow {
  position: absolute; width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,85,43,0.22), transparent 62%);
  top: -10%; right: -12%; z-index: 0; pointer-events: none;
  filter: blur(10px);
}
.hero-in {
  position: relative; z-index: 2; flex: 1;
  display: grid; grid-template-columns: 1.18fr 0.82fr; gap: 30px;
  align-items: center; padding-bottom: 40px;
}
.hero-head { font-size: clamp(58px, 9.6vw, 158px); line-height: 0.98; }
.hero-head .ln { display: block; overflow: hidden; padding-top: 0.08em; }
.hero-head .ln > span { display: block; transform: translateY(112%); }
.hero-head .ln.r > span { will-change: transform; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--accent); margin-bottom: 30px;
}
.kicker .ln-mark { width: 40px; height: 1.5px; background: var(--accent); }
.hero-sub {
  max-width: 440px; margin: 34px 0 0; font-size: 18px;
  color: rgba(244,240,230,0.72);
}
.hero-sub strong { color: var(--chalk); font-weight: 700; }
.hero-actions { display: flex; gap: 16px; align-items: center; margin-top: 34px; flex-wrap: wrap; }

/* product blueprint panel */
.bp {
  position: relative; align-self: stretch;
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--line-dark-s);
}
.bp-frame {
  position: relative; width: 100%; max-width: 380px; aspect-ratio: 3/4;
}
.bp-frame .ph { position: absolute; inset: 0; }
.bp-callouts {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible; z-index: 3;
}
.bp-callouts text {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.6px;
  fill: #F4F0E6; paint-order: stroke; stroke: rgba(0,0,0,0.6); stroke-width: 3.2px;
  text-transform: uppercase;
}
.bp-callouts text.u { fill: var(--accent); }
.bp-callouts .ln { stroke: var(--accent); stroke-width: 1; }
.bp-callouts .dot { fill: var(--accent); }
/* legacy tick rules retained below (unused) */
.bp-tick { position: absolute; }
.bp-tick .lbl {
  position: absolute; top: -6px; white-space: nowrap;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(244,240,230,0.7);
}
.bp-tick::before { content: ""; position: absolute; top: 0; height: 1px; background: var(--accent); }
.bp-tick::after { content: ""; position: absolute; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
/* LEFT-anchored: line runs right into the frame, label sits outside to the left */
.bp-tick.l { left: 0; }
.bp-tick.l::before { left: 0; }
.bp-tick.l .lbl { right: 100%; margin-right: 11px; text-align: right; }
/* RIGHT-anchored: line runs left into the frame, label sits outside to the right */
.bp-tick.r { right: 0; }
.bp-tick.r::before { right: 0; }
.bp-tick.r .lbl { left: 100%; margin-left: 11px; }
/* per-feature placement */
.bp-tick.t-mol  { top: 29%; }
.bp-tick.t-mol::before  { width: 60px; }
.bp-tick.t-mol::after   { left: 58px; }
.bp-tick.t-gach { top: 45%; }
.bp-tick.t-gach::before { width: 96px; }
.bp-tick.t-gach::after  { right: 94px; }
.bp-tick.t-grip { top: 67%; }
.bp-tick.t-grip::before { width: 82px; }
.bp-tick.t-grip::after  { left: 80px; }
.bp-corner { position: absolute; width: 14px; height: 14px; border: 1.5px solid var(--accent); }
.bp-corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.bp-corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.bp-corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.bp-corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.bp-meta {
  position: absolute; bottom: -34px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  color: rgba(244,240,230,0.4); text-transform: uppercase;
}

/* image placeholder */
.ph {
  background:
    linear-gradient(rgba(244,240,230,0.015), rgba(244,240,230,0.015)),
    repeating-linear-gradient(135deg, rgba(244,240,230,0.05) 0 11px, transparent 11px 22px),
    var(--ink-2);
  border: 1px solid var(--line-dark-s);
  display: grid; place-items: center; text-align: center; overflow: hidden;
}
.ph .ph-l {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(244,240,230,0.42);
  padding: 7px 11px; border: 1px dashed rgba(244,240,230,0.25); border-radius: 2px;
}
.ph.light {
  background:
    repeating-linear-gradient(135deg, rgba(20,18,13,0.06) 0 11px, transparent 11px 22px),
    var(--paper-2);
  border-color: var(--line-soft);
}
.ph.light .ph-l { color: var(--stone-d); border-color: var(--line); }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph.filled { border-color: transparent; background: var(--ink-2); }
.ph.light.filled { background: var(--paper-2); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--accent); color: var(--ink);
  padding: 16px 0; overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  display: flex; white-space: nowrap;
}
.marquee.dark { background: var(--ink); color: var(--chalk); border-color: var(--accent); }
.marquee-track { display: flex; align-items: center; gap: 0; animation: scroll-x 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--display); font-size: 23px; text-transform: uppercase;
  letter-spacing: 0.02em; padding: 0 26px; display: inline-flex; align-items: center; gap: 26px;
}
.marquee-track span::after { content: ""; width: 8px; height: 8px; background: currentColor; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); display: inline-block; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION FRAME
   ============================================================ */
.sec { position: relative; }
.pad { padding: 130px 0; }
.bone { background: var(--paper); color: var(--ink); }
.dark { background: var(--ink); color: var(--chalk); }

.sec-tag {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 26px;
}
.sec-tag .idx { font-family: var(--display); font-size: 15px; letter-spacing: 0; }
.sec-tag .ln-mark { flex: 1; max-width: 60px; height: 1px; background: currentColor; opacity: 0.5; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.mani-head {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(40px, 6.4vw, 104px); line-height: 0.9;
  max-width: 14ch;
}
.mani-head em { font-style: normal; color: var(--accent); }
.mani-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 60px; margin-top: 70px; align-items: end; }
.mani-lead { font-size: 21px; line-height: 1.45; color: var(--ink); max-width: 30ch; }
.pain-stack { display: flex; flex-direction: column; }
.pain-row {
  display: grid; grid-template-columns: 44px 1fr; gap: 20px;
  padding: 22px 0; border-top: 1px solid var(--line);
  align-items: start;
}
.pain-row:last-child { border-bottom: 1px solid var(--line); }
.pain-row .pn { font-family: var(--mono); font-size: 12px; color: var(--accent); padding-top: 4px; }
.pain-row h4 { font-size: 18px; margin-bottom: 3px; }
.pain-row p { font-size: 14.5px; color: var(--stone-d); }

/* ============================================================
   DIAL / INTERACTIVE
   ============================================================ */
.dial-sec { background: var(--ink); color: var(--chalk); overflow: hidden; position: relative; }
.dial-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.dial-copy h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(36px, 4.6vw, 64px); line-height: 0.98; margin: 16px 0 22px; }
.dial-copy p { color: rgba(244,240,230,0.68); font-size: 17px; max-width: 38ch; }
.dial-zones { display: flex; flex-direction: column; gap: 2px; margin-top: 30px; }
.dz { display: grid; grid-template-columns: 76px 1fr; gap: 16px; padding: 11px 0; align-items: center; opacity: 0.4; transition: opacity .3s; border-top: 1px solid var(--line-dark-s); }
.dz.on { opacity: 1; }
.dz .dz-k { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.dz .dz-n { font-weight: 700; font-size: 15px; }
.dz .dz-d { font-size: 13px; color: rgba(244,240,230,0.55); }

.dial-stage { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.dial-wrap { position: relative; width: min(420px, 78vw); aspect-ratio: 1; touch-action: none; user-select: none; }
.dial-wrap svg { width: 100%; height: 100%; display: block; transform: rotate(135deg); }
.dial-track { fill: none; stroke: var(--ink-3); stroke-width: 14; stroke-linecap: round; }
.dial-fill { fill: none; stroke: var(--accent); stroke-width: 14; stroke-linecap: round; transition: stroke .2s; }
.dial-knob {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  background: var(--chalk); border: 3px solid var(--accent);
  box-shadow: 0 10px 24px -6px rgba(0,0,0,0.6); cursor: grab;
  top: 0; left: 0; margin: -23px 0 0 -23px;
  display: grid; place-items: center;
}
.dial-knob::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.dial-wrap.drag .dial-knob { cursor: grabbing; transform: scale(1.08); }
.dial-readout {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; pointer-events: none;
}
.dial-readout .kg { font-family: var(--display); font-size: clamp(64px, 13vw, 104px); line-height: 0.8; }
.dial-readout .kg .u { font-size: 0.32em; color: var(--accent); margin-left: 2px; }
.dial-readout .zone { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-top: 12px; }
.dial-hint { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,240,230,0.42); display: flex; align-items: center; gap: 9px; }
.dial-hint svg { width: 15px; height: 15px; }

/* ============================================================
   FEATURES (editorial rows)
   ============================================================ */
.feat-row {
  display: grid; grid-template-columns: 0.5fr 1fr 1fr; gap: 40px;
  padding: 56px 0; border-top: 1px solid var(--line); align-items: center;
}
.feat-row:last-child { border-bottom: 1px solid var(--line); }
.feat-idx { font-family: var(--display); font-size: clamp(48px, 6vw, 92px); color: var(--accent); line-height: 0.8; }
.feat-body h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(26px, 3vw, 40px); line-height: 0.92; margin-bottom: 12px; }
.feat-body p { color: var(--stone-d); font-size: 16px; max-width: 38ch; }
.feat-vis .ph { aspect-ratio: 16/10; }

/* ============================================================
   SPECS (blueprint)
   ============================================================ */
.specs-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 60px; }
.specs-head h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(36px, 5vw, 76px); line-height: 0.86; }
.specs-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.spec {
  padding: 38px 26px 30px; border-left: 1px solid var(--line-dark);
  position: relative;
}
.spec:first-child { border-left: 0; }
.spec .sk { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,240,230,0.5); margin-bottom: 18px; }
.spec .sv { font-family: var(--display); font-size: clamp(38px, 4.4vw, 60px); line-height: 0.85; }
.spec .sv .u { font-size: 0.36em; color: var(--accent); }
.specs-note { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.specs-note .ph { aspect-ratio: 21/9; }
.specs-note p { color: rgba(244,240,230,0.66); font-size: 16px; }

/* ============================================================
   RESULTS
   ============================================================ */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.res { padding: 48px 30px; border-left: 1px solid var(--line); }
.res:first-child { border-left: 0; }
.res .rn { font-family: var(--display); font-size: clamp(64px, 9vw, 128px); line-height: 0.8; color: var(--accent); }
.res .rn .sym { font-size: 0.42em; }
.res h4 { text-transform: uppercase; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; margin: 18px 0 10px; }
.res p { color: var(--stone-d); font-size: 14.5px; max-width: 32ch; }
.res-foot { margin-top: 28px; font-size: 12px; color: var(--stone); }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pq { background: var(--accent); color: var(--ink); }
.pq-in { padding: 120px 0; }
.pq blockquote {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 84px); line-height: 1.0; max-width: 18ch;
}
.pq blockquote .o { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.pq-by { display: flex; align-items: center; gap: 16px; margin-top: 44px; }
.pq-by .av { width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: var(--accent); display: grid; place-items: center; font-family: var(--display); font-size: 22px; }
.pq-by .nm { font-weight: 800; font-size: 16px; }
.pq-by .mt { font-size: 13px; opacity: 0.7; }

/* mini testimonials strip */
.mini-testi { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--line); }
.mt-card { padding: 40px 30px; border-left: 1px solid var(--line); }
.mt-card:first-child { border-left: 0; }
.mt-card .stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 16px; }
.mt-card .stars svg { width: 15px; height: 15px; }
.mt-card p { font-size: 15px; line-height: 1.5; margin-bottom: 18px; }
.mt-card .who { font-size: 13px; color: var(--stone-d); }
.mt-card .who b { color: var(--ink); }

/* ============================================================
   OFFER
   ============================================================ */
.offer { background: var(--ink); color: var(--chalk); }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-dark); }
.offer-vis { position: relative; border-right: 1px solid var(--line-dark); }
.offer-vis .ph { height: 100%; min-height: 520px; border: 0; }
.offer-disc {
  position: absolute; top: 26px; left: 26px;
  background: var(--accent); color: var(--chalk);
  font-family: var(--display); font-size: 30px; line-height: 0.82;
  width: 92px; height: 92px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
}
.offer-disc small { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; }
.offer-info { padding: 56px 54px; }
.offer-info .label { color: var(--accent); margin-bottom: 18px; }
.offer-info h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.0; margin-bottom: 26px; }
.incl { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 30px; }
.incl li { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line-dark-s); font-size: 15px; color: rgba(244,240,230,0.82); }
.incl li:last-child { border-bottom: 1px solid var(--line-dark-s); }
.incl svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.price-line { display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.price-line .now { font-family: var(--display); font-size: 68px; line-height: 0.8; }
.price-line .old { font-size: 22px; color: rgba(244,240,230,0.45); text-decoration: line-through; }
.price-line .save { font-family: var(--mono); font-size: 12px; color: var(--accent); border: 1px solid var(--accent); padding: 5px 9px; letter-spacing: 0.05em; }
.offer .btn-fill { width: 100%; justify-content: center; margin-top: 22px; padding: 22px; font-size: 16px; }
.offer .btn-fill::after { background: var(--chalk); }
.offer .btn-fill:hover span, .offer .btn-fill:hover .arr { color: var(--ink); }
.stock { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(244,240,230,0.6); text-transform: uppercase; }
.stock-bar { flex: 1; height: 4px; background: var(--ink-3); overflow: hidden; }
.stock-bar i { display: block; height: 100%; width: 19%; background: var(--accent); }
.live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(226,85,43,0.6);} 70%{box-shadow:0 0 0 9px rgba(226,85,43,0);} 100%{box-shadow:0 0 0 0 rgba(226,85,43,0);} }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 60px; align-items: start; }
.faq-grid > h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(36px, 4.6vw, 64px); line-height: 0.88; }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa .q { width: 100%; text-align: left; display: flex; gap: 20px; align-items: center; padding: 26px 0; font-size: 19px; font-weight: 700; }
.qa .q .qn { font-family: var(--mono); font-size: 12px; color: var(--accent); flex: none; }
.qa .q .qt { flex: 1; }
.qa .qi { flex: none; width: 22px; height: 22px; position: relative; }
.qa .qi::before, .qa .qi::after { content: ""; position: absolute; background: var(--accent); transition: transform .3s var(--ease); }
.qa .qi::before { width: 100%; height: 2px; top: 10px; }
.qa .qi::after { height: 100%; width: 2px; left: 10px; }
.qa.open .qi::after { transform: scaleY(0); }
.qa .a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.qa .a p { padding: 0 0 26px 36px; color: var(--stone-d); font-size: 15.5px; max-width: 56ch; }

/* ============================================================
   FINAL
   ============================================================ */
.final { background: var(--ink); color: var(--chalk); text-align: center; padding: 130px 0 160px; position: relative; overflow: hidden; }
.final .big { font-family: var(--display); text-transform: uppercase; font-size: clamp(54px, 11vw, 184px); line-height: 0.92; position: relative; z-index: 2; }
.final .big em { font-style: normal; color: var(--accent); }
.final p { color: rgba(244,240,230,0.7); font-size: 19px; max-width: 44ch; margin: 28px auto 40px; position: relative; z-index: 2; }
.final .btn { position: relative; z-index: 2; font-size: 17px; padding: 22px 42px; }
.final-glow { position: absolute; width: 70vw; height: 70vw; border-radius: 50%; background: radial-gradient(circle, rgba(226,85,43,0.18), transparent 60%); bottom: -40%; left: 15%; z-index: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.ftr { background: #0C0A07; color: rgba(244,240,230,0.55); padding: 70px 0 36px; }
.ftr-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark-s); }
.ftr .logo { color: var(--chalk); margin-bottom: 18px; }
.ftr-top p { font-size: 14px; max-width: 32ch; }
.fcol h5 { color: var(--chalk); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.fcol a { display: block; font-size: 14px; padding: 6px 0; transition: color .2s; }
.fcol a:hover { color: var(--accent); }
.ftr-bot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; padding-top: 28px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.pays { display: flex; gap: 8px; }
.pays span { padding: 5px 9px; border: 1px solid var(--line-dark-s); font-size: 10px; }

/* ============================================================
   REVEAL
   ============================================================ */
.r-up { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.r-up.in { opacity: 1; transform: none; }
.r-up.d1 { transition-delay: .1s; } .r-up.d2 { transition-delay: .2s; } .r-up.d3 { transition-delay: .3s; }
.line-rise > span { transition: transform 1s var(--ease); transition-delay: var(--d, 0s); }
.line-rise.in > span { transform: translateY(0) !important; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .r-up { opacity: 1; transform: none; }
  .hero-head .ln > span { transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  :root { --gut: 26px; }
  .hero-in, .mani-grid, .dial-grid, .specs-note, .faq-grid, .offer-grid { grid-template-columns: 1fr; }
  .hero-in { gap: 50px; padding-top: 30px; }
  .bp { border-left: 0; }
  .bp-frame { max-width: 300px; margin: 30px auto 40px; }
  .hnav a:not(.cta) { display: none; }
  .feat-row { grid-template-columns: 0.4fr 1fr; gap: 24px; }
  .feat-vis { grid-column: 1 / -1; }
  .specs-row, .res-grid { grid-template-columns: 1fr 1fr; }
  .spec:nth-child(3) { border-left: 0; }
  .res:nth-child(3) { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); }
  .mini-testi { grid-template-columns: 1fr; }
  .mt-card { border-left: 0; border-top: 1px solid var(--line); }
  .mt-card:first-child { border-top: 0; }
  .offer-vis { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .offer-vis .ph { min-height: 320px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .pad { padding: 90px 0; }
  .specs-row { grid-template-columns: 1fr 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .res { border-left: 0; border-top: 1px solid var(--line); }
  .res:first-child { border-top: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .offer-info { padding: 38px 26px; }
  .buychip { left: var(--gut); right: var(--gut); bottom: 16px; justify-content: center; }
  .feat-row { grid-template-columns: 1fr; }
  .specs-note { gap: 30px; }
  /* pull quote */
  .pq-in { padding: 64px 0 56px; }
  .pq blockquote { font-size: clamp(26px, 7.2vw, 38px); line-height: 1.04; max-width: none; }
  .pq blockquote .o { -webkit-text-stroke-width: 1px; }
  .pq .sec-tag { flex-wrap: wrap; }
  .pq-by { margin-top: 32px; }
  .mt-card { padding: 32px 0; }
  /* footer */
  .ftr { padding: 56px 0 110px; }
  .ftr-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding-bottom: 36px; }
  .ftr-top > :first-child { grid-column: 1 / -1; }
  .ftr-top p { max-width: none; }
  .ftr-bot { flex-direction: column; align-items: flex-start; gap: 18px; }
  /* sticky buy chip */
  .buychip { left: 0; right: 0; bottom: 0; border-radius: 0; padding: 16px 22px; font-size: 15px; gap: 14px; box-shadow: 0 -10px 30px -12px rgba(0,0,0,0.7); }
  .buychip .k { background: var(--ink); color: var(--chalk); padding: 4px 8px; border-radius: 2px; font-size: 11px; }
}
@media (max-width: 380px) {
  .ftr-top { grid-template-columns: 1fr; }
}
