/* card.sex — prototype design system
   Dark-first. Editorial serif against tight grotesk. One hot accent, used sparingly. */

:root {
  --ink:      #08080A;
  --ink-1:    #0E0E12;
  --ink-2:    #14141A;
  --ink-3:    #1D1D25;
  --hair:     #26262F;
  --hair-lit: #3A3A47;

  --bone:     #F2EEE8;
  --bone-2:   #B8B2A8;
  --bone-3:   #7C766D;

  --ember:    #FF2D6F;
  --flare:    #FF7A3D;
  --jade:     #35D99B;
  --ice:      #6FA8FF;

  --grad:     linear-gradient(115deg, #FF2D6F 0%, #FF7A3D 100%);
  --grad-soft:linear-gradient(115deg, rgba(255,45,111,.16) 0%, rgba(255,122,61,.16) 100%);
  --foil:     linear-gradient(135deg,#3a3a47 0%,#9d97a8 18%,#e8e4dd 32%,#8f8a97 46%,#4a4a58 62%,#c9c3bb 80%,#5a5a68 100%);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  ui-monospace, "SF Mono", Menlo, monospace;

  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1240px;
  --r:   14px;
  --ease: cubic-bezier(.22,1,.36,1);
}

:root[data-theme="light"] {
  --ink: #F6F3EE; --ink-1: #FFFFFF; --ink-2: #FCFAF7; --ink-3: #F1ECE4;
  --hair: #E2DCD2; --hair-lit: #C9C1B4;
  --bone: #14120F; --bone-2: #4E4941; --bone-3: #857E73;
  --foil: linear-gradient(135deg,#d8d3ca 0%,#fff 20%,#bdb6ab 40%,#fff 60%,#cfc8bd 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.skip-link { position: fixed; top: .7rem; left: .7rem; z-index: 1000; padding: .65rem 1rem; border-radius: 999px; background: var(--bone); color: var(--ink); font-size: .78rem; text-decoration: none; transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: ""; position: fixed; inset: 0; z-index: 99; pointer-events: none; opacity: .025;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.5) 0, rgba(255,255,255,.5) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: soft-light;
}

/* ambient glow */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(255,45,111,.16), transparent 62%),
    radial-gradient(760px 480px at 6% 4%, rgba(255,122,61,.10), transparent 60%);
  pointer-events: none; z-index: 0;
}
:root[data-theme="light"] body::before { opacity: .45; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 1; }

h1,h2,h3 { font-family: var(--serif); font-weight: 600; font-variation-settings: "SOFT" 12, "WONK" 1; letter-spacing: -.02em; line-height: 1.02; margin: 0; }
p { margin: 0 0 1rem; }
a { color: inherit; }

.em { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }

.eyebrow {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--bone-3); margin-bottom: 1.4rem;
}

