/* ================================================================
   /compete — page-specific styles
   Loaded after styles-extras.css.
   ============================================================== */

/* ── Page chrome: coordinate strip + section rail ─────────────── */
.compete-page {
  position: relative;
  display: block;
  min-height: 100vh;
}

/* Sticky section rail (fixed on desktop — body overflow-x:hidden breaks position:sticky) */
.cp-rail {
  position: fixed;
  top: 56px;
  left: 0;
  width: 64px;
  height: calc(100vh - 56px);
  border-right: 1px solid var(--rule-faint);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-align: center;
  z-index: 30;
  background: rgba(5, 4, 3, 0.6);
  backdrop-filter: blur(6px);
  overflow-y: auto;
}
.cp-rail-eyebrow {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--amber);
  letter-spacing: 0.5em;
  font-size: 9px;
  margin: 0 auto 16px;
  white-space: nowrap;
}
.cp-rail-link {
  display: block;
  color: var(--ink-mute);
  text-decoration: none;
  padding: 10px 6px;
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  cursor: pointer;
  position: relative;
}
.cp-rail-link:hover { color: var(--ink); border-left-color: var(--rule-strong); }
.cp-rail-link.active {
  color: var(--orange);
  border-left-color: var(--orange);
  background: rgba(255, 106, 26, 0.05);
}
.cp-rail-link .rl-num {
  display: block;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.cp-rail-link .rl-tag {
  display: block;
  font-size: 8px;
  margin-top: 2px;
  opacity: 0.7;
}

.cp-body {
  min-width: 0;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--page-max);
}
.cp-rail { display: none; }

/* Coord-strip header above each section */
.cp-coord {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  text-transform: uppercase;
  padding: 28px 40px 12px;
  border-bottom: 1px dashed var(--rule-faint);
}
.cp-coord .cc-frame { color: var(--amber); }
.cp-coord .cc-id { color: var(--orange); }
.cp-coord .cc-bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--amber-dim), transparent);
  position: relative;
  overflow: hidden;
}
.cp-coord .cc-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  animation: cc-bar-draw 1.4s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes cc-bar-draw { to { transform: scaleX(1); } }
.cp-coord .cc-status { color: var(--green); }

.cp-section {
  padding: 56px var(--page-side) 80px;
  position: relative;
  scroll-margin-top: 80px;
}
.cp-section + .cp-section .cp-coord { padding-top: 0; }

/* Section title pattern (left-aligned, no centred h1) */
.cp-sec-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.01em;
  line-height: 0.92;
  margin: 0 0 12px;
  color: var(--ink);
  text-transform: uppercase;
}
.cp-sec-title .accent { color: var(--orange); }
.cp-sec-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ── Section 01: Hook with abstract CAD chassis ───────────────── */
.cp-hook {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--rule-faint);
  /* Full-bleed: escape .cp-body's max-width so the photo backdrop reaches the viewport edges */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.cp-hook > .cp-coord {
  position: relative;
  z-index: 1;
  padding: 28px var(--page-side) 12px;
}
/* Inside the full-bleed hero, the inner content column re-aligns to the site's
   normal 1440px reading column. Because cp-hook itself is 100vw with no horizontal
   padding, percentage-based page-side here resolves against the real viewport width. */
.cp-hook > .cp-hook-content {
  max-width: none;
  margin: 0;
  width: 100%;
}
.cp-hook-cad {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}
.cp-hook-content { position: relative; z-index: 1; max-width: 1100px; }
.cp-hook h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7.5vw, 112px);
  letter-spacing: -0.005em;
  line-height: 0.98;
  margin: 0 0 12px;
  color: var(--ink);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cp-hook h1 .line { display: block; white-space: nowrap; }
.cp-hook h1 .accent { color: var(--orange); display: block; white-space: nowrap; }
.cp-hook .cp-hook-sub {
  margin-top: 0;
  max-width: 92ch;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-dim);
  text-wrap: pretty;
  padding-left: 14px;
  border-left: 2px solid var(--orange);
}
.cp-hook .cp-hook-sub strong {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── Section 02: Countdown + register-interest ────────────────── */
.cp-countdown-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cp-countdown-card {
  border: 1px solid var(--rule-strong);
  background: rgba(5, 4, 3, 0.7);
  position: relative;
}
.cp-countdown-card::before, .cp-countdown-card::after {
  content: "";
  position: absolute;
  width: 28px; height: 28px;
  border: 2px solid var(--orange);
}
.cp-countdown-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.cp-countdown-card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.cp-cc-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
}
.cp-cc-body { padding: 24px 20px; font-family: var(--mono); }
.cp-cc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dotted var(--rule-faint);
  font-size: 12px;
  letter-spacing: 0.18em;
}
.cp-cc-row .k { color: var(--ink-mute); }
.cp-cc-row .v { color: var(--ink); font-weight: 600; }
.cp-cc-row .v.tbd {
  color: var(--amber);
  background: rgba(245, 197, 24, 0.08);
  padding: 3px 10px;
  font-style: italic;
  border: 1px dashed var(--amber-dim);
}
.cp-cc-clock {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--rule-strong);
  background: rgba(13, 9, 7, 0.6);
  text-align: center;
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-shadow: 0 0 12px rgba(255, 106, 26, 0.3);
}
.cp-cc-clock .dim { color: var(--ink-mute); }
.cp-cc-clock .lbl {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--amber);
  margin-top: 8px;
}
.cp-cc-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cp-cc-foot .arrow { color: var(--orange); }

