/* ============================================================
   DEALT — homepage stylesheet
   Design system: jade #45B888, copper #CC8B5E, warm navy #0D1119
   ============================================================ */

:root {
  /* Surfaces */
  --bg:           #0D1119;
  --bg-card:      #151C26;
  --bg-elevated:  #1D2530;
  --bg-input:     #11161E;

  /* Accents */
  --jade:         #45B888;
  --jade-bg:      rgba(69, 184, 136, 0.12);
  --jade-border:  rgba(69, 184, 136, 0.35);
  --jade-muted:   #2F8F69;

  --copper:       #CC8B5E;
  --copper-bg:    rgba(204, 139, 94, 0.12);
  --copper-border:rgba(204, 139, 94, 0.35);

  --blue:         #5AACF0;
  --blue-bg:      rgba(90, 172, 240, 0.12);

  --gold:         #E0B84C;
  --red:          #E87070;

  /* Text */
  --text:         #F2EFE6;
  --text-dim:     #B3B6BC;
  --text-muted:   #7A7E86;
  --text-faint:   #4A4E58;

  /* Lines */
  --border:       rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.04);

  /* Radii */
  --r-xs: 6px; --r-sm: 8px; --r-md: 10px; --r-lg: 12px; --r-card: 14px; --r-full: 9999px;

  /* Spacing scale */
  --sp-xs: 4px; --sp-sm: 8px; --sp-md: 12px; --sp-lg: 16px; --sp-xl: 24px; --sp-xxl: 32px; --sp-3xl: 48px; --sp-4xl: 64px; --sp-5xl: 96px;

  /* Type — Archivo display + DM Sans for everything else (no Space Mono) */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Sans', system-ui, sans-serif;

  /* Shadows */
  --shadow-card:    0 4px 12px rgba(0,0,0,0.32);
  --shadow-deck:    0 12px 32px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.25);
  --shadow-elevated:0 8px 24px rgba(0,0,0,0.35);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
img, svg { display: block; max-width: 100%; }

/* ── Typography ───────────────────────────── */
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.025em; line-height: 1.02; font-family: var(--font-display); }
/* Legacy .serif accent now resolves to Geist italic medium for understated emphasis */
.serif { font-family: var(--font-display); font-style: italic; font-weight: 500; letter-spacing: -0.015em; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 4px var(--jade-bg);
  flex-shrink: 0;
}
.eyebrow-plain::before { display: none; }
.mono { font-family: var(--font-mono); }
.copper { color: var(--copper); }
.jade   { color: var(--jade); }
.dim    { color: var(--text-dim); }
.muted  { color: var(--text-muted); }

/* ── Layout ───────────────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; position: relative; }
section.tight { padding: 56px 0; }
@media (max-width: 760px){ section { padding: 72px 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; }

/* ── Nav ──────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 0;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  background: rgba(13, 17, 25, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled {
  background: rgba(13, 17, 25, 0.88);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.wordmark { display: block; height: 26px; }
.wordmark svg { height: 100%; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; font-size: 14px; white-space: nowrap; }
.nav-links a { color: var(--text-dim); transition: color .15s; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 760px){ .nav-links { display: none; } }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-lg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-primary {
  background: var(--jade);
  color: #0B0E14;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 6px 16px rgba(69,184,136,0.32);
}
.btn-primary:hover { background: #58c898; }
.btn-copper {
  background: var(--copper);
  color: #1A0F08;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 6px 16px rgba(204,139,94,0.32);
}
.btn-copper:hover { background: #d89770; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--bg-card); border-color: rgba(255,255,255,0.16); }
.btn-ghost { background: transparent; color: var(--text-dim); padding-left: 4px; padding-right: 4px; }
.btn-ghost:hover { color: var(--text); }

/* ── Pills / Chips ────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--bg-elevated);
  font-size: 12px;
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.pill-jade   { background: var(--jade-bg);   color: var(--jade);   border-color: var(--jade-border); }
.pill-copper { background: var(--copper-bg); color: var(--copper); border-color: var(--copper-border); }
.pill-blue   { background: var(--blue-bg);   color: var(--blue);   border-color: rgba(90,172,240,0.35); }

/* ── Hero ─────────────────────────────────── */
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 720px;
}

