/* ============================================================
   The Student Edit — shared stylesheet
   Bold campus energy: electric blue / coral / lemon on ink
   Tokens carried over from the TSE WordPress theme v1.2.0
   ============================================================ */

:root {
  /* Core palette */
  --tse-electric: #2C5FFF;
  --tse-electric-deep: #1E48D6;   /* AA-safe for white text / small type */
  --tse-coral: #FF5A5F;
  --tse-coral-deep: #D62F39;      /* AA-safe for white text / small type */
  --tse-lemon: #FFD23F;
  --tse-ink: #0E1116;
  --tse-charcoal: #1F2430;
  --tse-slate: #4A5162;
  --tse-mist: #E7EAF3;
  --tse-cloud: #F5F7FC;
  --tse-white: #FFFFFF;

  /* Type */
  --tse-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --tse-display: "Archivo Black", "Inter", "Arial Black", sans-serif;

  /* Type scale */
  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: clamp(1.05rem, 1.3vw, 1.2rem);
  --text-xl: clamp(1.25rem, 2vw, 1.5rem);
  --text-2xl: clamp(1.7rem, 3.2vw, 2.5rem);
  --text-hero: clamp(2.05rem, 5vw, 3.5rem);

  /* Rhythm */
  --tse-radius: 14px;
  --tse-radius-lg: 22px;
  --tse-shadow: 0 6px 24px rgba(14, 17, 22, 0.08);
  --tse-shadow-lg: 0 18px 48px rgba(14, 17, 22, 0.14);
  --tse-container: 1200px;
  --header-h: 74px;

  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--tse-sans);
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--tse-ink);
  background: var(--tse-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--tse-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--tse-ink);
  overflow-wrap: break-word;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

a { color: var(--tse-electric-deep); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--tse-coral-deep); text-decoration: underline; }

ul, ol { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--tse-electric);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: var(--tse-container);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--tse-ink);
  color: var(--tse-lemon);
  padding: 12px 20px;
  z-index: 200;
  font-weight: 700;
  border-radius: 0 0 var(--tse-radius) 0;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.section { padding: var(--sp-16) 0; }
.section.tight { padding: var(--sp-12) 0; }
.section.alt { background: var(--tse-cloud); }
.section.ink { background: var(--tse-ink); color: var(--tse-mist); }
.section.ink h2, .section.ink h3 { color: var(--tse-white); }

.eyebrow {
  display: inline-block;
  background: var(--tse-lemon);
  color: var(--tse-ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: var(--text-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.kicker {
  display: inline-block;
  background: var(--tse-electric-deep);
  color: var(--tse-white);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lede {
  font-size: var(--text-lg);
  color: var(--tse-slate);
  max-width: 62ch;
}
.on-dark .lede, .lede.on-dark { color: var(--tse-mist); }

.section-head { max-width: 720px; margin: 0 auto var(--sp-12); }
.section-head.center { text-align: center; }
.section-head p { color: var(--tse-slate); font-size: var(--text-lg); margin-bottom: 0; }
.section-head.on-dark p { color: var(--tse-mist); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 46px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--tse-sans);
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .12s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--tse-electric-deep); color: var(--tse-white); box-shadow: 0 6px 18px rgba(44, 95, 255, .3); }
.btn-primary:hover { background: var(--tse-ink); color: var(--tse-white); }
.btn-coral { background: var(--tse-coral-deep); color: var(--tse-white); box-shadow: 0 6px 18px rgba(214, 47, 57, .28); }
.btn-coral:hover { background: var(--tse-ink); color: var(--tse-lemon); }
.btn-lemon { background: var(--tse-lemon); color: var(--tse-ink); }
.btn-lemon:hover { background: var(--tse-ink); color: var(--tse-lemon); }
.btn-ghost { background: transparent; color: var(--tse-ink); border-color: var(--tse-ink); }
.btn-ghost:hover { background: var(--tse-ink); color: var(--tse-white); }
.btn-ghost-light { background: transparent; color: var(--tse-white); border-color: rgba(255, 255, 255, .8); }
.btn-ghost-light:hover { background: var(--tse-white); color: var(--tse-ink); }
.btn-sm { min-height: 44px; padding: 11px 18px; font-size: var(--text-xs); }
.btn-block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--sp-6); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--tse-ink);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--tse-shadow); }
.header-inner {
  max-width: var(--tse-container);
  margin: 0 auto;
  padding: 10px 20px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--tse-ink); }
