/* ============================================================
   FlipFinder — Landing page sections
   ============================================================ */

/* Reveal on load/scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Section head shared */
.section-head { margin-bottom: 72px; max-width: 880px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-title {
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-text);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 120px 0 64px;
  min-height: 100vh;
  overflow: hidden;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 720px 520px at 22% 18%, rgba(127, 191, 184, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 540px 620px at 90% 45%, rgba(232, 182, 108, 0.04) 0%, transparent 65%);
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(240,235,224,0.025) 1px, transparent 1px);
  background-size: 120px 100%;
  mask-image: linear-gradient(to bottom, transparent 0, #000 15%, #000 85%, transparent 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 56px;
}

.masthead {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 80px;
}
.masthead .micro { font-size: 10px; }
.masthead__rule { flex: 1; height: 1px; background: var(--hair); }

.hero__body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.hero__copy { max-width: 640px; padding-top: 8px; }
.hero__copy .eyebrow { margin-bottom: 28px; }

.hero__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
  font-weight: 300;
  font-size: var(--fs-h1);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink-text);
  margin-bottom: 32px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .serif-italic {
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  color: var(--teal);
}

.hero__sub {
  font-size: var(--fs-lead);
  color: var(--ink-text-2);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 40px;
  letter-spacing: -0.005em;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero__note {
  color: var(--ink-text-3);
  letter-spacing: 0.15em;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--hair);
  justify-content: flex-start;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-size: 36px;
  font-weight: 400;
  color: var(--ink-text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat__lbl { max-width: 160px; line-height: 1.5; }


/* ---- Hero device (phone) ---- */
.hero__device {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  min-height: 760px;
}
.device-label {
  align-self: flex-start;
  margin-left: -4px;
  margin-bottom: 20px;
}

.phone {
  position: relative;
  width: min(304px, 80%);
  aspect-ratio: 393 / 852;
  border-radius: 44px;
  background: linear-gradient(155deg, #F5F2EC 0%, #E4DFD4 60%, #CDC6B6 100%);
  box-shadow:
    0 0 0 1.5px #D4CEBE,
    0 0 0 3px #F5F2EC,
    0 0 0 4.5px rgba(0, 0, 0, 0.25),
    0 50px 100px -18px rgba(0, 0, 0, 0.7),
    0 0 70px rgba(127, 191, 184, 0.08);
  transform: perspective(1400px) rotateY(-9deg) rotateX(3deg);
  transition: transform 500ms var(--ease-out);
  overflow: hidden;
  animation: phone-float 6s ease-in-out infinite;
}
.phone:hover {
  animation-play-state: paused;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg) translateY(-8px) scale(1.015);
}
@keyframes phone-float {
  0%, 100% { transform: perspective(1400px) rotateY(-9deg) rotateX(3deg) translateY(0); }
  50% { transform: perspective(1400px) rotateY(-9deg) rotateX(3deg) translateY(-10px); }
}
.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 4;
}
.phone__screen {
  position: absolute;
  inset: 4px;
  border-radius: 48px;
  background: var(--ink);
  overflow: hidden;
  z-index: 2;
}

.sb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px 4px;
  font-size: 13px;
  color: var(--ink-text);
  padding-top: 18px;
}
.sb .mono { font-weight: 500; }
.sb__right { display: flex; align-items: center; gap: 3px; }
.sb-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(240,235,224,0.3); }
.sb-dot--on { background: var(--ink-text); }
.sb-batt { width: 22px; height: 11px; border: 1.2px solid rgba(240,235,224,0.5); border-radius: 3px; margin-left: 4px; position: relative; }
.sb-batt::after { content:''; position: absolute; inset: 1.5px; right: 4px; background: var(--ink-text); border-radius: 1px; }