/* ── Section 03: Deployment Brief ─────────────────────────────── */
.cp-brief {
  border: 1px solid var(--rule-strong);
  background: rgba(13, 9, 7, 0.55);
  position: relative;
}
.cp-brief-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
}
.cp-brief-bar .live {
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cp-brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  font-family: var(--mono);
}
.cp-brief-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 14px 24px;
  border-bottom: 1px dotted var(--rule-faint);
  border-right: 1px dotted var(--rule-faint);
  cursor: default;
  position: relative;
  transition: background 0.15s;
}
.cp-brief-row:nth-child(2n) { border-right: none; }
.cp-brief-row:hover { background: rgba(255, 106, 26, 0.04); }
.cp-brief-row:hover .cp-brief-foot { color: var(--ink-dim); }
.cp-brief-row .k {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.cp-brief-row .v {
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.cp-brief-row .v .accent { color: var(--orange); }
.cp-brief-row .v .unit { color: var(--ink-mute); font-weight: 400; margin-left: 4px; font-size: 12px; }
.cp-brief-foot {
  grid-column: 1 / -1;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: transparent;
  margin-top: 6px;
  text-transform: uppercase;
  transition: color 0.15s;
  font-style: italic;
}


/* ── Section §03: FIGHT NIGHT FORMAT — arena pane chrome ─────────────
   Used by CpFight: terminal-styled pane wrapping the arena SVG, plus
   shared bar/dot/strict utilities reused by the bracket pane next to it
   (.cp-fight-tournament-bar). All cp-fight-* layout rules live further
   down at the end of this file. */

.cp-arena-pane {
  border: 1px solid var(--rule-strong);
  background: #06050a;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cp-arena-pane::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,0.018) 2px 3px);
  pointer-events: none;
  z-index: 1;
}

/* shared bar styling — used by .cp-arena-bar + .cp-fight-tournament-bar */
.cp-arena-bar,
.cp-fight-tournament-bar {
  position: relative;
  z-index: 2;
  padding: 12px 18px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
}
.cp-arena-bar .dots,
.cp-fight-tournament-bar .dots { display: inline-flex; gap: 6px; flex-shrink: 0; }
.cp-arena-bar .dot,
.cp-fight-tournament-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rule-strong); }
.cp-fight-tournament-bar .dot.live { background: var(--green); box-shadow: 0 0 8px var(--green); }
.cp-fight-tournament-bar .strict {
  color: var(--ember);
  border: 1px solid var(--ember);
  padding: 2px 8px;
  font-size: 9px;
  letter-spacing: 0.3em;
  white-space: nowrap;
}

/* arena bar's BLUEPRINT live indicator */
.cp-arena-bar .live {
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cp-arena-bar .live .dot {
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: cp-arena-pulse 1.4s ease-in-out infinite;
}
@keyframes cp-arena-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.cp-arena-frame {
  position: relative;
  z-index: 2;
  padding: 22px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 106, 26, 0.05) 0%, transparent 70%),
    #050409;
  flex: 1;
  display: flex;
  align-items: stretch;
}

.cp-arena-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--orange);
  pointer-events: none;
  z-index: 3;
}
.cp-arena-corner.tl { top: 6px;    left: 6px;  border-right: none; border-bottom: none; }
.cp-arena-corner.tr { top: 6px;    right: 6px; border-left: none;  border-bottom: none; }
.cp-arena-corner.bl { bottom: 6px; left: 6px;  border-right: none; border-top: none; }
.cp-arena-corner.br { bottom: 6px; right: 6px; border-left: none;  border-top: none; }

.cp-arena-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

/* arena foot — 4 stat callouts under the SVG (3m × 3m, pit, etc.) */
.cp-arena-foot {
  position: relative;
  z-index: 2;
  padding: 12px 18px;
  border-top: 1px solid var(--rule);
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange);
}

/* arena animations: pit dashed border + radar scan + bot eyes */
.cp-arena-pit-border {
  animation: cp-arena-pit 2.4s ease-in-out infinite;
}
@keyframes cp-arena-pit {
  0%, 100% { stroke-opacity: 1;   }
  50%      { stroke-opacity: 0.4; }
}

.cp-arena-scan {
  animation: cp-arena-scan 6s ease-in-out infinite;
  transform-origin: 0 0;
  transform-box: fill-box;
}
@keyframes cp-arena-scan {
  0%   { transform: translateX(0);     opacity: 0;    }
  10%  {                                opacity: 0.65; }
  85%  {                                opacity: 0.65; }
  100% { transform: translateX(500px); opacity: 0;    }
}