.brand:hover { text-decoration: none; }
.brand img { height: 44px; width: 44px; flex: none; border-radius: 11px; }
.brand .wordmark {
  font-family: var(--tse-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand .wordmark > span:not(.brand-tag) { color: var(--tse-coral-deep); }
.brand .brand-tag {
  display: block;
  white-space: nowrap;
  font-family: var(--tse-sans);
  font-size: .6rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--tse-slate);
  font-weight: 600;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: var(--sp-6); }
.nav-links { display: flex; align-items: center; gap: var(--sp-6); list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a {
  display: inline-block;
  color: var(--tse-ink);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 10px 0;
}
.nav-links a:hover { color: var(--tse-coral-deep); text-decoration: none; }
.nav-links a.active { color: var(--tse-electric-deep); }
.nav-links a.active::after {
  content: "";
  display: block;
  height: 3px;
  background: var(--tse-lemon);
  border-radius: 3px;
  margin-top: 2px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 232px;
  background: var(--tse-white);
  border: 2px solid var(--tse-ink);
  border-radius: var(--tse-radius);
  box-shadow: var(--tse-shadow-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 120;
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--tse-cloud); color: var(--tse-electric-deep); }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--tse-ink);
  color: var(--tse-white);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--tse-white);
  border-top: 3px solid var(--tse-ink);
  padding: 20px 20px 60px;
  overflow-y: auto;
  z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0 0 20px; padding: 0; }
.mobile-nav li { border-bottom: 1px solid var(--tse-mist); }
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  font-weight: 700;
  color: var(--tse-ink);
  min-height: 44px;
}
.mobile-nav a:hover { color: var(--tse-coral-deep); text-decoration: none; }
.mobile-nav li.m-label {
  border: 0;
  padding: 18px 4px 6px;
  font-size: var(--text-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tse-slate);
  font-weight: 700;
}
.mobile-nav li.sub a { padding-left: 16px; font-weight: 600; color: var(--tse-slate); }
.mobile-cta { display: grid; gap: 10px; }
.mobile-cta .btn { min-height: 48px; }
.mobile-nav .mobile-cta a.btn-coral { color: var(--tse-white); }
.mobile-nav .mobile-cta a.btn-coral:hover { background: var(--tse-ink); color: var(--tse-lemon); }
.mobile-nav .mobile-cta a.btn-ghost { color: var(--tse-ink); }
.mobile-nav .mobile-cta a.btn-ghost:hover { background: var(--tse-ink); color: var(--tse-white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--tse-ink);
  color: var(--tse-white);
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 108px);
  overflow: hidden;
  isolation: isolate;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(14, 17, 22, .94) 0%, rgba(14, 17, 22, .82) 46%, rgba(14, 17, 22, .55) 100%),
    radial-gradient(circle at 12% 18%, rgba(44, 95, 255, .5), transparent 46%),
    radial-gradient(circle at 88% 82%, rgba(255, 90, 95, .35), transparent 46%);
}
.hero h1 { color: var(--tse-white); max-width: 20ch; }
.hero h1 em { font-style: normal; color: var(--tse-lemon); }
.hero .lede { color: var(--tse-mist); max-width: 56ch; }
.hero.compact { padding: clamp(44px, 6vw, 72px) 0 clamp(48px, 7vw, 80px); }
.hero .hero-content { max-width: 720px; }

/* Stage hero tints */
.hero.hs::before {
  background: linear-gradient(100deg, rgba(14, 17, 22, .93) 0%, rgba(74, 56, 0, .78) 60%, rgba(14, 17, 22, .5) 100%);
}
.hero.col::before {
  background: linear-gradient(100deg, rgba(14, 17, 22, .93) 0%, rgba(26, 47, 122, .8) 60%, rgba(14, 17, 22, .5) 100%);
}
.hero.rl::before {
  background: linear-gradient(100deg, rgba(14, 17, 22, .93) 0%, rgba(122, 30, 33, .78) 60%, rgba(14, 17, 22, .5) 100%);
}
.hero.sa::before {
  background: linear-gradient(100deg, rgba(14, 17, 22, .93) 0%, rgba(45, 90, 45, .78) 55%, rgba(140, 100, 12, .6) 100%);
}