/* cursor spotlight */
.spotlight {
  position: absolute; pointer-events: none;
  inset: 0; z-index: 0;
  --mx: 50%; --my: 30%;
  background:
    radial-gradient(600px 400px at var(--mx) var(--my), rgba(69,184,136,0.18), transparent 70%),
    radial-gradient(800px 500px at calc(var(--mx) + 200px) calc(var(--my) + 100px), rgba(204,139,94,0.10), transparent 70%);
  transition: background-position .2s;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px){
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(56px, 8vw, 132px);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  padding-bottom: 0.16em; /* reserve space for italic serif descenders */
}
.hero h1 .serif {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.025em;
  color: var(--copper);
  display: inline-block;
  line-height: 1.0;
  white-space: nowrap;
  font-size: 0.94em;
}
.hero p.lead { margin-top: 32px; }
.hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  margin: 24px 0 0;
  max-width: 480px;
  line-height: 1.55;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 32px;
}
.hero-note {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.hero-note .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 0 0 var(--jade);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(69,184,136, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(69,184,136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(69,184,136, 0); }
}

/* ── Phone + Swipe Deck ───────────────────── */
.phone-stage {
  display: flex; justify-content: center; align-items: center;
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}
.phone {
  width: 320px;
  height: 640px;
  background: linear-gradient(180deg, #1c2330, #0f141b);
  border-radius: 44px;
  padding: 14px;
  position: relative;
  box-shadow:
    0 0 0 1.5px #2a3340,
    0 0 0 8px #0a0e15,
    0 30px 60px rgba(0,0,0,0.55),
    0 12px 28px rgba(0,0,0,0.4);
  transform: rotate(-2deg);
}
.phone-screen {
  background: var(--bg);
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #060a10; border-radius: 999px;
  z-index: 4;
}
.phone-chrome {
  position: absolute; top: 14px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 24px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text);
  z-index: 3;
}
.phone-chrome .signal { display: flex; gap: 3px; align-items: center; }
.phone-chrome .signal i { width: 3px; background: currentColor; border-radius: 1px; }
.phone-chrome .signal i:nth-child(1){ height: 4px; }
.phone-chrome .signal i:nth-child(2){ height: 6px; }
.phone-chrome .signal i:nth-child(3){ height: 8px; }
.phone-chrome .signal i:nth-child(4){ height: 10px; }

.deck {
  position: absolute;
  top: 56px; left: 16px; right: 16px; bottom: 80px;
  perspective: 1000px;
}
.swipe-card {
  position: absolute; inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-deck);
  transform-origin: center bottom;
  will-change: transform, opacity;
}
.swipe-card .stripe {
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; border-radius: var(--r-card) var(--r-card) 0 0;
}
.swipe-card-head { display: flex; gap: 8px; align-items: center; margin-top: 4px; }
.swipe-card-head > div:nth-child(2) { min-width: 0; flex: 1 1 auto; }
.logo-tile {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.swipe-card .org { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.swipe-card .name { font-size: 13px; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.swipe-card .match {
  margin-left: auto;
  font-size: 10px; font-family: var(--font-mono);
  color: var(--jade);
  background: var(--jade-bg);
  border: 1px solid var(--jade-border);
  padding: 2px 8px; border-radius: var(--r-full);
  text-transform: uppercase; letter-spacing: 0.06em;
  flex-shrink: 0;
  white-space: nowrap;
}
.swipe-card .match.good { color: var(--gold); background: rgba(224,184,76,0.12); border-color: rgba(224,184,76,0.35); }
.swipe-card .match.poss { color: var(--copper); background: var(--copper-bg); border-color: var(--copper-border); }
.swipe-card .role {
  font-family: var(--font-body); font-weight: 700;
  font-size: 22px; color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 2px;
}
.swipe-card .pay {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--copper);
  font-size: 20px;
}
.swipe-card .loc {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-dim);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.swipe-card .loc > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.swipe-card .loc svg { width: 12px; height: 12px; }
.swipe-card .commute {
  display: flex; gap: 6px; margin-top: 2px;
}
.swipe-card .commute > span {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; padding: 3px 8px;
  border-radius: var(--r-full);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-family: var(--font-mono);
  white-space: nowrap;
  flex-shrink: 0;
}
.swipe-card .commute > span > span { white-space: nowrap; }
.swipe-card .commute span.active {
  color: var(--jade); background: var(--jade-bg);
}
.swipe-card .commute svg { width: 11px; height: 11px; }
.swipe-card .desc {
  font-size: 12px; color: var(--text-dim); line-height: 1.45;
  margin-top: 2px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.swipe-card .chips {
  display: flex; gap: 5px; flex-wrap: wrap; margin-top: auto;
}
.swipe-card .chips .pill { font-size: 10px; padding: 3px 8px; white-space: nowrap; }
.pill { white-space: nowrap; }

/* swipe overlay tags */
.swipe-card .stamp {
  position: absolute; top: 18px;
  padding: 4px 12px; border-radius: 8px;
  font-family: var(--font-display); font-size: 18px;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
}
.swipe-card .stamp.apply { right: 14px; border: 2px solid var(--jade); color: var(--jade); background: var(--jade-bg); transform: rotate(8deg); }
.swipe-card .stamp.skip  { left: 14px;  border: 2px solid var(--red);  color: var(--red);  background: rgba(232,112,112,0.15); transform: rotate(-8deg); }

/* deck action dots */
.deck-actions {
  position: absolute; bottom: 22px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 24px;
}
.deck-actions .dot {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: transform .2s, background .2s;
}
.deck-actions .dot.skip  { color: var(--red); }
.deck-actions .dot.apply { color: var(--jade); }
.deck-actions .dot.pulse { transform: scale(1.15); background: var(--bg-card); }

/* ── Stats / Trust strip ──────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015));
}
@media (max-width: 760px){ .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
}
.stat:last-child { border-right: 0; }
@media (max-width: 760px){
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.stat .v {
  font-family: var(--font-body); font-weight: 700;
  font-size: 36px; letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-height: 36px;
}
.stat .v .cur {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat .l {
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.stat .l {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 8px;
}

/* ── Marquee ──────────────────────────────── */
.marquee-wrap {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--bg), rgba(21,28,38,0.4), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 28px;
}
.marquee-head h2 { font-size: clamp(28px, 3vw, 40px); }
.marquee {
  display: flex; gap: 14px;
  width: max-content;
  animation: marquee linear infinite;
}
.marquee.r1 { animation-duration: 80s; }
.marquee.r2 { animation-duration: 110s; animation-direction: reverse; margin-top: 14px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* compact job card used in marquee */
.j-card {
  flex: 0 0 auto;
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  transition: transform .2s ease, border-color .2s;
}
.j-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.16); }
.j-card .stripe {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: var(--r-card) var(--r-card) 0 0;
}
.j-card .top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.j-card .org { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.j-card .role { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; line-height: 1.2; }
.j-card .pay { font-family: var(--font-mono); font-weight: 700; color: var(--copper); font-size: 16px; }
.j-card .meta { font-size: 12px; color: var(--text-dim); display: flex; gap: 6px; align-items: center; }
.j-card .meta::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--jade); flex-shrink: 0;
}
.j-card.dim .meta::before { background: var(--gold); }
.j-card.dim2 .meta::before { background: var(--copper); }