.cp-arena-bot-eye {
  animation: cp-arena-bot 1.5s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.cp-arena-bot-eye.delayed { animation-delay: 0.75s; }
@keyframes cp-arena-bot {
  0%, 100% { fill-opacity: 1;   transform: scale(1);    }
  50%      { fill-opacity: 0.35; transform: scale(0.78); }
}

@media (prefers-reduced-motion: reduce) {
  .cp-arena-pit-border,
  .cp-arena-scan,
  .cp-arena-bot-eye,
  .cp-arena-bar .live .dot { animation: none; }
  .cp-arena-scan           { opacity: 0; }
}

@media (max-width: 600px) {
  .cp-arena-bar,
  .cp-fight-tournament-bar { padding: 10px 14px; font-size: 9px; gap: 8px; letter-spacing: 0.22em; }
  .cp-fight-tournament-bar .strict { letter-spacing: 0.22em; }
  .cp-arena-frame          { padding: 16px; }
  .cp-arena-corner         { width: 10px; height: 10px; }
  .cp-arena-corner.tl, .cp-arena-corner.tr { top: 5px; }
  .cp-arena-corner.bl, .cp-arena-corner.br { bottom: 5px; }
  .cp-arena-corner.tl, .cp-arena-corner.bl { left: 5px; }
  .cp-arena-corner.tr, .cp-arena-corner.br { right: 5px; }
  .cp-arena-foot           { padding: 10px 14px; gap: 8px 16px; font-size: 9px; letter-spacing: 0.2em; }
}

/* ── Section 09: Judging ─────────────────────────────────────── */
.cp-judge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cp-judge-card {
  border: 1px solid var(--rule-strong);
  background: rgba(13,9,7,0.5);
  font-family: var(--mono);
}
.cp-judge-card-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
}
.cp-judge-card-bar .layer {
  color: var(--orange);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.05em;
}
.cp-judge-card-body { padding: 20px; }
.cp-judge-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dotted var(--rule-faint);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.cp-judge-row .k { color: var(--ink); text-transform: uppercase; }
.cp-judge-row .v { color: var(--amber); font-weight: 700; }
.cp-judge-row .sub {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Match scoring as horizontal proportional bars */
.cp-judge-bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 50px;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 11px;
}
.cp-judge-bar-row .label { color: var(--ink); letter-spacing: 0.18em; text-transform: uppercase; }
.cp-judge-bar-row .pts { text-align: right; color: var(--amber); font-weight: 700; }
.cp-judge-bar-track {
  height: 16px;
  background: rgba(13,9,7,0.6);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.cp-judge-bar-fill {
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform-origin: left;
  transform: scaleX(0);
  animation: cp-judge-fill 1s cubic-bezier(.3,.8,.2,1) forwards;
}
.cp-judge-bar-fill.amber { background: var(--amber); }
@keyframes cp-judge-fill { to { transform: scaleX(var(--w, 1)); } }

.cp-judge-foot {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--rule);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.cp-judge-foot div { padding: 3px 0 3px 16px; position: relative; }
.cp-judge-foot div::before { content: "▸"; position: absolute; left: 0; color: var(--orange); }

/* ── Section 10: Application Preview ─────────────────────────── */
.cp-app {
  border: 1px solid var(--rule-strong);
  background: #08070b;
  font-family: var(--mono);
  position: relative;
}
.cp-app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
}
.cp-app-bar .pre {
  color: var(--amber);
  border: 1px solid var(--amber-dim);
  background: rgba(245,197,24,0.06);
  padding: 3px 8px;
  font-size: 10px;
}
.cp-app-body { padding: 24px 28px; }
.cp-app-q {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--rule-faint);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.04em;
  align-items: baseline;
}
.cp-app-q .num { color: var(--amber); font-size: 11px; letter-spacing: 0.2em; }
.cp-app-q .field {
  display: block;
  margin-top: 8px;
  padding: 9px 12px;
  border: 1px dashed var(--rule);
  background: rgba(13,9,7,0.5);
  color: var(--ink-mute);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.cp-app-q .opts {
  display: inline-flex;
  gap: 14px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
}
.cp-app-q .opts span {
  border: 1px dashed var(--rule);
  padding: 5px 10px;
  background: rgba(13,9,7,0.5);
}
.cp-app-q .opts span::before { content: "◇ "; color: var(--orange); }
.cp-app-submit {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--rule-strong);
  background: rgba(13,9,7,0.6);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
  cursor: not-allowed;
}
.cp-app-submit .btn-x { color: var(--orange); font-weight: 700; }
.cp-app-submit .status { color: var(--amber); display: inline-flex; align-items: center; gap: 6px; }

/* ── Section 11: FAQ terminal session ────────────────────────── */
.cp-faq {
  border: 1px solid var(--rule-strong);
  background: #06050a;
  font-family: var(--mono);
  position: relative;
}
.cp-faq-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
}
.cp-faq-body { padding: 8px 0; }
.cp-faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.cp-faq-item:last-child { border-bottom: none; }
.cp-faq-q {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 14px 22px;
  list-style: none;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.04em;
  transition: background 0.12s;
}
.cp-faq-q:hover { background: rgba(255,106,26,0.04); }
.cp-faq-q::-webkit-details-marker { display: none; }
.cp-faq-q::before {
  content: ">";
  color: var(--orange);
  font-weight: 700;
}
.cp-faq-q::after {
  content: "+";
  margin-left: auto;
  color: var(--orange);
  font-size: 16px;
}
.cp-faq-item[open] .cp-faq-q { color: var(--orange); }
.cp-faq-item[open] .cp-faq-q::after { content: "−"; }
.cp-faq-a {
  padding: 0 22px 18px 36px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  white-space: pre-wrap;
}

