/* ─────────────────────────────────────────
   INDEX.CSS — EEST NJT Racing Circuit homepage
   V3 R1 extraction target: all 8 former inline <style> blocks + the pathway
   section (ported from training.css so the training.css cross-page link can be
   dropped) live here. Tokens-first; off-token hex swept to css/tokens.css values.
   Owner: index.html page owner. Loads AFTER components.css so scoped overrides win.
───────────────────────────────────────── */

/* ═══════════════════════════════════════
   HERO — flagship-story furniture (overrides components.css .njt-hero)
   The EEST Circuit is the lead narrative; the Mini Circuit conversion path
   (open daily + book) stays above the fold.
═══════════════════════════════════════ */
/* Operator (2026-08-18): reduce hero H1 leading. English tightened 1.26 → 1.05 for a
   punchier display lockup; Thai keeps --lh-display 1.45 for diacritic clearance
   (HOUSE-RULES §10 / Gate 7 — the TH hero string stacks ึ/้/ี and needs the ink-box gap). */
html[lang="en"] #hero .njt-hero__title { line-height: 1.05; }

/* Operator (2026-08-18): enhance the hero → pathway section connection.
   The thin diagonal accent becomes a luminous magenta→yellow "speed-line" seam —
   brighter gradient, thicker edge, dual bloom that bleeds into BOTH sections — so the
   clipped hero reads as one continuous, intentional cut into the next section rather
   than a hard colour break. A soft plum→#050505 fade smooths the wedge below the seam. */
.njt-hero__accent-line {
  background: linear-gradient(90deg, rgba(255,215,0,0) 0%, var(--racing-yellow) 46%, var(--magenta) 100%);
  clip-path: polygon(0 calc(100% - 5px), 100% calc(85% - 5px), 100% 85%, 0 100%);
  filter: drop-shadow(0 0 12px rgba(255,215,0,0.55)) drop-shadow(0 2px 22px rgba(212,0,121,0.5));
}
/* Bottom-edge fade: darkens the hero's plum toward the next section's near-black along
   the clipped diagonal, so the seam is a smooth blend. Sits below the hero content
   (z-3 < content z-4), so the stat chips stay fully legible; pointer-events:none. */
#hero.njt-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 20%;
  background: linear-gradient(to bottom, transparent 0%, rgba(5,5,5,0.75) 100%);
  z-index: 3;
  pointer-events: none;
}
/* Operator (2026-08-18): unify the two darks below the hero seam to the DARKER one.
   The hero clip-path reveals the <body> plum (--bg-dark #2A0018) in its bottom-right
   triangle, sitting above the next section's #050505 — a plum/black split. index.css is
   homepage-only, so painting #main-content #050505 makes that revealed wedge the SAME
   near-black as the pathway section, without changing the global plum body base. */
#main-content { background-color: #050505; }

/* Operator (2026-08-18): lift the hero content up toward the vertical middle.
   .njt-hero centres its content but carries only a header-clearing padding-top (~96px)
   and no bottom counterweight, so the block sat ~48px below true centre. A matching
   padding-bottom balances the box and re-centres it (homepage-scoped; header clearance
   and the `safe center` overflow guard are untouched). */
#hero.njt-hero { padding-bottom: calc(var(--header-h, 80px) + 16px); }

/* Tagline gets a backdrop scrim pill so it never washes out over bright sky */
.njt-hero__tagline {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.15em;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(10,0,6,0.4);
  -webkit-backdrop-filter: blur(var(--blur-chip));
  backdrop-filter: blur(var(--blur-chip));
  border: 1px solid rgba(255,215,0,0.3);
  text-transform: uppercase;
}

/* V4 §G1: the 760px cap is deleted — the canonical 58ch standfirst measure from
   components.css now governs the hero subtitle on every route, this one included. */
.njt-hero__subtitle {
  text-wrap: pretty;
}

/* V4 §G8: the second hero CTA sat on a white/8 ghost over a bright golden-hour
   still and read as near-invisible. Give it a real surface (dark glass + gold
   hairline) so both CTAs hold their own against the plate. */
.njt-hero .btn-cta--glass {
  background: linear-gradient(135deg, rgba(10,0,6,0.72), rgba(42,0,24,0.62));
  border: 1px solid rgba(255,215,0,0.55);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
}
.njt-hero .btn-cta--glass:hover,
.njt-hero .btn-cta--glass:focus-visible {
  background: linear-gradient(135deg, rgba(42,0,24,0.9), rgba(10,0,6,0.85));
  border-color: var(--gold);
  /* A18 contract (layout.css): ink + both wash layers declared together. */
  --btn-hover-ink: var(--gold);
  --btn-hover-wash: 0;
  --btn-hover-sheen: 0;
  color: var(--btn-hover-ink);
}

/* Flagship + conversion chip row (glass HUD).
   V4 §G1: chips now render AFTER the CTA row, so the rhythm is
   subtitle → CTAs → status chips. Top margin replaces the old bottom margin. */
.njt-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 0;
  animation: fadeInUp 0.4s ease 0.4s both;
}

/* Fact chip — links to the-circuit.html; magenta HUD accent */
.njt-hero__fact-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212,0,121,0.22), rgba(10,0,6,0.5));
  -webkit-backdrop-filter: blur(var(--blur-card));
  backdrop-filter: blur(var(--blur-card));
  border: 1px solid rgba(212,0,121,0.5);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.njt-hero__fact-chip:hover {
  border-color: var(--magenta-300);
  transform: translateY(-2px);
}
.njt-hero__fact-chip:focus-visible {
  outline: 2px solid var(--magenta-300);
  outline-offset: 3px;
}
.njt-hero__fact-chip__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta-300);
}
.njt-hero__fact-chip__status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--magenta-300);
  box-shadow: 0 0 8px rgba(255,77,179,0.8);
}
.njt-hero__fact-chip__specs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}
.njt-hero__fact-chip__specs svg { width: 15px; height: 15px; color: var(--magenta-300); }