/* ── Section heading ──────────────────────── */
.section-head { max-width: 720px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: -0.03em;
  margin: 16px 0 0;
}
.section-head p {
  margin: 16px 0 0;
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 580px;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ── Two-door split ───────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 900px){ .split { grid-template-columns: 1fr; } }
.door {
  position: relative;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  padding: 40px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  min-height: 460px;
  display: flex; flex-direction: column;
}
.door::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(400px 240px at 20% 0%, var(--accent-glow, transparent), transparent 70%);
  pointer-events: none;
  opacity: 0.55;
}
.door.workers   { --accent-glow: rgba(69, 184, 136, 0.18); }
.door.employers { --accent-glow: rgba(204, 139, 94, 0.18); }
.door:hover { border-color: rgba(255,255,255,0.18); }
.door > * { position: relative; z-index: 1; }
.door .eye { font-size: 12px; }
.door h3 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  margin: 14px 0 16px;
  font-weight: 700;
}
.door .lead { color: var(--text-dim); font-size: 16px; max-width: 380px; }
.door .door-art { margin: 32px 0; flex: 1; }
.door.employers .eye::before {
  background: var(--copper);
  box-shadow: 0 0 0 4px var(--copper-bg);
}
.door .door-cta { display: flex; gap: 12px; margin-top: 8px; }
.door .door-cta .btn { flex: 1; max-width: 240px; }