.ps-hero {
  position: relative;
  margin: 10px 14px 0;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
}
.ps-hero__img {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(127,191,184,0.12), transparent 60%),
    linear-gradient(135deg, #1C2528 0%, #0A0E0F 100%);
}
.ps-hero--lime .ps-hero__img {
  background:
    radial-gradient(ellipse at 50% 28%, rgba(255,255,255,0.22), transparent 55%),
    linear-gradient(170deg, #D6EF5F 0%, #B8D73F 58%, #9FBE2A 100%);
}
.ps-hero--photo .ps-hero__img {
  background: url('../assets/shoe-hero.jpg') center 38% / cover no-repeat;
}
.ps-hero--photo .ps-hero__gloss {
  background:
    linear-gradient(180deg, transparent 50%, rgba(40, 50, 10, 0.45) 100%);
}
.ps-hero__gloss {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.18) 100%);
}
.ps-hero--lime .ps-hero__gloss {
  background:
    linear-gradient(180deg, transparent 55%, rgba(76, 95, 18, 0.3) 100%);
}
.ps-hero__illus {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  height: auto;
  max-width: 340px;
  filter: drop-shadow(0 10px 24px rgba(46, 69, 8, 0.35));
}
.ps-hero__overlay {
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10,14,15,0.72);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid var(--hair);
}
.ps-hero__metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.ps-hero__profit {
  font-size: 34px;
  font-weight: 400;
  color: var(--teal-glow);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 0 32px rgba(158, 207, 207, 0.3);
}
.ps-hero__plbl {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-text-3);
}
.ps-hero__row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ps-tier {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  border-radius: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.ps-tier--hot { background: rgba(226, 133, 84, 0.12); color: var(--hot); }
.ps-tier__flame {
  width: 9px; height: 9px; border-radius: 2px;
  background: radial-gradient(circle at 50% 70%, var(--hot), #8c3a20);
}
.ps-hero__roi, .ps-hero__conf {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px;
  color: var(--ink-text-2);
}
.ps-hero__roi .mono { color: var(--teal); font-size: 13px; }
.ps-hero__conf .mono { color: var(--ink-text); font-size: 13px; }
.ps-dot-live {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 0 rgba(127,191,184,0.6);
  animation: ps-pulse 1.8s ease-out infinite;
}
@keyframes ps-pulse {
  0% { box-shadow: 0 0 0 0 rgba(127,191,184,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(127,191,184,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,191,184,0); }
}

.ps-prod { padding: 14px 16px 0; }
.ps-prod__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-text);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.ps-prod__tags { display: flex; gap: 5px; flex-wrap: wrap; }
.ps-tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-text-2);
  background: rgba(127,191,184,0.05);
  border: 1px solid var(--hair);
  border-radius: 6px;
  padding: 3px 7px;
}