/* Status chip — Mini Circuit conversion (open daily) */
.njt-hero__status-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: rgba(10,0,6,0.45);
  -webkit-backdrop-filter: blur(var(--blur-chip));
  backdrop-filter: blur(var(--blur-chip));
  border: 1px solid rgba(255,255,255,0.16);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}
.njt-hero__status-chip__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--signal-green);
  box-shadow: 0 0 0 0 rgba(46,125,70,0.5);
  animation: pulseDot 2s infinite;
}

@media (max-width: 640px) {
  .njt-hero__chips { gap: 10px; }
  .njt-hero__status-chip { padding: 10px 16px; }
}

/* VENUE CREDIBILITY RAIL promoted to css/components.css §41 (A2, round 2) — it was
   the same component as track-info's `.njt-venue-proof`, built twice. Page copy removed. */

/* ═══════════════════════════════════════
/* ═══════════════════════════════════════
   DEVELOPMENT PATHWAY — canonical .njt-journey overrides (R3 migration)
   Base lives in components.css §39. Only page deltas here: 5-node track,
   photo icons, accent/flagship terminal, under-construction badge, gap-filler.
═══════════════════════════════════════ */
.njt-journey--pathway {
  background: #050505;
  /* `overflow: visible` DELETED with the ::before below — it existed only to let that
     pseudo-element escape the section box. Canonical .njt-journey overflow: hidden applies. */
}
/* ── REMOVED 2026-08-17: the "hero clip-path gap filler" ::before. ──────────────
   It was `position:absolute; bottom:100%; height:15vh; background:#050505;
   clip-path: polygon(100% 0, 0 100%, 100% 100%)` — a full-width BLACK TRIANGLE
   painted 150px ABOVE this section, i.e. on top of whatever section precedes it.

   It was correct only while `.njt-journey--pathway` was the hero's immediate next
   sibling (`.njt-hero` clips `polygon(0 0, 100% 0, 100% 85%, 0 100%)`, exposing a
   bottom-right triangle). V4 inserted a section between them, so the filler stopped
   reaching the hero gap and instead painted over the new section's bottom-right —
   the operator-reported black wedge amputating the 4th venue card.

   Isolated empirically, not inferred (LESSONS #62): hit-testing a 5×5 grid over the
   4th `.njt-venue-proof__item` returned `section.njt-journey` on 15/25 points at 1440
   and 10/25 at 1920; disabling ONLY this pseudo-element returned 25/25 to
   `li` / `strong` / `span` inside the card. No other layer changed the result.
   Deleting it is the fix — the hero's own clipped corner is a separate, pre-existing
   condition this element has not covered since the V4 insertion.
─────────────────────────────────────────────────────────────────────────────── */
.njt-journey--pathway .njt-journey__track--5 { grid-template-columns: repeat(5, 1fr); }
.njt-journey--pathway .njt-journey__track--5::before { left: 10%; right: 10%; }
/* Node photos ride in the canonical icon slot */
.njt-journey--pathway .njt-journey__icon {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.njt-journey--pathway .njt-journey__node { text-decoration: none; display: block; }
/* Accent (join-the-team) + flagship (EEST Circuit) terminals */
.njt-journey__node--accent .njt-journey__icon,
.njt-journey__node--flagship .njt-journey__icon {
  border-color: var(--magenta);
  box-shadow: 0 0 28px rgba(212,0,121,0.35);
}
.njt-journey__node--flagship .njt-journey__name,
.njt-journey__node--flagship .njt-journey__step { color: var(--gold); }
.njt-journey__node--flagship:hover .njt-journey__icon {
  border-color: var(--magenta-300);
  box-shadow: 0 0 36px rgba(212,0,121,0.5);
}
/* "Under construction" mini-badge on the flagship terminal */
.njt-journey__uc {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: var(--text-micro);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--magenta-300);
}
.njt-journey__uc svg { width: 13px; height: 13px; }
.njt-pathway-note {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: var(--text-small);
  font-family: var(--font-body);
  max-width: 760px; margin: 0 auto;
}
.njt-pathway-note--foot { margin-top: 3rem; }
@media (max-width: 991px) {
  .njt-journey--pathway .njt-journey__track--5 { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .njt-journey--pathway .njt-journey__track--5::before { display: none; }
}
@media (max-width: 576px) {
  .njt-journey--pathway .njt-journey__track--5 { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════
   ACTIVITIES SHOWCASE — asymmetric 12-col grid + HUD telemetry
   Fixes: micro-type floor ≥0.65rem, hero content 55%, focus-visible, off-token
   badges → tokens.
═══════════════════════════════════════ */
.njt-activities-premium {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--racing-plum);
  overflow: hidden;
}
.njt-activities-premium::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 800px; height: 800px;
  background: rgba(212,0,121,0.05);
  filter: blur(150px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.njt-activities-premium::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 700px; height: 700px;
  background: rgba(255,215,0,0.04);
  filter: blur(120px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.njt-activities-premium__container {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.njt-activities-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(380px, auto);
  gap: 1.25rem;
}
/* ═══ Fleet cards — Premium Motorsport Experience redesign (2026-08-18) ═══
   Direction: Porsche Experience × premium karting venue, not event poster.
   Let the photography carry the experience; yellow = precision accent only. */
.njt-activity-card {
  position: relative;
  border-radius: 14px;                          /* redesign: 12–14px */
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);     /* redesign: subtle boundary */
  box-shadow: 0 12px 30px rgba(0,0,0,0.38);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;                             /* 28px standard; card-hero → 32px */
  isolation: isolate;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.njt-activity-card:hover {
  transform: translateY(-3px);                  /* redesign: -3px */
  border-color: rgba(255,215,0,0.35);           /* redesign: yellow-tint (was 0.6) */
  box-shadow: 0 26px 52px -16px rgba(0,0,0,0.6);
}
.njt-activity-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center right;
  opacity: 1;                                   /* redesign: photography carries it (was 0.85) */
  transition: transform 600ms var(--ease-out);
  filter: saturate(1.02);
}
.njt-activity-card:hover .njt-activity-card__bg { transform: scale(1.035); }  /* redesign: 1.035 */
/* redesign #1 — localized vertical gradient: the top stays clear so the rider / kart /
   track read; only the bottom text zone darkens, with a light left wash where the copy sits. */
.njt-activity-card__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0%, transparent 32%, rgba(4,0,3,0.18) 54%, rgba(4,0,3,0.74) 82%, rgba(4,0,3,0.93) 100%),
    linear-gradient(90deg, rgba(4,0,3,0.60) 0%, rgba(4,0,3,0.18) 44%, transparent 64%);
}
.njt-activity-card__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 55%;
}
.njt-activity-card__body { margin-top: auto; }
/* redesign #10 — controlled category chip system: 11px pill, glass by default;
   yellow = Most Popular / Drifter Spec, magenta = For Kids. */