.breadcrumbs {
  font-size: var(--text-sm);
  color: var(--tse-slate);
  margin-bottom: 14px;
}
.breadcrumbs a { color: var(--tse-electric-deep); font-weight: 600; }
.breadcrumbs.on-dark { color: var(--tse-mist); }
.breadcrumbs.on-dark a { color: var(--tse-lemon); }
.breadcrumbs .sep { padding: 0 6px; opacity: .7; }

.stage-badge {
  display: inline-block;
  padding: 6px 13px;
  border-radius: 999px;
  font-family: var(--tse-display);
  font-size: var(--text-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.stage-badge.hs { background: var(--tse-lemon); color: var(--tse-ink); }
.stage-badge.col { background: var(--tse-electric-deep); color: var(--tse-white); }
.stage-badge.rl { background: var(--tse-coral-deep); color: var(--tse-white); }
.stage-badge.sa { background: var(--tse-white); color: var(--tse-ink); }

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--tse-white);
  font-weight: 600;
  font-size: var(--text-sm);
}
.checklist li::before {
  content: "✓";
  color: var(--tse-lemon);
  font-weight: 900;
  flex: none;
}

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.tile {
  display: flex;
  flex-direction: column;
  background: var(--tse-white);
  border: 2px solid var(--tse-ink);
  border-radius: var(--tse-radius-lg);
  overflow: hidden;
  color: var(--tse-ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--tse-shadow-lg); text-decoration: none; }
.tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-bottom: 2px solid var(--tse-ink); }
.tile-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.tile-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tile-body p { color: var(--tse-slate); font-size: var(--text-sm); margin-bottom: 14px; }
.tile-body .arrow { margin-top: auto; font-weight: 800; color: var(--tse-electric-deep); font-size: var(--text-sm); }
.tile .tag {
  align-self: flex-start;
  display: inline-block;
  background: var(--tse-ink);
  color: var(--tse-lemon);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.edit-card {
  display: flex;
  flex-direction: column;
  background: var(--tse-white);
  border: 2px solid var(--tse-ink);
  border-radius: var(--tse-radius-lg);
  padding: 24px 22px 26px;
  color: var(--tse-ink);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.edit-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 130px; height: 130px;
  background: var(--tse-lemon);
  border-radius: 50%;
  opacity: .5;
  transition: transform .3s ease;
}
.edit-card:hover { transform: translateY(-4px); box-shadow: var(--tse-shadow-lg); text-decoration: none; }
.edit-card:hover::after { transform: scale(1.35); }
.edit-card > * { position: relative; z-index: 1; }
.edit-card h3 { font-size: 1.15rem; }
.edit-card p { color: var(--tse-slate); font-size: var(--text-sm); }
.edit-card .tag {
  align-self: flex-start;
  background: var(--tse-ink);
  color: var(--tse-lemon);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.edit-card .arrow { margin-top: auto; padding-top: 10px; font-weight: 800; color: var(--tse-electric-deep); font-size: var(--text-sm); }

/* Pick cards (affiliate product cards) */
.pick-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.pick-card {
  display: flex;
  flex-direction: column;
  background: var(--tse-white);
  border: 2px solid var(--tse-ink);
  border-radius: var(--tse-radius-lg);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pick-card:hover { transform: translateY(-4px); box-shadow: var(--tse-shadow-lg); }
.pick-media { position: relative; border-bottom: 2px solid var(--tse-ink); }
.pick-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pick-media .badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--tse-coral-deep);
  color: var(--tse-white);
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--tse-display);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pick-media .badge.new { background: var(--tse-lemon); color: var(--tse-ink); }
.pick-media .badge.pick { background: var(--tse-electric-deep); color: var(--tse-white); }
.pick-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.pick-body .brand {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tse-slate);
  font-weight: 700;
  margin-bottom: 6px;
}
.pick-body h3 { font-size: 1.02rem; line-height: 1.25; margin-bottom: 8px; }
.pick-body p { font-size: var(--text-sm); color: var(--tse-slate); margin-bottom: 14px; }
.pick-body .why {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--tse-electric-deep);
  margin-bottom: 6px;
}
.pick-foot { margin-top: auto; display: grid; gap: 12px; }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.price-band {
  font-family: var(--tse-display);
  font-size: 1.15rem;
  color: var(--tse-coral-deep);
  line-height: 1.1;
}
.price-note { font-size: var(--text-xs); color: var(--tse-slate); font-weight: 600; }
.stars { color: #B58900; font-size: var(--text-sm); font-weight: 700; }
.stars .count { color: var(--tse-slate); font-size: var(--text-xs); font-weight: 600; margin-left: 4px; }
.promo-chip {
  display: inline-block;
  background: var(--tse-lemon);
  color: var(--tse-ink);
  padding: 4px 10px;
  border-radius: 8px;
  font-family: var(--tse-display);
  font-size: .74rem;
  letter-spacing: .05em;
}

/* Buyer guide */
.guide {
  background: var(--tse-cloud);
  border: 2px solid var(--tse-ink);
  border-radius: var(--tse-radius-lg);
  padding: clamp(24px, 3vw, 38px);
}
.guide h2 { font-size: var(--text-xl); }
.guide-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.guide-list li {
  background: var(--tse-white);
  border-radius: var(--tse-radius);
  padding: 18px 20px;
  border-left: 5px solid var(--tse-electric-deep);
}
.guide-list strong { display: block; margin-bottom: 4px; }
.guide-list span { color: var(--tse-slate); font-size: var(--text-sm); }

/* Chips */
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.chip {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 2px solid var(--tse-ink);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--tse-ink);
  background: var(--tse-white);
}
.chip-row.on-dark .chip { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .6); color: var(--tse-white); }