.ps-flow {
  margin: 12px 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.ps-pp { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ps-pp__lbl { font-size: 9px; }
.ps-pp__val { font-size: 16px; color: var(--ink-text-2); font-weight: 500; }
.ps-pp__val--sell { color: var(--teal); }
.ps-pp__sep { color: var(--ink-text-4); font-size: 12px; margin-top: 10px; }

.ps-counter {
  margin: 0 14px 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(127,191,184,0.05);
  border: 1px solid rgba(127,191,184,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ps-counter__ic {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: rgba(127,191,184,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.ps-counter__ic svg { width: 15px; height: 15px; }
.ps-counter__body { flex: 1; }
.ps-counter__head {
  font-size: 13px;
  color: var(--teal-glow);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ps-counter__head .mono { color: var(--teal); }
.ps-counter__sub { font-size: 10px; color: var(--ink-text-3); margin-top: 1px; }
.ps-counter__chip {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232,182,108,0.08);
  padding: 3px 7px;
  border-radius: 5px;
}

.ps-comps {
  margin: 0 14px;
  padding: 12px 0 0;
  border-top: 1px solid var(--hair);
}
.ps-comps__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.ps-comps__count { font-size: 10px; color: var(--ink-text-3); }
.ps-comp {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-size: 11px;
}
.ps-comp + .ps-comp { border-top: 1px solid rgba(240,235,224,0.04); }
.ps-comp__thumb {
  width: 36px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid var(--hair);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: #1a1a1a center / cover no-repeat;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.ps-comp__name { flex: 1; color: var(--ink-text-2); }
.ps-comp__price { color: var(--teal); font-size: 12px; }

/* Annotations */
.anno {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--ink-text-2);
  line-height: 1.45;
  max-width: 150px;
}
.anno--1 { top: 80px; left: 0; }
.anno--2 { bottom: 140px; right: 0; text-align: right; }
.anno--2 { flex-direction: row-reverse; }
@media (min-width: 1280px) {
  .anno--1 { left: -40px; }
  .anno--2 { right: -40px; }
}
.anno__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  margin-top: 4px;
  box-shadow: 0 0 0 4px rgba(127,191,184,0.1);
  flex-shrink: 0;
}
.anno__dot--amber {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(232,182,108,0.1);
}
.anno__text { line-height: 1.45; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  padding: 18px 0 22px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--ink-1);
  overflow: hidden;
}
.marquee__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 var(--gutter) 14px;
}
.marquee__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blaze);
  box-shadow: 0 0 12px var(--blaze);
  animation: marquee-blink 1.4s ease-in-out infinite;
}
@keyframes marquee-blink { 50% { opacity: 0.35; } }

.marquee__track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marq-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: var(--ink-text-2);
  letter-spacing: -0.01em;
}
.marq-item__thumb {
  width: 48px;
  height: 34px;
  border-radius: 7px;
  border: 1px solid var(--hair);
  flex-shrink: 0;
  overflow: hidden;
  background-color: var(--ink-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.marq-item__prod { color: var(--ink-text); margin-left: 4px; }
.marq-item__tier {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.12em;
}
.marq-item__tier--blaze { color: var(--blaze); background: rgba(217, 102, 87, 0.1); }
.marq-item__tier--hot { color: var(--hot); background: rgba(226, 133, 84, 0.1); }
.marq-item__tier--warm { color: var(--warm); background: rgba(201, 162, 90, 0.1); }
.marq-item__tier--cold { color: var(--cold); background: rgba(106, 122, 128, 0.1); }
.marq-item__profit { color: var(--teal); }
.marq-item__loss { color: var(--blaze); }
.marq-item__sep { color: var(--ink-text-4); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   METHOD
   ============================================================ */
.method {
  padding: 160px 0 120px;
  position: relative;
}
.method__lede {
  font-size: var(--fs-lead);
  color: var(--ink-text-2);
  line-height: 1.6;
  max-width: 640px;
  margin-top: 28px;
  letter-spacing: -0.005em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 88px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair-strong) 20%, var(--hair-strong) 80%, transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
}
.step__n {
  font-size: 13px;
  color: var(--ink-text-3);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.step__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: var(--ink-1);
  border: 1px solid var(--hair);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 28px;
  overflow: hidden;
  transition: border-color 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.step:hover .step__frame { border-color: var(--hair-strong); transform: translateY(-2px); }

.step__frame--bleed { padding: 0; }

/* ---- Scene: shared ---- */
.scene {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@keyframes blink { 50% { opacity: 0; } }

/* ---- Scene 01: Facebook Marketplace + share sheet ---- */
.scene--fb {
  background:
    radial-gradient(ellipse at 30% 15%, rgba(24, 119, 242, 0.08), transparent 60%),
    linear-gradient(180deg, #0D1013 0%, #080A0D 100%);
  padding: 14px 14px 18px;
}
.fb-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fb-back {
  width: 9px; height: 9px;
  border-left: 1.5px solid #C8D4D8;
  border-bottom: 1.5px solid #C8D4D8;
  transform: rotate(45deg);
}
.fb-title {
  font-size: 13px;
  font-weight: 500;
  color: #E4E8EC;
  letter-spacing: -0.01em;
}
.fb-dots {
  margin-left: auto;
  color: #5A6B70;
  font-size: 14px;
  letter-spacing: 1px;
}
.fb-photo {
  margin-top: 12px;
  flex: 1;
  min-height: 180px;
  border-radius: 10px;
  background: url('../assets/shoe-hero.jpg') center 48% / cover no-repeat;
  position: relative;
}
.fb-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: inset 0 -20px 30px -10px rgba(0,0,0,0.4);
}
.fb-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
}
.fb-price {
  font-size: 22px;
  font-weight: 500;
  color: #F0EBE0;
  line-height: 1;
  letter-spacing: -0.03em;
}
.fb-loc {
  font-size: 10px;
  color: #5A6B70;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.08em;
}
.fb-name {
  font-size: 11px;
  color: #A8B0B4;
  margin-top: 3px;
  letter-spacing: -0.005em;
}
.fb-actions {
  display: flex;
  gap: 7px;
  margin-top: 14px;
}
.fb-act {
  flex: 1;
  padding: 10px 4px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #A8B0B4;
  font-size: 11px;
  font-weight: 500;
}
.fb-act svg { width: 14px; height: 14px; }
.fb-act--share {
  flex: 1;
  padding: 14px 16px;
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  gap: 10px;
  position: relative;
  box-shadow: 0 10px 28px -8px rgba(24,119,242,0.55);
}
.fb-act--share svg { width: 18px; height: 18px; }
.fb-act--share::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  border: 1.5px solid #1877F2;
  opacity: 0;
  animation: fb-share-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes fb-share-pulse {
  0% { opacity: 0.8; transform: scale(1); }
  80% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; }
}

/* ---- Scene 02: Analyzing ---- */
.scene--analyze {
  background:
    radial-gradient(ellipse at 70% 80%, rgba(127,191,184,0.09), transparent 60%),
    linear-gradient(170deg, #0E1416 0%, #080A0D 100%);
  padding: 18px 18px 0;
}
.an-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 12px;
}
.an-ring {
  width: 30px; height: 30px;
  border: 2px solid var(--hair);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: an-spin 1.4s linear infinite;
  flex-shrink: 0;
}
@keyframes an-spin { to { transform: rotate(360deg); } }
.an-heading { flex: 1; }
.an-title {
  font-size: 14px;
  color: var(--ink-text);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.an-sub {
  font-size: 10px;
  color: var(--ink-text-3);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.an-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.an-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 2px;
  font-size: 11px;
  color: var(--ink-text-3);
  letter-spacing: -0.005em;
}
.an-step > span:nth-child(2) { flex: 1; }
.an-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hair-strong);
  flex-shrink: 0;
}
.an-step--done { color: var(--ink-text-2); }
.an-step--done .an-dot { background: var(--teal); }
.an-step--done .mono { color: var(--teal); }
.an-step--live { color: var(--ink-text); }
.an-step--live .an-dot {
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(127,191,184,0.5);
  animation: ps-pulse 1.6s ease-out infinite;
}
.an-step--live .mono { color: var(--teal); font-size: 10px; }
.an-step .mono { font-size: 10px; }

.an-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 42px;
  margin: 0 -4px;
  padding-bottom: 2px;
}
.an-bars > div {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--teal-deep), var(--teal-glow));
  border-radius: 2px;
  opacity: 0.5;
  animation: an-bar-wave 2.6s ease-in-out infinite;
  animation-delay: calc(var(--d, 0) * 200ms);
}
.an-bars > div:nth-child(1) { --d: 0; }
.an-bars > div:nth-child(2) { --d: 1; }
.an-bars > div:nth-child(3) { --d: 2; opacity: 1; box-shadow: 0 0 14px rgba(127,191,184,0.35); }
.an-bars > div:nth-child(4) { --d: 3; }
.an-bars > div:nth-child(5) { --d: 4; }
.an-bars > div:nth-child(6) { --d: 5; }
.an-bars > div:nth-child(7) { --d: 6; }
@keyframes an-bar-wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.15); }
}