/* ── nav ─────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(18px) saturate(1.4);
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  border-bottom: 1px solid var(--hair);
}
.nav-progress { position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px; transform: scaleX(0); transform-origin: left; background: var(--grad); box-shadow: 0 0 18px rgba(255,45,111,.7); }
.nav-in { max-width: var(--max); margin: 0 auto; padding: .85rem var(--pad); display: flex; align-items: center; gap: 1.6rem; }
.mark { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: -.03em; text-decoration: none; margin-right: auto; }
.mark span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-in a.nl { font-size: .84rem; color: var(--bone-2); text-decoration: none; transition: color .2s; }
.nav-in a.nl:hover, .nav-in a.nl.is-active { color: var(--bone); }
.nav-in a.nl.is-active { text-shadow: 0 0 24px color-mix(in srgb, var(--ember) 50%, transparent); }
.theme-btn { background: color-mix(in srgb, var(--ink-2) 75%, transparent); border: 1px solid var(--hair); color: var(--bone-2); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: .8rem; line-height: 1; display: grid; place-items: center; transition: transform .25s var(--ease), border-color .25s; }
.theme-btn:hover { transform: rotate(20deg); border-color: var(--bone-3); }
.lang-control { display: flex; align-items: center; }
.lang-control select { appearance: none; min-width: 52px; height: 34px; padding: 0 1.55rem 0 .7rem; border: 1px solid var(--hair); border-radius: 999px; background: color-mix(in srgb, var(--ink-2) 75%, transparent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='m1 1 4 4 4-4' fill='none' stroke='%23B8B2A8'/%3E%3C/svg%3E") no-repeat right .6rem center; color: var(--bone-2); font: 600 .66rem var(--mono); letter-spacing: .08em; cursor: pointer; }
.lang-control select:hover { border-color: var(--bone-3); color: var(--bone); }
@media (max-width: 760px) { .nav-in a.nl { display: none; } }

/* ── hero ────────────────────────────────────────────── */
header.hero { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(390px,.92fr); align-items: center; gap: clamp(2rem, 6vw, 6rem); min-height: min(860px, calc(100svh - 62px)); padding: clamp(4rem, 8vw, 7rem) var(--pad) clamp(3.5rem, 7vw, 6rem); }
.hero-copy { position: relative; z-index: 3; }
.hero h1 { font-size: clamp(3.2rem, 6.5vw, 6.6rem); max-width: 11.2ch; text-wrap: balance; }
.hero .lede { font-size: clamp(1rem, 1.3vw, 1.16rem); color: var(--bone-2); max-width: 58ch; margin-top: 1.8rem; }
.hero .lede b { color: var(--bone); font-weight: 500; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-cta .btn-p span { transition: transform .25s var(--ease); }
.hero-cta .btn-p:hover span { transform: translateX(4px); }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .82rem 1.5rem; border-radius: 999px; font-size: .92rem; font-weight: 500;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  font-family: var(--sans);
}
.btn-p { background: var(--grad); color: #14060C; font-weight: 600; box-shadow: 0 8px 30px -10px rgba(255,45,111,.7); }
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(255,45,111,.85); }
.btn-s { border-color: var(--hair-lit); color: var(--bone); background: transparent; }
.btn-s:hover { border-color: var(--bone-3); background: var(--ink-2); transform: translateY(-2px); }

.whisper { font-family: var(--serif); font-style: italic; color: var(--bone-3); font-size: 1.05rem; margin-top: 2.6rem; }

.hero-proof { display: flex; gap: clamp(1rem, 3vw, 2.2rem); margin-top: 3rem; padding-top: 1.35rem; border-top: 1px solid var(--hair); max-width: 620px; }
.hero-proof div { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: .55rem; min-width: 0; }
.hero-proof strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; color: var(--bone); }
.hero-proof span { font-family: var(--mono); font-size: .58rem; line-height: 1.35; letter-spacing: .11em; text-transform: uppercase; color: var(--bone-3); }

