/* ==========================================================================
   TrustedPump — cinematic story homepage (v2)
   Loaded on top of styles.css. Applies only to <body class="cinematic">.
   Structure: full-screen beats + pinned "problem -> solution" acts.
   Motion rule: only animate transform & opacity (GPU) for 60fps.
   ========================================================================== */

body.cinematic {
  --brand: #6BA8E6;
  --accent: #F2A63C;
  --accent-deep: #E0952A;
  --verified: #4ADE80;
  --verified-bg: #10331F;

  --ink: #F4F8FC;
  --body: #AEB9C6;
  --muted: #7C8896;
  --line: #1E2A38;
  --surface: #111B27;
  --surface-2: #0C1521;
  --bg: #060A11;

  --night-0: #04060B;
  --night-1: #0A1019;
  --cold: rgba(64, 110, 168, 0.22);
  --ember: rgba(206, 78, 44, 0.16);
  --glow: rgba(242, 166, 60, 0.22);

  color-scheme: dark;
  background: var(--night-0);
  color: var(--body);
}

/* --------------------------------------------------------------------------
   Global cinematic overlays: film grain + progress
   -------------------------------------------------------------------------- */
.grain {
  position: fixed; inset: -50%;
  z-index: 90; pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(3) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-4%, 3%); }
  66% { transform: translate(3%, -2%); }
  100% { transform: translate(0, 0); }
}

.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 100%;
  transform: scaleX(var(--p, 0));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), var(--verified));
  z-index: 200;
}

/* Header on the dark story */
body.cinematic .site-header { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
body.cinematic .site-header.scrolled {
  background: color-mix(in srgb, var(--night-0) 70%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--line);
}
body.cinematic .brand { color: var(--ink); }
body.cinematic .nav-links a { color: var(--body); }

/* --------------------------------------------------------------------------
   Shared scene + typography
   -------------------------------------------------------------------------- */
.scene {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  padding: 120px clamp(22px, 6vw, 48px);
  overflow: hidden;
}
.scene-inner { position: relative; z-index: 3; width: 100%; max-width: 900px; margin-inline: auto; text-align: center; }

.kicker {
  display: inline-block;
  font-size: 0.78rem; font-weight: 650; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 26px;
}
.kicker.cold { color: var(--brand); }
.kicker.green { color: var(--verified); }

h2.line, .line {
  color: var(--ink);
  font-size: clamp(2.1rem, 6.2vw, 4.6rem);
  line-height: 1.04; letter-spacing: -0.03em; font-weight: 700;
  text-wrap: balance;
}
.line .dim { color: var(--muted); }
.line .amber { color: var(--accent); }
.line .green { color: var(--verified); }
.sub {
  margin-top: 26px; font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: var(--body); max-width: 32ch; margin-inline: auto; line-height: 1.5;
}
.sub.wide { max-width: 48ch; }

/* Scroll-in beats */
.beat { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); will-change: opacity, transform; }
.beat.in { opacity: 1; transform: none; }
.beat.d1 { transition-delay: 0.12s; }
.beat.d2 { transition-delay: 0.26s; }
.beat.d3 { transition-delay: 0.40s; }

/* Vignette on every scene */
.scene::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(120% 82% at 50% 50%, transparent 52%, rgba(0,0,0,0.6) 100%);
}