/* ---- Scene 03: Deal result ---- */
.scene--result {
  background:
    radial-gradient(ellipse at 20% 15%, rgba(127,191,184,0.1), transparent 55%),
    linear-gradient(170deg, #0E1416 0%, #080A0D 100%);
  padding: 18px 20px;
  justify-content: space-between;
}
.rs-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rs-tier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 7px;
  background: rgba(226, 133, 84, 0.12);
  color: var(--hot);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.rs-flame {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: radial-gradient(circle at 50% 70%, var(--hot), #6b2810);
}
.rs-conf {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 10px;
  color: var(--ink-text-2);
  letter-spacing: 0.08em;
}
.rs-live {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: ps-pulse 1.8s ease-out infinite;
}

.rs-big {
  font-size: clamp(38px, 5.5vw, 56px);
  font-weight: 400;
  color: var(--teal-glow);
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(158,207,207,0.2);
}
.rs-profit-lbl {
  font-size: 11px;
  color: var(--ink-text-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Geist Mono', monospace;
  margin-top: -8px;
}

.rs-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--hair);
  border-radius: 10px;
}
.rs-cell { display: flex; flex-direction: column; gap: 2px; }
.rs-cell .mono { font-size: 16px; color: var(--ink-text-2); }
.rs-sell { color: var(--teal) !important; }
.rs-arrow { color: var(--ink-text-4); font-size: 14px; margin-top: 10px; }

.rs-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(127,191,184,0.05);
  border: 1px solid rgba(127,191,184,0.12);
  border-radius: 10px;
  font-size: 12px;
  color: var(--teal-glow);
  letter-spacing: -0.005em;
}
.rs-counter .mono {
  font-size: 14px;
  color: var(--teal);
  font-weight: 500;
}