/* ── Section 12: Anchor CTA ──────────────────────────────────── */
.cp-cta {
  position: relative;
  border: 1px solid var(--rule-strong);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,106,26,0.1), transparent 50%),
    rgba(5,4,3,0.85);
  padding: 0;
  overflow: hidden;
}
.cp-cta::before, .cp-cta::after {
  content: "";
  position: absolute;
  width: 48px; height: 48px;
  border: 2px solid var(--orange);
}
.cp-cta::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.cp-cta::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.cp-cta-inner { padding: 40px 40px 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.cp-cta-left h3 {
  font-family: var(--display);
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 0.92;
  margin: 0 0 14px;
  color: var(--ink);
  text-transform: uppercase;
}
.cp-cta-left h3 .accent { color: var(--orange); }
.cp-cta-left p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.cp-cta-left .info {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}

/* ── Responsive (compete) ─────────────────────────────────────── */
@media (max-width: 960px) {
  .compete-page { display: block; }
  .cp-body { margin-left: 0; }
  .cp-rail {
    position: fixed;
    bottom: 0; left: 0; right: 0; top: auto;
    width: auto;
    height: auto;
    border-right: none;
    border-top: 1px solid var(--rule-faint);
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 12px;
    gap: 0;
    z-index: 40;
    background: rgba(5,4,3,0.92);
  }
  .cp-rail-eyebrow { display: none; }
  .cp-rail-link {
    flex-shrink: 0;
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 8px 12px;
  }
  .cp-rail-link.active { border-left: none; border-bottom-color: var(--orange); }

  .cp-section { padding: 40px 20px 60px; }
  .cp-coord { padding: 20px 20px 10px; gap: 10px; font-size: 9px; }
  .cp-hook { padding: 56px 20px 60px; }
  .cp-countdown-wrap { grid-template-columns: 1fr; }
  .cp-judge { grid-template-columns: 1fr; }
  .cp-cta-inner { grid-template-columns: 1fr; padding: 28px 22px; }
  .cp-cta-left h3 { font-size: 32px; }
}
@media (max-width: 600px) {
  .cp-hook h1 { font-size: clamp(48px, 16vw, 96px); }
  .cp-judge-bar-row { grid-template-columns: 90px 1fr 40px; }
}


/* ===== /compete v2 — added helpers ============================ */

/* Section header — plain functional, no marketing subhead */
.cp-sec-h {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1;
}
.cp-sec-h .accent { color: var(--orange); }
.cp-sec-lede {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 720px;
  margin: 0 0 28px;
}

/* Hero stack — h1, paragraph, then inline register-interest below */
.cp-hook-stack {
  position: relative;
  z-index: 2;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-side);
}
.cp-hook-cta {
  margin-top: 24px;
  max-width: 720px;
}
.cp-hook-cta .hero-notify {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
@media (max-width: 900px) {
  .cp-hook-stack { padding: 0 20px; }
  .cp-hook-cta { margin-top: 20px; max-width: 100%; }
}


/* === Spec card grid — used by CpFight =================================
   Six big-number cards. Each has a corner-bracketed frame, a mono header
   strip with optional .flag tag (e.g. ★ EXCEPTION), the hero value in
   large display font with a soft glow, and a faint sub-line. Cards
   reveal with a stagger when the grid scrolls into view. */
.cp-spec-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.cp-spec-card {
  position: relative;
  isolation: isolate;
  padding: 22px 24px 20px;
  border: 1px solid rgba(255, 106, 26, 0.22);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 106, 26, 0.10), transparent 55%),
    rgba(13, 9, 7, 0.62);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-height: 200px;
  overflow: hidden;
  opacity: 0;
}
.cp-spec-card-grid.is-in .cp-spec-card {
  animation: cp-spec-card-in 0.55s cubic-bezier(.2, .8, .2, 1) both;
}
.cp-spec-card-grid.is-in .cp-spec-card:nth-child(1) { animation-delay: 0ms; }
.cp-spec-card-grid.is-in .cp-spec-card:nth-child(2) { animation-delay: 80ms; }
.cp-spec-card-grid.is-in .cp-spec-card:nth-child(3) { animation-delay: 160ms; }
.cp-spec-card-grid.is-in .cp-spec-card:nth-child(4) { animation-delay: 240ms; }
.cp-spec-card-grid.is-in .cp-spec-card:nth-child(5) { animation-delay: 320ms; }
.cp-spec-card-grid.is-in .cp-spec-card:nth-child(6) { animation-delay: 400ms; }
@keyframes cp-spec-card-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cp-spec-card-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--orange);
  pointer-events: none;
  z-index: 2;
}
.cp-spec-card-corner.tl { top: -1px; left: -1px;  border-right: none; border-bottom: none; }
.cp-spec-card-corner.br { bottom: -1px; right: -1px; border-left: none;  border-top: none;    }

