/* ============================================================
   NECTAR AI REVIEW — Official UI Color System
   Matches trynectar.ai:
   - Background:  #09090b (near-black)
   - Surface:     #111113 / #18181b
   - Card:        #18181b / #1c1c1f
   - Accent red:  #fe3b4d (coral-red)
   - Border:      #27272a
   - Text:        #ffffff / #a1a1aa / #71717a
   - Radius:      12–24px rounded cards, pill buttons
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg:         #09090b;
  --bg-2:       #111113;
  --surface:    #18181b;
  --surface-2:  #1c1c1f;
  --surface-3:  #27272a;
  --red:        #fe3b4d;
  --red-deep:   #e0293b;
  --red-soft:   rgba(254,59,77,.12);
  --text:       #ffffff;
  --text-2:     #a1a1aa;
  --text-3:     #71717a;
  --border:     #27272a;
  --border-2:   #3f3f46;

  --font-display: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-head:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "Space Mono", "Courier New", monospace;

  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-pill:9999px;

  --maxw:      1200px;
  --maxw-read: 760px;
  --gut:       clamp(16px, 4vw, 40px);

  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --shadow-red: 0 4px 24px rgba(254,59,77,.20);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { max-width: 100%; display: block; }
a { color: var(--text); text-decoration: none; transition: color .15s; }
a:hover { color: var(--red); }
ul, ol { padding-left: 1.2em; }
hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }
::selection { background: var(--red); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: .95rem; font-weight: 600; }
p  { margin: 0 0 1em; }
.red   { color: var(--red); }
.dim   { color: var(--text-2); }
.dim2  { color: var(--text-3); }
.mono  { font-family: var(--font-mono); }
.kicker {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 .8rem;
}
.lead { font-size: clamp(1rem, 1.8vw, 1.18rem); color: var(--text-2); line-height: 1.65; }

/* ---------- Layout ---------- */
.wrap      { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.read      { max-width: var(--maxw-read); margin: 0 auto; }
.section   { padding: clamp(48px, 8vw, 88px) 0; }
.section--tight { padding: clamp(28px, 5vw, 52px) 0; }
.flex      { display: flex; }
.gap       { gap: clamp(12px, 2vw, 20px); }
.wrapflex  { flex-wrap: wrap; }
.between   { justify-content: space-between; }
.center    { align-items: center; }

/* ---------- 18+ Top Banner ---------- */
.adult-bar {
  background: #18181b;
  border-bottom: 1px solid var(--border);
  color: var(--text-3);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-align: center;
  padding: 7px 12px;
}

/* ---------- Ticker ---------- */
.ticker {
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 3rem;
  padding: 10px 0;
  animation: ticker 32s linear infinite;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.ticker__track span b { color: var(--red); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9,9,11,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.brand-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); display: inline-block; }
.nav-links {
  display: flex; gap: .3rem; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: .82rem; font-weight: 500; color: var(--text-2);
  padding: 7px 13px; border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a[aria-current="page"] { color: var(--text); background: var(--surface-2); }
.nav-toggle {
  display: none; background: var(--surface);
  border: 1px solid var(--border); color: var(--text);
  padding: 8px 14px; border-radius: var(--r-sm);
  cursor: pointer; font-size: .8rem;
}
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--bg); border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
    padding: 0 var(--gut);
  }
  .nav-links.open { max-height: 440px; padding: 12px var(--gut); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 10px 14px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .85rem; font-weight: 600; letter-spacing: .01em;
  padding: 11px 22px; border-radius: var(--r-pill);
  border: none; cursor: pointer;
  background: var(--red); color: #fff;
  transition: background .15s, transform .1s, box-shadow .15s;
  box-shadow: var(--shadow-red);
}
.btn:hover { background: var(--red-deep); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(254,59,77,.30); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  box-shadow: none;
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: var(--surface-2); color: var(--text); box-shadow: none; }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
  box-shadow: none;
}
.btn--outline:hover { background: var(--surface); color: var(--text); }
.btn--block { display: flex; justify-content: center; width: 100%; }
.btn--lg { padding: 14px 30px; font-size: .95rem; }
.btn--sm { padding: 7px 14px; font-size: .76rem; }