/* applicants list (employer door) */
.applicants {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
}
.applicants .head {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-bottom: 10px; margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.applicant {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--border-light);
}
.applicant:last-child { border-bottom: 0; }
.applicant .av {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-elevated);
  display: grid; place-items: center;
  font-weight: 600; font-size: 12px;
  color: var(--text);
}
.applicant .info { flex: 1; min-width: 0; }
.applicant .info .nm { font-weight: 600; font-size: 14px; }
.applicant .info .sk { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); }
.applicant .pc { font-family: var(--font-mono); font-weight: 700; font-size: 15px; }
.applicant .pc.s { color: var(--jade); }
.applicant .pc.g { color: var(--gold); }
.applicant .pc.p { color: var(--copper); }

/* candidate door — mini-stack of cards */
.mini-stack { position: relative; height: 220px; }
.mini-stack .j-card { position: absolute; width: 100%; transition: transform .2s; }
.mini-stack .j-card:nth-child(1) { top: 0; transform: translateY(0) rotate(-2deg); z-index: 3; }
.mini-stack .j-card:nth-child(2) { top: 16px; transform: translateY(0) rotate(2deg); z-index: 2; opacity: 0.7; }
.mini-stack .j-card:nth-child(3) { top: 32px; transform: translateY(0) rotate(-1deg); z-index: 1; opacity: 0.4; }

/* ── Match section ────────────────────────── */
.match-section { padding: 96px 0; position: relative; }
.match-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 900px){ .match-grid { grid-template-columns: 1fr; } }
.match-cards {
  display: flex; flex-direction: column; gap: 12px;
}
.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  transition: border-color .25s, transform .25s;
}
.match-card:hover { border-color: rgba(255,255,255,0.16); transform: translateX(4px); }
.match-card .role { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.match-card .meta { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.match-card .ticks { display: flex; gap: 6px; margin-top: 12px; }
.match-card .ticks .t {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg-elevated);
  position: relative;
  transition: background .3s ease;
}
.match-card .ticks .t.on { background: var(--c, var(--jade)); }
.match-card .ticks .t.on::after {
  content: ''; position: absolute; inset: 4px;
  border-left: 1.5px solid #0B0E14; border-bottom: 1.5px solid #0B0E14;
  transform: rotate(-45deg); margin-top: -2px;
}
.match-card .score {
  font-family: var(--font-body); font-weight: 700;
  font-size: 36px; letter-spacing: -0.02em;
  color: var(--c, var(--jade));
  line-height: 1;
}
.match-card .score-l {
  font-family: var(--font-mono); font-size: 10px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  text-align: right; margin-top: 4px;
}
.match-card[data-tier="strong"] { --c: var(--jade); }
.match-card[data-tier="good"]   { --c: var(--gold); }
.match-card[data-tier="poss"]   { --c: var(--copper); }

/* ── How it works steps ───────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 56px;
}
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.step:hover { border-color: rgba(255,255,255,0.16); transform: translateY(-3px); }
.step .n {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-muted); letter-spacing: 0.12em;
}
.step h4 { font-size: 18px; margin-top: 8px; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--text-dim); margin: 8px 0 0; line-height: 1.55; }

/* ── EU directive callout ─────────────────── */
.eu {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 40px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px;
  align-items: center;
}
@media (max-width: 900px){ .eu { grid-template-columns: 1fr; } }
.eu-cal {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
}
.eu-cal-head {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.eu-cal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.eu-cal-grid .m {
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  padding: 10px 4px;
  border-radius: 6px;
  background: var(--bg-elevated);
  color: var(--text-dim);
  border: 1px solid transparent;
}
.eu-cal-grid .m.now { background: var(--copper); color: #1A0F08; font-weight: 700; }
.eu-cal-grid .m.past { opacity: 0.4; }

.eu h2 { font-size: clamp(24px, 2.5vw, 32px); margin: 14px 0 0; letter-spacing: -0.02em; }
.eu p { font-size: 14px; color: var(--text-dim); margin: 12px 0 16px; line-height: 1.55; max-width: 520px; }

/* ── Final CTA ────────────────────────────── */
.final {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 30% 60%, rgba(69,184,136,0.10), transparent 70%),
    radial-gradient(500px 280px at 70% 40%, rgba(204,139,94,0.10), transparent 70%);
}
.final > * { position: relative; }
.final h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.035em;
}
.final h2 .pd { color: var(--copper); font-style: italic; }
.final .cta-row {
  display: flex; gap: 14px; justify-content: center;
  margin-top: 36px; flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 760px){ .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.foot-brand p { color: var(--text-muted); max-width: 280px; font-size: 13px; line-height: 1.55; margin: 16px 0 0; }
.foot-col h5 {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin: 0 0 16px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--text-dim); transition: color .15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em;
}
@media (max-width: 600px){ .foot-bottom { flex-direction: column; gap: 8px; } }

/* ── Reveal-on-scroll ─────────────────────── */
/* Subtle CSS-only entrance: animates from 12px down + 0.92 opacity on load.
   Never fully hides content, so screenshots & no-JS fallbacks still render. */
.reveal {
  animation: reveal-in 0.9s cubic-bezier(.2,.7,.2,1) both;
  animation-timeline: view();
  animation-range: entry 0% cover 25%;
}
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
/* Fallback for browsers without scroll-driven animations: just show */
@supports not (animation-timeline: view()) {
  .reveal { animation: none; opacity: 1; transform: none; }
  html.js-ready .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
  html.js-ready .reveal.in { opacity: 1; transform: none; }
}

/* ── Reduced motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────── *
   MANIFESTO — sections for the new positioning
 * ─────────────────────────────────────────── */

/* Film grain disabled — reads busy at premium fintech tier */

/* Hairline rule */
.rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}
.rule-thick {
  border-top: 2px solid var(--text);
  margin: 0;
}