.cp-spec-card-head {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.cp-spec-card-head .num  { color: var(--orange); }
.cp-spec-card-head .sep  { color: var(--ink-faint); }
.cp-spec-card-head .lbl  { color: var(--amber); }
.cp-spec-card-head .flag {
  margin-left: auto;
  padding: 2px 8px;
  border: 1px solid rgba(255, 106, 26, 0.4);
  background: rgba(255, 106, 26, 0.08);
  font-size: 8px;
  letter-spacing: 0.28em;
  color: var(--orange);
  white-space: nowrap;
}

.cp-spec-card-value-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  align-self: center;
  position: relative;
  z-index: 1;
  margin-top: -6px;
  margin-bottom: -2px;
}
.cp-spec-card-value {
  font-family: var(--display);
  font-size: clamp(56px, 6.4vw, 92px);
  letter-spacing: 0.005em;
  line-height: 0.92;
  color: var(--orange);
  text-shadow:
    0 0 18px rgba(255, 106, 26, 0.35),
    0 1px 0 rgba(0, 0, 0, 0.6);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.cp-spec-card-unit {
  font-family: var(--mono);
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.18em;
  color: var(--amber);
  text-transform: lowercase;
}

.cp-spec-card-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

@media (max-width: 1099px) {
  .cp-spec-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .cp-spec-card-grid { grid-template-columns: 1fr; gap: 12px; }
  .cp-spec-card     { min-height: 0; padding: 18px 20px 16px; }
  .cp-spec-card-value { font-size: clamp(56px, 14vw, 84px); }
}
@media (prefers-reduced-motion: reduce) {
  .cp-spec-card                       { opacity: 1; }
  .cp-spec-card-grid.is-in .cp-spec-card { animation: none; }
}

/* === Section 03: Expectations (5 contestant requirements) ================
   Five non-negotiables, each with a custom mechanical/techy SVG icon.
   Cards are vertical on desktop (icon top, text below) and switch to a
   horizontal layout (icon left, text right) on mobile via grid-template-
   areas, so the same JSX renders cleanly at every width.  The section
   ends with an in-line CTA that scroll-jumps to the bottom register form. */
.cp-expect-section { padding-bottom: 56px; }

.cp-expect-head {
  display: grid;
  grid-template-columns: minmax(auto, 0.85fr) 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 28px;
}
.cp-expect-head-l {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cp-expect-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--amber);
  text-transform: uppercase;
}
.cp-expect-lede {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  text-wrap: pretty;
  text-align: right;
  padding-right: 14px;
  border-right: 2px solid var(--orange);
}
.cp-expect-lede strong {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.005em;
}

@media (max-width: 900px) {
  .cp-expect-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cp-expect-lede {
    text-align: left;
    padding-right: 0;
    padding-left: 14px;
    border-right: none;
    border-left: 2px solid var(--orange);
  }
}

.cp-expect-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.cp-expect-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "num"
    "icon"
    "title"
    "body"
    "note";
  gap: 8px;
  align-items: center;
  text-align: center;
  padding: 22px 18px 22px;
  background:
    linear-gradient(180deg, rgba(255, 106, 26, 0.05), transparent 55%),
    rgba(13, 9, 7, 0.55);
  border: 1px solid rgba(255, 106, 26, 0.16);
  border-top: 2px solid var(--orange);
  overflow: hidden;
  opacity: 0;
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(.2, .8, .2, 1);
}
.cp-expect-card:hover {
  border-color: rgba(255, 106, 26, 0.45);
  transform: translateY(-2px);
}
.cp-expect-grid.is-in .cp-expect-card {
  animation: cp-expect-in 0.55s cubic-bezier(.2, .8, .2, 1) both;
}
.cp-expect-grid.is-in .cp-expect-card:nth-child(1) { animation-delay: 0ms; }
.cp-expect-grid.is-in .cp-expect-card:nth-child(2) { animation-delay: 90ms; }
.cp-expect-grid.is-in .cp-expect-card:nth-child(3) { animation-delay: 180ms; }
.cp-expect-grid.is-in .cp-expect-card:nth-child(4) { animation-delay: 270ms; }
.cp-expect-grid.is-in .cp-expect-card:nth-child(5) { animation-delay: 360ms; }
@keyframes cp-expect-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cp-expect-card-num {
  grid-area: num;
  justify-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--orange);
  text-transform: uppercase;
}
.cp-expect-card-num .of {
  color: var(--ink-faint);
  margin-left: 2px;
}
.cp-expect-icon {
  grid-area: icon;
  width: 88px;
  height: 88px;
  color: var(--orange);
  filter: drop-shadow(0 0 12px rgba(255, 106, 26, 0.30));
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1), filter 0.3s ease;
  align-self: center;
  justify-self: center;
  margin: 6px 0 4px;
}
.cp-expect-card:hover .cp-expect-icon {
  transform: scale(1.06);
  filter: drop-shadow(0 0 18px rgba(255, 106, 26, 0.55));
}
.cp-expect-card-title {
  grid-area: title;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}
.cp-expect-card-body {
  grid-area: body;
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}
.cp-expect-card-note {
  grid-area: note;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: var(--ink-mute);
  text-transform: lowercase;
}

@media (max-width: 1099px) {
  .cp-expect-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cp-expect-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num   num"
      "icon  title"
      "icon  body"
      "icon  note";
    text-align: left;
    align-items: start;
    padding: 18px 22px;
    column-gap: 22px;
    row-gap: 4px;
  }
  .cp-expect-icon {
    width: 64px;
    height: 64px;
    grid-row: 2 / span 3;
    align-self: center;
    margin: 0;
  }
  .cp-expect-card-num    { margin-bottom: 4px; }
  .cp-expect-card-title  { font-size: 22px; }
  .cp-expect-card-body   { font-size: 14px; }
  .cp-expect-card-note   { font-size: 11px; }
  .cp-expect-lede        { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .cp-expect-card                       { opacity: 1; transition: none; }
  .cp-expect-grid.is-in .cp-expect-card { animation: none; }
  .cp-expect-icon                       { transition: none; }
  .cp-expect-card:hover                 { transform: none; }
  .cp-expect-card:hover .cp-expect-icon { transform: none; filter: drop-shadow(0 0 12px rgba(255, 106, 26, 0.30)); }
}