/* ---------- Breadcrumbs ---------- */
.crumbs {
  font-size: .76rem; font-weight: 500; color: var(--text-3);
  padding: 20px 0 0; display: flex; align-items: center; gap: 8px;
}
.crumbs a { color: var(--text-3); }
.crumbs a:hover { color: var(--red); }
.crumbs::before { display: none; }
.crumbs span { color: var(--text-2); }

/* ---------- Byline ---------- */
.byline {
  display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center;
  font-size: .75rem; font-weight: 500; color: var(--text-3);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 13px 0; margin: 1.2rem 0 0;
}
.byline b { color: var(--text-2); }

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 7vw, 80px) 0; }
.hero h1 { margin-bottom: .4em; }
.hero .lead { max-width: 580px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.6rem; }

/* ---------- Home hero layout ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: 28px;
}
@media (max-width: 860px){ .hero-grid { grid-template-columns: 1fr; } }

.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 16px; flex-wrap: wrap;
}
.hero-rating .stars { color: #f5b301; font-size: 1rem; letter-spacing: 2px; }
.hero-rating .rating-text { font-size: .85rem; color: var(--text-2); }
.hero-rating .rating-text b { color: var(--text-1); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-stats .stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stats .stat__num { font-size: 1.6rem; font-weight: 800; color: var(--text-1); line-height: 1; }
.hero-stats .stat__num .red { color: var(--red); }
.hero-stats .stat__label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }

/* media panel on the right */
.hero-panel { position: relative; }
.hero-panel .hero-media { margin-top: 0; }
.hero-panel .panel-badge {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 8px 16px;
  box-shadow: var(--shadow); white-space: nowrap; z-index: 3;
}
.hero-panel .panel-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 3px rgba(46,204,113,.18); }
.hero-panel .panel-badge span { font-size: .78rem; color: var(--text-2); font-weight: 600; }
.hero-caption { text-align: center; margin-top: 26px; font-size: .72rem; color: var(--text-3); }

/* ---------- Score Badge ---------- */
.score {
  display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 28px; min-width: 120px;
  box-shadow: var(--shadow);
}
.score__num { font-size: 2.8rem; font-weight: 800; line-height: 1; color: var(--red); }
.score__den { font-size: .72rem; color: var(--text-3); margin-top: 2px; }
.score__label { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-top: 8px; }

/* ---------- Cards / Panels ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color .15s, background .15s, transform .15s;
}
.card:hover { border-color: var(--border-2); background: var(--surface-2); transform: translateY(-2px); }
.card h3 { margin-bottom: .4em; }

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 36px);
  box-shadow: var(--shadow);
}

.bordered-grid { display: grid; gap: 1px; }
.bordered-grid > * {
  background: var(--surface);
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 0;
}
.bordered-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.bordered-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
@media (max-width: 860px){
  .bordered-grid.cols-2,
  .bordered-grid.cols-3 { grid-template-columns: 1fr; }
}

/* rounded bordered grid variant */
.card-grid { display: grid; gap: 16px; }
.card-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 960px){ .card-grid.cols-3,.card-grid.cols-4{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .card-grid.cols-2,.card-grid.cols-3,.card-grid.cols-4{ grid-template-columns: 1fr;} }

/* ---------- Pros / Cons ---------- */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.proscons > div {
  padding: 24px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg);
}
.proscons h4 { margin-top: 0; }
.proscons .pros h4 { color: var(--red); }
.proscons .cons h4 { color: var(--text-2); }
.proscons ul { list-style: none; padding: 0; margin: 0; }
.proscons li { padding: 8px 0 8px 24px; position: relative; border-top: 1px solid var(--border); font-size: .94rem; }
.proscons li:first-child { border-top: 0; }
.proscons .pros li::before  { content: "+"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.proscons .cons li::before  { content: "−"; position: absolute; left: 0; color: var(--text-3); font-weight: 700; }
@media (max-width: 640px){ .proscons{ grid-template-columns:1fr; } }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-md); }
table.data { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 480px; }
table.data th, table.data td {
  text-align: left; padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
table.data th:last-child, table.data td:last-child { border-right: 0; }
table.data thead th {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3); background: var(--surface-2);
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--surface); }
table.data td b { color: var(--text); }
table.data td.red { color: var(--red); font-weight: 600; }