.step__title {
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--ink-text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step__desc {
  font-size: 15px;
  color: var(--ink-text-2);
  line-height: 1.6;
  max-width: 340px;
}

/* ============================================================
   WATCH (auto-monitoring)
   ============================================================ */
.watch {
  padding: 160px 0 120px;
  position: relative;
  background: var(--ink);
  border-top: 1px solid var(--hair);
}
.watch .section-head { margin-bottom: 0; }
.watch__lede {
  font-size: var(--fs-lead);
  color: var(--ink-text-2);
  line-height: 1.6;
  max-width: 560px;
  margin-top: 24px;
  letter-spacing: -0.005em;
}

.watch__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.watch__left {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.watch__setup { position: relative; }
.watch__panel {
  padding: 36px;
  background: var(--ink-1);
  border: 1px solid var(--hair);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.watch__panel::before {
  content: '';
  position: absolute;
  top: -140px; right: -140px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,191,184,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.watch__panel::after {
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px dashed rgba(127,191,184,0.12);
  pointer-events: none;
  animation: radar-spin 22s linear infinite;
}
@keyframes radar-spin {
  to { transform: rotate(360deg); }
}

.wp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.wp-live {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  color: var(--ink-text-2);
  letter-spacing: -0.005em;
}
.wp-live .mono { color: var(--teal); font-size: 13px; }

.wp-section { margin-bottom: 24px; position: relative; z-index: 1; }
.wp-section > .micro { display: block; margin-bottom: 12px; }

.wp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wp-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink-2);
  color: var(--ink-text-3);
  border: 1px solid var(--hair);
  font-size: 13px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 250ms var(--ease-out);
  font-family: inherit;
}
.wp-chip:hover {
  color: var(--ink-text);
  border-color: var(--hair-strong);
}
.wp-chip--on {
  background: rgba(127,191,184,0.08);
  border-color: rgba(127,191,184,0.24);
  color: var(--teal);
}
.wp-chip--on:hover { border-color: rgba(127,191,184,0.4); }

.wp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--hair);
  position: relative;
  z-index: 1;
}
.wp-row > .micro { margin: 0; letter-spacing: 0.15em; }
.wp-row__val {
  font-size: 14px;
  color: var(--ink-text);
  letter-spacing: -0.01em;
}
.wp-tier-chip {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--hot);
  background: rgba(226,133,84,0.1);
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* Lock screen mock */
.watch__alerts {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 36px;
}
.lockscreen {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 393 / 740;
  background:
    radial-gradient(ellipse at 50% 28%, rgba(127,191,184,0.1) 0%, transparent 55%),
    linear-gradient(180deg, #050809 0%, #0A0E0F 55%, #0F1416 100%);
  border-radius: 46px;
  box-shadow:
    0 0 0 1.5px #151B1F,
    0 0 0 3px #05080A,
    0 50px 100px -20px rgba(0,0,0,0.6);
  padding: 42px 22px 36px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lockscreen__island {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 4;
}
.ls-time {
  font-size: 92px;
  font-weight: 300;
  color: var(--ink-text);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: 60px;
  text-align: center;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
.ls-date {
  color: var(--ink-text);
  opacity: 0.85;
  text-align: center;
  margin: 6px 0 auto;
  font-size: 10px;
}

.ls-notifs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.notif {
  padding: 12px;
  background: rgba(44, 50, 56, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: notif-in 700ms var(--ease-out) both;
  animation-delay: calc(var(--ni, 0) * 150ms + 400ms);
}
.notif--fade { opacity: 0.7; }
.notif--new {
  --ni: 2;
  border-color: rgba(127,191,184,0.25);
  box-shadow: 0 0 32px rgba(127,191,184,0.08);
}
.notif:nth-child(2) { --ni: 1; }
.notif:nth-child(3) { --ni: 0; }
@keyframes notif-in {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.notif--fade { animation: notif-fade-in 700ms var(--ease-out) both; animation-delay: 0ms; }
@keyframes notif-fade-in {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 0.7; }
}

.notif__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.notif__app {
  width: 22px; height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.notif__app img { width: 100%; height: 100%; object-fit: cover; display: block; }
.notif__meta {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.notif__title {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-text);
  letter-spacing: -0.01em;
}
.notif__time {
  font-size: 11px;
  color: var(--ink-text-3);
}
.notif__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.notif__body strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-text);
  letter-spacing: -0.005em;
}
.notif__body span {
  font-size: 11px;
  color: var(--ink-text-2);
  letter-spacing: -0.005em;
}
.notif__profit {
  font-family: 'Geist Mono', monospace;
  color: var(--teal-glow);
}

/* Points row */
.watch__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 120px;
  padding-top: 56px;
  border-top: 1px solid var(--hair);
}
.wpoint__n {
  display: block;
  font-size: 56px;
  font-weight: 300;
  color: var(--teal-glow);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 18px;
  font-family: 'Geist Mono', monospace;
  text-shadow: 0 0 40px rgba(158, 207, 207, 0.15);
}
.wpoint p {
  font-size: 15px;
  color: var(--ink-text-2);
  line-height: 1.6;
  max-width: 280px;
  letter-spacing: -0.005em;
}

/* ============================================================
   SCAN
   ============================================================ */
.scan {
  padding: 120px 0;
  position: relative;
  background: var(--ink);
}
.scan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(340px, auto);
  gap: 16px;
}
.mode {
  position: relative;
  padding: 40px;
  background: var(--ink-1);
  border: 1px solid var(--hair);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 500ms var(--ease-out), background 500ms var(--ease-out), border-color 500ms var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}
.mode::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 320px 200px at var(--mx, 20%) var(--my, 20%), rgba(127,191,184,0.08), transparent 65%);
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
}
.mode:hover { transform: translateY(-4px); border-color: var(--hair-strong); }
.mode:hover::before { opacity: 1; }
.mode__tag { color: var(--teal); align-self: flex-start; }
.mode__title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  color: var(--ink-text);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 32px 0 16px;
  position: relative;
  z-index: 1;
}
.mode__desc {
  font-size: 15px;
  color: var(--ink-text-2);
  line-height: 1.55;
  max-width: 420px;
  position: relative;
  z-index: 1;
}
.mode__pill {
  align-self: flex-start;
  margin-top: 32px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink-2);
  border: 1px solid var(--hair);
  font-size: 12px;
  color: var(--ink-text-2);
}