/* Scene atmospheres */
.scene--night {
  background: radial-gradient(90% 60% at 50% 118%, var(--glow), transparent 60%), linear-gradient(180deg, var(--night-0), var(--night-1));
}
.scene--turn {
  background: radial-gradient(90% 80% at 50% 28%, var(--glow), transparent 62%), linear-gradient(180deg, var(--night-0), #0C1017);
}
.scene--reveal {
  background: radial-gradient(80% 80% at 50% 42%, rgba(74,222,128,0.15), transparent 62%), linear-gradient(180deg, #071009, var(--night-0));
}

/* --------------------------------------------------------------------------
   Hero visual — fuel gauge, horizon glow, headlight streaks (parallax)
   -------------------------------------------------------------------------- */
.horizon {
  position: absolute; inset: auto 0 0 0; height: 44%; z-index: 0;
  background: radial-gradient(80% 100% at 50% 100%, rgba(242,166,60,0.18), transparent 70%);
  will-change: transform;
}
.streaks { position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: 0.5; }
.streaks span {
  position: absolute; height: 2px; width: 42vw;
  background: linear-gradient(90deg, transparent, rgba(242,166,60,0.55), transparent);
  filter: blur(1px); animation: streak 7s linear infinite;
}
.streaks span:nth-child(1) { top: 60%; animation-duration: 6s; }
.streaks span:nth-child(2) { top: 70%; animation-duration: 9s; animation-delay: 2s; opacity: 0.6; }
.streaks span:nth-child(3) { top: 79%; animation-duration: 7.5s; animation-delay: 4s; opacity: 0.4; }
@keyframes streak { from { transform: translateX(-46vw); } to { transform: translateX(146vw); } }

.gauge { width: min(320px, 72vw); margin: 0 auto 42px; display: block; will-change: transform; }
.gauge .needle { transform-box: fill-box; transform-origin: 50% 92%; animation: tremble 2.6s ease-in-out infinite; }
@keyframes tremble { 0%,100% { transform: rotate(-1deg); } 50% { transform: rotate(2deg); } }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; z-index: 4;
}
.scroll-cue svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* --------------------------------------------------------------------------
   PINNED ACT — problem locks, solution rises as you scroll through it
   JS sets --warm, --p-o, --p-y, --s-o, --s-y from the act's scroll progress.
   -------------------------------------------------------------------------- */
.act { position: relative; height: 240vh; }
.act__stage {
  position: sticky; top: 0; height: 100svh;
  display: grid; place-items: center; overflow: hidden;
  padding: 120px clamp(22px, 6vw, 48px);
}
.act__bg { position: absolute; inset: 0; z-index: 0; }
/* cold problem backdrop */
.act__bg--cold { background: radial-gradient(70% 60% at 50% 42%, var(--cold), transparent 66%), linear-gradient(180deg, var(--night-1), var(--night-0)); }
.act__bg--ember { background: radial-gradient(80% 70% at 50% 55%, var(--ember), transparent 64%), var(--night-0); }
/* warm solution backdrop, cross-fades in via --warm */
.act__bg--warm { opacity: var(--warm, 0); }
.act__bg--amber { background: radial-gradient(90% 80% at 50% 34%, rgba(242,166,60,0.22), transparent 62%), linear-gradient(180deg, #100a04, var(--night-0)); }
.act__bg--green { background: radial-gradient(85% 80% at 50% 40%, rgba(74,222,128,0.18), transparent 60%), linear-gradient(180deg, #06120b, var(--night-0)); }

.act__stage::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(120% 82% at 50% 50%, transparent 52%, rgba(0,0,0,0.6) 100%);
}
.act__layer {
  grid-area: 1 / 1;           /* both layers share the centered cell */
  z-index: 3; width: 100%; max-width: 900px; margin-inline: auto;
  padding-inline: clamp(22px, 6vw, 48px); text-align: center;
  will-change: opacity, transform;
}
.act__problem { opacity: var(--p-o, 1); transform: translateY(var(--p-y, 0px)); }
.act__solution { opacity: var(--s-o, 0); transform: translateY(var(--s-y, 50px)); }

/* problem doubts */
.doubts { margin-top: 30px; display: grid; gap: 14px; justify-items: center; }
.doubt {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: clamp(1rem, 2.3vw, 1.35rem); color: var(--body);
}
.doubt .q { color: var(--brand); font-weight: 700; }

/* solution ticks */
.solved { margin-top: 30px; display: grid; gap: 12px; justify-items: center; }
.solved-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: clamp(1rem, 2.3vw, 1.3rem); color: var(--ink); font-weight: 550;
}
.solved-item .c {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  background: var(--verified); color: #05140A;
  display: grid; place-items: center; font-size: 0.85rem; font-weight: 800;
}

.act-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 4;
  color: var(--muted); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  opacity: var(--p-o, 1);
}
.act-cue svg { display: block; margin: 6px auto 0; animation: bob 1.8s ease-in-out infinite; }

/* --------------------------------------------------------------------------
   The VERIFIED ink-stamp slam
   -------------------------------------------------------------------------- */
.stamp-wrap { position: relative; width: min(300px, 70vw); margin: 0 auto 40px; display: grid; place-items: center; }
.stamp {
  width: 100%; color: var(--verified);
  opacity: 0; transform: scale(2.3) rotate(-16deg);
}
/* A physical "stomp": drops fast, squashes on impact, rebounds, settles. */
.stamp.in { animation: stomp 0.62s cubic-bezier(0.3, 0.7, 0.2, 1) both; }
@keyframes stomp {
  0%   { opacity: 0; transform: scale(2.3) rotate(-16deg); }
  40%  { opacity: 1; }
  58%  { transform: scale(0.84) rotate(-3deg); }   /* impact squash */
  72%  { transform: scale(1.07) rotate(-8deg); }   /* rebound */
  86%  { transform: scale(0.97) rotate(-5deg); }
  100% { opacity: 1; transform: scale(1) rotate(-6deg); }
}
.stamp .arc { fill: var(--verified); font-size: 11px; font-weight: 700; letter-spacing: 3px; }

/* Double shockwave rings radiating from the point of impact */
.shock {
  position: absolute; width: 58%; aspect-ratio: 1; border-radius: 50%;
  border: 3px solid var(--verified); opacity: 0;
}
.stamp.in ~ .shock { animation: shock 0.75s ease-out 0.30s both; }
.stamp.in ~ .shock.shock2 { animation-delay: 0.44s; border-width: 2px; }
@keyframes shock {
  0% { opacity: 0.7; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(2.3); }
}

/* Screen shiver — the content jolts on impact (starts at the moment of squash).
   Applied to <main class="story"> so fixed/sticky elements never glitch. */
.story.shake { animation: screen-shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.3s both; }
@keyframes screen-shake {
  0%, 100% { transform: translate3d(0, 0, 0); }
  12% { transform: translate3d(-8px, 5px, 0); }
  24% { transform: translate3d(9px, -6px, 0); }
  36% { transform: translate3d(-10px, -3px, 0); }
  48% { transform: translate3d(8px, 6px, 0); }
  60% { transform: translate3d(-6px, -4px, 0); }
  72% { transform: translate3d(5px, 3px, 0); }
  84% { transform: translate3d(-3px, 2px, 0); }
  92% { transform: translate3d(2px, -1px, 0); }
}

/* Reveal pill (kept, used near the checks) */
.reveal-pill {
  display: inline-flex; align-items: center; gap: 12px; padding: 14px 26px; border-radius: 999px;
  background: var(--verified-bg); color: var(--verified);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem); font-weight: 700;
  border: 1px solid color-mix(in srgb, var(--verified) 40%, transparent); margin-bottom: 30px;
}
.reveal-pill.in { animation: glow 2.6s ease-in-out infinite; }
.reveal-pill .tick { width: 30px; height: 30px; border-radius: 50%; background: var(--verified); color: #05140A; display: grid; place-items: center; font-size: 1rem; }
@keyframes glow { 0%,100% { box-shadow: 0 0 30px -6px rgba(74,222,128,0.35); } 50% { box-shadow: 0 0 46px 0 rgba(74,222,128,0.55); } }

.check-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.check-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--ink); font-size: 0.92rem; font-weight: 550; }
.check-chip .c { color: var(--verified); }