.hero-stage { --rx: 0deg; --ry: 0deg; position: relative; height: clamp(480px, 55vw, 650px); perspective: 1200px; transform-style: preserve-3d; transform: rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .3s ease-out; }
.hero-stage::before { content: ""; position: absolute; width: 78%; aspect-ratio: 1; left: 12%; top: 10%; border-radius: 50%; background: radial-gradient(circle, rgba(255,45,111,.22), rgba(255,122,61,.08) 38%, transparent 70%); filter: blur(24px); }
.hero-stage::after { content: ""; position: absolute; inset: 8% 3% 5%; border: 1px solid var(--hair); border-radius: 50%; transform: rotate(-14deg); opacity: .7; }
.scene-card { position: absolute; overflow: hidden; border-radius: 18px; border: 1px solid rgba(255,255,255,.14); background: var(--ink-2); box-shadow: 0 40px 80px -36px rgba(0,0,0,.95), inset 0 1px 0 rgba(255,255,255,.08); transform-style: preserve-3d; transition: transform .8s var(--ease), filter .5s; }
.scene-card img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.08) contrast(1.03); }
.scene-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(8,8,10,.88)); }
.scene-meta { position: absolute; z-index: 2; left: 1rem; right: 1rem; bottom: .9rem; display: flex; justify-content: space-between; align-items: end; gap: 1rem; color: #F2EEE8; }
.scene-meta span { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; color: rgba(242,238,232,.65); }
.scene-meta strong { font-family: var(--serif); font-size: 1rem; font-weight: 500; text-align: right; }
.scene-a { width: 66%; height: 39%; right: 4%; top: 4%; transform: translateZ(42px) rotate(6deg); }
.scene-b { width: 72%; height: 43%; left: 0; top: 32%; z-index: 2; transform: translateZ(80px) rotate(-7deg); }
.scene-c { width: 60%; height: 36%; right: 1%; bottom: 1%; z-index: 3; transform: translateZ(110px) rotate(5deg); }
.hero-stage:hover .scene-a { transform: translate3d(8px,-8px,80px) rotate(3deg); }
.hero-stage:hover .scene-b { transform: translate3d(-10px,4px,110px) rotate(-4deg); }
.hero-stage:hover .scene-c { transform: translate3d(8px,9px,140px) rotate(3deg); }
.stage-orbit { position: absolute; left: 50%; top: 48%; z-index: 5; width: 86px; height: 86px; margin: -43px; display: grid; place-items: center; border-radius: 50%; background: var(--grad); color: #18070d; font-family: var(--mono); font-size: .52rem; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; box-shadow: 0 16px 45px -16px rgba(255,45,111,.9); animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-10px) rotate(-3deg); } }

.signal-strip { position: relative; z-index: 2; overflow: hidden; border-block: 1px solid var(--hair); background: var(--ink-1); }
.signal-track { display: flex; align-items: center; gap: 1.25rem; width: max-content; padding: .8rem 0; color: var(--bone-3); font-family: var(--mono); font-size: .61rem; letter-spacing: .16em; text-transform: uppercase; animation: marquee 30s linear infinite; }
.signal-track span { white-space: nowrap; }
.signal-track i { color: var(--ember); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  header.hero { grid-template-columns: 1fr; min-height: auto; }
  .hero h1 { max-width: 12ch; }
  .hero-stage { width: min(680px,100%); height: min(620px,80vw); margin: -1rem auto 0; }
}
@media (max-width: 600px) {
  header.hero { padding-top: 3.6rem; }
  .hero-proof { gap: .9rem; justify-content: space-between; }
  .hero-proof div { display: block; }
  .hero-proof strong, .hero-proof span { display: block; }
  .hero-stage { height: 440px; }
  .scene-a { width: 72%; }
  .scene-b { width: 78%; }
  .scene-c { width: 66%; }
}

/* ── section furniture ───────────────────────────────── */
section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; z-index: 1; }
section:nth-of-type(even)::before { content: ""; position: absolute; inset: 8% 0; z-index: -1; background: radial-gradient(700px 380px at 8% 50%, rgba(255,122,61,.05), transparent 68%); pointer-events: none; }
.sec-head { margin-bottom: 3rem; }
.sec-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); max-width: 18ch; text-wrap: balance; }
.sec-head p { color: var(--bone-2); max-width: 60ch; margin-top: 1rem; }
.rule { height: 1px; background: linear-gradient(90deg, var(--hair-lit), transparent); border: 0; margin: 0; }

/* ── occasion grid ───────────────────────────────────── */
.occ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 22px; overflow: hidden; box-shadow: 0 40px 90px -60px rgba(0,0,0,.9); }
@media (max-width: 980px) { .occ-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .occ-grid { grid-template-columns: 1fr; } }