/* Editorial section pattern */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 280px;
}
.section-eyebrow .num {
  color: var(--text);
  font-weight: 700;
}

/* THE PROBLEM — typographic stat heroes */
.problem {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.012), transparent);
}
.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 14ch;
  margin-bottom: 16px;
}
.problem h2 .serif { color: var(--copper); }
.problem .lede {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.5;
  margin: 0 0 64px;
}

.stat-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 760px){ .stat-block { grid-template-columns: 1fr; } }
.stat-hero {
  padding: 40px 28px 40px 0;
  border-top: 1px solid var(--border);
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 1.4fr;
  gap: 24px;
  align-items: baseline;
}
.stat-hero:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 40px; }
.stat-hero:nth-child(even) { padding-left: 40px; }
@media (max-width: 760px){
  .stat-hero { grid-template-columns: 1fr; gap: 4px; padding: 32px 0 !important; border-right: 0 !important; }
}
.stat-hero .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}
.stat-hero .n .sm { font-size: 0.55em; color: var(--copper); margin-left: 4px; letter-spacing: -0.02em; }
.stat-hero .n .plus { color: var(--copper); }
.stat-hero .cap {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.45;
  max-width: 360px;
}
.stat-hero .cap b { color: var(--text); font-weight: 600; }
.stat-hero .cap .src {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.problem-close {
  margin-top: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
@media (max-width: 760px){ .problem-close { grid-template-columns: 1fr; } }
.problem-close .label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--copper);
}
.problem-close p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 880px;
}
.problem-close p .serif {
  color: var(--jade);
}

/* THE FIX — three pillars */
.fix h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin-bottom: 56px;
}
.fix h2 .serif { color: var(--jade); }

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.pillar {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px){
  .pillar { grid-template-columns: 60px 1fr; }
  .pillar .body { grid-column: 2 / -1; }
}
.pillar .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--copper);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 12ch;
}
.pillar h3 .serif { color: var(--jade); font-weight: 400; }
.pillar .body {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
}
.pillar .body p { margin: 0 0 12px; max-width: 56ch; }
.pillar .body p:last-child { margin-bottom: 0; }
.pillar .body strong { color: var(--text); font-weight: 600; }

/* PRICING — honest split */
.pricing {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 760px){ .pricing-grid { grid-template-columns: 1fr; } }
.price-block {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.price-block:last-child { border-right: 0; }
@media (max-width: 760px){
  .price-block { border-right: 0; border-bottom: 1px solid var(--border); padding: 36px 24px; }
  .price-block:last-child { border-bottom: 0; }
}
.price-block .who {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-block .who.jade  { color: var(--jade); }
.price-block .who.copper{ color: var(--copper); }
.price-block .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-top: 4px;
}
.price-block .big .serif { font-weight: 400; }
.price-block p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 8px 0 0;
  max-width: 38ch;
}
.price-block .fine {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 24px;
  line-height: 1.5;
}