/* Value strip */
.value-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; text-align: center; }
.value-strip .val { padding: 14px 10px; }
.value-strip .num { font-family: var(--tse-display); font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--tse-coral-deep); line-height: 1; margin-bottom: 8px; }
.value-strip .lbl { font-weight: 700; color: var(--tse-ink); letter-spacing: .03em; font-size: var(--text-sm); }

/* Split section */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--tse-radius-lg); border: 3px solid var(--tse-ink); }
.split.ink-block { color: var(--tse-mist); }
.rule { width: 72px; height: 5px; background: var(--tse-lemon); border: 0; border-radius: 3px; margin: 0 0 20px; }

/* Steps */
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .num {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--tse-ink);
  color: var(--tse-lemon);
  font-family: var(--tse-display);
  font-size: 1rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--tse-slate); font-size: var(--text-sm); margin: 0; }

/* Feature row */
.feature {
  background: var(--tse-white);
  border: 2px solid var(--tse-mist);
  border-radius: var(--tse-radius-lg);
  padding: 26px 24px;
}
.feature .ic { width: 44px; height: 44px; color: var(--tse-electric-deep); margin-bottom: 14px; }
.feature .ic svg { width: 100%; height: 100%; }
.feature h3 { font-size: 1.05rem; }
.feature p { color: var(--tse-slate); font-size: var(--text-sm); margin: 0; }

/* This week's pick block */
.spotlight {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--tse-ink);
  color: var(--tse-mist);
  border-radius: var(--tse-radius-lg);
  overflow: hidden;
}
.spotlight .spotlight-body { padding: clamp(26px, 3.4vw, 48px); }
.spotlight h2 { color: var(--tse-white); }
.spotlight h2 em { font-style: normal; color: var(--tse-lemon); }
.spotlight img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.spotlight ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; }
.spotlight li { display: flex; gap: 10px; font-size: var(--text-sm); font-weight: 600; color: var(--tse-white); }
.spotlight li::before { content: "→"; color: var(--tse-lemon); flex: none; }