.occ {
  min-height: 265px; display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--ink-1); padding: 5.4rem 1.4rem 1.5rem; cursor: pointer;
  border: 0; text-align: left; color: inherit; font: inherit;
  position: relative; isolation: isolate; transition: background .3s var(--ease), transform .4s var(--ease); overflow: hidden;
}
.occ-img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4; filter: saturate(1.18) contrast(1.05); transition: opacity .35s var(--ease), transform .6s var(--ease); }
.occ::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,8,10,.08) 0%, rgba(8,8,10,.38) 35%, rgba(8,8,10,.95) 88%); pointer-events: none; }
.occ > *:not(.occ-img) { position: relative; z-index: 2; }
.occ::after { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .35s var(--ease); pointer-events: none; }
.occ:hover, .occ:focus-visible { background: var(--ink-2); outline: none; z-index: 4; box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--ember) 45%, transparent); }
.occ.is-active { z-index: 4; box-shadow: inset 0 0 0 2px var(--ember); }
.occ:hover::after, .occ:focus-visible::after { opacity: 1; }
.occ:hover .occ-img, .occ:focus-visible .occ-img { opacity: .58; transform: scale(1.05); }
.occ .num { position: absolute !important; top: 1.25rem; left: 1.4rem; font-family: var(--mono); font-size: .66rem; color: rgba(242,238,232,.72); letter-spacing: .16em; }
.occ h3 { font-size: 1.42rem; margin: .7rem 0 .45rem; position: relative; }
.occ .need { font-size: .86rem; color: var(--bone-2); line-height: 1.5; position: relative; min-height: 3.6em; }
.occ .type { margin-top: 1rem; font-family: var(--mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ember); position: relative; }
.occ .arw { position: absolute; right: 1.3rem; bottom: 1.3rem; opacity: 0; transform: translateX(-6px); transition: all .3s var(--ease); color: var(--ember); }
.occ:hover .arw { opacity: 1; transform: translateX(0); }

.shortlist-hero { position: relative; min-height: 300px; display: flex; align-items: end; overflow: hidden; border: 1px solid var(--hair-lit); border-radius: 20px; background: var(--ink-2); margin-bottom: 1.2rem; box-shadow: 0 35px 80px -55px rgba(0,0,0,.9); }
.shortlist-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.12) contrast(1.04); }
.shortlist-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,10,.95) 0%, rgba(8,8,10,.68) 48%, rgba(8,8,10,.16)); }
.shortlist-copy { position: relative; z-index: 2; width: min(650px,100%); padding: clamp(1.5rem,4vw,3rem); }
.shortlist-copy .eyebrow { margin-bottom: 1rem; color: rgba(242,238,232,.65); }
.shortlist-copy h2 { font-size: clamp(2rem,5vw,4.2rem); }
.shortlist-copy p { color: rgba(242,238,232,.78); margin: .8rem 0 0; }