/* ── Section §01: WHAT YOU'RE SIGNING UP FOR ─────────────────────────
   Cold-start overview directly under the hero. Two stacked components
   inside one section: (a) three impact-headline cards (€500 / 8 weeks /
   mentors) using the proven about-page WE BRING photo-card pattern; (b)
   a standalone "competition starts day 1" image-block that reframes the
   offer as a dual-championship contest (Fight Night = race; eight-week
   build = constructors' championship).
   ------------------------------------------------------------------- */

.cp-might-section { padding-bottom: 64px; }

.cp-might-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 78ch;
  margin-bottom: 28px;
}
.cp-might-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--orange);
  text-transform: uppercase;
}
/* Match the hero paragraph (.cp-hook-sub) and about page lede
   (.lb-lede / .lb-mission-body p) — 18px/1.65 sans on ink-dim with
   the orange left rule. Same dossier-paragraph treatment used across
   the rest of the site so this section's intro doesn't read smaller
   or quieter than its neighbours. */
.cp-might-lede {
  margin: 10px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--orange);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 78ch;
  text-wrap: pretty;
}
.cp-might-lede strong { color: var(--ink); font-weight: 600; letter-spacing: 0.01em; }

/* ----- Three impact cards (mirrors about §02 lb-bring-card pattern) ----- */
.cp-might-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.cp-might-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 24px 24px 28px;
  background: var(--paper);
  min-height: 320px;
  display: flex;
}
.cp-might-card-bg {
  /* same calibration as about page: photo recedes so headline-impact text dominates */
  filter: contrast(1.04) saturate(0.9) brightness(0.55);
}
.cp-might-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.cp-might-card-stamps {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: auto;
}
.cp-might-card-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--orange);
  text-transform: uppercase;
}
.cp-might-card-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--amber);
  text-transform: uppercase;
}
.cp-might-card-title {
  font-family: var(--display);
  font-size: clamp(48px, 5.2vw, 76px);
  letter-spacing: 0.005em;
  line-height: 0.92;
  color: var(--ink);
  text-transform: uppercase;
  margin: 4px 0 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
  font-variant-numeric: tabular-nums;
}
.cp-might-card-title .accent {
  color: var(--orange);
  text-shadow:
    0 0 14px rgba(255, 106, 26, 0.5),
    0 0 28px rgba(255, 106, 26, 0.18),
    0 1px 0 rgba(0, 0, 0, 0.55);
}
/* On the photo-backed cards, body copy at 14.5/ink-dim was too small
   against the darkened image. Bumped to the hero-paragraph scale
   (16/1.6) and brightened toward --ink with a subtle text-shadow for
   legibility on the photo layer. */
.cp-might-card-body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: 38ch;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  text-wrap: pretty;
}

/* ----- Day-One block: photo fades in from right, dark text panel left ----- */
.cp-day-one {
  position: relative;
  margin-top: 24px;
  border: 1px solid var(--rule-strong);
  background: rgba(13, 9, 7, 0.92);
  isolation: isolate;
  overflow: hidden;
  min-height: 280px;
  display: flex;
}

/* photo layer — masked so it fades in from the right edge */
.cp-day-one-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/photo-team.png');
  background-size: cover;
  background-position: center right;
  filter: contrast(1.05) saturate(0.85) brightness(0.7);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 28%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.95) 88%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, transparent 28%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.95) 88%, #000 100%);
}

/* dark veil for text legibility on the left ~60% */
.cp-day-one-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94) 0%, rgba(5, 4, 3, 0.78) 38%, rgba(5, 4, 3, 0.25) 70%, transparent 95%),
    repeating-linear-gradient(to bottom, transparent 0, transparent 2px, rgba(255, 106, 26, 0.025) 2px, rgba(255, 106, 26, 0.025) 3px);
  pointer-events: none;
}

/* corner brackets matching site convention */
.cp-day-one-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--orange);
  pointer-events: none;
  z-index: 3;
}
.cp-day-one-corner.tl { top: -1px; left: -1px;  border-right: none; border-bottom: none; }
.cp-day-one-corner.br { bottom: -1px; right: -1px; border-left: none;  border-top: none; }

.cp-day-one-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
  padding: 30px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cp-day-one-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--orange);
  text-transform: uppercase;
}

.cp-day-one-title {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: 0.005em;
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0;
}
.cp-day-one-title .accent { color: var(--orange); }

.cp-day-one-body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-dim);
  margin: 0;
  max-width: 64ch;
  text-wrap: pretty;
}
.cp-day-one-body + .cp-day-one-body { margin-top: 2px; }

.cp-day-one-meta {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 6px;
  border: 1px solid var(--rule);
  background: rgba(255, 106, 26, 0.04);
  flex-wrap: wrap;
}
.cp-day-one-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 16px;
  border-right: 1px solid var(--rule);
  flex: 1 1 auto;
  min-width: 130px;
}
.cp-day-one-meta-item:last-child { border-right: none; }
.cp-day-one-meta-item .k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--orange);
  text-transform: uppercase;
}
.cp-day-one-meta-item .v {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}

/* Day-One register: two dates with an arrow between, then the email
   form. No card chrome — sits inline as a natural close to the body
   copy above. */