/* Share visual (primary mode) */
.mode__share-visual {
  align-self: stretch;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--hair);
  border-radius: 14px;
}
.msv-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 8px;
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: 10px;
  min-width: 0;
  flex: 1;
}
.msv-card__thumb {
  width: 36px; height: 36px;
  border-radius: 7px;
  background: #1a1a1a center / cover no-repeat;
  flex-shrink: 0;
  border: 1px solid var(--hair);
}
.msv-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.msv-card__price { font-size: 13px; color: var(--ink-text); letter-spacing: -0.01em; }
.msv-card__title {
  font-size: 11px;
  color: var(--ink-text-3);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.msv-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(127,191,184,0.12);
  border: 1px solid rgba(127,191,184,0.42);
  color: var(--teal);
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  flex-shrink: 0;
  animation: msv-share-pulse 2.2s ease-in-out infinite;
  transition: transform 250ms var(--ease-out), background 250ms var(--ease-out), border-color 250ms var(--ease-out);
}
.msv-share-btn:hover {
  background: rgba(127,191,184,0.2);
  border-color: rgba(127,191,184,0.6);
  transform: translateY(-1px);
}
.msv-share-btn svg { width: 14px; height: 14px; }
@keyframes msv-share-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(127,191,184,0.35); }
  60% { box-shadow: 0 0 0 10px rgba(127,191,184,0); }
}
.msv-tile {
  width: 40px; height: 40px;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(127,191,184,0.28);
}
.msv-tile img { width: 100%; height: 100%; display: block; object-fit: cover; }
.msv-tile::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 12px;
  border: 1.5px solid var(--teal);
  animation: msv-pulse 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes msv-pulse {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.18); }
}

/* Search visual */
.mode__search-visual {
  align-self: stretch;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mode__search {
  padding: 12px 14px;
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mode__search__ic {
  color: var(--ink-text-3);
  display: flex;
}
.mode__search__ic svg { width: 16px; height: 16px; }
.mode__search__txt {
  font-size: 14px;
  color: var(--ink-text);
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: 'Geist Mono', monospace;
  letter-spacing: -0.01em;
}
.mode__caret {
  width: 2px; height: 14px;
  background: var(--teal);
  animation: blink 1s steps(2) infinite;
  margin-left: 2px;
}
.msr-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--hair);
  border-radius: 10px;
}
.msr-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 7px;
  transition: background 200ms var(--ease-out);
}
.msr-item:hover { background: rgba(127,191,184,0.06); }
.msr-item__thumb {
  width: 26px; height: 26px;
  border-radius: 5px;
  background: #1a1a1a center / cover no-repeat;
  flex-shrink: 0;
  border: 1px solid var(--hair);
}
.msr-item:nth-child(2) .msr-item__thumb { filter: brightness(0.92) saturate(0.9); }
.msr-item__name {
  flex: 1;
  font-size: 12px;
  color: var(--ink-text-2);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.msr-item__price {
  font-size: 12px;
  color: var(--teal-glow);
}

/* Photo ID demo */
.mode__photo {
  align-self: stretch;
  margin-top: 32px;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
}
.mode__photo__frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 14px;
  background: #0A0E0F;
  border: 1px solid var(--hair);
  overflow: hidden;
}
.mode__photo__img {
  position: absolute;
  inset: 0;
  background: #0A0E0F center / cover no-repeat;
  filter: contrast(1.02) saturate(1.05);
}
.mode__photo__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--teal) 0 18px, transparent 18px) top left,
    linear-gradient(to right, var(--teal) 0 18px, transparent 18px) top right,
    linear-gradient(to right, var(--teal) 0 18px, transparent 18px) bottom left,
    linear-gradient(to right, var(--teal) 0 18px, transparent 18px) bottom right,
    linear-gradient(to bottom, var(--teal) 0 18px, transparent 18px) top left,
    linear-gradient(to bottom, var(--teal) 0 18px, transparent 18px) top right,
    linear-gradient(to bottom, var(--teal) 0 18px, transparent 18px) bottom left,
    linear-gradient(to bottom, var(--teal) 0 18px, transparent 18px) bottom right;
  background-repeat: no-repeat;
  background-size: 18px 2px, 18px 2px, 18px 2px, 18px 2px, 2px 18px, 2px 18px, 2px 18px, 2px 18px;
  z-index: 2;
  pointer-events: none;
}
.mode__photo__cross {
  position: absolute;
  top: 50%; left: 20%;
  width: 60%; height: 1px;
  background: var(--teal);
  opacity: 0;
  animation: photo-scan 2.8s var(--ease-out) infinite;
  z-index: 1;
  display: none;
}
.mode__photo__cross--2, .mode__photo__cross--3, .mode__photo__cross--4 { display: none; }
.mode__photo__scanline {
  position: absolute;
  left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-glow), transparent);
  box-shadow: 0 0 18px rgba(158,207,207,0.55);
  top: 10%;
  animation: scanline-sweep 2.8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes scanline-sweep {
  0%, 100% { top: 10%; opacity: 0; }
  15%, 85% { opacity: 0.9; }
  50% { top: 85%; }
}
.mode__photo__pill {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  background: rgba(10,14,15,0.78);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border: 1px solid rgba(127,191,184,0.32);
  border-radius: 999px;
  font-size: 10px;
  color: var(--teal-glow);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}
.mode__photo__pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}
@keyframes photo-scan {
  0% { transform: translateY(-30px); opacity: 0; }
  30%, 70% { opacity: 0.5; }
  100% { transform: translateY(30px); opacity: 0; }
}

/* ============================================================
   SCORE
   ============================================================ */