/* ---------- Score bars ---------- */
.scorelist { list-style: none; padding: 0; margin: 0; }
.scorelist li {
  display: grid; grid-template-columns: 160px 1fr 48px;
  gap: 14px; align-items: center; padding: 12px 0;
  border-top: 1px solid var(--border);
}
.scorelist li:first-child { border-top: 0; }
.scorelist .lbl { font-size: .78rem; font-weight: 500; color: var(--text-2); }
.bar { height: 6px; background: var(--surface-3); border-radius: 4px; overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--red); border-radius: 4px; }
.scorelist .val { font-weight: 700; color: var(--red); text-align: right; font-size: .9rem; }
@media (max-width: 540px){
  .scorelist li{ grid-template-columns: 1fr 40px; }
  .scorelist .bar{ grid-column: 1/-1; order: 3; }
}

/* ---------- TOC ---------- */
.toc {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 20px 24px; margin: 2rem 0;
}
.toc h4 { margin: 0 0 .8em; color: var(--red); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.toc ol { margin: 0; padding-left: 1.2em; columns: 2; }
.toc a { font-size: .88rem; color: var(--text-2); }
.toc a:hover { color: var(--red); }
@media (max-width: 560px){ .toc ol{ columns: 1; } }

/* ---------- Companion gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.companion {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .15s, border-color .15s;
}
.companion:hover { transform: translateY(-3px); border-color: var(--border-2); }
.companion__img {
  aspect-ratio: 3/4;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.companion__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.companion:hover .companion__img img { transform: scale(1.05); }
.companion__img .tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--red); color: #fff;
  font-size: .62rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: 3px 8px;
  border-radius: var(--r-pill);
}
.companion__avatar {
  font-size: 3rem; font-weight: 800; color: var(--surface-3);
  text-transform: uppercase; line-height: 1;
}

/* ---------- Hero media / image figures ---------- */
.hero-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.hero-media .shot {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.hero-media .shot:first-child { grid-row: span 2; aspect-ratio: 3/5; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 600px){
  .hero-media { grid-template-columns: repeat(2,1fr); }
  .hero-media .shot:first-child { grid-row: auto; aspect-ratio: 3/4; }
}

.figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.figure img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16/10; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.feature-strip .shot {
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.feature-strip img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px){ .feature-strip { grid-template-columns: repeat(2,1fr); } }
.companion__body { padding: 12px 14px; }
.companion__name { font-weight: 700; font-size: .95rem; }
.companion__meta { font-size: .72rem; color: var(--text-3); margin-top: 3px; font-weight: 500; }

/* ---------- Gender / mode tabs ---------- */
.tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--border);
  margin: 1.5rem 0; flex-wrap: wrap;
}
.tabs a, .tabs button {
  font-size: .82rem; font-weight: 600; padding: 10px 16px;
  color: var(--text-3); background: none; border: 0;
  border-bottom: 2px solid transparent; cursor: pointer;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  transition: color .15s, background .15s;
}
.tabs a[aria-current="page"], .tabs a.active, .tabs button.active {
  color: var(--text); border-bottom-color: var(--red);
  background: var(--surface);
}
.tabs a:hover, .tabs button:hover { color: var(--text); background: var(--surface); }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 22px;
  display: flex; flex-direction: column;
  transition: border-color .15s;
}
.plan--featured { border-color: var(--red); background: var(--surface-2); position: relative; box-shadow: 0 0 0 1px var(--red), var(--shadow-red); }
.plan__name { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.plan__price { font-size: 2.4rem; font-weight: 800; color: var(--text); margin: 12px 0 2px; line-height: 1; }
.plan__price .red { color: var(--red); }
.plan__per { font-size: .76rem; color: var(--text-3); }
.plan ul { list-style: none; padding: 0; margin: 18px 0; font-size: .88rem; flex: 1; color: var(--text-2); }
.plan li { padding: 7px 0 7px 22px; position: relative; border-top: 1px solid var(--border); }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: .85rem; }
.plan li:first-child { border-top: 0; }
.badge-best {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: var(--r-pill); white-space: nowrap;
}
@media (max-width: 1000px){ .plans{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .plans{ grid-template-columns: 1fr; } }

/* ---------- Credit Calculator ---------- */
.calc {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 36px);
}
.calc__row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 12px; align-items: center; padding: 14px 0;
  border-top: 1px solid var(--border);
}
.calc__row:first-of-type { border-top: 0; }
.calc__row label { font-size: .82rem; font-weight: 500; color: var(--text-2); }
.calc input[type="range"] { width: 100%; accent-color: var(--red); cursor: pointer; }
.calc__val { font-weight: 700; color: var(--red); min-width: 52px; text-align: right; }
.calc__out {
  margin-top: 24px; border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: baseline; gap: 14px;
}
.calc__out .big { font-size: 2.6rem; font-weight: 800; color: var(--red); line-height: 1; }
.calc__note { font-size: .76rem; color: var(--text-3); margin-top: 12px; line-height: 1.5; }

