:root {
  --navy: #0A1628;
  --navy-2: #0E1B30;
  --navy-3: #132340;
  --gold: #C9A84C;
  --gold-soft: #E5C97A;
  --gold-deep: #8E7530;
  --line: rgba(201, 168, 76, 0.18);
  --line-strong: rgba(201, 168, 76, 0.42);
  --text: #F5F1E6;
  --text-dim: rgba(245, 241, 230, 0.62);
  --text-mute: rgba(245, 241, 230, 0.38);
  --red: #D6485C;
  --green: #6FBF8A;
}
* { box-sizing: border-box; min-width: 0; }
html { overflow-x: hidden; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.serif { font-family: 'Playfair Display', Georgia, serif; }
.mono  { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ambient chart bg */
.chart-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.55; overflow: hidden; }
.chart-bg svg { width: 100%; height: 100%; display: block; }

/* eyebrow */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; margin-right: 8px; vertical-align: 2px;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}
.rule { height: 1px; background: var(--line); width: 100%; }
.rule-gold { height: 1px; background: var(--gold); width: 56px; }

/* layout */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* nav */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(10,22,40,0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.brand:hover { color: var(--text); }
.brand-mark {
  width: 32px; height: 32px; border: 1px solid var(--gold); display: grid; place-items: center;
  font-family: 'Playfair Display', serif; color: var(--gold); font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
}
.brand-logo { width: 38px; height: 38px; object-fit: contain; display: block; flex-shrink: 0; }
.brand-text { font-family: 'Playfair Display', serif; font-size: 17px; letter-spacing: 0.04em; }
.brand-text small { color: var(--text-dim); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; display: block; line-height: 1; margin-top: 2px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 13px; letter-spacing: 0.04em; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 10px 18px; font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; transition: background .2s; }
.nav-cta:hover { background: var(--gold-soft); }
/* hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform .22s ease, opacity .22s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile nav drawer */
.nav-mobile {
  display: flex;
  flex-direction: column;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 4px 24px 24px;
}
.nav-mobile a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
  display: block;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); }
.nav-mobile-cta {
  margin-top: 16px;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 14px 20px !important;
  font-weight: 600;
  font-size: 12px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  border: none !important;
}
.nav-mobile-cta:hover { background: var(--gold-soft); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* status bar (countdown + seats) */
.statusbar {
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  height: 38px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
}
.sb-divider { background: var(--gold); opacity: 0.6; }
.sb-half { display: flex; align-items: center; padding: 0 24px; gap: 18px; min-width: 0; }
.sb-half.right { justify-content: flex-end; }
.sb-label {
  color: var(--text-mute);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.sb-countdown { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.sb-unit { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.sb-unit .v {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.sb-unit .l {
  color: var(--text-mute);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}
.sb-sep { color: var(--gold); opacity: 0.4; font-size: 10px; align-self: flex-start; padding-top: 2px; }

.sb-price-when { color: var(--gold); font-size: 11px; letter-spacing: 0.14em; font-weight: 600; white-space: nowrap; }
.sb-pricing { display: flex; align-items: center; gap: 14px; min-width: 0; }
.sb-tier { color: var(--text); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }
.sb-tier b { color: var(--gold); font-weight: 600; margin-right: 5px; }
.sb-tier.alt { color: var(--text-mute); border-left: 1px solid var(--line); padding-left: 14px; }

.sb-seats { display: flex; align-items: center; gap: 14px; min-width: 0; }
.sb-seats .meter { width: 140px; height: 4px; background: rgba(245,241,230,0.08); position: relative; overflow: hidden; flex-shrink: 0; }
.sb-seats .meter i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--gold); transition: width .6s ease; }
.sb-seats .filled {
  color: var(--text);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.sb-seats .filled b { color: var(--gold); font-weight: 600; }
.sb-seats .remaining {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

@media (max-width: 880px) {
  .statusbar { grid-template-columns: 1fr; height: auto; }
  .sb-divider { display: none; }
  .sb-half { padding: 8px 20px; justify-content: center; border-bottom: 1px solid var(--line); }
  .sb-half.right { border-bottom: none; }
  .sb-seats .meter { width: 80px; }
}
@media (max-width: 480px) {
  .sb-label { display: none; }
  .sb-countdown { gap: 10px; }
}

/* page header (non-home) */
.page-head { position: relative; padding: 90px 0 70px; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-head .wrap { position: relative; z-index: 2; }
.page-head .crumb { display: inline-flex; align-items: center; gap: 12px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 24px; }
.page-head .crumb::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.page-head h1 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(40px, 6vw, 84px); line-height: 1; letter-spacing: -0.02em; margin: 0 0 18px; max-width: 900px; }
.page-head h1 em { color: var(--gold); }
.page-head .lede { color: var(--text-dim); font-size: 17px; line-height: 1.6; max-width: 640px; }

/* hero (home) */
.hero { position: relative; padding: 96px 0 120px; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } .hero { padding: 64px 0 80px; } }
.hero-tag { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.hero-tag .num { color: var(--gold); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; }
.hero-tag .div { width: 40px; height: 1px; background: var(--gold); }
.hero-tag .label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); }
.hero h1 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(48px, 7.4vw, 108px); line-height: 0.96; letter-spacing: -0.02em; margin: 0 0 32px; }
.hero h1 .em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero h1 .small { display: block; font-size: 0.42em; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; font-weight: 400; margin-bottom: 18px; }
.hero-sub { font-size: 18px; color: var(--text-dim); max-width: 540px; line-height: 1.55; margin-bottom: 40px; }

/* buttons */
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all .2s ease; font-family: 'Inter', sans-serif; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* data card */
.data-card { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(201,168,76,0.04) 0%, rgba(255,255,255,0) 100%); padding: 28px; position: relative; }
.data-card .corner { position: absolute; width: 12px; height: 12px; border: 1px solid var(--gold); }
.data-card .corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.data-card .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.data-card .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.data-card .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.dc-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px dashed var(--line); font-size: 13px; gap: 16px; }
.dc-row:last-child { border-bottom: 0; }
.dc-row .k { color: var(--text-mute); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; flex-shrink: 0; }
.dc-row .v { color: var(--text); font-weight: 500; text-align: right; }
.dc-row .v.gold { color: var(--gold); }

