/* =====================================================================
 * Junior Hardcourt — Footscray Theme Stylesheet
 * Design system: Court / Scoreboard (VolleyPlus royal blue + orange)
 * Distinct from style.css (Brunswick / Riso Camp) — pages choose one or
 * the other via the $theme variable on the header partial.
 * ===================================================================== */

:root {
  --vp-blue:    #00167B;
  --vp-blue-2:  #001049;
  --vp-blue-3:  #002BD4;
  --vp-orange:  #FF7A00;
  --vp-orange-2:#E66A00;
  --ink:        #0a0a14;
  --paper:      #f5f5f0;
  --paper-2:    #ffffff;
  --line:       #e3e3d6;
  --muted:      #5a5a6b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.mono { font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em; }

/* ==================== NAV ==================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--vp-blue);
  color: #fff;
  border-bottom: 3px solid var(--vp-orange);
  padding: 14px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; font-size: 18px;
  letter-spacing: -0.01em;
  color: #fff;
}
.nav-brand .stamp {
  background: #fff; color: var(--vp-blue);
  padding: 4px 10px;
  font-weight: 900; letter-spacing: 0.02em;
  border-radius: 2px;
}
.nav-brand .plus { color: var(--vp-orange); font-weight: 900; }
.nav-links { display: flex; gap: 28px; align-items: center; font-weight: 600; font-size: 14px; }
.nav-links a { transition: color .15s; opacity: 0.85; color: #fff; }
.nav-links a:hover, .nav-links a.is-active { opacity: 1; }
.nav-cta {
  background: var(--vp-orange); color: #fff !important;
  padding: 10px 22px;
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.05em;
  border: 2px solid #fff;
  transition: transform .12s;
}
.nav-cta:hover { transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; }
@media (max-width: 800px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--vp-blue);
    flex-direction: column; align-items: flex-start;
    padding: 20px 32px; gap: 16px;
    border-bottom: 3px solid var(--vp-orange);
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: block; }
}

/* ==================== HERO ==================== */
.hero {
  background: linear-gradient(180deg, var(--vp-blue) 0%, var(--vp-blue-2) 100%);
  color: #fff;
  padding: 80px 32px 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,0.06) 49.7%, rgba(255,255,255,0.06) 50.3%, transparent 50.3%),
    linear-gradient(0deg,  transparent 49.7%, rgba(255,255,255,0.06) 49.7%, rgba(255,255,255,0.06) 50.3%, transparent 50.3%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 480px; height: 480px;
  border: 24px solid var(--vp-orange);
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--vp-orange);
  color: #fff;
  padding: 8px 16px;
  font-weight: 800; font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: hc-pulse 1.5s infinite; }
@keyframes hc-pulse { 50% { opacity: 0.4; } }

.hero-allcomers {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-title {
  font-weight: 900;
  font-size: clamp(54px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-title .row { display: block; }
.hero-title .accent { color: var(--vp-orange); }
.hero-title .underline { position: relative; display: inline-block; }
.hero-title .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 6px; height: 10px;
  background: var(--vp-orange); z-index: -1;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: end;
  margin-top: 36px;
}
.hero-lede { font-size: 18px; line-height: 1.5; max-width: 560px; opacity: 0.9; }
.hero-lede strong { color: #fff; font-weight: 700; }
@media (max-width: 720px) { .hero-bottom { grid-template-columns: 1fr; gap: 20px; } }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--vp-orange);
  color: #fff;
  padding: 18px 32px;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #fff;
  transition: transform .12s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary.btn-disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: #fff;
  padding: 18px 32px;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #fff;
  transition: background .15s, color .15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-secondary:hover { background: #fff; color: var(--vp-blue); }

/* ==================== FACTS STRIP ==================== */
.facts {
  background: var(--ink);
  color: #fff;
  border-top: 4px solid var(--vp-orange);
  border-bottom: 4px solid var(--vp-orange);
}
.facts-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 4px;
}
.fact:last-child { border-right: none; }
.fact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--vp-orange);
  text-transform: uppercase; font-weight: 700;
}
.fact-value {
  font-size: 22px; font-weight: 800; letter-spacing: -0.01em;
  line-height: 1.15;
}
@media (max-width: 800px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: none; }
  .fact:nth-child(1), .fact:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
}