/* --------------------------------------------------------------------------
   By-the-numbers count-up
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 48px); margin-top: 12px; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; gap: 28px; } }
.stat { text-align: center; }
.stat .num {
  font-size: clamp(3rem, 8vw, 5rem); font-weight: 750; letter-spacing: -0.04em; line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.stat .num .u { color: var(--accent); font-size: 0.5em; }
.stat .lab { margin-top: 12px; color: var(--muted); font-size: 0.98rem; }

/* --------------------------------------------------------------------------
   How-it-works + trust + CTA
   -------------------------------------------------------------------------- */
.mini-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; text-align: left; }
@media (max-width: 720px) { .mini-steps { grid-template-columns: 1fr; } }
.mini-step { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.mini-step .n { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 14px; background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent); font-weight: 700; }
.mini-step h3 { color: var(--ink); font-size: 1.05rem; margin-bottom: 6px; }
.mini-step p { color: var(--body); font-size: 0.95rem; }

.trust-line { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; margin-top: 30px; }
.trust-line span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.95rem; }
.trust-line svg { color: var(--verified); }

.scene--cta .actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 38px; }
.scene--cta .fine { margin-top: 22px; color: var(--muted); font-size: 0.9rem; }

/* Button + badge sheen micro-interaction */
.btn-primary, .play-badge { position: relative; overflow: hidden; }
.btn-primary::after, .play-badge::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg); transition: none; pointer-events: none;
}
.btn-primary:hover::after, .play-badge:hover::after { animation: sheen 0.8s ease; }
@keyframes sheen { to { left: 130%; } }