/* FOUNDING PARTNERS */
.founding {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(204,139,94,0.04), transparent);
}
.founding-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px){ .founding-grid { grid-template-columns: 1fr; } }
.founding .label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex; align-items: center; gap: 14px;
}
.founding .label .seats {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  background: var(--copper-bg);
  border: 1px solid var(--copper-border);
  color: var(--copper);
  padding: 4px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.1em;
}
.founding h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 18px 0 20px;
  max-width: 16ch;
}
.founding h2 .serif { color: var(--copper); font-weight: 400; }
.founding .body {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 540px;
}
.founding .body b { color: var(--text); font-weight: 600; }
.founding .meta {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.founding .meta span { display: inline-flex; align-items: center; gap: 8px; }
.founding .meta b { color: var(--text); font-family: var(--font-display); font-size: 16px; letter-spacing: -0.01em; }

.founding-card {
  border: 1px solid var(--copper-border);
  background: linear-gradient(180deg, var(--copper-bg), transparent);
  border-radius: var(--r-card);
  padding: 32px;
}
.founding-card .ph {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.founding-card .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.035em;
}
.founding-card .price .alt {
  font-size: 28px;
  color: var(--text-dim);
  font-weight: 400;
  margin-left: 8px;
}
.founding-card .sub {
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 6px;
}
.founding-card ul {
  list-style: none; padding: 0; margin: 24px 0 0;
  border-top: 1px dashed var(--border);
}
.founding-card li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
  color: var(--text-dim);
  display: flex; gap: 10px; align-items: center;
}
.founding-card li::before {
  content: '✓';
  color: var(--copper);
  font-weight: 700;
  flex-shrink: 0;
}

/* DM Sans body fallback — ensure body remains 400 not the heading weight inherit */
body, p, .lead, .meta, .body { font-family: var(--font-body); }

/* Section heading override for manifesto h2 with .serif accents */
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.section-head h2 .serif { color: var(--copper); font-weight: 400; }

/* Final-CTA upgrade */
.final h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.final h2 .serif { color: var(--copper); font-weight: 400; font-style: italic; }

/* Door headings in display font */
.door h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.door h3 .serif { color: inherit; font-weight: 400; }

/* Step heads */
.step h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.015em; }

/* Hero background art slot — sits behind phone */
.phone-stage { position: relative; }
.hero-bg-art {
  position: absolute;
  inset: -40px -40px -40px -80px;
  z-index: 0;
  opacity: 0.65;
  pointer-events: none;
  border-radius: var(--r-card);
  overflow: hidden;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, #000 30%, transparent 75%);
}
.hero-bg-art .art-frame, .hero-bg-art image-slot { width: 100%; height: 100%; }
.hero-bg-art image-slot::part(placeholder),
.hero-bg-art .art-cap { opacity: 0.4; }
.phone-stage > .phone { position: relative; z-index: 1; }

.art-frame image-slot { display: block; }

/* Hero art slot — single large atmospheric image, replaces the old phone */
.hero-art {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 640px;
  border-radius: var(--r-card);
  background: linear-gradient(180deg, var(--bg-card), var(--bg));
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.hero-art image-slot { width: 100%; height: 100%; display: block; }
.hero-art::after {
  /* faint inner gradient so an empty slot doesn't read as a "white box" */
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(69,184,136,0.06), transparent 70%),
    radial-gradient(ellipse 50% 40% at 60% 70%, rgba(204,139,94,0.05), transparent 70%);
  z-index: 0;
}
.hero-art image-slot { position: relative; z-index: 1; }

@media (max-width: 900px){
  .hero-art { aspect-ratio: 16 / 10; max-height: 360px; }
}

/* Employer pullout — text + applicants */
.employer-pull {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px){
  .employer-pull { grid-template-columns: 1fr; gap: 40px; }
}
.employer-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}
.employer-copy h2 .serif { color: var(--copper); font-weight: 500; }
.employer-copy .lead {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 540px;
}

/* EU h2 */
.eu h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.025em; }

/* ─────────────────────────────────────────── *
   MARKET BADGE — IE + UK presence
 * ─────────────────────────────────────────── */