.njt-activity-card__badge {
  align-self: flex-start;
  margin-bottom: auto;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,215,0,0.16);
  color: var(--gold);
  border: 1px solid rgba(255,215,0,0.42);
  -webkit-backdrop-filter: blur(var(--blur-chip));
  backdrop-filter: blur(var(--blur-chip));
}
.njt-activity-card__badge--ghost,
.njt-activity-card__badge--plum {                /* Academy / Bring Your Own = translucent glass */
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
.njt-activity-card__badge--magenta {             /* For Kids = magenta */
  background: rgba(212,0,121,0.24);
  border-color: rgba(212,0,121,0.5);
  color: #fff;
}
/* redesign #2/#4 — title dominant (white), one clean weight; yellow reserved for action. */
.njt-activity-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;                             /* standard 24px (card-hero larger below) */
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.njt-activity-card__desc {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.72);                 /* restrained secondary */
  margin-top: 0.5rem;
  font-size: 0.875rem;                           /* 14px — was too small */
  line-height: 1.55;
  max-width: 44ch;
}
/* redesign #3 — borderless micro-specs: value (white, prominent) above a muted label,
   split by a hairline. No surrounding box, no yellow border. */
.njt-telemetry {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 1.25rem;              /* 20px — 8px spacing system */
  background: none;
  border: none;
}
/* each spec: Lucide icon (left, gold accent) + value over label — grid so the icon
   spans both rows and the two text lines stay a tight lockup. */
.njt-telemetry__item {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "icon value" "icon label";
  column-gap: 0.55rem;
  row-gap: 2px;
  align-items: center;
  padding-right: 1.5rem;
  position: relative;
}
.njt-telemetry__item + .njt-telemetry__item {
  border-left: 1px solid rgba(255,255,255,0.15);   /* hairline separator */
  padding-left: 1.5rem;
}
.njt-telemetry__icon {
  grid-area: icon;
  display: inline-flex;
  align-items: center;
  color: var(--gold);
}
.njt-telemetry__icon svg { width: 20px; height: 20px; }
.njt-telemetry__value { grid-area: value; align-self: end; }
.njt-telemetry__label { grid-area: label; align-self: start; }
.njt-telemetry__label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.55);   /* muted grey — was gold */
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.njt-telemetry__value {
  font-family: var(--font-heading);
  font-size: 15px;                 /* redesign: 15–16px */
  color: #fff;                     /* white, not gold */
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.njt-telemetry__value--gold { color: #fff; }   /* restrained yellow — values stay white */
/* redesign #5 — racing-cut CTA (not a parallelogram): yellow fill / black text,
   ~46px tall, a small clipped lower-right corner, arrow nudges on hover. */
.njt-cyber-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.6rem;
  height: 46px;
  padding: 0 1.375rem;
  margin-top: 1.375rem;
  background: var(--gold);
  color: #0a0006;
  border: 1px solid var(--gold);
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  transition: background var(--dur-base) ease, box-shadow var(--dur-base) ease, transform var(--dur-base) ease;
}
.njt-cyber-cta__content {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.njt-cyber-cta svg { width: 15px; height: 15px; transition: transform 0.3s ease; }
.njt-activity-card:hover .njt-cyber-cta {
  background: #ffe23d;
  box-shadow: 0 8px 22px rgba(255,215,0,0.28);
}
.njt-activity-card:hover .njt-cyber-cta svg { transform: translateX(4px); }
.njt-cyber-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.njt-activities-premium__footer { text-align: center; margin-top: 3rem; }

/* Grid span helpers (scoped to activities so they can't leak) */
.njt-activities-grid .span-8 { grid-column: span 8; }
.njt-activities-grid .span-7 { grid-column: span 7; }
.njt-activities-grid .span-6 { grid-column: span 6; }
.njt-activities-grid .span-5 { grid-column: span 5; }
.njt-activities-grid .span-4 { grid-column: span 4; }
.njt-activities-grid .span-12 { grid-column: span 12; }

/* Featured cards: larger title, roomier padding, bigger spec value (still white). */
.card-hero { padding: 2rem; }
.card-hero .njt-activity-card__title { font-size: clamp(1.9rem, 3vw, 2.1rem); }   /* 30–34px */
.card-hero .njt-activity-card__content { max-width: 60%; }
.card-hero .njt-telemetry__value { font-size: 17px; }

/* redesign #6 — "today's rate": understated metadata, not a second yellow CTA. */
.njt-rate--inline { margin-top: 1rem; }
.njt-rate__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--dur-base) ease;
}
.njt-rate__link:hover { color: #fff; }
.njt-rate__link svg { width: 13px; height: 13px; }

/* redesign — rate + CTA share ONE row (rate left, CTA right) so the lower controls
   breathe instead of stacking tight on the left. */
.njt-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.375rem;
  flex-wrap: wrap;
}
.njt-card-actions .njt-rate--inline { margin-top: 0; }
.njt-card-actions .njt-cyber-cta { margin-top: 0; }