/* ---------- Newsletter band ---------- */
.newsletter-band {
  position: relative;
  background: var(--tse-ink);
  color: var(--tse-white);
  padding: clamp(48px, 6vw, 72px) 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.newsletter-band img.band-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.newsletter-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(14, 17, 22, .9), rgba(14, 17, 22, .9)),
    radial-gradient(circle at 20% 50%, rgba(255, 210, 63, .2), transparent 42%),
    radial-gradient(circle at 80% 50%, rgba(44, 95, 255, .3), transparent 42%);
}
.newsletter-band h2 { color: var(--tse-white); }
.newsletter-band p { color: var(--tse-mist); max-width: 58ch; margin: 0 auto 24px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type=email] {
  flex: 1 1 250px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 2px solid var(--tse-white);
  font-size: 1rem;
  font-family: var(--tse-sans);
  color: var(--tse-ink);
}
.newsletter-form button {
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 0;
  background: var(--tse-lemon);
  color: var(--tse-ink);
  font-family: var(--tse-sans);
  font-weight: 800;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: transform .12s ease, background .18s ease, color .18s ease;
}
.newsletter-form button:hover { background: var(--tse-coral-deep); color: var(--tse-white); transform: translateY(-2px); }
.form-note { font-size: var(--text-xs); color: var(--tse-mist); margin: 16px auto 0; max-width: 60ch; }
.form-note a { color: var(--tse-lemon); }

/* ---------- Disclosure ---------- */
.disclosure {
  background: var(--tse-cloud);
  border-left: 5px solid var(--tse-lemon);
  border-radius: var(--tse-radius);
  padding: 20px 22px;
  font-size: var(--text-sm);
  color: var(--tse-slate);
}
.disclosure p:last-child { margin-bottom: 0; }
.disclosure strong { color: var(--tse-ink); }

/* ---------- Forms (static) ---------- */
.form-card {
  background: var(--tse-white);
  border: 2px solid var(--tse-ink);
  border-radius: var(--tse-radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--tse-shadow);
}
.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 18px; }
.fields .full { grid-column: 1 / -1; }
.form-card label { display: block; font-weight: 700; font-size: var(--text-sm); margin-bottom: 6px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  font-family: var(--tse-sans);
  font-size: 1rem;
  color: var(--tse-ink);
  border: 2px solid var(--tse-mist);
  border-radius: 10px;
  background: var(--tse-white);
}
.form-card textarea { min-height: 130px; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: none; border-color: var(--tse-electric); }
.form-card .submit-row { margin-top: 20px; }
.endpoint-note {
  margin-top: 16px;
  font-size: var(--text-xs);
  color: var(--tse-slate);
  background: var(--tse-cloud);
  border-radius: 10px;
  padding: 12px 14px;
}

/* ---------- Accordion ---------- */
.acc-item { border: 2px solid var(--tse-mist); border-radius: var(--tse-radius); margin-bottom: 12px; background: var(--tse-white); overflow: hidden; }
.acc-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 20px;
  min-height: 56px;
  font-family: var(--tse-sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--tse-ink);
  cursor: pointer;
}
.acc-q::after { content: "+"; font-family: var(--tse-display); color: var(--tse-electric-deep); font-size: 1.2rem; flex: none; }
.acc-item.open .acc-q::after { content: "–"; }
.acc-a { padding: 0 20px 20px; color: var(--tse-slate); font-size: var(--text-sm); display: none; }
.acc-item.open .acc-a { display: block; }

/* ---------- Prose / legal ---------- */
.prose { max-width: 74ch; }
.prose h2 { font-size: var(--text-xl); margin-top: var(--sp-12); }
.prose h3 { font-family: var(--tse-sans); font-weight: 700; font-size: 1.05rem; margin-top: var(--sp-8); color: var(--tse-charcoal); }
.prose p, .prose li { color: var(--tse-slate); line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose img { border-radius: var(--tse-radius-lg); border: 3px solid var(--tse-ink); margin: var(--sp-8) 0; }
.prose figcaption { font-size: var(--text-xs); color: var(--tse-slate); margin-top: -1.5rem; margin-bottom: var(--sp-8); }
.updated {
  display: inline-block;
  color: var(--tse-slate);
  font-size: var(--text-sm);
  padding: 10px 16px;
  background: var(--tse-cloud);
  border-radius: 8px;
  border-left: 4px solid var(--tse-electric-deep);
}
.toc { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.toc a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 2px solid var(--tse-ink);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--tse-ink);
  min-height: 44px;
}
.toc a:hover { background: var(--tse-ink); color: var(--tse-lemon); text-decoration: none; }