/* ==================== SECTION ==================== */
.section { padding: 100px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--vp-orange);
  text-transform: uppercase; font-weight: 700;
  margin-bottom: 16px;
}
.section-title {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title .accent { color: var(--vp-orange); }
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: end;
}
.section-desc { font-size: 18px; line-height: 1.55; color: var(--muted); max-width: 520px; }
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}

/* ==================== TIMESLOTS ==================== */
.timeslots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.timeslot {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .15s, box-shadow .15s;
}
.timeslot:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--vp-blue); }
.timeslot-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 72px; font-weight: 700;
  line-height: 1; color: var(--vp-blue);
  letter-spacing: -0.04em;
}
.timeslot-label {
  font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700;
  color: var(--muted);
}
.timeslot-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.timeslot-meta span {
  font-size: 13px; font-weight: 600;
  background: var(--paper); padding: 6px 10px;
}
.timeslot-meta .vp-orange { background: var(--vp-orange); color: #fff; }
.timeslot p { color: var(--muted); font-size: 15px; line-height: 1.5; }
@media (max-width: 720px) { .timeslots { grid-template-columns: 1fr; } }

/* ==================== SEASON TIMELINE ==================== */
.season-section {
  background: var(--vp-blue);
  color: #fff;
}
.season-section .section-eyebrow { color: var(--vp-orange); }
.season-section .section-title { color: #fff; }
.season-section .section-desc { color: rgba(255,255,255,0.75); }

.season-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.season-phase {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--vp-orange);
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.season-phase-mark {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--vp-orange);
  margin-bottom: 4px;
}
.season-phase-when {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.season-phase h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: #fff;
}
.season-phase p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
@media (max-width: 980px) { .season-timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .season-timeline { grid-template-columns: 1fr; } }

/* ==================== HOW IT WORKS ==================== */
.how-section {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.how-card {
  position: relative;
  padding: 40px 28px;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.how-card .num {
  position: absolute;
  top: -22px; left: -2px;
  background: var(--vp-blue);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 14px;
  padding: 6px 14px;
  letter-spacing: 0.1em;
}
.how-card:nth-child(2) .num { background: var(--vp-orange); }
.how-card:nth-child(3) .num { background: var(--ink); }
.how-card h3 {
  font-size: 24px; font-weight: 800;
  line-height: 1.1;
  margin: 8px 0 12px;
  letter-spacing: -0.02em;
}
.how-card p { font-size: 15px; line-height: 1.55; color: var(--muted); }
@media (max-width: 820px) { .how-grid { grid-template-columns: 1fr; } }

/* ==================== TWO PATHS / REGISTER ==================== */
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--ink);
}
.path {
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.path-team { background: var(--vp-blue); color: #fff; }
.path-pool { background: var(--paper-2); color: var(--ink); border-left: 2px solid var(--ink); }
.path-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
  opacity: 0.7;
}
.path-team .path-label { color: #fff; }
.path-pool .path-label { color: var(--vp-orange); opacity: 1; }
.path h3 {
  font-size: 36px; font-weight: 900;
  line-height: 1; letter-spacing: -0.025em;
  text-transform: uppercase;
}
.path p { font-size: 16px; line-height: 1.55; opacity: 0.9; }
.path ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; line-height: 1.5;
}
.path ul li { padding-left: 22px; position: relative; }
.path ul li::before {
  content: ''; position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 4px;
  background: currentColor;
}
.path-team ul li::before { background: var(--vp-orange); }
.path-pool ul li::before { background: var(--vp-blue); }
.path .btn-primary { align-self: flex-start; margin-top: 8px; }
.path-pool .btn-primary { background: var(--vp-blue); border-color: var(--vp-blue); }
@media (max-width: 820px) {
  .paths { grid-template-columns: 1fr; }
  .path-pool { border-left: none; border-top: 2px solid var(--ink); }
}

/* ==================== PRICING ==================== */
.pricing-section { background: var(--ink); color: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.price-card {
  background: var(--vp-blue);
  padding: 40px;
  border: 2px solid var(--vp-orange);
  position: relative;
}
.price-card:nth-child(2) { background: transparent; border-color: #fff; }
.price-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
  color: var(--vp-orange);
  margin-bottom: 14px;
}
.price-amount {
  font-size: 80px; font-weight: 900;
  letter-spacing: -0.05em; line-height: 1;
  margin-bottom: 8px;
}
.price-amount .small { font-size: 24px; opacity: 0.7; }
.price-detail { font-size: 15px; opacity: 0.85; line-height: 1.5; }
.pricing-section .section-title { color: #fff; }
.pricing-section .section-desc { color: rgba(255,255,255,0.7); }
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ==================== FOOTER CTA ==================== */
.footer-cta {
  background: var(--vp-orange);
  color: #fff;
  padding: 80px 32px;
  text-align: center;
}
.footer-cta h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-cta p { font-size: 18px; margin-bottom: 32px; opacity: 0.9; }
.footer-cta .btn-primary {
  background: #fff;
  color: var(--vp-orange);
  border-color: #fff;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 40px 32px;
  font-size: 13px;
  text-align: center;
}
.footer a { color: #fff; }
.footer .brand { font-weight: 800; color: #fff; margin-bottom: 6px; display: block; }
.footer .footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  text-align: left;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer .footer-col h4 {
  color: var(--vp-orange);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer .footer-col a {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer .footer-col a:hover { color: #fff; }
.footer .footer-bot {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}
@media (max-width: 720px) {
  .footer .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ==================== FORM ERRORS (shared across wizards) ==================== */
.form-errors {
  background: #fee;
  border: 2px solid var(--vp-orange);
  padding: 14px 18px;
  margin-bottom: 24px;
  color: var(--ink);
}
.form-errors p,
.form-errors li { font-size: 14px; font-weight: 600; margin: 2px 0; }
.form-errors strong { display: block; margin-bottom: 4px; }
.form-errors ul { padding-left: 18px; }

/* ==================== CONTENT SECTION (wizard pages) ==================== */
.content-section { padding: 60px 32px 80px; background: var(--paper); }
.content-inner   { max-width: 760px; margin: 0 auto; }

.content-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--vp-orange);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.content-title {
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.content-title .accent { color: var(--vp-orange); }
.content-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 36px;
}

/* ==================== WIZARD STEPS ==================== */
.wiz-steps {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0 0 40px;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}
.wiz-step {
  flex: 1 1 0;
  min-width: 90px;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.wiz-step-link {
  display: contents;
}
.wiz-step-num {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-2);
  border: 2px solid var(--line);
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wiz-step-label {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.wiz-step-bar {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 12px;
  min-width: 12px;
}
.wiz-step.is-current .wiz-step-num {
  background: var(--vp-orange); color: #fff; border-color: var(--vp-orange);
}
.wiz-step.is-current .wiz-step-label { color: var(--ink); }
.wiz-step.is-done .wiz-step-num {
  background: var(--vp-blue); color: #fff; border-color: var(--vp-blue);
}
.wiz-step.is-done .wiz-step-label { color: var(--ink); }
.wiz-step.is-done .wiz-step-bar  { background: var(--vp-blue); }
.wiz-step-link:hover .wiz-step-num { transform: translateY(-1px); }
@media (max-width: 640px) {
  .wiz-step-label { display: none; }
  .wiz-step { min-width: 0; }
  .wiz-step-bar { min-width: 8px; }
}

/* ==================== FORM ==================== */
.jr-form { display: block; }
.form-section-title {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--vp-orange);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--vp-blue);
}
.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-field small {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.form-field input[type=text],
.form-field input[type=email],
.form-field input[type=tel],
.form-field input[type=date],
.form-field input[type=number],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  background: var(--paper-2);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .12s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--vp-orange);
}
.form-field textarea { resize: vertical; min-height: 60px; }

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.wiz-actions { justify-content: space-between; }
.form-actions .btn-primary { color: #fff; }
.form-actions .form-aside  { color: var(--muted); font-size: 13px; }
.link-button {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.link-button:hover { color: var(--ink); }

/* Checkbox / attestation rows */
.attest-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px;
  background: var(--paper-2);
  border: 2px solid var(--line);
  margin-bottom: 12px;
}
.attest-row input[type=checkbox] {
  width: 20px; height: 20px;
  margin-top: 2px; flex-shrink: 0;
  accent-color: var(--vp-orange);
}
.attest-row span { font-size: 14px; line-height: 1.5; color: var(--ink); }

/* ==================== CONSENTS ==================== */
.consents { display: flex; flex-direction: column; gap: 14px; }
.consent-block {
  border: 2px solid var(--ink);
  background: var(--paper-2);
  padding: 16px 18px;
}
.consent-block details { margin-bottom: 12px; }
.consent-block summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding-right: 8px;
  position: relative;
  padding-left: 18px;
}
.consent-block summary::before {
  content: '+';
  position: absolute; left: 0;
  font-family: 'JetBrains Mono', monospace;
  color: var(--vp-orange);
}
.consent-block details[open] summary::before { content: '\2013'; }
.consent-block summary::-webkit-details-marker { display: none; }
.consent-optional {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--muted);
  padding: 2px 6px;
  font-weight: 600;
}
.consent-content {
  margin-top: 14px;
  padding: 16px 18px;
  background: var(--paper);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink);
}
.consent-content br + br { /* visual paragraph spacing from nl2br'd blank lines */
  display: block;
  content: '';
  margin-top: 8px;
}
.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
.consent-checkbox input[type=checkbox] {
  width: 20px; height: 20px;
  margin-top: 1px;
  accent-color: var(--vp-orange);
}
.req { color: var(--vp-orange); }

/* ==================== REVIEW CARDS ==================== */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.review-card {
  border: 2px solid var(--ink);
  background: var(--paper-2);
  padding: 22px 22px 18px;
}
.review-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--vp-blue);
}
.review-card-head h3 {
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vp-orange);
  margin: 0;
}
.review-card-head a {
  font-size: 12px;
  color: var(--vp-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dash-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 14px;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}
.dash-meta dt {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.dash-meta dd { margin: 0; color: var(--ink); }
.review-consents {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px;
  padding: 0;
}
.review-consents li { display: flex; align-items: center; gap: 8px; }
.review-consents .tick  { color: var(--vp-blue);   font-weight: 800; }
.review-consents .cross { color: var(--vp-orange); font-weight: 800; }
@media (max-width: 720px) { .review-grid { grid-template-columns: 1fr; } }

/* ==================== DONE CARD ==================== */
.dash-card {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  padding: 24px;
  margin-top: 24px;
}
.dash-card h3 {
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vp-orange);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--vp-blue);
}
.dash-card p { font-size: 15px; line-height: 1.55; color: var(--ink); margin: 0 0 8px; }
.dash-card .muted { color: var(--muted); font-size: 13px; }

/* ==================== FEES PAGE ==================== */
.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.fee-card {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  padding: 28px 26px;
  border-left: 8px solid var(--accent, var(--vp-orange));
  position: relative;
}
.fee-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--vp-orange);
  margin-bottom: 8px;
}
.fee-amount {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--vp-blue);
}
.fee-amount.tba {
  color: var(--muted);
  font-size: 40px;
}
.fee-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
@media (max-width: 720px) { .fees-grid { grid-template-columns: 1fr; } }

.content-prose {
  margin-top: 32px;
  max-width: 720px;
}
.content-prose p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 14px;
}
.content-prose a {
  color: var(--vp-blue);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}
.content-prose strong { color: var(--vp-blue); }

/* ==================== FAQ PAGE ==================== */
.faq-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 2px solid var(--ink);
  background: var(--paper-2);
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  user-select: none;
  position: relative;
}
.faq-q::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  color: var(--vp-orange);
  font-size: 22px;
  font-weight: 700;
  margin-left: 12px;
  flex-shrink: 0;
  transition: transform .15s;
}
.faq-item.is-open .faq-q { border-bottom: 1px solid var(--line); }
.faq-item.is-open .faq-q::after { content: '\2013'; }
.faq-a {
  display: none;
  padding: 18px 22px 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
}
.faq-item.is-open .faq-a { display: block; }
.faq-a p { margin-bottom: 10px; }
.faq-a a {
  color: var(--vp-blue);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}