@media (max-width: 1024px) {
  .njt-activities-grid .span-8, .njt-activities-grid .span-7, .njt-activities-grid .span-6,
  .njt-activities-grid .span-5, .njt-activities-grid .span-4, .njt-activities-grid .span-12 { grid-column: span 12; }
  .njt-activity-card { min-height: 400px; }
  .njt-activity-card__content { max-width: 75%; }
}
@media (max-width: 640px) {
  .njt-activity-card__content { max-width: 90%; }
}

/* ═══════════════════════════════════════
   WHY CHOOSE US — static 12-col bento (was a drag carousel; audit §1.4 CRITICAL)
   Keeps the spotlight-hover headlight sweep; drag machinery + ghost text removed.
═══════════════════════════════════════ */
.njt-bento-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--racing-plum);
  overflow: hidden;
}
.njt-bento-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,0,121,0.05) 0%, transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(255,215,0,0.05) 0%, transparent 50%);
  z-index: 0;
}
.njt-bento-section .njt-section__header {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  padding: 0 32px;
  position: relative;
  z-index: 10;
}
.njt-bento-grid {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.njt-bento-card {
  grid-column: span 3;
  min-height: 420px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(42,0,24,0.3) 50%, rgba(0,0,0,0.8) 100%);
  -webkit-backdrop-filter: blur(var(--blur-card));
  backdrop-filter: blur(var(--blur-card));
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) ease, box-shadow var(--dur-base) ease;
  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-opacity: 0;
}
.njt-bento-card--wide { grid-column: span 6; }
.njt-bento-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.05), transparent);
  opacity: 0;
  transition: opacity var(--dur-base) ease;
  pointer-events: none;
  z-index: 2;
}
/* Interactive headlight sweep border */
.njt-bento-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,215,0,0.4), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--spotlight-opacity);
  transition: opacity 0.3s ease;
  z-index: 5;
  pointer-events: none;
}
.njt-bento-grid:hover .njt-bento-card { --spotlight-opacity: 1; }
.njt-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,0,0.6);
  box-shadow: 0 25px 50px -12px rgba(255,215,0,0.1);
}
.njt-bento-card:hover::after { opacity: 1; }
.njt-bento-card__bg {
  position: absolute; inset: -5%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  transition: opacity 0.5s ease, transform 10s var(--ease-out);
  filter: contrast(1.05) saturate(0.85);
}
.njt-bento-card:hover .njt-bento-card__bg {
  opacity: 0.85;
  transform: scale(1.03);
  filter: contrast(1.1) saturate(1);
}
.card-coaches .njt-bento-card__bg { background-position: top center; }
.njt-bento-card__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(42,0,24,0.3) 40%, rgba(0,0,0,0.95) 100%);
  pointer-events: none;
}
.njt-bento-card__content { position: relative; z-index: 10; }
.njt-bento-card__icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 10px;
  -webkit-backdrop-filter: blur(var(--blur-chip));
  backdrop-filter: blur(var(--blur-chip));
  transition: all var(--dur-base) ease;
}
.njt-bento-card:hover .njt-bento-card__icon {
  background: rgba(255,215,0,0.15);
  border-color: var(--gold);
  transform: scale(1.05);
}
.njt-bento-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: var(--lh-heading);
}
.njt-bento-card--wide .njt-bento-card__title { font-size: 2rem; }
.njt-bento-card__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-white-60);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .njt-bento-card { grid-column: span 6; }
  .njt-bento-card--wide { grid-column: span 12; }
}
@media (max-width: 640px) {
  .njt-bento-card, .njt-bento-card--wide { grid-column: span 12; min-height: 360px; }
}