/* section base */
section.s { padding: 110px 0; border-bottom: 1px solid var(--line); position: relative; }
@media (max-width: 720px) { section.s { padding: 72px 0; } }
.s-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.s-head .l { max-width: 720px; }
.s-head h2 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(36px, 4.6vw, 64px); line-height: 1.05; letter-spacing: -0.015em; margin: 16px 0 0; }
.s-head h2 em { color: var(--gold); }
.s-head .r { color: var(--text-dim); font-size: 14px; max-width: 320px; line-height: 1.6; }
.section-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.22em; color: var(--gold); display: inline-flex; align-items: center; gap: 12px; }
.section-num::before { content: ""; width: 24px; height: 1px; background: var(--gold); }

/* cohosts */
.cohosts { display: grid; grid-template-columns: repeat(2, minmax(0, 320px)); justify-content: center; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cohost { padding: 48px 40px; text-align: center; border-right: 1px solid var(--line); transition: background .25s; position: relative; display: flex; flex-direction: column; align-items: center; }
.cohost:last-child { border-right: 0; }
.cohost:hover { background: var(--navy-2); }
.cohost svg, .cohost img { display: block; margin: 0 auto 18px; }
.cohost .school-logo { width: 76px; height: 76px; }
.cohost .name { font-family: 'Playfair Display', serif; font-size: 19px; line-height: 1.25; }
.cohost .role { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); margin-top: 6px; }
@media (max-width: 640px) { .cohosts { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .cohost { border-right: 0; } .cohost:first-child { border-bottom: 1px solid var(--line); }
}

/* why cards */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { border: 1px solid var(--line); padding: 40px 32px 36px; background: var(--navy-2); position: relative; transition: border-color .25s, transform .25s; }
.why-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.why-card .idx { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 28px; }
.why-card h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 28px; line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.01em; }
.why-card p { color: var(--text-dim); font-size: 15px; line-height: 1.65; margin: 0; }
.why-card .stat { margin-top: 28px; padding-top: 20px; border-top: 1px dashed var(--line); display: flex; justify-content: space-between; }
.why-card .stat .num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold); }
.why-card .stat .lbl { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); align-self: end; text-align: right; max-width: 120px; line-height: 1.4; }