/* ── product catalog ─────────────────────────────────── */
.catalog-tools { display: flex; gap: .55rem; flex-wrap: wrap; margin: -1rem 0 1.5rem; }
.cat-filter { border: 1px solid var(--hair); border-radius: 999px; padding: .55rem .9rem; background: var(--ink-1); color: var(--bone-2); font: 600 .68rem var(--mono); letter-spacing: .05em; cursor: pointer; transition: all .25s var(--ease); }
.cat-filter:hover, .cat-filter.is-active { border-color: var(--ember); color: var(--bone); background: var(--grad-soft); transform: translateY(-1px); }
.card-catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.product-card { min-height: 360px; display: flex; flex-direction: column; padding: 1.4rem; border: 1px solid var(--hair); border-radius: 18px; background: linear-gradient(145deg,var(--ink-1),var(--ink-2)); position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .25s; }
.product-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: var(--grad); opacity: .6; }
.product-card:hover { transform: translateY(-5px); border-color: var(--hair-lit); }
.product-top, .product-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product-rank, .engine-score, .product-brand, .product-card small { font-family: var(--mono); font-size: .59rem; letter-spacing: .1em; text-transform: uppercase; color: var(--bone-3); }
.engine-score { color: var(--jade); }
.product-brand { margin-top: 2rem; color: var(--ember); }
.product-card h3 { margin-top: .55rem; font-size: 1.65rem; }
.product-card > p { color: var(--bone-2); font-size: .84rem; line-height: 1.5; margin: .7rem 0 1.2rem; }
.product-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: auto; border: 1px solid var(--hair); border-radius: 10px; overflow: hidden; background: var(--hair); }
.product-metrics div { padding: .7rem .65rem; background: var(--ink-1); }
.product-metrics strong, .product-metrics span { display: block; }
.product-metrics strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.product-metrics span { color: var(--bone-3); font: .54rem var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.product-flags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .8rem 0 1rem; }
.product-flags span { padding: .25rem .5rem; border: 1px solid var(--hair); border-radius: 999px; color: var(--bone-2); font: .56rem var(--mono); }
.product-link, .row-link { color: var(--ember); font: 600 .66rem var(--mono); text-decoration: none; white-space: nowrap; }
.product-link:hover, .row-link:hover { color: var(--flare); }
.catalog-note { margin: 1.2rem 0 0; max-width: 82ch; color: var(--bone-3); font-size: .76rem; }
.catalog-note b { color: var(--bone-2); font-weight: 500; }
@media (max-width: 980px) { .card-catalog { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .card-catalog { grid-template-columns: 1fr; } .product-card { min-height: 330px; } }

/* ── the two scores ──────────────────────────────────── */
.scores { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 820px) { .scores { grid-template-columns: 1fr; } }
.score-card { min-height: 390px; border: 1px solid var(--hair); border-radius: 20px; padding: clamp(2rem,4vw,3.2rem); background: linear-gradient(145deg,var(--ink-1),var(--ink-2)); position: relative; overflow: hidden; transition: transform .4s var(--ease), border-color .3s; }
.score-card::after { position: absolute; right: -.03em; bottom: -.25em; font-family: var(--serif); font-size: clamp(8rem,18vw,14rem); line-height: 1; color: var(--bone); opacity: .025; pointer-events: none; }
.score-card:first-child::after { content: "ASK"; }
.score-card:last-child::after { content: "TAKE"; }
.score-card:hover { transform: translateY(-6px); border-color: var(--hair-lit); }
.score-card h3 { font-size: 2rem; margin-bottom: .3rem; }
.score-card .sub { font-family: var(--mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-3); }
.score-card p { color: var(--bone-2); font-size: .93rem; margin-top: 1rem; }
.score-card ul { margin: 1.2rem 0 0; padding: 0; list-style: none; }
.score-card li { font-size: .85rem; color: var(--bone-2); padding: .5rem 0; border-top: 1px solid var(--hair); display: flex; gap: .7rem; }
.score-card li::before { content: "→"; color: var(--ember); flex: none; }

/* ── ask slider ──────────────────────────────────────── */
.ask-panel { border: 1px solid var(--hair); border-radius: 20px; background: linear-gradient(145deg,var(--ink-1),var(--ink-2)); padding: clamp(1.5rem, 4vw, 3rem); box-shadow: 0 35px 80px -60px rgba(0,0,0,.9); }
.ask-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: .4rem; }
.ask-row h3 { font-size: 1.5rem; }
.ask-val { font-family: var(--mono); font-size: .8rem; color: var(--ember); }
.ask-legend { display: flex; justify-content: space-between; font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--bone-3); margin-top: .5rem; }

input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: var(--hair-lit); outline: none; margin: 1.6rem 0 0; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad); cursor: grab; border: 3px solid var(--ink); box-shadow: 0 0 0 1px var(--hair-lit), 0 6px 20px -6px rgba(255,45,111,.9); }
input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #FF2D6F; cursor: grab; border: 3px solid var(--ink); }

