/* ───────────────────────────────────────────────────────
   PICKSBYCARD — cinematic editorial fintech
   Dark hero with gradient mesh, glossy floating cards,
   airy color-keyed chapter sections below.
   ─────────────────────────────────────────────────────── */

:root {
  --paper: #fbfaf7;
  --paper-soft: #f3f1ec;
  --paper-dim: #e9e7e1;
  --ink: #0f1014;
  --ink-2: #1a1c22;
  --ink-soft: rgba(15,16,20,0.72);
  --ink-dim: rgba(15,16,20,0.52);
  --ink-faint: rgba(15,16,20,0.28);
  --rule: rgba(15,16,20,0.10);
  --rule-strong: rgba(15,16,20,0.22);
  --burgundy: #6b2737;
  --gold: #d4a93a;
  --emerald: #1f6f5c;
  --plum: #5a3a72;
  --sans: 'Satoshi', system-ui, sans-serif;
  --max: 1240px;
  --read: 720px;
  --card-radius: 16px;
  --card-shadow: 0 30px 60px -25px rgba(0,0,0,0.55), 0 12px 24px -12px rgba(0,0,0,0.30);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { background: var(--paper); }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ─── Realistic card art ─── */
.card-art-wrap {
  perspective: 1200px;
  transform-style: preserve-3d;
}
.card-art {
  position: relative;
  aspect-ratio: 1.586 / 1;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 2.4vw, 28px);
  color: #fff;
  font-family: var(--sans);
  isolation: isolate;
  transition: transform .5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .5s;
  transform-style: preserve-3d;
}
/* Diagonal gloss highlight — the hallmark of a real product card */
.card-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.05) 18%, rgba(255,255,255,0) 38%, rgba(255,255,255,0) 65%, rgba(255,255,255,0.10) 90%, rgba(255,255,255,0.20) 100%),
    radial-gradient(ellipse at top right, rgba(255,255,255,0.20), transparent 55%);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 4;
}
/* Soft inner shadow on the bottom edge for dimension */
.card-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
  z-index: 3;
}

.ca-row-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 5;
  gap: 12px;
}
.ca-issuer {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}
.ca-mark {
  width: clamp(28px, 3vw, 40px);
  height: clamp(28px, 3vw, 40px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), rgba(255,255,255,0.05) 60%);
  border: 1px solid rgba(255,255,255,0.25);
  position: relative;
}
.ca-mark::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

/* Chip — copper-gold gradient with contact lines */
.ca-chip {
  position: relative;
  z-index: 5;
  width: clamp(38px, 4.2vw, 56px);
  aspect-ratio: 1.3/1;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.30), rgba(255,255,255,0.05) 30%, rgba(0,0,0,0.15) 100%),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.20) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.20) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, #c89b5b 0%, #f0d289 50%, #b8884a 100%);
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 1px 2px rgba(0,0,0,0.25);
  margin-top: clamp(8px, 1.2vw, 14px);
}

/* Faux card number — placeholder dots + last 4 */
.ca-numbers {
  position: relative;
  z-index: 5;
  font-size: clamp(13px, 1.3vw, 17px);
  letter-spacing: 0.18em;
  font-weight: 500;
  opacity: 0.88;
  margin-top: clamp(12px, 1.6vw, 20px);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.ca-row-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 5;
  gap: 12px;
}
.ca-name {
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.0;
  max-width: 70%;
}
.ca-tag {
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: right;
  opacity: 0.65;
}

.card-art-wrap:hover .card-art {
  transform: translateY(-6px) rotateX(4deg) rotateY(-3deg);
  box-shadow: 0 40px 70px -22px rgba(0,0,0,0.65), 0 18px 30px -12px rgba(0,0,0,0.40);
}

/* Real product photo variant — same dimension/shadow/hover, no CSS chip overlay */
.card-art-photo {
  display: block;
  width: 100%;
  object-fit: cover;
  background: transparent;
  padding: 0;
}
.card-art-photo::before,
.card-art-photo::after { display: none; }