body.cinematic .site-footer { background: var(--surface-2); border-top-color: var(--line); }

/* --------------------------------------------------------------------------
   Preview mode (?preview=1): expand acts + show every layer for review
   -------------------------------------------------------------------------- */
body.preview .scene { min-height: 0; padding-block: 84px; }
body.preview .scroll-cue, body.preview .act-cue { display: none; }
body.preview .act { height: auto; }
body.preview .act__stage { position: static; height: auto; padding-block: 70px; display: block; }
body.preview .act__layer { position: relative; opacity: 1 !important; transform: none !important; }
body.preview .act__problem { margin-bottom: 48px; }
body.preview .act__bg--warm { opacity: 1; }

/* --------------------------------------------------------------------------
   Reduced motion — everything static & legible, no pinning
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .streaks, .gauge .needle, .scroll-cue svg, .act-cue svg { animation: none !important; }
  .beat { opacity: 1; transform: none; transition: none; }
  .stamp { opacity: 1; transform: rotate(-6deg); animation: none !important; }
  .reveal-pill { box-shadow: 0 0 30px -6px rgba(74,222,128,0.35); }
  .act { height: auto; }
  .act__stage { position: static; height: auto; padding-block: 80px; display: block; }
  .act__layer { position: relative; opacity: 1 !important; transform: none !important; }
  .act__problem { margin-bottom: 48px; }
  .act__bg--warm { opacity: 1; }
  .btn-primary::after, .play-badge::after { display: none; }
  .torch { display: none; }
  .phone3d { animation: none !important; }
  .tilt { transform: none !important; }
  .story-gauge.full svg, .story-gauge.full .check { animation: none !important; }
  .story-gauge.full .check { opacity: 1; transform: none; }
  .story-gauge.full .burst { display: none; }
  .story.shake { animation: none !important; }
}

/* ==========================================================================
   NEXT-LEVEL LAYER
   ========================================================================== */