/* bracket / structure */
.bracket { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; position: relative; }
@media (max-width: 880px) { .bracket { grid-template-columns: 1fr; } }
.stage { border: 1px solid var(--line); padding: 36px 28px 32px; background: var(--navy-2); position: relative; }
.stage.feature { background: var(--navy-3); border-color: var(--gold); }
.stage .label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.22em; color: var(--text-mute); text-transform: uppercase; }
.stage.feature .label { color: var(--gold); }
.stage .count { font-family: 'Playfair Display', serif; font-size: 88px; line-height: 1; margin: 14px 0 6px; letter-spacing: -0.02em; }
.stage.feature .count { color: var(--gold); }
.stage .name { font-family: 'Playfair Display', serif; font-size: 22px; font-style: italic; margin: 0 0 18px; }
.stage .desc { color: var(--text-dim); font-size: 13px; line-height: 1.6; margin: 0 0 20px; }
.stage .meta { display: flex; gap: 16px; padding-top: 16px; border-top: 1px dashed var(--line); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; color: var(--text-mute); text-transform: uppercase; flex-wrap: wrap; }
.stage .meta span:first-child { color: var(--text-dim); }
.stage .arrow { position: absolute; right: -24px; top: 50%; transform: translateY(-50%); width: 24px; height: 1px; background: var(--gold); z-index: 2; }
.stage .arrow::after { content: ""; position: absolute; right: 0; top: -3px; border: 3px solid transparent; border-left-color: var(--gold); }
@media (max-width: 880px) { .stage .arrow { display: none; } }

/* counter */
.counter-section { background: var(--navy-2); }
.counter-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 880px) { .counter-grid { grid-template-columns: 1fr; gap: 40px; } }
.counter-status { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; padding: 6px 12px; border: 1px solid var(--green); }
.counter-status .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.counter-status span { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.22em; color: var(--green); text-transform: uppercase; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.counter-num { font-family: 'Playfair Display', serif; font-size: clamp(110px, 18vw, 240px); line-height: 0.9; letter-spacing: -0.04em; color: var(--gold); display: flex; align-items: baseline; }
.counter-num .slash { color: var(--text-mute); font-size: 0.4em; margin: 0 18px; font-style: italic; }
.counter-num .total { color: var(--text-mute); font-size: 0.45em; }
.counter-label { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); margin-top: 4px; }
.progress-wrap { margin-top: 36px; }
.progress-bar { height: 4px; background: rgba(245,241,230,0.08); position: relative; overflow: hidden; }
.progress-fill { position: absolute; top: 0; left: 0; bottom: 0; background: var(--gold); transition: width .8s ease; }
.progress-meta { display: flex; justify-content: space-between; margin-top: 12px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); }

.reg-card { border: 1px solid var(--line); padding: 36px 32px; position: relative; background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, rgba(0,0,0,0) 100%); }
.reg-card .eyebrow { margin-bottom: 12px; }
.reg-card h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 28px; margin: 0 0 12px; letter-spacing: -0.01em; }
.reg-card p { color: var(--text-dim); font-size: 14px; line-height: 1.6; margin: 0 0 24px; }
.reg-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.reg-stat { padding: 18px 0; border-right: 1px solid var(--line); padding-right: 16px; }
.reg-stat:last-child { border-right: 0; padding-right: 0; padding-left: 16px; }
.reg-stat .v { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--text); }
.reg-stat .k { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); margin-top: 2px; }

/* schedule list */
.sched { border-top: 1px solid var(--line); }
.sched-row { display: grid; grid-template-columns: 200px 1fr 200px; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
@media (max-width: 720px) { .sched-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; } }
.sched-row.feature { background: rgba(201,168,76,0.04); padding-left: 16px; padding-right: 16px; margin: 0 -16px; }
.sched-time { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--gold); letter-spacing: 0.06em; }
.sched-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.sched-title small { display: block; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400; color: var(--text-dim); margin-top: 4px; line-height: 1.5; }
.sched-meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); text-align: right; }
@media (max-width: 720px) { .sched-meta { text-align: left; } }

/* generic two-col content */
.two-col { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 32px; letter-spacing: -0.01em; margin: 0 0 20px; }
.two-col p { color: var(--text-dim); font-size: 15px; line-height: 1.7; margin: 0 0 16px; }

/* checklist */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px dashed var(--line); align-items: start; }
.checklist li::before { content: "✓"; color: var(--gold); font-family: 'JetBrains Mono', monospace; font-size: 14px; padding-top: 2px; }
.checklist li strong { display: block; color: var(--text); font-weight: 500; margin-bottom: 4px; font-size: 15px; }
.checklist li span { color: var(--text-dim); font-size: 13px; line-height: 1.6; }

/* rubric / criteria grid */
.crit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 720px) { .crit-grid { grid-template-columns: 1fr; } }
.crit-cell { background: var(--navy); padding: 32px 28px; }
.crit-cell .pct { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; color: var(--gold); }
.crit-cell h4 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 22px; letter-spacing: -0.01em; margin: 12px 0 12px; }
.crit-cell p { color: var(--text-dim); font-size: 13px; line-height: 1.6; margin: 0; }
.crit-cell .bar { height: 3px; background: rgba(245,241,230,0.08); margin-top: 18px; position: relative; overflow: hidden; }
.crit-cell .bar i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--gold); }