.cp-day-one-register {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cp-day-one-tl {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.cp-day-one-tl-date .k {
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.28em;
  font-size: 10px;
  margin-right: 8px;
  text-transform: uppercase;
}
.cp-day-one-tl-arrow {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0;
}
.cp-day-one-register .hero-notify {
  margin: 0;
  max-width: 100%;
}

/* ----- Responsive ----- */
@media (max-width: 1099px) {
  .cp-might-card-title { font-size: clamp(44px, 6vw, 64px); }
  .cp-day-one-content { max-width: 64%; padding: 26px 28px 24px; }
}

@media (max-width: 900px) {
  .cp-might-grid { grid-template-columns: 1fr; }
  .cp-might-card { min-height: 240px; padding: 22px 22px 24px; }
  .cp-might-card-title { font-size: clamp(48px, 12vw, 68px); }

  /* Day-one block: stack — photo becomes a subtle background, text takes full width */
  .cp-day-one { min-height: auto; }
  .cp-day-one-content {
    max-width: 100%;
    padding: 22px 20px 22px;
  }
  .cp-day-one-bg {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.85) 100%);
            mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.85) 100%);
    opacity: 0.4;
  }
  .cp-day-one-veil {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.88) 0%, rgba(5, 4, 3, 0.78) 100%),
      repeating-linear-gradient(to bottom, transparent 0, transparent 2px, rgba(255, 106, 26, 0.025) 2px, rgba(255, 106, 26, 0.025) 3px);
  }
  .cp-day-one-meta-item {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 10px 14px;
  }
  .cp-day-one-meta-item:last-child { border-bottom: none; }
  .cp-day-one-title { font-size: clamp(28px, 8vw, 40px); }

}

/* ── Section §03: FIGHT NIGHT FORMAT — layout & content ─────────────────
   Three stacked blocks inside one section: (a) the section header (mirrors
   §02's 2-col head with right-aligned lede), (b) the 6 spec cards, (c) a
   2-pane block with the arena SVG on the left and the bracket terminal on
   the right, (d) a Bristol Bot Builders recommended-reading banner.
   Stacks single-column < 1099px, mobile breakpoint < 760px. */

.cp-fight-section { padding-bottom: 64px; }

/* === Section header === */
.cp-fight-head {
  display: grid;
  grid-template-columns: minmax(auto, 0.85fr) 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 32px;
}
.cp-fight-head-l {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cp-fight-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--amber);
  text-transform: uppercase;
}
.cp-fight-lede {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  text-wrap: pretty;
  text-align: right;
  padding-right: 14px;
  border-right: 2px solid var(--orange);
}
.cp-fight-lede strong {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.005em;
}

/* === Group eyebrow above each sub-block === */
.cp-fight-spec-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* === Sub-blocks === */
.cp-fight-spec-block { margin-top: 4px; }
.cp-fight-arena-block { margin-top: 32px; }

/* === Arena + Bracket — 2-column grid === */
.cp-fight-arena-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* === Bracket pane (right side, terminal aesthetic mirroring arena pane) === */
.cp-fight-tournament {
  border: 1px solid var(--rule-strong);
  background: #06050a;
  font-family: var(--mono);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cp-fight-tournament::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,0.018) 2px 3px);
  pointer-events: none;
  z-index: 1;
}

.cp-fight-tournament-body {
  position: relative;
  z-index: 2;
  padding: 18px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.cp-fight-tournament-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255, 106, 26, 0.18);
}
.cp-fight-tournament-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cp-fight-tournament-head .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.cp-fight-tournament-head .v {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
}

.cp-fight-tournament-rounds {
  display: flex;
  flex-direction: column;
}
.cp-fight-tournament-round {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 106, 26, 0.10);
}
.cp-fight-tournament-round:last-child { border-bottom: none; }
.cp-fight-tournament-round .r-id {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  font-weight: 600;
}
.cp-fight-tournament-round .r-name {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.cp-fight-tournament-round .r-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 106, 26, 0.22), transparent);
  align-self: center;
  min-width: 16px;
}
.cp-fight-tournament-round .r-count {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  white-space: nowrap;
}
.cp-fight-tournament-round .r-prog {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--orange);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 106, 26, 0.4);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.cp-fight-tournament-round.is-final .r-name {
  color: var(--orange);
  text-shadow: 0 0 10px rgba(255, 106, 26, 0.55);
}
.cp-fight-tournament-round.is-final .r-prog {
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 106, 26, 0.7), 0 0 24px rgba(255, 106, 26, 0.35);
}

.cp-fight-tournament-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--rule);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* === Bracket tree graphic — vertical on desktop, horizontal on mobile === */
.cp-bracket-tree {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 0 4px;
  min-height: 0;
}
.cp-bracket-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.cp-bracket-svg-v { display: block; max-width: 460px; }
.cp-bracket-svg-h { display: none; }

.cp-bracket-w-letter {
  animation: cp-bracket-w-pulse 2.6s ease-in-out infinite;
}
.cp-bracket-w-ring {
  animation: cp-bracket-w-ring 6s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes cp-bracket-w-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.78; }
}
@keyframes cp-bracket-w-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .cp-bracket-w-letter, .cp-bracket-w-ring { animation: none; }
}

@media (max-width: 1099px) {
  .cp-bracket-svg-v { display: none; }
  .cp-bracket-svg-h { display: block; max-width: 720px; }
}

/* === Bristol Bot Builders — recommended-reading banner === */
.cp-fight-bristol {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 106, 26, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.06), rgba(255, 106, 26, 0.02) 60%),
    rgba(13, 9, 7, 0.55);
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cp-fight-bristol::before,
.cp-fight-bristol::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--orange);
  pointer-events: none;
}
.cp-fight-bristol::before { top: -1px; left: -1px;  border-right: none; border-bottom: none; }
.cp-fight-bristol::after  { bottom: -1px; right: -1px; border-left: none;  border-top: none; }