/* ─── Masthead ─── */
/* No border-bottom — that creates a hard line on dark. The translucent
   dark bg + backdrop blur naturally separates from content beneath as
   the user scrolls. */
.masthead {
  padding: 18px clamp(20px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,16,20,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  color: rgba(255,255,255,0.92);
}
body.light-page .masthead {
  background: rgba(251,250,247,0.85);
  color: var(--ink);
  border-bottom-color: var(--rule);
}
.masthead .meta {
  font-size: 12px;
  opacity: 0.62;
  font-weight: 500;
}
.masthead .wordmark {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.022em;
}
.masthead .wordmark .accent { color: var(--gold); }
body.light-page .masthead .wordmark .accent { color: var(--burgundy); }
.masthead .nav-right {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.88;
}
.masthead .nav-right a {
  position: relative;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.masthead .nav-right a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
body.light-page .masthead .nav-right a::after { background: var(--burgundy); }
.masthead .nav-right a:hover::after { width: 100%; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(32px, 8vw, 160px); }

/* ─── Section labels ─── */
.kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ─── CINEMATIC HERO ─── */
.cinema {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 14vh, 160px) 0 clamp(60px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
}
/* Multi-stop gradient mesh — the depth that flat sites don't have */
.cinema::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 15% 25%, rgba(212,169,58,0.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 75%, rgba(107,39,55,0.32), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(31,111,92,0.18), transparent 60%),
    linear-gradient(135deg, #14151b 0%, #0a0b10 50%, #181925 100%);
  filter: blur(0.5px);
}
/* Subtle grain on top so the gradient doesn't band */
.cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.4;
}
.cinema .kicker { color: var(--gold); }
.cinema h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: clamp(28px, 4vh, 44px);
  max-width: 17ch;
  background: linear-gradient(180deg, #ffffff 0%, #d8d4c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cinema h1 em {
  font-style: normal;
  background: linear-gradient(180deg, #f6cd6c 0%, #d4a93a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cinema .lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
  font-weight: 400;
  margin-bottom: 40px;
}
.cinema .hero-cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: clamp(48px, 6vh, 72px);
  flex-wrap: wrap;
}
.cinema .btn-primary {
  background: linear-gradient(180deg, var(--gold) 0%, #b8862a 100%);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 16px 26px;
  border-radius: 99px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 6px 20px -6px rgba(212,169,58,0.55), inset 0 1px 0 rgba(255,255,255,0.35);
}
.cinema .btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); }
.cinema .btn-ghost {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 16px 26px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s, border-color 0.2s;
}
.cinema .btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.30); }

/* Floating card constellation — different positions, parallax-ish */
.cinema-stage {
  position: relative;
  height: clamp(280px, 36vw, 460px);
  margin-top: 40px;
}
.cinema-stage .card-art-wrap {
  position: absolute;
  width: clamp(220px, 26vw, 340px);
  animation: float 6s ease-in-out infinite;
}
.cinema-stage .card-art-wrap:nth-child(1) { left: 4%; top: 12%; transform: rotate(-8deg); animation-delay: 0s; z-index: 3; }
.cinema-stage .card-art-wrap:nth-child(2) { left: 22%; top: 32%; transform: rotate(-3deg); animation-delay: 1s; z-index: 4; }
.cinema-stage .card-art-wrap:nth-child(3) { left: 40%; top: 6%; transform: rotate(2deg); animation-delay: 2s; z-index: 5; }
.cinema-stage .card-art-wrap:nth-child(4) { left: 60%; top: 28%; transform: rotate(5deg); animation-delay: 3s; z-index: 4; }
.cinema-stage .card-art-wrap:nth-child(5) { left: 78%; top: 8%; transform: rotate(9deg); animation-delay: 4s; z-index: 3; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* ─── From the editors ─── */
.from-the-editors {
  padding: clamp(72px, 11vh, 130px) 0;
  background: var(--paper);
  position: relative;
}
.from-the-editors::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(15,16,20,0.06), transparent);
  pointer-events: none;
}
.from-the-editors .kicker { color: var(--burgundy); }
.from-the-editors h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 24ch;
  margin-bottom: 28px;
  color: var(--ink);
}
.from-the-editors p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 16px;
}