/* ═══════════════════════════════════════
   CINEMATIC COACH PROFILES
   Fixes: clean head/shoulders crop (background-position on the poster's photo
   side), scramble removed, canonical eyebrow, 3rd ghost card.
═══════════════════════════════════════ */
.njt-coaches-cinematic {
  position: relative;
  background: #000;
  padding: 6rem 0;
  overflow: hidden;
  color: #fff;
}
.njt-coaches-cinematic__bg {
  position: absolute; inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #000 0%, rgba(42,0,24,0.95) 50%, #000 100%);
}
.njt-coaches-cinematic__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  overflow: hidden;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 25vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  animation: panWatermark 30s linear infinite alternate;
  mix-blend-mode: overlay;
}
@keyframes panWatermark {
  0% { transform: translate(-40%, -50%); }
  100% { transform: translate(-60%, -50%); }
}
.njt-coaches-cinematic__container {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.njt-coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}
.njt-coach-card {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(42,0,24,0.3) 50%, rgba(0,0,0,0.8) 100%);
  -webkit-backdrop-filter: blur(var(--blur-card));
  backdrop-filter: blur(var(--blur-card));
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 2rem;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.njt-coach-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.05), transparent);
  opacity: 0;
  transition: opacity var(--dur-base) ease;
  pointer-events: none;
  z-index: 2;
}
.njt-coach-card:hover {
  border-color: rgba(255,215,0,0.6);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(255,215,0,0.1);
}
.njt-coach-card:hover::after { opacity: 1; }
/* Portrait cropped to the poster's clean photo side (right head/shoulders) */
.njt-coach-card__portrait {
  position: relative;
  width: 200px; height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 300% auto;
  border: 2px solid rgba(255,255,255,0.1);
  filter: grayscale(75%) contrast(1.05) brightness(0.9);
  transition: filter 0.5s ease, transform 0.5s var(--ease-out), border-color 0.5s ease;
  z-index: 3;
}
.njt-coach-card:hover .njt-coach-card__portrait {
  filter: grayscale(0%) contrast(1.05) brightness(1);
  transform: scale(1.05);
  border-color: rgba(255,255,255,0.3);
}
.njt-coach-card__content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.njt-coach-card__telemetry {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,215,0,0.7);
  border-radius: var(--radius-pill);
}
.njt-coach-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 0.25rem;
  color: #fff;
  line-height: var(--lh-display);
}
.njt-coach-card__fullname {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--racing-grey);
  margin-bottom: 1.5rem;
}
.njt-coach-card__stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-align: left;
  background: rgba(0,0,0,0.3);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}