.cp-fight-bristol:hover {
  border-color: var(--orange);
  background:
    linear-gradient(135deg, rgba(255, 106, 26, 0.12), rgba(255, 106, 26, 0.04) 60%),
    rgba(13, 9, 7, 0.7);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 106, 26, 0.18);
}

.cp-fight-bristol-l {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.cp-fight-bristol-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--amber);
  text-transform: uppercase;
}
.cp-fight-bristol-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.cp-fight-bristol-body {
  margin: 6px 0 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 64ch;
}
.cp-fight-bristol-r {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.cp-fight-bristol-host {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: lowercase;
}
.cp-fight-bristol-arrow {
  font-family: var(--display);
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
  transition: transform 0.2s ease;
}
.cp-fight-bristol:hover .cp-fight-bristol-arrow { transform: translateX(6px); }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1099px) {
  .cp-fight-arena-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cp-fight-tournament-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .cp-fight-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cp-fight-lede {
    text-align: left;
    padding-right: 0;
    padding-left: 14px;
    border-right: none;
    border-left: 2px solid var(--orange);
    font-size: 16px;
  }
  .cp-fight-arena-block { margin-top: 28px; }
  .cp-fight-bristol {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 22px 20px;
  }
  .cp-fight-bristol-r {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .cp-fight-tournament-body { padding: 16px 18px 14px; gap: 12px; }
  .cp-fight-tournament-round {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    padding: 12px 0;
  }
  .cp-fight-tournament-round .r-id    { grid-row: 1 / span 2; align-self: center; }
  .cp-fight-tournament-round .r-name  { grid-column: 2; grid-row: 1; }
  .cp-fight-tournament-round .r-prog  { grid-column: 3; grid-row: 1; }
  .cp-fight-tournament-round .r-count {
    grid-column: 2 / -1; grid-row: 2;
    font-size: 10px; letter-spacing: 0.16em;
  }
  .cp-fight-tournament-round .r-rule  { display: none; }
  .cp-fight-bristol-arrow             { font-size: 28px; }
  .cp-fight-bristol-title             { font-size: clamp(20px, 6vw, 26px); }
  .cp-fight-spec-eyebrow              { font-size: 10px; letter-spacing: 0.24em; }
}

/* ── Section §07: FINAL CTA — full-bleed cinematic capstone ─────────────
   Escapes .cp-body's max-width to span the full viewport. Photo backdrop
   (chainsaw close-up) sits behind a radial dark veil + subtle scan
   overlay; thick orange corner brackets frame the centred content stack
   (eyebrow, big display headline, conviction copy, the same compact
   HeroNotifyField used on the hero, and a date/venue meta strip). */

.cp-final {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px var(--page-side);
  border-top: 1px solid var(--rule-faint);
  overflow: hidden;
  isolation: isolate;
}

.cp-final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/photo-chainsaw.png');
  background-size: cover;
  background-position: center 35%;
  filter: contrast(1.05) saturate(0.8) brightness(0.45);
}

.cp-final-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 75% 60% at 50% 50%, rgba(5,4,3,0.55) 0%, rgba(5,4,3,0.92) 70%, rgba(5,4,3,0.96) 100%),
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,106,26,0.025) 2px 3px);
  pointer-events: none;
}

.cp-final-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--orange);
  pointer-events: none;
  z-index: 3;
}
.cp-final-corner.tl { top: 28px;    left: 28px;  border-right: none; border-bottom: none; }
.cp-final-corner.tr { top: 28px;    right: 28px; border-left: none;  border-bottom: none; }
.cp-final-corner.bl { bottom: 28px; left: 28px;  border-right: none; border-top: none; }
.cp-final-corner.br { bottom: 28px; right: 28px; border-left: none;  border-top: none; }

.cp-final-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.cp-final-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--orange);
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 106, 26, 0.45);
}

.cp-final-title {
  font-family: var(--display);
  font-size: clamp(48px, 7.2vw, 100px);
  letter-spacing: 0.005em;
  line-height: 0.95;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}
.cp-final-title .accent {
  color: var(--orange);
  text-shadow:
    0 0 26px rgba(255, 106, 26, 0.5),
    0 2px 16px rgba(0, 0, 0, 0.7);
}

.cp-final-body {
  margin: 0 auto;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 56ch;
  text-wrap: pretty;
}

.cp-final-cta {
  width: 100%;
  max-width: 560px;
  margin-top: 8px;
}
.cp-final-cta .hero-notify {
  margin: 0 auto;
  max-width: 100%;
}

.cp-final-meta {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.cp-final-meta strong {
  color: var(--orange);
  font-weight: 600;
}
.cp-final-meta-sep { color: var(--ink-faint); }

@media (max-width: 760px) {
  .cp-final         { padding: 72px var(--page-side) 80px; }
  .cp-final-corner  { width: 16px; height: 16px; }
  .cp-final-corner.tl { top: 18px; left: 18px; }
  .cp-final-corner.tr { top: 18px; right: 18px; }
  .cp-final-corner.bl { bottom: 18px; left: 18px; }
  .cp-final-corner.br { bottom: 18px; right: 18px; }
  .cp-final-body    { font-size: 15px; }
  .cp-final-meta    { flex-direction: column; gap: 8px; font-size: 10px; }
  .cp-final-meta-sep { display: none; }
}