/* ─── Editor's pick — deep tonal section ─── */
.editors-pick {
  padding: clamp(72px, 11vh, 130px) 0;
  background: linear-gradient(180deg, var(--ink) 0%, #1a1c24 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.editors-pick::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(212,169,58,0.10), transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 50%, rgba(107,39,55,0.20), transparent 70%);
  pointer-events: none;
}
.editors-pick > .wrap { position: relative; z-index: 1; }
.ep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.ep-art .card-art-wrap { transform: rotate(-3deg) scale(1.02); transition: transform 0.4s; max-width: 460px; }
.ep-art .card-art-wrap:hover { transform: rotate(-1deg) translateY(-6px) scale(1.04); }
.editors-pick .kicker { color: var(--gold); }
.ep-meta .stamp {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,169,58,0.5);
  padding: 7px 14px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 28px;
}
.ep-meta .issuer {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ep-meta h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}
.ep-meta .quote {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 0 0 32px;
  max-width: 42ch;
}
.ep-meta a.read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold) 0%, #b8862a 100%);
  padding: 14px 24px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, gap 0.2s;
  box-shadow: 0 6px 20px -6px rgba(212,169,58,0.55);
}
.ep-meta a.read-more:hover { transform: translateY(-2px); gap: 14px; }

/* ─── Categories — color-keyed chapter tiles ─── */
.cat-index {
  padding: clamp(72px, 11vh, 130px) 0;
  background: var(--paper);
}
.cat-index .kicker { color: var(--burgundy); }
.cat-index .section-h {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.028em;
  max-width: 22ch;
  margin-bottom: 36px;
  color: var(--ink);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.cat-card {
  position: relative;
  border-radius: 18px;
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: #fff;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -22px rgba(0,0,0,0.35); }
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cat-card[data-cat="travel"]::before {
  background:
    radial-gradient(ellipse at top right, rgba(212,169,58,0.30), transparent 65%),
    linear-gradient(135deg, #1a3358 0%, #0d1d3d 100%);
}
.cat-card[data-cat="cashback"]::before {
  background:
    radial-gradient(ellipse at bottom left, rgba(212,169,58,0.20), transparent 65%),
    linear-gradient(135deg, #2d4a3a 0%, #18301f 100%);
}
.cat-card[data-cat="no-annual-fee"]::before {
  background:
    radial-gradient(ellipse at top left, rgba(212,169,58,0.18), transparent 65%),
    linear-gradient(135deg, #4a2a3a 0%, #2d1822 100%);
}
.cat-card .index {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cat-card h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.0;
  letter-spacing: -0.028em;
  margin-bottom: 14px;
  color: #fff;
}
.cat-card .tag {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  line-height: 1.5;
}
.cat-card .arrow {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s, gap 0.25s;
}
.cat-card:hover .arrow { color: var(--gold); gap: 14px; }

/* ─── Sub-pages: dark cinematic body that matches the home aesthetic ─── */
body { background: var(--ink); color: rgba(255,255,255,0.92); }

/* Listing (category page) */
.listing {
  padding: clamp(60px, 9vh, 110px) 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 25%, rgba(212,169,58,0.08), transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 75%, rgba(107,39,55,0.16), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #14151b 100%);
}
.listing-head {
  margin-bottom: clamp(60px, 9vh, 110px);
  padding-bottom: clamp(20px, 3vh, 36px);
}
.listing-head .kicker { color: var(--gold); }
.listing-head h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.99;
  letter-spacing: -0.034em;
  margin-bottom: 22px;
  max-width: 22ch;
  background: linear-gradient(180deg, #ffffff 0%, #d8d4c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.listing-head .lede {
  font-size: clamp(18px, 1.3vw, 21px);
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
  line-height: 1.6;
}

.review {
  padding: clamp(72px, 10vh, 120px) 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(36px, 4.5vw, 70px);
  align-items: start;
}
/* Soft separator between reviews — radial fade not a hard rule */
.review + .review {
  position: relative;
}
.review + .review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.18), transparent 75%);
  pointer-events: none;
}
.review .review-art { position: sticky; top: 96px; }
.review h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.032em;
  margin: 0 0 14px;
  color: #fff;
}
.review .issuer {
  display: block;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.review .pull-quote {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 18px 0 22px;
  max-width: 42ch;
}
.review .take {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
  max-width: 62ch;
}
.review .who {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin: 28px 0 22px;
  line-height: 1.55;
  padding-left: 14px;
  border-left: 2px solid rgba(212,169,58,0.35);
}
.review .who strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.review .cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold) 0%, #b8862a 100%);
  padding: 14px 24px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: filter 0.2s, gap 0.25s, transform 0.2s;
  box-shadow: 0 6px 20px -6px rgba(212,169,58,0.45);
}
.review .cta:hover { filter: brightness(1.06); gap: 14px; transform: translateY(-1px); }
.review .cta-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.review .read-link {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.review .read-link:hover { color: var(--gold); border-color: var(--gold); }

/* Compliance — quiet on dark */
.compliance {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border-left: 3px solid rgba(212,169,58,0.5);
}
.compliance strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Specs panel — dark glass */
.specs {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border-radius: 14px;
  padding: clamp(28px, 3vw, 36px);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.specs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212,169,58,0.08), transparent 60%);
  pointer-events: none;
}
.specs .specs-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  position: relative;
}
.specs dl { display: grid; grid-template-columns: 1fr; gap: 20px; position: relative; }
.specs dt {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.specs dd {
  font-family: var(--sans);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
}
.specs dd .unit {
  font-size: 0.5em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-left: 4px;
}

/* ─── Card detail ─── */
.detail-hero {
  background: linear-gradient(180deg, var(--ink) 0%, #1a1c24 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 12vh, 140px) 0 clamp(60px, 9vh, 110px);
}
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(212,169,58,0.15), transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(107,39,55,0.20), transparent 65%);
  pointer-events: none;
}
.detail-hero > .wrap { position: relative; z-index: 1; }
.detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.detail-hero .breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  font-weight: 500;
}
.detail-hero .breadcrumb a:hover { color: var(--gold); }
.detail-hero .issuer {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.detail-hero h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.99;
  letter-spacing: -0.038em;
  margin-bottom: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #d8d4c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.detail-hero .quote {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.35;
  color: rgba(255,255,255,0.84);
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  max-width: 40ch;
}
.detail-hero-art .card-art-wrap { transform: rotate(3deg) scale(1.04); }