.score {
  padding: 120px 0;
  background: var(--paper);
  color: var(--paper-text);
  position: relative;
}
.score::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
}
.score__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.score .eyebrow { color: var(--paper-text); opacity: 0.65; }
.score .section-title { color: var(--paper-text); }
.score__lede {
  font-size: 17px;
  color: var(--paper-text-2);
  line-height: 1.65;
  max-width: 460px;
  margin: 32px 0 40px;
  letter-spacing: -0.005em;
}
.tier-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tier {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(26,32,34,0.04);
  border: 1px solid var(--hair-paper);
  cursor: pointer;
  transition: all 300ms var(--ease-out);
  text-align: left;
}
.tier:hover {
  background: rgba(26,32,34,0.07);
  transform: translateY(-2px);
}
.tier.is-active {
  background: var(--ink);
  color: var(--ink-text);
  border-color: var(--ink);
}
.tier.is-active .tier__note { color: var(--ink-text-2); }
.tier__dot {
  width: 10px; height: 10px; border-radius: 50%;
  margin-bottom: 12px;
}
.tier[data-tier="blaze"] .tier__dot { background: var(--blaze); box-shadow: 0 0 14px rgba(217,102,87,0.5); }
.tier[data-tier="hot"] .tier__dot { background: var(--hot); }
.tier[data-tier="warm"] .tier__dot { background: var(--warm); }
.tier[data-tier="cold"] .tier__dot { background: var(--cold); }
.tier__name {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: inherit;
}
.tier__note {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-text-3);
}

.score__viewer {
  position: relative;
  padding: 48px;
  background: var(--ink);
  border-radius: 24px;
  color: var(--ink-text);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.3);
  min-height: 440px;
}
.score__frame {
  position: relative;
  z-index: 1;
  transition: opacity 300ms var(--ease-out);
}
.score__frame.is-swap {
  opacity: 0;
}
.sv__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 28px;
}
.sv__id { font-size: 12px; color: var(--ink-text-3); letter-spacing: 0.1em; }
.sv__loc { font-size: 10px; }

.sv__hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}
.sv__hero-copy { min-width: 0; }
.sv__image {
  width: 132px;
  height: 132px;
  border-radius: 14px;
  background: #111 center / cover no-repeat;
  border: 1px solid var(--hair);
  box-shadow: 0 14px 34px -14px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.04);
  transition: opacity 300ms var(--ease-out), background-image 300ms var(--ease-out);
  flex-shrink: 0;
}
.sv__image[data-tier="blaze"] { background-image: url('../assets/ticker/drone.jpg'); }
.sv__image[data-tier="hot"] { background-image: url('../assets/ticker/sony.jpg'); }
.sv__image[data-tier="warm"] { background-image: url('../assets/ticker/switch.jpg'); }
.sv__image[data-tier="cold"] { background-image: url('../assets/ticker/chair.jpg'); }

.sv__label {
  font-size: 84px;
  font-weight: 300;
  line-height: 0.9;
  color: var(--teal-glow);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.sv__label[data-tier="blaze"] { color: var(--blaze); }
.sv__label[data-tier="hot"] { color: var(--hot); }
.sv__label[data-tier="warm"] { color: var(--warm); }
.sv__label[data-tier="cold"] { color: var(--cold); }

.sv__product {
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-text);
  letter-spacing: -0.01em;
  max-width: 420px;
}

.sv__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin-bottom: 20px;
}
.sv__cell { display: flex; flex-direction: column; gap: 4px; }
.sv__val {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink-text);
  letter-spacing: -0.03em;
}
.sv__val--teal { color: var(--teal); }

.sv__bar {
  height: 3px;
  border-radius: 2px;
  background: var(--ink-3);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.sv__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal-glow));
  transform-origin: left;
  transform: scaleX(var(--bar, 0.8));
  transition: transform 600ms var(--ease-out);
}
.sv__verdict {
  font-size: 14px;
  color: var(--ink-text-2);
  letter-spacing: -0.005em;
}
.score__decor {
  position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  color: var(--ink-text);
  opacity: 0.3;
  pointer-events: none;
}
.score__decor svg { width: 100%; height: 100%; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  padding: 120px 0;
  background: var(--ink);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.quote__stage {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  min-height: 280px;
}
.quote__slide {
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
  pointer-events: none;
}
.quote__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.quote__body {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink-text);
  letter-spacing: -0.02em;
}
.quote__body .serif-italic { color: var(--teal); }
.quote__cite {
  margin-top: 32px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-text-3);
}
.quote__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 48px;
}
.quote__dot {
  width: 30px;
  height: 2px;
  background: var(--hair-strong);
  border-radius: 2px;
  cursor: pointer;
  transition: background 300ms var(--ease-out), width 300ms var(--ease-out);
  padding: 0;
}
.quote__dot:hover { background: var(--ink-text-2); }
.quote__dot.is-active {
  background: var(--teal);
  width: 48px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 120px 0;
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 96px;
  align-items: start;
}
.faq__head { position: sticky; top: 100px; }
.faq__list { display: flex; flex-direction: column; gap: 2px; }
.faq__item {
  padding: 28px 0;
  border-top: 1px solid var(--hair);
  transition: padding 300ms var(--ease-out);
}
.faq__item:last-child { border-bottom: 1px solid var(--hair); }
.faq__item[open] { padding-bottom: 36px; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__n {
  font-size: 12px;
  color: var(--ink-text-3);
  letter-spacing: 0.15em;
  width: 32px;
  flex-shrink: 0;
}
.faq__q {
  flex: 1;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--ink-text);
  letter-spacing: -0.015em;
  line-height: 1.25;
  transition: color 250ms var(--ease);
}
.faq__item:hover .faq__q { color: var(--teal-glow); }
.faq__chev {
  width: 14px; height: 14px;
  position: relative;
  flex-shrink: 0;
}
.faq__chev::before,
.faq__chev::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--teal);
  transition: transform 300ms var(--ease-out);
}
.faq__chev::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__chev::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__chev::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  padding: 20px 0 0 52px;
  max-width: 640px;
}
.faq__a p {
  font-size: 16px;
  color: var(--ink-text-2);
  line-height: 1.65;
  letter-spacing: -0.005em;
}