/* judges */
.judge-school { padding: 56px 0; border-bottom: 1px solid var(--line); }
.judge-school:last-of-type { border-bottom: 0; }
.judge-school header { display: flex; align-items: center; gap: 24px; margin-bottom: 36px; }
.judge-school header .name { font-family: 'Playfair Display', serif; font-size: 32px; letter-spacing: -0.01em; }
.judge-school header .count { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; color: var(--text-mute); margin-left: auto; text-transform: uppercase; }
.judge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .judge-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .judge-grid { grid-template-columns: 1fr; } }
.judge { border: 1px solid var(--line); padding: 24px 20px; background: var(--navy-2); transition: border-color .2s; }
.judge:hover { border-color: var(--line-strong); }
.judge .avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.04)); border: 1px solid var(--line); margin-bottom: 18px; display: grid; place-items: center; font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold); }
.judge .nm { font-family: 'Playfair Display', serif; font-size: 17px; }
.judge .rl { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; color: var(--text-mute); margin-top: 4px; text-transform: uppercase; }
.judge.tba .nm { color: var(--text-dim); font-style: italic; }

/* hosts grid (about page) */
.hosts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 720px) { .hosts-grid { grid-template-columns: 1fr; } }

/* school logos */
.school-logo { width: 64px; height: 64px; object-fit: contain; border-radius: 10px; flex-shrink: 0; box-sizing: border-box; }
.school-logo-sm { width: 56px; height: 56px; object-fit: contain; border-radius: 8px; flex-shrink: 0; box-sizing: border-box; }
.school-logo--padded { padding: 6px; background: #fff; }

/* host cards grid */
.host-cards { display: grid; gap: 16px; }
@media (max-width: 540px) { .host-cards { grid-template-columns: 1fr !important; } }

/* rubric */
.rubric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .rubric-grid { grid-template-columns: 1fr !important; } }

/* pitch structure slide rows */
.slide-row { display: grid; grid-template-columns: 80px 280px 1fr; gap: 32px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
@media (max-width: 720px) { .slide-row { grid-template-columns: 1fr !important; gap: 6px !important; } }

/* faq */
.faq-row { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-row summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 500; letter-spacing: -0.01em; }
.faq-row summary::-webkit-details-marker { display: none; }
.faq-row summary .ico { font-family: 'JetBrains Mono', monospace; color: var(--gold); font-size: 22px; transition: transform .2s; flex-shrink: 0; }
.faq-row[open] summary .ico { transform: rotate(45deg); }
.faq-row .ans { color: var(--text-dim); font-size: 14.5px; line-height: 1.7; padding-top: 12px; max-width: 760px; }

/* form (register) */
.reg-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .reg-form { grid-template-columns: 1fr; } }
.reg-form .full { grid-column: 1 / -1; }
.field label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--text-mute); text-transform: uppercase; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 1px solid var(--line); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 14px; padding: 14px 14px;
  border-radius: 0; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field select option { background: var(--navy-2); color: var(--text); }
.field .hint { display: block; font-size: 11px; color: var(--text-mute); margin-top: 8px; line-height: 1.5; }

/* size selector buttons */
.size-btn {
  flex: 1; background: transparent; border: 1px solid var(--line); color: var(--text-dim);
  padding: 18px 16px; cursor: pointer; transition: border-color .15s, background .15s, color .15s;
  display: flex; flex-direction: column; gap: 4px; align-items: flex-start; text-align: left;
}
.size-btn:hover { border-color: rgba(201,168,76,0.5); color: var(--text); }
.size-btn.on { border-color: var(--gold); background: rgba(201,168,76,0.06); color: var(--text); }
.size-btn .t { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.size-btn .s { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--text-mute); text-transform: uppercase; }
.size-btn.on .s { color: var(--gold); }

/* field group (Student 1, Student 2) */
.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 18px 0 0; border-top: 1px solid var(--line); margin-top: 6px; }
.field-group .group-label { grid-column: 1 / -1; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-bottom: -4px; }
@media (max-width: 720px) { .field-group { grid-template-columns: 1fr; } }

/* footer */
footer.foot { padding: 64px 0 40px; background: var(--navy); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-col h5 { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.foot-col a, .foot-col p { color: var(--text-dim); text-decoration: none; font-size: 13px; line-height: 1.9; display: block; margin: 0; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { padding-top: 24px; display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; color: var(--text-mute); text-transform: uppercase; flex-wrap: wrap; gap: 12px; }

/* utility */
.bg-navy-2 { background: var(--navy-2); }
.muted { color: var(--text-dim); }
.gold { color: var(--gold); }