/* --- Story fuel-gauge: the scroll indicator, filling E -> F ------------- */
.story-gauge {
  position: fixed; left: 20px; bottom: 20px; z-index: 120;
  width: 116px; pointer-events: none; opacity: 0.95;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5));
}
.story-gauge svg { width: 100%; display: block; overflow: visible; }
.story-gauge .track { stroke: rgba(255,255,255,0.14); }
.story-gauge .fill {
  stroke: var(--accent); stroke-linecap: round;
  transition: stroke-dashoffset 0.15s linear;
}
.story-gauge .needle {
  transform-box: view-box; transform-origin: 60px 66px;
  transform: rotate(-80deg); transition: transform 0.18s cubic-bezier(0.34,1.4,0.4,1);
}
.story-gauge .lab {
  display: block; text-align: center; margin-top: 5px;
  font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
@media (max-width: 620px) {
  .story-gauge { width: 86px; left: 14px; bottom: 14px; }
  .story-gauge .lab { display: none; }
}
/* Completion state — fires when the gauge fills at the end of the story */
.story-gauge { transition: filter 0.4s ease; }
.story-gauge .check { transform-box: view-box; transform-origin: 60px 40px; opacity: 0; }
.story-gauge .burst { transform-box: view-box; transform-origin: 60px 66px; opacity: 0; }
.story-gauge.full { filter: drop-shadow(0 0 12px rgba(74, 222, 128, 0.55)); }
.story-gauge.full .fill { stroke: var(--verified); }
.story-gauge.full .lab { color: var(--verified); }
.story-gauge.full svg { animation: gpop 0.5s ease; }
.story-gauge.full .check { animation: gcheck 0.55s cubic-bezier(0.2, 1.6, 0.4, 1) forwards; }
.story-gauge.full .burst { animation: gburst 0.75s ease-out; }
@keyframes gpop { 0%, 100% { transform: scale(1); } 42% { transform: scale(1.09); } }
@keyframes gcheck { 0% { opacity: 0; transform: scale(0.3); } 60% { opacity: 1; transform: scale(1.18); } 100% { opacity: 1; transform: scale(1); } }
@keyframes gburst { 0% { opacity: 0.55; transform: scale(0.5); } 100% { opacity: 0; transform: scale(2.2); } }

/* --- Torch / flashlight hero: hidden contaminants revealed under a beam -- */
.torch { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.torch-words {
  position: absolute; inset: -12%;
  display: flex; flex-wrap: wrap; gap: 0.35em 1.1em;
  align-content: center; justify-content: center;
  font-size: clamp(1.5rem, 4.4vw, 2.8rem); font-weight: 800; letter-spacing: 0.02em;
  color: rgba(242, 166, 60, 0.6); text-transform: uppercase; user-select: none;
  -webkit-mask: radial-gradient(circle 150px at var(--mx, 50%) var(--my, 40%), #000 0%, rgba(0,0,0,0.35) 48%, transparent 72%);
          mask: radial-gradient(circle 150px at var(--mx, 50%) var(--my, 40%), #000 0%, rgba(0,0,0,0.35) 48%, transparent 72%);
}
.torch-words span.hot { color: rgba(239, 108, 68, 0.7); }

/* --- Interactive tilting phone (the product, grounded) ------------------ */
.device-grid {
  display: grid; grid-template-columns: 1fr 320px;
  gap: clamp(32px, 6vw, 76px); align-items: center; text-align: left; max-width: 980px;
}
.device-grid .kicker, .device-grid .line, .device-grid .sub { text-align: left; }
.device-grid .sub { margin-inline: 0; }
@media (max-width: 820px) {
  .device-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .device-grid .kicker, .device-grid .line, .device-grid .sub { text-align: center; }
  .device-grid .sub { margin-inline: auto; }
}
.device { perspective: 1100px; display: flex; justify-content: center; }
.phone3d { animation: float 6.5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }
.tilt {
  width: 300px; transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, -8deg));
  transition: transform 0.2s ease-out;
}
.phone-shell {
  position: relative; aspect-ratio: 300 / 620;
  background: #0B0F14; border: 10px solid #10151B; border-radius: 44px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}
.phone-shell .notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 100px; height: 22px; background: #10151B; border-radius: 0 0 14px 14px; z-index: 3; }
.screen { position: absolute; inset: 0; background: linear-gradient(180deg, #0e1a14, #0B0F14 46%); padding: 44px 14px 16px; display: flex; flex-direction: column; gap: 11px; }
.screen .map {
  height: 210px; border-radius: 16px; position: relative; border: 1px solid var(--line);
  background:
    radial-gradient(circle at 62% 30%, rgba(74,222,128,0.22), transparent 46%),
    repeating-linear-gradient(48deg, #10161d, #10161d 20px, #0d1319 20px, #0d1319 22px),
    repeating-linear-gradient(-42deg, #10161d, #10161d 26px, #0d1319 26px, #0d1319 28px);
}
.screen .you { position: absolute; top: 58%; left: 40%; width: 14px; height: 14px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px rgba(107,168,230,0.25); }
.screen .p1, .screen .p2 { position: absolute; width: 22px; height: 22px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); border: 2px solid #05140A; }
.screen .p1 { top: 26%; left: 58%; background: var(--verified); }
.screen .p2 { top: 44%; left: 30%; background: var(--verified); }
.srow { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 13px; padding: 11px 13px; }
.srow b { color: var(--ink); font-size: 0.82rem; font-weight: 650; display: block; }
.srow small { color: var(--muted); font-size: 0.7rem; }
.srow .vp { flex: none; display: inline-flex; align-items: center; gap: 4px; padding: 5px 10px; border-radius: 999px; font-size: 0.68rem; font-weight: 700; background: var(--verified-bg); color: var(--verified); }
.srow .vp.muted { background: rgba(255,255,255,0.05); color: var(--muted); }

body.preview .torch { display: none; }
body.preview .phone3d { animation: none; }
body.preview .tilt { transform: rotateY(-8deg); }