/* ============================================================
   GET (BIG CTA)
   ============================================================ */
.get {
  padding: 200px 0 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.get::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 800px 500px at 50% 20%, rgba(127,191,184,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 80% 80%, rgba(232,182,108,0.04) 0%, transparent 60%);
}
.get__inner { position: relative; z-index: 1; }
.get .eyebrow { justify-content: center; margin-bottom: 36px; }
.get .eyebrow { display: inline-flex; }
.get__title {
  font-size: var(--fs-h1);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink-text);
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
.get__title .serif-italic { color: var(--teal); font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.get__sub {
  font-size: var(--fs-lead);
  color: var(--ink-text-2);
  max-width: 520px;
  margin: 0 auto 48px;
  letter-spacing: -0.005em;
}
.get__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.get__foot {
  color: var(--ink-text-3);
  letter-spacing: 0.15em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__body { grid-template-columns: 1fr; gap: 80px; }
  .hero__copy { max-width: 100%; }
  .hero__device { min-height: auto; align-items: center; }
  .device-label { align-self: center; }
  .anno { display: none; }
  .score__inner { grid-template-columns: 1fr; gap: 48px; }
  .score__decor { display: none; }
  .faq__inner { grid-template-columns: 1fr; gap: 48px; }
  .faq__head { position: static; }
  .scan-grid { grid-template-columns: 1fr 1fr; }
  .watch__layout { grid-template-columns: 1fr; gap: 48px; }
  .watch__alerts { margin-top: 0; }
}

@media (max-width: 820px) {
  .hero { padding-top: 100px; }
  .hero__title { font-size: clamp(40px, 10vw, 72px); }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .scan-grid { grid-template-columns: 1fr; }
  .tier-picker { grid-template-columns: 1fr 1fr; }
  .score__viewer { padding: 28px; }
  .sv__hero { grid-template-columns: 1fr; gap: 16px; }
  .sv__image { width: 100%; height: 180px; }
  .sv__label { font-size: 56px; }
  .sv__row { grid-template-columns: 1fr 1fr; }
  .sv__val { font-size: 20px; }
  .quote__body { font-size: clamp(24px, 6vw, 36px); }
  .quote__stage { min-height: 320px; }
  .faq__q { font-size: clamp(18px, 5vw, 24px); }
  .faq__a { padding-left: 0; }
  .watch__panel { padding: 24px; }
  .watch__left { gap: 40px; }
  .watch__points { grid-template-columns: 1fr; gap: 32px; margin-top: 72px; padding-top: 40px; }
  .wpoint__n { font-size: 44px; }
  .lockscreen { width: 300px; }
  .ls-time { font-size: 72px; margin-top: 48px; }
  .method, .watch, .scan, .score, .quote, .faq, .get { padding: 80px 0; }
  .mode { padding: 28px; }
  .mode__title { margin-top: 20px; }
  .mode__photo { aspect-ratio: 4 / 3; }
  .step__frame { aspect-ratio: 3 / 4; }
}

@media (max-width: 500px) {
  .masthead { flex-wrap: wrap; gap: 10px; }
  .phone { transform: none; }
  .phone:hover { transform: none; }
  .marquee__label { padding-bottom: 10px; }
  .get__title { font-size: clamp(36px, 10vw, 56px); }
  .sv__label { font-size: 48px; }
  .sv__product { font-size: 18px; }
  .sv__image { height: 140px; }
  .step__frame { aspect-ratio: 4 / 3; }
  .mode__share-visual { flex-direction: column; align-items: stretch; gap: 10px; }
  .msv-card { justify-content: flex-start; }
  .msv-share-btn { justify-content: center; }
  .msv-tile { align-self: center; }
}