.results { margin-top: 1.8rem; display: flex; flex-direction: column; gap: .55rem; min-height: 220px; }
.res {
  display: grid; grid-template-columns: minmax(220px,1.6fr) auto auto auto auto; gap: 1rem; align-items: center;
  padding: .85rem 1.1rem; border: 1px solid var(--hair); border-radius: 10px; background: var(--ink-2);
  animation: rise .45s var(--ease) both;
}
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.res .nm { font-weight: 500; font-size: .95rem; }
.res .nm small { display: block; color: var(--bone-3); font-size: .72rem; font-weight: 400; margin-top: .15rem; }
.pill { font-family: var(--mono); font-size: .66rem; padding: .28rem .6rem; border-radius: 999px; border: 1px solid var(--hair-lit); color: var(--bone-2); white-space: nowrap; }
.pill.lo { color: var(--jade); border-color: color-mix(in srgb, var(--jade) 40%, transparent); }
.pill.hi { color: var(--ember); border-color: color-mix(in srgb, var(--ember) 40%, transparent); }
@media (max-width: 780px) { .res { grid-template-columns: 1fr auto; } .res .pill.hide-s { display: none; } .row-link { grid-column: 1 / -1; } }
.empty { color: var(--bone-3); font-family: var(--serif); font-style: italic; padding: 2rem 0; }

.reason { font-family: var(--serif); font-style: italic; color: var(--bone-3); font-size: .9rem; margin: -.15rem 0 .5rem 1.1rem; padding-left: .9rem; border-left: 1px solid var(--hair); }

.sponsored { border: 1px dashed var(--hair-lit); border-radius: 10px; padding: .7rem; margin-bottom: .8rem; background: color-mix(in srgb, var(--ink-3) 60%, transparent); }
.sp-lab { font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bone-3); margin: .1rem 0 .6rem .35rem; }
.sponsored .res { border-style: dashed; }

/* ── scatter ─────────────────────────────────────────── */
.chart-shell { border: 1px solid var(--hair); border-radius: 20px; background: linear-gradient(145deg,var(--ink-1),var(--ink-2)); padding: clamp(1rem, 3vw, 2.5rem); overflow-x: auto; box-shadow: 0 35px 80px -60px rgba(0,0,0,.9); }
.chart-shell svg { display: block; width: 100%; min-width: 520px; height: auto; }
.dot { cursor: pointer; transition: r .2s var(--ease); }
.dot:hover { r: 9; }
.axis-lab { font-family: var(--mono); font-size: 10px; fill: var(--bone-3); letter-spacing: .1em; text-transform: uppercase; }
.dot-lab { font-family: var(--sans); font-size: 10px; fill: var(--bone-2); }
.quad-lab { font-family: var(--serif); font-style: italic; font-size: 13px; fill: var(--bone-3); }

/* ── quiz ────────────────────────────────────────────── */
.quiz { border: 1px solid var(--hair-lit); border-radius: 20px; background: linear-gradient(145deg,var(--ink-1),var(--ink-2)); padding: clamp(1.8rem, 5vw, 4rem); position: relative; overflow: hidden; box-shadow: 0 35px 80px -60px rgba(0,0,0,.9); }
.quiz::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad); }
.q-prog { font-family: var(--mono); font-size: .66rem; letter-spacing: .18em; color: var(--bone-3); text-transform: uppercase; }
.quiz h3 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); margin: .9rem 0 1.8rem; }
.opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: .7rem; }
.opt { text-align: left; padding: 1.05rem 1.2rem; border: 1px solid var(--hair); background: var(--ink-2); color: var(--bone); border-radius: 10px; cursor: pointer; font: inherit; font-size: .92rem; transition: all .22s var(--ease); }
.opt:hover { border-color: var(--ember); background: var(--ink-3); transform: translateY(-2px); }
.opt small { display: block; color: var(--bone-3); font-size: .76rem; margin-top: .2rem; }
.q-back { margin-top: 1.6rem; background: none; border: 0; color: var(--bone-3); font-size: .8rem; cursor: pointer; font-family: var(--sans); padding: 0; }
.q-back:hover { color: var(--bone); }