/* ---------- Callout ---------- */
.callout {
  border: 1px solid rgba(254,59,77,.35);
  border-left: 3px solid var(--red);
  background: var(--red-soft);
  border-radius: var(--r-md);
  padding: 20px 22px; margin: 1.6rem 0;
}
.callout h4 { color: var(--red); margin-top: 0; font-size: .9rem; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.faq details { border-top: 1px solid var(--border); }
.faq details:first-child { border-top: 0; }
.faq summary {
  cursor: pointer; padding: 18px 20px;
  font-weight: 600; font-size: .98rem;
  list-style: none; display: flex; justify-content: space-between; gap: 14px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--red); font-weight: 700;
  font-size: 1.1rem; flex-shrink: 0;
}
.faq details[open] summary { background: var(--surface); }
.faq details[open] summary::after { content: "−"; }
.faq .faq__a { padding: 0 20px 18px; color: var(--text-2); font-size: .94rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-band .wrap {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px;
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
}
.cta-band h2 { margin: 0; max-width: 600px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: clamp(48px, 7vw, 72px) 0 36px;
  font-size: .9rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 5px 0; }
.footer-grid a { color: var(--text-2); font-size: .88rem; }
.footer-grid a:hover { color: var(--red); }
.footer-disc {
  border-top: 1px solid var(--border); margin-top: 40px;
  padding-top: 24px; color: var(--text-3); font-size: .78rem; line-height: 1.7;
}
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ---------- Utility ---------- */
.tag-pill {
  display: inline-flex; align-items: center;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  border: 1px solid var(--border); color: var(--text-3);
  padding: 4px 10px; border-radius: var(--r-pill);
  margin: 0 5px 6px 0; background: var(--surface);
}
.tag-pill.on { border-color: rgba(254,59,77,.5); color: var(--red); background: var(--red-soft); }
.mt0  { margin-top: 0; }
.mb0  { margin-bottom: 0; }
.tc   { text-align: center; }
.num  { font-size: 2rem; font-weight: 800; color: var(--red); line-height: 1; display: block; margin-bottom: 8px; }
.divider-red { height: 3px; background: var(--red); width: 40px; margin: 0 0 1.2rem; border-radius: 2px; }
.note { font-size: .78rem; color: var(--text-3); }
.aff-note {
  font-size: .75rem; font-weight: 500; color: var(--text-3);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 10px 14px; margin: 1rem 0;
  background: var(--surface);
}