.detail-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(60px, 9vh, 110px) 0;
  /* Start exactly where .detail-hero ends (#1a1c24) so the dark frame
     reads as one continuous gradient instead of two stacked sections. */
  background: linear-gradient(180deg, #1a1c24 0%, var(--ink) 60%, var(--ink) 100%);
  position: relative;
}
.detail-body > .wrap, .detail-body { /* keep wrap behavior; section is already wrapped */ }
.detail-body .essay {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
  max-width: 65ch;
}
.detail-body h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.025em;
  margin: 40px 0 18px;
  color: #fff;
}
.detail-body p { margin-bottom: 16px; }

.earn-table { margin: 28px 0; border-top: 1px solid rgba(255,255,255,0.10); }
.earn-table .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  align-items: center;
}
.earn-table .label { font-size: 16px; color: rgba(255,255,255,0.78); text-transform: capitalize; }
.earn-table .rate {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: -0.028em;
}
.earn-table .rate .x { font-size: 0.6em; opacity: 0.7; margin-right: 1px; font-weight: 500; }

.apply-bar { position: sticky; top: 96px; }
.apply-bar .specs .cta {
  display: flex; justify-content: center; margin-top: 28px; width: 100%;
  font-size: 14px; font-weight: 700; color: var(--ink);
  background: linear-gradient(180deg, var(--gold) 0%, #b8862a 100%);
  padding: 16px 24px; border-radius: 99px; align-items: center; gap: 10px;
  transition: filter 0.2s, gap 0.25s, transform 0.2s;
  box-shadow: 0 6px 20px -6px rgba(212,169,58,0.45);
}
.apply-bar .specs .cta:hover { filter: brightness(1.06); gap: 14px; transform: translateY(-1px); }

/* ─── Footer ─── */
.colophon {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: clamp(72px, 11vh, 120px) 0 56px;
  text-align: center;
}
.colophon .wordmark {
  font-family: var(--sans);
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.034em;
  margin-bottom: 32px;
  display: block;
}
.colophon .wordmark .accent { color: var(--gold); }
.colophon .links {
  font-size: 13px;
  margin-bottom: 36px;
  font-weight: 500;
  opacity: 0.78;
}
.colophon .links a {
  padding: 0 14px;
  transition: color 0.2s;
}
.colophon .links a:hover { color: var(--gold); }
.colophon .imprint {
  font-size: 13px;
  opacity: 0.55;
  max-width: 60ch;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.colophon .disclosure {
  font-size: 12px;
  opacity: 0.42;
  max-width: 70ch;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  line-height: 1.65;
}

/* ─── Mobile ─── */
@media (max-width: 880px) {
  .cinema-stage { height: clamp(220px, 60vw, 380px); }
  .cinema-stage .card-art-wrap:nth-child(1) { left: 0; top: 4%; width: 56%; }
  .cinema-stage .card-art-wrap:nth-child(2) { left: 32%; top: 22%; width: 56%; z-index: 5; }
  .cinema-stage .card-art-wrap:nth-child(3) { left: 8%; top: 42%; width: 56%; }
  .cinema-stage .card-art-wrap:nth-child(4),
  .cinema-stage .card-art-wrap:nth-child(5) { display: none; }
  .ep-grid { grid-template-columns: 1fr; gap: 36px; }
  .ep-art .card-art-wrap { max-width: 380px; margin: 0 auto; transform: rotate(-2deg); }
  .review { grid-template-columns: 1fr; gap: 24px; }
  .review .review-art { position: static; max-width: 320px; }
  .detail-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .detail-hero-art .card-art-wrap { max-width: 380px; transform: rotate(2deg); margin: 0 auto; }
  .detail-body { grid-template-columns: 1fr; }
  .apply-bar { position: static; }
  .masthead .nav-right { display: none; }
  .colophon .links a { display: inline-block; margin: 4px 0; }
}

/* Scroll-triggered reveal — gentle stagger */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cinema h1, .cinema .lede, .cinema .hero-cta-row { animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards; }
.cinema h1 { animation-delay: 0.05s; }
.cinema .lede { animation-delay: 0.18s; }
.cinema .hero-cta-row { animation-delay: 0.32s; }
.cinema-stage .card-art-wrap:nth-child(1) { animation-delay: 0.4s, 0s; }
.cinema-stage .card-art-wrap:nth-child(2) { animation-delay: 0.5s, 1s; }
.cinema-stage .card-art-wrap:nth-child(3) { animation-delay: 0.6s, 2s; }
.cinema-stage .card-art-wrap:nth-child(4) { animation-delay: 0.7s, 3s; }
.cinema-stage .card-art-wrap:nth-child(5) { animation-delay: 0.8s, 4s; }
.cinema-stage .card-art-wrap {
  animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) backwards, float 6s ease-in-out infinite;
}