.verdict { animation: rise .5s var(--ease) both; }
.verdict .because { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--bone-2); margin: 0 0 1.8rem; padding-left: 1rem; border-left: 2px solid var(--ember); }
.pick { border: 1px solid var(--hair-lit); border-radius: 12px; padding: 1.5rem; background: var(--ink-2); }
.pick .tag { font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ember); }
.pick h4 { font-family: var(--serif); font-size: 1.7rem; margin: .5rem 0 .6rem; font-weight: 600; }
.pick .why { color: var(--bone-2); font-size: .9rem; }
.pick .meta { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.1rem 0; }
.alts { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: .7rem; }
@media (max-width: 620px) { .alts { grid-template-columns: 1fr; } }
.alt { border: 1px solid var(--hair); border-radius: 10px; padding: 1rem 1.1rem; background: var(--ink-1); }
.alt .tag { font-family: var(--mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-3); }
.alt strong { display: block; margin: .3rem 0 .25rem; font-weight: 500; }
.alt span { font-size: .8rem; color: var(--bone-3); }

/* ── trust ───────────────────────────────────────────── */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 20px; overflow: hidden; box-shadow: 0 35px 80px -60px rgba(0,0,0,.9); }
@media (max-width: 820px) { .trust { grid-template-columns: 1fr; } }
.trust div { background: var(--ink-1); padding: 1.9rem 1.5rem; }
.trust h4 { font-family: var(--serif); font-size: 1.3rem; margin: 0 0 .5rem; font-weight: 600; }
.trust p { color: var(--bone-2); font-size: .87rem; margin: 0; }

/* ── card render ─────────────────────────────────────── */
.card-art { perspective: 900px; display: grid; place-items: center; padding: 2rem 0; }
.plastic {
  width: min(360px, 80vw); aspect-ratio: 1.586; border-radius: 16px;
  background: linear-gradient(145deg, #16161C 0%, #24242E 45%, #101015 100%);
  border: 1px solid var(--hair-lit); position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.07);
  transform: rotateX(12deg) rotateY(-14deg); transition: transform .5s var(--ease);
}
.card-art:hover .plastic { transform: rotateX(4deg) rotateY(-4deg) translateY(-6px); }
.plastic::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: .16; }
.plastic .chip { position: absolute; top: 34%; left: 8%; width: 44px; height: 34px; border-radius: 6px; background: var(--foil); opacity: .9; }
.plastic .brand { position: absolute; top: 8%; left: 8%; font-family: var(--serif); font-size: 1.1rem; letter-spacing: -.02em; }
.plastic .brand span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plastic .no { position: absolute; bottom: 22%; left: 8%; font-family: var(--mono); font-size: .95rem; letter-spacing: .12em; color: var(--bone-2); }
.plastic .foot { position: absolute; bottom: 8%; left: 8%; font-family: var(--mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-3); }
.plastic .net { position: absolute; bottom: 8%; right: 8%; font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--bone-2); }

/* ── footer ──────────────────────────────────────────── */
footer { border-top: 1px solid var(--hair); padding: 3rem 0 4rem; margin-top: 3rem; }
.disc { border: 1px solid var(--hair); border-radius: 10px; padding: 1.2rem 1.4rem; background: var(--ink-1); color: var(--bone-2); font-size: .82rem; max-width: 78ch; }
.disc b { color: var(--bone); font-weight: 500; }
.f-bot { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 2rem; font-size: .78rem; color: var(--bone-3); }
.f-bot a { color: var(--bone-3); text-decoration: none; }
.f-bot a:hover { color: var(--bone); }

.prov { font-family: var(--mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--flare); border: 1px solid color-mix(in srgb, var(--flare) 35%, transparent); border-radius: 999px; padding: .3rem .7rem; display: inline-block; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 560px) {
  .occ { min-height: 290px; }
  .shortlist-hero { min-height: 360px; }
  .shortlist-hero::after { background: linear-gradient(180deg,rgba(8,8,10,.1),rgba(8,8,10,.96) 72%); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .signal-track, .stage-orbit { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