/* ---------- Reviews ---------- */
.quote-card {
  background: var(--tse-white);
  border: 2px solid var(--tse-ink);
  border-radius: var(--tse-radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-card blockquote { margin: 0; font-size: 1.02rem; color: var(--tse-ink); }
.quote-card .who { font-size: var(--text-sm); color: var(--tse-slate); font-weight: 700; margin-top: auto; }

/* ---------- Sitemap columns ---------- */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.sitemap-grid h2 { font-size: 1.1rem; }
.sitemap-grid ul { list-style: none; padding: 0; margin: 0; }
.sitemap-grid li { margin-bottom: 8px; font-size: var(--text-sm); }

/* ---------- Footer ---------- */
.site-footer { background: var(--tse-ink); color: var(--tse-mist); padding: var(--sp-16) 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: var(--sp-8);
}
.footer-brand img { height: 44px; width: 44px; flex: none; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: #fff; }
.footer-logo:hover { text-decoration: none; }
.footer-wordmark {
  font-family: var(--tse-display);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer-wordmark > span:not(.footer-tag) { color: var(--tse-coral); }
.footer-tag {
  display: block;
  white-space: nowrap;
  margin-top: 6px;
  font-family: var(--tse-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}
.footer-brand p { color: rgba(255, 255, 255, .78); font-size: var(--text-sm); }
.site-footer h4 {
  color: var(--tse-lemon);
  font-family: var(--tse-sans);
  font-size: var(--text-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--tse-mist); font-size: var(--text-sm); }
.site-footer a:hover { color: var(--tse-lemon); }
.footer-signup {
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  padding: 26px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.footer-signup h4 { margin-bottom: 6px; }
.footer-signup p { font-size: var(--text-sm); color: rgba(255, 255, 255, .78); margin: 0; }
.footer-signup .newsletter-form { margin: 0; max-width: none; justify-content: flex-start; }
.footer-disclosure { padding: 22px 0 0; font-size: var(--text-xs); color: rgba(255, 255, 255, .72); }
.footer-disclosure a { font-size: inherit; color: var(--tse-lemon); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .7);
}
.social { display: flex; gap: 10px; }
.social a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--tse-mist);
}
.social a:hover { background: var(--tse-lemon); color: var(--tse-ink); border-color: var(--tse-lemon); }
.social svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 940px) {
  .nav-links, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .spotlight { grid-template-columns: 1fr; }
  .spotlight img { min-height: 220px; aspect-ratio: 16 / 9; }
  .sitemap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-signup { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .section { padding: var(--sp-12) 0; }
  .g-2, .g-3, .g-4, .pick-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .guide-list { grid-template-columns: 1fr; }
  .value-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fields { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form button { width: 100%; }
  .btn-row .btn { width: 100%; }
  .brand img { height: 38px; }
  .brand .wordmark { font-size: 1.05rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Additions: verdicts, sale badge, no-JS accordion ---------- */
.quote-card .tag {
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tse-electric-deep);
}
.quote-card h3 { font-size: 1.05rem; margin: 0; }
.quote-card .verdict {
  margin: 0;
  font-family: var(--tse-display);
  font-size: .95rem;
  color: var(--tse-ink);
  background: var(--tse-lemon);
  border: 2px solid var(--tse-ink);
  border-radius: 999px;
  padding: 6px 14px;
  align-self: flex-start;
}
.quote-card p { color: var(--tse-slate); font-size: var(--text-sm); margin: 0; }
.quote-card .arrow { margin-top: auto; font-weight: 700; font-size: var(--text-sm); color: var(--tse-electric-deep); }
.pick-media .badge.sale { background: var(--tse-coral-deep); color: var(--tse-white); }
.pick-media .badge.deal { background: var(--tse-coral-deep); color: var(--tse-white); }
.pick-media .badge.value { background: var(--tse-ink); color: var(--tse-lemon); }
.pick-media .badge.editor { background: var(--tse-electric-deep); color: var(--tse-white); }
.toc-nav { margin-bottom: var(--sp-8); }
.toc-nav .kicker { display: block; margin-bottom: 10px; }
html:not(.js) .acc-a { display: block; }
.acc-q span { flex: 1; }