.market-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.02);
}
.market-badge .flags {
  display: inline-flex; gap: 4px;
}
.market-badge .flag {
  width: 16px; height: 11px;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(255,255,255,0.08);
}
.market-badge .flag i { flex: 1; }
.market-badge .flag.ie i:nth-child(1) { background: #169B62; }
.market-badge .flag.ie i:nth-child(2) { background: #FFFFFF; }
.market-badge .flag.ie i:nth-child(3) { background: #FF883E; }
.market-badge .flag.uk { position: relative; background: #012169; }
.market-badge .flag.uk::before, .market-badge .flag.uk::after {
  content: ''; position: absolute; inset: 0;
}
.market-badge .flag.uk::before {
  background:
    linear-gradient(to bottom right, transparent calc(50% - 1px), #fff calc(50% - 1px), #fff calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(to bottom left,  transparent calc(50% - 1px), #fff calc(50% - 1px), #fff calc(50% + 1px), transparent calc(50% + 1px));
}
.market-badge .flag.uk::after {
  background:
    linear-gradient(to bottom, transparent calc(50% - 1.5px), #C8102E calc(50% - 1.5px), #C8102E calc(50% + 1.5px), transparent calc(50% + 1.5px)),
    linear-gradient(to right,  transparent calc(50% - 1.5px), #C8102E calc(50% - 1.5px), #C8102E calc(50% + 1.5px), transparent calc(50% + 1.5px));
}
.market-badge b { color: var(--text); font-weight: 600; }
.market-badge .soon { color: var(--copper); }

/* ─────────────────────────────────────────── *
   PRICING TIER MATRIX
 * ─────────────────────────────────────────── */
.tiers {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.tiers-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.tiers-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 16ch;
}
.tiers-head h2 .serif { color: var(--copper); font-weight: 400; }
.tiers-head .lede { font-size: 16px; color: var(--text-dim); max-width: 360px; line-height: 1.5; margin: 8px 0 0; }

/* Hide the explicit currency toggle — IP detection runs silently */
.cur-switch { display: none !important; }
.tiers-head { display: block; margin-bottom: 56px; }
.cur-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--r-full);
  padding: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  position: relative;
}
.cur-switch button {
  padding: 8px 16px;
  border-radius: var(--r-full);
  color: var(--text-muted);
  transition: color .2s;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
}
.cur-switch button.on { color: var(--text); }
.cur-switch .pill-thumb {
  position: absolute;
  top: 4px; bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--bg-elevated);
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.cur-switch[data-cur="gbp"] .pill-thumb { transform: translateX(100%); }
.cur-switch .flag {
  width: 14px; height: 10px;
  border-radius: 1.5px;
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
}
.cur-switch .flag.ie i { flex: 1; }
.cur-switch .flag.ie i:nth-child(1) { background: #169B62; }
.cur-switch .flag.ie i:nth-child(2) { background: #FFFFFF; }
.cur-switch .flag.ie i:nth-child(3) { background: #FF883E; }
.cur-switch .flag.uk { position: relative; background: #012169; }
.cur-switch .flag.uk::before, .cur-switch .flag.uk::after {
  content: ''; position: absolute; inset: 0;
}
.cur-switch .flag.uk::before {
  background:
    linear-gradient(to bottom right, transparent calc(50% - 0.5px), #fff calc(50% - 0.5px), #fff calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(to bottom left,  transparent calc(50% - 0.5px), #fff calc(50% - 0.5px), #fff calc(50% + 0.5px), transparent calc(50% + 0.5px));
}
.cur-switch .flag.uk::after {
  background:
    linear-gradient(to bottom, transparent calc(50% - 1px), #C8102E calc(50% - 1px), #C8102E calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(to right,  transparent calc(50% - 1px), #C8102E calc(50% - 1px), #C8102E calc(50% + 1px), transparent calc(50% + 1px));
}

/* Tier grid */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bg-card);
}
@media (max-width: 1000px){ .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .tier-grid { grid-template-columns: 1fr; } }

.tier {
  padding: 32px 28px 28px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: relative;
  background: var(--bg-card);
  transition: background .25s;
}
.tier:last-child { border-right: 0; }
@media (max-width: 1000px){
  .tier:nth-child(2n) { border-right: 0; }
  .tier { border-bottom: 1px solid var(--border); }
  .tier:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 640px){
  .tier { border-right: 0; border-bottom: 1px solid var(--border); }
  .tier:last-child { border-bottom: 0; }
}
.tier:hover { background: var(--bg-elevated); }

.tier.featured {
  background: linear-gradient(180deg, var(--copper-bg), transparent 60%), var(--bg-card);
  box-shadow: inset 0 0 0 2px var(--copper-border);
  z-index: 1;
}
.tier.coming { background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent), var(--bg-card); opacity: 0.85; }

.tier .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.tier .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.tier .tag.popular { background: var(--copper-bg); color: var(--copper); border: 1px solid var(--copper-border); }
.tier .tag.soon { background: var(--bg); color: var(--text-muted); border: 1px solid var(--border); }
.tier .tag.always { background: var(--jade-bg); color: var(--jade); border: 1px solid var(--jade-border); }

.tier .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-top: 16px;
}
.tier .name .serif { color: var(--copper); font-weight: 400; }

.tier .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-top: 14px;
  display: flex; align-items: baseline; gap: 6px;
  font-variant-numeric: tabular-nums;
}
.tier .price .alt {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0;
}
.tier .price .cur { font-weight: 700; }
/* Currency swap — applies to ANY .cur.eur / .cur.gbp on the page */
.cur.gbp { display: none; }
[data-cur="gbp"] .cur.eur { display: none; }
[data-cur="gbp"] .cur.gbp { display: inline; }

.tier .desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 14px;
  min-height: 4em;
}
.tier .desc b { color: var(--text); font-weight: 600; }

.tier .cta {
  margin-top: 18px;
}
.tier .cta a {
  display: block; text-align: center;
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 13px; font-weight: 600;
  color: var(--text);
  transition: background .15s, border-color .15s;
}
.tier .cta a:hover { background: var(--bg-card); border-color: rgba(255,255,255,0.16); }
.tier.featured .cta a { background: var(--copper); border-color: var(--copper); color: #1A0F08; }
.tier.featured .cta a:hover { background: #d89770; }
.tier .cta a.disabled { pointer-events: none; opacity: 0.45; }

.tier ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px dashed var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.tier ul li {
  font-size: 13px;
  color: var(--text-dim);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.45;
}
.tier ul li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--jade);
  margin-top: 7px;
  flex-shrink: 0;
}
.tier ul li.muted { color: var(--text-muted); }
.tier ul li.muted::before { background: var(--text-muted); }
.tier ul li.soon::before { background: var(--copper); }
.tier ul li.soon::after {
  content: 'soon';
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--copper);
  background: var(--copper-bg);
  border: 1px solid var(--copper-border);
  padding: 1px 6px;
  border-radius: var(--r-full);
  margin-left: auto;
  letter-spacing: 0.08em;
  align-self: flex-start;
}

/* Tier-row footnote / disclaimer */
.tier-note {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ─────────────────────────────────────────── *
   COMPARISON STRIP — DEALT vs others
 * ─────────────────────────────────────────── */
.versus {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.versus-head { max-width: 720px; margin-bottom: 48px; }
.versus-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 12px 0 0;
}
.versus-head h2 .serif { color: var(--jade); font-weight: 400; }

.versus-table {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
.versus-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.versus-row:last-child { border-bottom: 0; }
.versus-row.header {
  background: var(--bg-card);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.versus-row > div {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  font-size: 14px;
}
.versus-row > div:last-child { border-right: 0; }
.versus-row .feat {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}
.versus-row .dealt-col { background: linear-gradient(90deg, rgba(69,184,136,0.05), transparent); }
.versus-row .y, .versus-row .n { display: inline-flex; align-items: center; gap: 6px; }
.versus-row .y { color: var(--jade); font-weight: 600; }
.versus-row .n { color: var(--text-muted); }
.versus-row .y::before { content: '●'; font-size: 8px; }
.versus-row .n::before { content: '○'; font-size: 8px; color: var(--text-muted); }
@media (max-width: 900px){
  .versus-row { grid-template-columns: 1fr; }
  .versus-row > div { border-right: 0; border-bottom: 1px dashed var(--border); }
  .versus-row > div:last-child { border-bottom: 0; }
  .versus-row.header { display: none; }
  .versus-row > div:not(.feat)::before {
    content: attr(data-col); display: inline-block; min-width: 110px;
    font-family: var(--font-mono); font-size: 10px;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--text-muted); margin-right: 12px;
  }
  .versus-row .feat { background: var(--bg-card); }
}

/* ─────────────────────────────────────────── *
   IMAGE SLOT shell — for AI hero / section art
 * ─────────────────────────────────────────── */
.art-frame {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.art-frame:has(image-slot[data-filled]) { border-color: transparent; background: transparent; }
.art-frame .art-cap {
  display: none;
}
.art-frame image-slot { width: 100%; height: 100%; }