.njt-coach-card__stat-row { display: flex; justify-content: space-between; align-items: center; }
.njt-coach-card__stat-label { color: var(--racing-grey); }
.njt-coach-card__stat-value { color: #fff; font-weight: 600; }
.njt-badge-hero {
  background: rgba(255,215,0,0.9);
  color: #000;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  padding: 0.25rem 1rem;
  display: inline-block;
  animation: racingPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  font-size: 0.75rem;
}
/* 3rd ghost card — balances the grid, routes to coaches.html */
.njt-coach-card--ghost {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  border-style: dashed;
  border-color: rgba(255,215,0,0.28);
  background: rgba(42,0,24,0.35);
  text-decoration: none;
  color: #fff;
}
.njt-coach-card--ghost:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.njt-coach-card--ghost__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,215,0,0.4);
}
.njt-coach-card--ghost__icon svg { width: 28px; height: 28px; }
.njt-coach-card--ghost__title { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: #fff; }
.njt-coach-card--ghost__sub { font-family: var(--font-body); font-size: 0.875rem; color: var(--text-white-60); }
.njt-coach-card--ghost__cue { color: var(--gold); font-weight: 700; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 0.4rem; }
.njt-coach-card--ghost__cue svg { width: 16px; height: 16px; }
.njt-coaches-cinematic__view-all {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}
.btn-parallelogram-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,215,0,0.05), rgba(255,215,0,0.1));
  border: 2px solid var(--gold);
  padding: 0.75rem 2rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all var(--dur-base) ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transform: skew(-15deg);
  position: relative;
  overflow: hidden;
}
.btn-parallelogram-outline__content {
  transform: skew(15deg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}
.btn-parallelogram-outline::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(255,215,0,0.1), rgba(255,215,0,0.05));
  opacity: 0;
  transition: opacity 500ms ease;
  z-index: 1;
}
.btn-parallelogram-outline:hover { background: rgba(255,215,0,0.15); color: #fff; box-shadow: 0 6px 20px rgba(255,215,0,0.3), inset 0 1px 0 rgba(255,215,0,0.2); }
.btn-parallelogram-outline:hover::after { opacity: 1; }
.btn-parallelogram-outline:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; color: #fff; }
@media (max-width: 1024px) {
  .njt-coaches-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
}
@media (max-width: 768px) {
  .njt-coaches-grid { grid-template-columns: 1fr; gap: 2.5rem; max-width: 420px; }
}

/* ═══════════════════════════════════════
   STUDENT STORIES — profile carousel
   Fixes: off-token accents → magenta, broken quote glyph removed, deliberate
   80px peek, ticker thinned (dedupe vs coffee).
═══════════════════════════════════════ */
.njt-campaign-testimonials {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--black-deep);
  overflow: hidden;
  color: #fff;
}
.njt-campaign-testimonials__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.njt-campaign-testimonials__glow {
  position: absolute;
  width: 50vw; height: 50vw;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.12;
  mix-blend-mode: screen;
  transition: background 1s ease, transform 1s ease;
}
.njt-campaign-testimonials__glow--primary { top: -10%; left: -10%; background: var(--magenta); }
.njt-campaign-testimonials__glow--secondary { bottom: -10%; right: -10%; background: var(--gold); opacity: 0.05; }
.njt-campaign-testimonials__container {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
/* V4 §G8: at rest the neighbouring card's quote was sliced mid-glyph and read as
   broken text rather than a peek. The old page-level fork sized the card as
   `min(1000px, 100% - 160px)` on top of a padded scrollport — the same length was
   subtracted twice, which collapsed the card to 70px at 390px wide. Sizing now
   returns to the component (components.css: `flex:0 0 100%; max-width:1000px`),
   and this file keeps only the reading fixes: snap padding, a dimmed inactive
   card, and an edge mask so the peek fades instead of being guillotined. */
.njt-ct-carousel {
  position: relative;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: none;
  padding-bottom: 2rem;
  padding-inline: 0;
  cursor: grab;
}
/* The fade rides on the NEIGHBOUR, not on the scrollport — masking the container
   would also soften the active card whenever it sits flush against an edge. */
.njt-profile-card:not(.is-active) {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26%, #000 74%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 26%, #000 74%, transparent 100%);
}
.njt-ct-carousel::-webkit-scrollbar { display: none; }
.njt-ct-carousel:active { cursor: grabbing; }
.njt-profile-card {
  /* sizing owned by components.css — do not re-fork it here (V4 §G8) */
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: rgba(15,15,15,0.6);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform: scale(0.95);
  opacity: 0.92;   /* A19 — was 0.35 (axe 1.92:1 + 2.69:1, TH+EN). Canonical: components.css. */
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.njt-profile-card.is-active { transform: scale(1); opacity: 1; }
.njt-profile-media { position: relative; min-height: 400px; border-right: 1px solid rgba(255,255,255,0.05); }
.njt-profile-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.5s ease;
}
.njt-profile-card.is-active .njt-profile-media img { filter: grayscale(0%) contrast(1.1); }
.njt-profile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 0%, rgba(15,15,15,0.9) 100%),
              linear-gradient(to top, rgba(15,15,15,0.8) 0%, transparent 40%);
}
.njt-profile-hud { position: absolute; bottom: 2rem; left: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.njt-hud-stat {
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(var(--blur-chip));
  backdrop-filter: blur(var(--blur-chip));
  border-left: 3px solid var(--magenta);
  padding: 0.5rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  flex-direction: column;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.njt-hud-stat:nth-child(2) { transition-delay: 0.1s; border-color: var(--gold); }
.njt-hud-stat:nth-child(3) { transition-delay: 0.2s; border-color: #fff; }
.njt-profile-card.is-active .njt-hud-stat { transform: translateX(0); opacity: 1; }
.njt-hud-stat__label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.njt-hud-stat__val { font-size: 1rem; font-weight: 700; color: #fff; }
.njt-profile-content { padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; position: relative; }
.njt-quote-text {
  position: relative;
  z-index: 1;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-weight: 500;
}
.njt-quote-highlight {
  background: linear-gradient(90deg, var(--gold), #FFB020);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.njt-profile-author { position: relative; z-index: 1; }
.njt-profile-author__name { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.njt-profile-author__title { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.njt-progress-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.njt-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.njt-progress-bar__fill { position: absolute; top: 0; left: 0; height: 100%; background: var(--magenta); width: 0%; transition: width 0.1s linear; }
.njt-progress-bar.is-active .njt-progress-bar__fill { width: 100%; transition: width 5s linear; }
.njt-campaign-ticker {
  margin-top: 5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem 0;
  background: rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.njt-campaign-ticker::before, .njt-campaign-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  width: 10vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.njt-campaign-ticker::before { left: 0; background: linear-gradient(to right, var(--black-deep), transparent); }
.njt-campaign-ticker::after { right: 0; background: linear-gradient(to left, var(--black-deep), transparent); }
.njt-campaign-ticker__track { display: flex; gap: 3.5rem; align-items: center; animation: tickerScroll 40s linear infinite; width: max-content; }
.njt-campaign-ticker__track:hover { animation-play-state: paused; }
.njt-ct-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 12px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  transition: box-shadow 0.4s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.njt-ct-partner:hover { box-shadow: 0 4px 20px rgba(255,215,0,0.15); }
.njt-ct-partner img { height: 56px; width: auto; max-width: 200px; object-fit: contain; opacity: 0.75; transition: all 0.4s ease; }
.njt-ct-partner:hover img { opacity: 1; filter: drop-shadow(0 0 8px rgba(0,0,0,0.1)); transform: scale(1.06); }

/* ── Partners & Sponsors — bolder "Trackside Brand Space" panel (homepage only) ── */
.njt-partners-entry {
  margin: clamp(4.5rem, 8vw, 7.5rem) auto 0;   /* more air above the eyebrow */
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 215, 0, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(135% 120% at 50% -10%, rgba(212, 0, 121, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(0, 0, 0, 0.34) 100%);
  text-align: center;
}
.njt-partners-entry__head { margin: 0 auto; max-width: 52rem; }

/* Logo rail becomes a defined inset strip inside the panel */
.njt-partners-entry .njt-campaign-ticker {
  width: 100%;
  max-width: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(8, 4, 10, 0.55);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
}
.njt-partners-entry .njt-campaign-ticker::before {
  width: 7%; background: linear-gradient(to right, rgba(8, 4, 10, 0.95), transparent);
}
.njt-partners-entry .njt-campaign-ticker::after {
  width: 7%; background: linear-gradient(to left, rgba(8, 4, 10, 0.95), transparent);
}
.njt-partners-entry .njt-ct-partner img { opacity: 0.9; }

/* CTA now lives under the logo rail, bolder gold treatment */
.njt-partners-entry__cta { margin-top: clamp(1.75rem, 3.5vw, 2.75rem); }
.njt-partners-entry__cta .btn-cta--outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.njt-partners-entry__cta .btn-cta--outline:hover,
.njt-partners-entry__cta .btn-cta--outline:focus-visible {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
@media (max-width: 1024px) {
  .njt-profile-card { grid-template-columns: 1fr; }
  .njt-profile-media { min-height: 250px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .njt-profile-overlay { background: linear-gradient(to top, rgba(15,15,15,0.95) 0%, transparent 60%); }
  .njt-profile-content { padding: 2rem; }
  .njt-quote-text { font-size: 1.125rem; }
}

/* ═══════════════════════════════════════
   COFFEE TRACK — VIP lounge/café. Plum radial wash restores the mid-page plum
   identity; overline → canonical; distributor pills kept (ticker de-duped).
═══════════════════════════════════════ */
.njt-coffee-premium {
  position: relative;
  padding: var(--section-pad) 0;
  background: radial-gradient(ellipse at 28% 45%, rgba(212,0,121,0.14) 0%, transparent 58%), var(--racing-plum);
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.njt-coffee-premium__bg { position: absolute; inset: 0; z-index: 0; }
.njt-coffee-premium__particles {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 2px, transparent 2px);
  background-size: 60px 60px;
  opacity: 0.25;
  animation: slowDrift 60s linear infinite;
}
.njt-coffee-premium__watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(8rem, 20vw, 24rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.njt-coffee-premium__container {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.njt-coffee-premium__visual { position: relative; }
.visual-wrapper { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.visual-wrapper img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transform: scale(1.05); transition: transform 10s ease-out; }
.njt-coffee-premium:hover .visual-wrapper img { transform: scale(1); }
.image-glow { position: absolute; inset: 0; box-shadow: inset 0 0 100px rgba(0,0,0,0.8); pointer-events: none; }
.floating-badge {
  position: absolute;
  bottom: -2rem; right: -2rem;
  background: rgba(20,20,20,0.6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: floatUpDown 6s ease-in-out infinite;
  z-index: 5;
}
.badge-icon { color: var(--gold); display: inline-flex; }
.badge-text strong { display: block; color: #fff; font-size: 1.1rem; font-weight: 700; }
.badge-text small { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.njt-coffee-premium__content.glass-panel {
  background: rgba(15,15,15,0.4);
  padding: 4rem;
  text-align: left;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
}
.premium-title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: var(--lh-display); margin-bottom: 1.5rem; color: #fff; }
.premium-desc { font-size: 1.0625rem; line-height: 1.7; color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; }
.premium-brands { margin-bottom: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.brands-label { font-size: 0.75rem; text-transform: uppercase; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; margin-bottom: 1rem; }
/* V4 §G8: the flex row broke 3+1 and read as an accident. Four equal cells. */
.brands-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 64px;
}
.brand-item img { height: 32px; width: auto; max-width: 100%; object-fit: contain; opacity: 0.9; transition: opacity 0.3s ease; }
.brand-item:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.brand-item:hover img { opacity: 1; }
/* Retokened glow (was red) */
.njt-coffee-premium .btn-cta--glow { position: relative; overflow: hidden; }
.njt-coffee-premium .btn-cta--glow::after {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(212,0,121,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.njt-coffee-premium .btn-cta--glow:hover::after { opacity: 1; }
@keyframes slowDrift { from { background-position: 0 0; } to { background-position: -120px -120px; } }
@keyframes floatUpDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@media (max-width: 1024px) { .njt-coffee-premium__container { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 768px) { .floating-badge { right: 2rem; bottom: -1.5rem; } }
@media (max-width: 640px) {
  .njt-coffee-premium__content.glass-panel { padding: 2rem 1.5rem; }
  .brand-item { padding: 0.5rem 1rem; height: 44px; }
  .brand-item img { height: 22px; }
  .badge-text strong { font-size: 1rem; }
}

/* ═══════════════════════════════════════
   STAY & TRAIN — light band on the canonical --paper/--ink light-zone tokens
═══════════════════════════════════════ */
.njt-stay-train { position: relative; background: var(--paper); padding: 6rem 0; overflow: hidden; }
.njt-stay-train::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,215,0,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(212,0,121,0.03) 0%, transparent 50%);
  z-index: 0;
}
.njt-stay-train__inner {
  position: relative;
  z-index: 5;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.njt-stay-train__content { display: flex; flex-direction: column; }
.njt-stay-train__overline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  color: var(--magenta);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: var(--text-eyebrow);
  margin-bottom: 1rem;
}
.njt-stay-train__overline::before { content: ''; width: 48px; height: 2px; background: var(--magenta); }
.njt-stay-train__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  font-style: italic;
  line-height: var(--lh-display);
  color: var(--ink);
  margin-bottom: 1rem;
  padding: 0.1em 0;
}
.njt-stay-train__title span { color: var(--magenta); -webkit-text-fill-color: var(--magenta); }
.njt-stay-train__desc { font-size: 1.0625rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.5rem; max-width: 520px; }
.njt-stay-train__features { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.njt-stay-train__feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
  background: rgba(42,0,24,0.04);
  border: 1px solid rgba(42,0,24,0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
}
.njt-stay-train__feature svg { width: 16px; height: 16px; color: var(--magenta); flex-shrink: 0; }
.njt-stay-train__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
/* A18: this block sets a WHITE label on a magenta fill, so it must retire both
   lightening layers with it — the shared gold→magenta wash + gold sheen fired
   underneath and measured 2.80:1 on the hovered composite. Contract: layout.css. */
.njt-stay-train .btn-cta {
  background: var(--magenta);
  border-color: var(--magenta);
  --btn-hover-ink: #fff;
  --btn-hover-wash: 0;
  --btn-hover-sheen: 0;
  color: #fff;
}
.njt-stay-train .btn-cta:hover { background: var(--primary-dark); }
.njt-stay-train .btn-cta--outline { background: transparent; color: var(--racing-plum); border: 2px solid var(--racing-plum); }
.njt-stay-train .btn-cta--outline:hover { background: var(--racing-plum); color: #fff; }
.njt-stay-train__visual { position: relative; }
.njt-stay-train__visual img, .njt-stay-train__visual video {
  width: 100%;
  height: auto;              /* let aspect-ratio drive height — HTML height attr was forcing 900px (portrait) */
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.njt-stay-train__badge {
  position: absolute;
  bottom: -1rem; left: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--racing-plum);
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 8px 24px rgba(42,0,24,0.3);
}
.njt-stay-train__badge svg { width: 20px; height: 20px; color: var(--gold); }
@media (max-width: 1024px) {
  .njt-stay-train__inner { grid-template-columns: 1fr; gap: 3rem; }
  .njt-stay-train__visual { order: -1; }
}
@media (max-width: 640px) {
  .njt-stay-train { padding: 4rem 0; }
  .njt-stay-train__actions { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════
   LOCATION & CONTACT — aerial poster-fallback behind the lazy map iframe
═══════════════════════════════════════ */
.njt-contact-premium {
  position: relative;
  background: var(--racing-plum);
  padding: var(--section-pad) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.njt-contact-premium::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #000 0%, rgba(42,0,24,0.95) 50%, #000 100%);
  z-index: 0;
}
.njt-contact-premium::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 600px; height: 600px;
  background: rgba(255,215,0,0.04);
  filter: blur(120px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.njt-contact-orb-2 {
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(212,0,121,0.05);
  filter: blur(150px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.njt-contact-premium__inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  /* V4 §G8: centring left a ~260px hole under the map. Stretch both columns. */
  align-items: stretch;
}
.njt-contact-info__header { margin-bottom: 3rem; text-align: left; }
.njt-contact-info__title span { color: var(--gold); text-shadow: 0 0 30px rgba(255,215,0,0.2); display: block; margin-top: -0.1em; }
.njt-contact-info__lead { color: var(--racing-grey); max-width: 500px; line-height: 1.6; font-family: var(--font-body); }
.njt-contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.njt-contact-card {
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(42,0,24,0.3) 50%, rgba(0,0,0,0.8) 100%);
  -webkit-backdrop-filter: blur(var(--blur-card));
  backdrop-filter: blur(var(--blur-card));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.njt-contact-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.05), transparent);
  opacity: 0;
  transition: opacity var(--dur-base) ease;
  pointer-events: none;
}
.njt-contact-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--dur-base) ease;
  z-index: 2;
}
.njt-contact-card:hover {
  border-color: rgba(255,215,0,0.6);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(255,215,0,0.1);
}
.njt-contact-card:hover::after { opacity: 1; }
.njt-contact-card:hover::before { transform: scaleY(1); }
.njt-contact-card__icon {
  width: 52px; height: 52px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--dur-base) ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
}
.njt-contact-card:hover .njt-contact-card__icon { background: rgba(255,215,0,0.15); border-color: var(--gold); transform: scale(1.05); }
.njt-contact-card__icon svg { width: 22px; height: 22px; stroke-width: 2; }
.njt-contact-card__content { display: flex; flex-direction: column; gap: 0.25rem; text-align: left; flex-grow: 1; position: relative; z-index: 2; }
.njt-contact-card__content strong { font-family: var(--font-heading); color: var(--racing-grey); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.njt-contact-card__content span { font-family: var(--font-body); color: #fff; font-size: 1rem; font-weight: 500; line-height: 1.5; transition: color var(--dur-base) ease; }
.njt-contact-card:hover .njt-contact-card__content span.highlight { color: var(--gold); text-shadow: 0 0 10px rgba(255,215,0,0.3); }
/* Map wrapper — always-painted aerial base so it can never render a black void */
.njt-map-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  /* V4 §G8: fill the column instead of a fixed 500px block that left a void. */
  height: 100%;
  min-height: 500px;
  background: #0A0A0A url('../assets/video-stills/aerial-track/B1-aerial-full-track-sun.jpg') center/cover no-repeat;
  transform: translateZ(0);
}
.njt-map-wrapper::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
  pointer-events: none;
  z-index: 2;
}
.njt-map-iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: var(--map-filter);
  transition: filter 500ms ease;
  position: relative;
  z-index: 1;
  /* Poster lives on the un-filtered .njt-map-wrapper below; keep the iframe
     transparent so the invert filter never lands on the venue photo. */
  background: transparent;
}
.btn-directions {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) skew(-15deg);
  background: var(--btn-primary-bg);
  color: #000;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: all var(--dur-base);
  z-index: 10;
  white-space: nowrap;
  border: 2px solid rgba(255,215,0,0.8);
}
.btn-directions__content { transform: skew(15deg); display: flex; align-items: center; gap: 0.75rem; position: relative; z-index: 2; }
.btn-directions::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity var(--dur-base);
  z-index: 1;
}
.btn-directions:hover { transform: translateX(-50%) skew(-15deg) scale(1.02); color: #fff; box-shadow: var(--shadow-btn-hover); border-color: var(--gold); }
.btn-directions:hover::before { opacity: 1; }
.btn-directions:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-directions:active { transform: translateX(-50%) skew(-15deg) scale(0.98) translateY(1px); box-shadow: var(--shadow-btn); }
@media (max-width: 1024px) {
  .njt-contact-premium__inner { grid-template-columns: 1fr; gap: 3rem; }
  .njt-map-wrapper { height: 400px; }
}

/* ═══════════════════════════════════════
   FINAL CTA — checks → gold, balanced headline, 15–20% plum overlay
═══════════════════════════════════════ */
.njt-cta-transition { display: flex; width: 100%; height: 4px; background: #0F0F0F; }
.njt-cta-transition__line { flex: 1; height: 100%; background: linear-gradient(90deg, transparent, var(--magenta), transparent); opacity: 0.5; animation: raceLine 3s infinite linear; }
.njt-cta-transition__line:nth-child(2) { animation-delay: -1s; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.njt-cta-transition__line:nth-child(3) { animation-delay: -2s; background: linear-gradient(90deg, transparent, #fff, transparent); }
@keyframes raceLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
/* Campaign CTA de-forked → css/components.css §36 (GOAL-V3 R1 integrator, punch 2).
   Kept: @keyframes pulseDot — still used by .njt-hero__status-chip__dot on this page. */
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(46,125,70,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(46,125,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,125,70,0); }
}
