:root {
  --navy: var(--bg-deep);
  --teal: var(--brand);
  --gold: var(--accent);
  --bg-dark: var(--bg);
  --bg: var(--text);
  --bg-soft: var(--card-bg);
  --ink: var(--text);
  --ink-soft: var(--text-muted);
  --primary: var(--brand);
  --primary-dark: var(--bg);
  --trust: var(--teal);
  --award: var(--gold);
  --line: var(--card-border);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 8px 18px rgba(10, 37, 64, 0.055);
  --shadow-soft: 0 12px 32px rgba(10, 37, 64, 0.07);
  --radius: 12px;
  --radius-sm: 10px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(21, 151, 167, 0.45);
  outline-offset: 3px;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

ul,
ol {
  margin-top: 0;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 226, 236, 0.8);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(10, 37, 64, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted, var(--ink-soft));
  font-size: 0.78rem;
}

.nav-panel {
  display: contents;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--text);
}

.language-toggle button {
  min-width: 38px;
  border: 0;
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
}

.language-toggle button.is-active {
  color: var(--text);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--text);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.78;
}

.button[aria-disabled="true"]:hover,
.button[aria-disabled="true"]:focus-visible {
  transform: none;
}

.button-primary {
  color: var(--text);
  background: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--bg);
}

.button-secondary {
  color: var(--ink);
  background: var(--text);
  border-color: var(--line);
}

.hero .button-secondary,
.partner-cta .button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: auto;
  padding: 150px 0 86px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 249, 251, 0.96), var(--text) 72%),
    radial-gradient(circle at 88% 18%, rgba(0, 169, 157, 0.08), transparent 26%);
}

.network-bg {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.award-label {
  color: var(--trust);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 780px;
  color: var(--primary);
  font-size: clamp(1.18rem, 2.5vw, 1.72rem);
  font-weight: 700;
}

.hero-lede {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.hero-meta span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--text);
  color: var(--ink);
}

.hero-cta,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.hero-panel h2 {
  font-size: 1.55rem;
}

.trust-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
  background: var(--bg-soft);
}

.trust-group {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.trust-group h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero-panel .trust-group h3 {
  color: var(--primary-light);
}

.trust-group-extra {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.trust-list-secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-list-secondary li {
  padding: 10px 12px;
  border-style: dashed;
  color: var(--ink-soft);
  background: var(--text);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
  scroll-margin-top: 88px;
}

.section-soft {
  background: var(--bg-soft);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.section-heading.narrow p {
  margin-inline: auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.prose-card,
.feature-card,
.track-card,
.info-card,
.score-card,
.prize-card,
.workshop-card,
.partner-group,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--text);
  box-shadow: var(--shadow);
}

.prose-card {
  padding: 34px;
  border: 1px solid var(--line);
  font-size: 1.08rem;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.question-grid span {
  padding: 14px;
  border-left: 3px solid var(--primary);
  border-radius: 12px;
  background: var(--bg-soft);
  font-weight: 700;
}

.feature-grid,
.minimum-grid,
.prize-grid,
.track-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.feature-card,
.minimum-card,
.prize-card {
  padding: 28px;
  border: 1px solid var(--line);
}

.foundation-groups {
  display: grid;
  gap: 20px;
}

.foundation-group {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--text);
}

.foundation-group > h3 {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 1.1rem;
}

.minimum-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.minimum-grid-secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.minimum-card {
  min-height: 230px;
}

.minimum-card-secondary {
  min-height: 190px;
  background: var(--bg-soft);
}

.foundation-explain {
  max-width: 920px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.feature-icon,
.minimum-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 6px;
  color: var(--primary);
  background: rgba(31, 111, 235, 0.08);
  font-weight: 800;
}

.feature-icon svg,
.minimum-card span svg,
.track-icon svg,
.card-icon {
  width: 24px;
  height: 24px;
}

.card-icon {
  margin-bottom: 16px;
  color: var(--primary);
}

.feature-card h3,
.minimum-card h3,
.track-card h3,
.info-card h3,
.score-card h3,
.prize-card h3,
.workshop-card h3,
.partner-group h3,
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card p,
.minimum-card p,
.track-card dd,
.info-card li,
.prize-card p,
.workshop-card p,
.value-card p,
.contact-card p {
  color: var(--ink-soft);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  border: 0;
}

.stat-grid div {
  min-height: 126px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  background: var(--text);
}

.stat-grid strong {
  color: var(--primary);
  font-size: 2.2rem;
  line-height: 1;
}

.stat-grid span {
  color: var(--ink-soft);
  font-weight: 700;
}

.day-grid,
.score-grid,
.workshop-grid,
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
}

.day-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--text);
  box-shadow: var(--shadow);
}

.day-card span,
.workshop-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--trust);
  font-weight: 800;
}

.day-card p {
  color: var(--ink-soft);
}

.track-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.track-card {
  display: block;
  padding: 28px;
  border: 1px solid var(--line);
}

.track-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 6px;
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--trust));
  font-weight: 800;
}

.track-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.track-card dt {
  margin-top: 10px;
  color: var(--ink);
  font-weight: 800;
}

.track-card dd {
  margin: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.pill-row span {
  padding: 11px 14px;
  border: 1px solid rgba(23, 176, 168, 0.34);
  border-radius: 2px;
  color: var(--brand-bright);
  background: rgba(23, 176, 168, 0.1);
  font-weight: 800;
}

.minimum-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.minimum-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--text);
}

.callout {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--award);
  border-radius: var(--radius-sm);
  background: var(--text)8df;
  color: var(--accent);
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
  gap: 44px;
}

.rule-stack {
  display: grid;
  gap: 16px;
}

.info-card {
  padding: 24px;
}

.check-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin-bottom: 0;
}

.score-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.score-card {
  padding: 30px;
}

.score-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.score-row strong {
  color: var(--primary);
  font-size: 1.4rem;
}

.prize-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.9fr));
  gap: 18px;
  border: 0;
}

.prize-grid-conservative {
  grid-template-columns: minmax(0, 1fr);
  max-width: 680px;
  margin: 0 auto;
}

.prize-grid-public {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.prize-main {
  border-color: rgba(226, 179, 57, 0.5);
  background: rgba(15,37,64,0.78);
  min-height: 230px;
  display: grid;
  align-content: center;
}

.prize-grid-public .prize-card {
  min-height: 230px;
  display: grid;
  align-content: center;
  gap: 12px;
}

.prize-card h3 {
  color: var(--ink);
  font-size: 1.6rem;
}

.prize-amount {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
}

.prize-total {
  width: fit-content;
  margin: 24px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(22, 143, 163, 0.2);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(22, 143, 163, 0.08);
  font-weight: 900;
}

.prize-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.vc-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  position: relative;
}

.vc-flow span {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--text);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 800;
}

.vc-flow small {
  color: var(--ink-soft);
  font-weight: 600;
}

.muted {
  color: var(--ink-soft);
}

.center {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
}

.workshop-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workshop-grid-conservative {
  max-width: 900px;
  margin: 0 auto;
}

.workshop-card {
  padding: 28px;
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.workshop-card span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(22, 143, 163, 0.1);
  font-weight: 800;
}

.partner-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.partner-group {
  padding: 24px;
}

.partner-group p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.partner-box {
  min-height: 120px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px dashed var(--card-border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}

.partner-box strong {
  font-size: 1.18rem;
}

.partner-box span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 4px;
  color: var(--accent);
  background: rgba(226, 179, 57, 0.2);
  font-size: 0.82rem;
  font-weight: 800;
}

.partner-cta {
  color: var(--ink);
  background: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-cta .section-heading p:not(.section-kicker) {
  color: var(--ink-soft);
}

.sponsor-grid {
  grid-template-columns: 0.48fr 1fr;
  align-items: start;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border: 0;
}

.value-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--text);
  box-shadow: var(--shadow);
}

.value-card h3 {
  color: var(--primary);
}

.value-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.sponsor-grid .cta-row {
  grid-column: 2;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--text);
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.contact-section {
  background: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.subscribe-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.subscribe-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.input-row,
.footer-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.input-row input,
.footer-form input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--text);
}

.form-note {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-card {
  padding: 26px;
}

.contact-card a:not(.button) {
  color: var(--primary);
  font-weight: 800;
}

.site-footer {
  padding: 70px 0 24px;
  color: var(--text);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.5fr;
  gap: 36px;
}

.footer-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-logo-row img {
  max-height: 46px;
  max-width: 180px;
  object-fit: contain;
  width: auto;
}

.footer-logo-row img:first-child {
  border-radius: 0;
}

.footer-subscribe h2,
.footer-links h2 {
  font-size: 1rem;
}

.footer-form button {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--text);
  background: var(--primary);
  font-weight: 800;
  cursor: pointer;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

body.js-on .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.js-on .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.js-on .hero .reveal {
  opacity: 1;
  transform: none;
}

body.is-en .section-heading p:not(.section-kicker),
body.is-en .hero-lede {
  letter-spacing: 0;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero-grid,
  .two-column,
  .split-layout,
  .contact-grid,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-grid .cta-row {
    grid-column: auto;
  }

  .feature-grid,
  .minimum-grid,
  .prize-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prize-grid-public {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .minimum-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-grid,
  .vc-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-actions {
    position: static;
    display: flex;
    background: transparent;
  }

  .nav-panel {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.16);
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .header-actions {
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  body.nav-open .nav-panel {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 72px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.8rem);
  }

  .section {
    padding: 72px 0;
  }

  .question-grid,
  .track-grid,
  .day-grid,
  .score-grid,
  .workshop-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .input-row,
  .footer-form {
    flex-direction: column;
  }

  .footer-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero-meta,
  .hero-cta,
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .minimum-grid,
  .prize-grid,
  .stat-grid,
  .vc-flow,
  .value-grid,
  .partner-grid,
  .partner-groups {
    grid-template-columns: 1fr;
  }

  .prize-grid-public,
  .minimum-grid-compact,
  .minimum-grid-secondary,
  .trust-list-secondary {
    grid-template-columns: 1fr;
  }

  .stat-grid div,
  .vc-flow span {
    min-height: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  body.js-on .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Visual parity refactor: TABEI / chain.tw association style */
:root {
  --brand-deep: var(--bg);
  --brand-teal: var(--brand);
  --brand-cyan: var(--brand-2);
  --brand-ice: rgba(79,195,247,0.08);
  --paper: var(--text);
  --surface: rgba(20,45,80,0.55);
  --ink: var(--text);
  --muted: var(--text-muted);
  --line: var(--card-border);
  --danger: var(--accent);
  --award-accent: var(--accent);
  --bg-dark: var(--brand-deep);
  --bg: var(--paper);
  --bg-soft: var(--surface);
  --ink-soft: var(--muted);
  --primary: var(--brand-teal);
  --primary-dark: var(--brand-2);
  --trust: var(--brand-teal);
  --award: var(--award-accent);
  --shadow: none;
  --shadow-soft: 0 8px 18px rgba(18, 60, 73, 0.045);
  --radius: 4px;
  --radius-sm: 4px;
  --max: 1180px;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.site-header,
.site-header.is-solid,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.brand-logo {
  width: 220px;
  height: auto;
  max-height: 52px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.brand span {
  display: none;
}

.brand strong {
  color: var(--brand-deep);
  font-weight: 700;
}

.brand small,
.site-nav {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-teal);
}

.button {
  border-radius: 2px;
}

.button-primary {
  color: var(--text);
  background: var(--brand-teal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.language-toggle {
  border-color: var(--line);
  border-radius: 4px;
}

.language-toggle button {
  border-radius: 2px;
}

.language-toggle button.is-active {
  color: var(--text);
  background: var(--brand-deep);
}

.hero {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(234, 246, 247, 0.72), rgba(255, 255, 255, 0.96) 44%, var(--text)),
    linear-gradient(180deg, var(--text), var(--text));
}

.network-bg {
  display: none !important;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.5fr);
  gap: 72px;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.award-label {
  color: var(--brand-teal);
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero h1 {
  color: var(--brand-deep);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1.08;
}

.hero-subtitle {
  color: var(--brand-deep);
}

.hero-lede,
.section-heading p:not(.section-kicker) {
  color: var(--muted);
}

.hero-meta span {
  border-color: var(--line);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.hero-panel {
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-teal);
  border-radius: 2px;
  background: var(--text);
  box-shadow: none;
}

.trust-list li {
  border-color: var(--line);
  border-radius: 2px;
  color: var(--muted);
  background: var(--text);
}

.section-soft {
  background: var(--brand-ice);
}

.section-heading h2 {
  color: var(--brand-deep);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.prose-card,
.feature-card,
.track-card,
.info-card,
.score-card,
.prize-card,
.workshop-card,
.partner-group,
.contact-card,
.value-card,
.faq-list details,
.vc-flow span,
.day-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--text);
  box-shadow: none;
}

.feature-card,
.minimum-card,
.prize-card,
.workshop-card {
  border-top: 4px solid var(--brand-teal);
}

.feature-icon,
.minimum-card span {
  border-radius: 2px;
  color: var(--brand-teal);
  background: var(--brand-ice);
}

.stat-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-grid div {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.stat-grid div:last-child {
  border-right: 0;
}

.stat-grid strong,
.score-row strong,
.value-card h3 {
  color: var(--brand-teal);
}

.track-icon {
  border-radius: 2px;
  background: var(--brand-teal);
}

.callout {
  border-left-color: var(--award-accent);
  border-radius: 2px;
  background: var(--text);
  color: var(--brand-deep);
}

.prize-main {
  border-color: var(--line);
  border-top-color: var(--award-accent);
  background: var(--text);
}

.partner-box {
  border-color: var(--line);
  border-radius: 2px;
  background: var(--text);
}

.partner-box span {
  color: var(--brand-deep);
  background: var(--brand-ice);
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: var(--brand-teal);
}

.site-footer {
  background: var(--brand-deep);
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .brand-logo {
    width: 150px;
    max-height: 42px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .nav-panel {
    background: rgba(255, 255, 255, 0.98);
    border-color: var(--line);
    box-shadow: 0 18px 42px rgba(18, 60, 73, 0.12);
  }

  .header-actions {
    border-top-color: var(--line);
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.1rem);
    max-width: 9em;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .hero-subtitle,
  .hero-lede {
    max-width: 100%;
  }

  .hero-meta {
    align-items: stretch;
  }

  .hero-meta span {
    width: 100%;
  }
}

/* Header + hero continuity pass: dark TABEI first screen only */
:root {
  --tabei-navy: var(--bg-deep);
  --tabei-navy-2: var(--bg);
  --tabei-teal: var(--brand);
  --tabei-teal-hover: var(--brand-2);
  --tabei-cyan: var(--brand-bright);
  --tabei-white: var(--text);
  --tabei-muted: var(--text-muted);
  --tabei-line: rgba(255, 255, 255, 0.16);
}

.site-header,
.site-header.is-solid,
.site-header.is-open {
  color: var(--tabei-white);
  background: linear-gradient(90deg, rgba(11, 48, 66, 0.98), rgba(16, 63, 80, 0.98));
  border-bottom: 1px solid var(--tabei-line);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.brand-logo {
  filter: none;
  opacity: 1;
}

.site-nav {
  color: var(--tabei-muted);
}

.site-nav a {
  color: var(--tabei-muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--tabei-white);
}

.language-toggle {
  border-color: var(--tabei-line);
  background: rgba(255, 255, 255, 0.08);
}

.language-toggle button {
  color: var(--tabei-muted);
}

.language-toggle button.is-active {
  color: var(--tabei-navy);
  background: var(--tabei-white);
}

.site-header .button-primary {
  color: var(--tabei-white);
  background: var(--tabei-teal);
}

.site-header .button-primary:hover,
.site-header .button-primary:focus-visible {
  background: var(--tabei-teal-hover);
}

.nav-toggle {
  border-color: var(--tabei-line);
  color: var(--tabei-white);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  color: var(--tabei-white);
  background:
    radial-gradient(circle at 82% 22%, rgba(21, 151, 167, 0.34), transparent 28%),
    radial-gradient(circle at 16% 22%, rgba(158, 219, 225, 0.16), transparent 34%),
    linear-gradient(135deg, var(--tabei-navy) 0%, var(--tabei-navy-2) 52%, var(--bg-deep) 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: var(--tabei-line);
}

.hero .eyebrow,
.hero .panel-kicker {
  color: var(--tabei-cyan);
}

.hero h1,
.hero-subtitle {
  color: var(--tabei-white);
}

.hero-lede {
  color: var(--tabei-muted);
}

.hero-meta span {
  color: var(--tabei-white);
  border-color: var(--tabei-line);
  background: rgba(255, 255, 255, 0.08);
}

.hero .button-primary {
  color: var(--tabei-white);
  background: var(--tabei-teal);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: var(--tabei-teal-hover);
}

.hero-panel {
  color: var(--tabei-white);
  border-color: var(--tabei-line);
  border-left-color: var(--tabei-cyan);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel h2 {
  color: var(--tabei-white);
}

.trust-list li {
  color: var(--tabei-muted);
  border-color: var(--tabei-line);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 820px) {
  .nav-panel {
    background: linear-gradient(180deg, rgba(11, 48, 66, 0.99), rgba(16, 63, 80, 0.99));
    border-color: var(--tabei-line);
    box-shadow: 0 18px 42px rgba(3, 22, 32, 0.26);
  }

  .header-actions {
    border-top-color: var(--tabei-line);
  }
}

/* KV visual system: Trustworthy AI Hackathon 2026 */
:root {
  --navy-900: #0A1A2F;
  --navy-800: #0C1A2B;
  --navy-700: #0F2540;
  --cyan-400: #39C2E0;
  --cyan-300: #6FE0F2;
  --gold-400: #FFD15C;
  --gold-500: #F2B840;
  --text-100: #FFFFFF;
  --text-300: #A9C0D6;
  --bg-deep: var(--navy-900);
  --bg: var(--navy-800);
  --brand: var(--cyan-400);
  --brand-2: var(--cyan-300);
  --brand-bright: var(--cyan-300);
  --accent: var(--gold-400);
  --accent-2: var(--gold-500);
  --text: var(--text-100);
  --text-muted: var(--text-300);
  --card-bg: rgba(15,37,64,0.55);
  --card-border: rgba(57,194,224,0.30);
  --glow: 0 0 24px rgba(57,194,224,0.35);
  --navy: var(--navy-900);
  --teal: var(--cyan-400);
  --gold: var(--gold-400);
  --bg-dark: var(--navy-900);
  --bg-soft: rgba(57,194,224,0.06);
  --ink: var(--text-100);
  --ink-soft: var(--text-300);
  --primary: var(--gold-400);
  --primary-dark: var(--gold-500);
  --trust: var(--cyan-400);
  --award: var(--gold-400);
  --line: var(--card-border);
  --line-dark: var(--card-border);
  --shadow: none;
  --shadow-soft: var(--glow);
  --radius: 12px;
  --radius-sm: 12px;
  --brand-deep: var(--navy-800);
  --brand-teal: var(--cyan-400);
  --brand-cyan: var(--cyan-300);
  --brand-ice: rgba(57,194,224,0.08);
  --paper: var(--navy-900);
  --surface: rgba(57,194,224,0.06);
  --muted: var(--text-300);
  --danger: var(--gold-400);
  --award-accent: var(--gold-400);
  --tabei-navy: var(--navy-900);
  --tabei-navy-2: var(--navy-800);
  --tabei-teal: var(--cyan-400);
  --tabei-teal-hover: var(--cyan-300);
  --tabei-cyan: var(--cyan-300);
  --tabei-white: var(--text-100);
  --tabei-muted: var(--text-300);
  --tabei-line: var(--card-border);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(79,195,247,0.14), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(245,227,163,0.08), transparent 26%),
    linear-gradient(180deg, var(--bg-deep), var(--bg));
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(79,195,247,0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,195,247,0.55) 1px, transparent 1px);
  background-size: 42px 42px;
}

.site-header,
.site-header.is-solid,
.site-header.is-open {
  color: var(--text);
  background: rgba(7,21,40,0.9);
  border-bottom: 1px solid var(--card-border);
  box-shadow: none;
}

.site-nav,
.site-nav a,
.brand small {
  color: var(--text-muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.contact-card a:not(.button),
.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: var(--brand-bright);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(139,224,255,0.55);
}

.language-toggle,
.nav-toggle {
  border-color: var(--card-border);
  background: rgba(20,45,80,0.55);
}

.language-toggle button {
  color: var(--text-muted);
}

.language-toggle button.is-active {
  color: var(--bg-deep);
  background: var(--brand-bright);
}

.nav-toggle span:not(.sr-only) {
  background: var(--text);
}

.button-primary,
.site-header .button-primary,
.hero .button-primary,
.footer-form button {
  color: var(--bg-deep);
  background: var(--accent);
  box-shadow: 0 0 24px rgba(255,209,92,0.28);
}

.button-primary:hover,
.button-primary:focus-visible,
.site-header .button-primary:hover,
.site-header .button-primary:focus-visible,
.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.footer-form button:hover,
.footer-form button:focus-visible {
  color: var(--bg-deep);
  background: var(--accent-2);
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(255,209,92,0.38);
}

.button-secondary,
.hero .button-secondary,
.partner-cta .button-secondary {
  color: var(--text);
  background: rgba(20,45,80,0.55);
  border-color: var(--card-border);
}

.hero {
  min-height: 760px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(7,21,40,0.72), rgba(7,21,40,0.35)),
    url("./assets/hero-kv.jpg") center / cover no-repeat,
    radial-gradient(circle at 70% 42%, rgba(79,195,247,0.26), transparent 32%),
    linear-gradient(135deg, var(--bg-deep), var(--bg));
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(79,195,247,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,195,247,0.08) 1px, transparent 1px);
  background-size: 46px 46px;
}

.hero::after {
  background: var(--card-border);
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 720px);
  justify-content: start;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  color: var(--text);
  text-shadow: 0 0 28px rgba(79,195,247,0.42);
}

.hero-subtitle,
.hero-lede,
.section-heading p:not(.section-kicker),
.feature-card p,
.minimum-card p,
.track-card dd,
.info-card li,
.workshop-card p,
.contact-card p,
.faq-list p,
.timeline span,
.value-card p,
.partner-group p,
.muted {
  color: var(--text-muted);
}

.hero-meta span {
  color: var(--text);
  background: rgba(20,45,80,0.58);
  border-color: var(--card-border);
  backdrop-filter: blur(10px);
}

.hero-meta span:first-child {
  color: var(--accent);
  border-color: rgba(245,227,163,0.45);
  text-shadow: 0 0 18px rgba(245,227,163,0.28);
}

.hero-panel,
.prose-card,
.feature-card,
.track-card,
.info-card,
.score-card,
.prize-card,
.workshop-card,
.partner-group,
.contact-card,
.value-card,
.faq-list details,
.vc-flow span,
.day-card,
.foundation-group,
.minimum-card,
.stat-grid div,
.subscribe-form,
.partner-box {
  color: var(--text);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  box-shadow: none;
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.feature-card:hover,
.track-card:hover,
.info-card:hover,
.score-card:hover,
.prize-card:hover,
.workshop-card:hover,
.partner-group:hover,
.contact-card:hover,
.value-card:hover,
.minimum-card:hover,
.day-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: var(--glow);
}

.section,
.section-soft,
.partner-cta,
.contact-section {
  background: transparent;
}

.section-kicker,
.eyebrow,
.panel-kicker,
.award-label,
.day-card span,
.workshop-card span,
.timeline time {
  color: var(--accent);
}

.section-heading h2,
.feature-card h3,
.minimum-card h3,
.track-card h3,
.info-card h3,
.score-card h3,
.prize-card h3,
.workshop-card h3,
.partner-group h3,
.contact-card h3,
.foundation-group > h3,
.trust-group h3,
.hero-panel h2 {
  color: var(--text);
}

.stat-grid {
  border-color: var(--card-border);
}

.stat-grid strong,
.score-row strong,
.value-card h3 {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(255,209,92,0.28);
}

#prizes .section-heading p,
.prize-amount,
.prize-total {
  color: var(--accent);
}

.score-row {
  position: relative;
  border-top-color: var(--card-border);
}

.score-row::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  opacity: 0.65;
}

.trust-list li,
.trust-list-secondary li,
.pill-row span,
.workshop-card span,
.timeline time,
.partner-box span,
.question-grid span {
  color: var(--text);
  background: rgba(20,45,80,0.55);
  border-color: var(--card-border);
}

.track-icon,
.feature-icon,
.minimum-card span {
  color: var(--brand-bright);
  background: rgba(79,195,247,0.1);
  border: 1px solid var(--card-border);
  box-shadow: var(--glow);
}

.feature-icon svg,
.minimum-card span svg,
.track-icon svg,
.card-icon {
  stroke: currentColor;
  fill: none;
  filter: drop-shadow(0 0 8px rgba(79,195,247,0.38));
}

.track-card,
.minimum-card {
  position: relative;
  overflow: hidden;
}

.track-card::before,
.track-card::after,
.minimum-card::before,
.minimum-card::after {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  content: "";
  opacity: 0.9;
}

.track-card::before,
.minimum-card::before {
  top: 12px;
  left: 12px;
  border-top: 2px solid var(--brand-bright);
  border-left: 2px solid var(--brand-bright);
}

.track-card::after,
.minimum-card::after {
  right: 12px;
  bottom: 12px;
  border-right: 2px solid var(--brand-bright);
  border-bottom: 2px solid var(--brand-bright);
}

.callout {
  color: var(--accent);
  background: rgba(245,227,163,0.12);
  border-left-color: var(--accent);
}

.input-row input,
.footer-form input {
  color: var(--text);
  background: var(--card-bg);
  border-color: var(--card-border);
}

.input-row input::placeholder,
.footer-form input::placeholder {
  color: var(--text-muted);
}

.site-footer {
  color: var(--text);
  background: var(--bg-deep);
  border-top: 1px solid var(--card-border);
}

.footer-logo-row img:first-child {
  background: transparent;
}

.footer-links a,
.footer-bottom {
  color: var(--text-muted);
}

@media (max-width: 820px) {
  .nav-panel {
    background: rgba(7,21,40,0.96);
    border-color: var(--card-border);
    box-shadow: var(--glow);
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(7,21,40,0.82), rgba(7,21,40,0.42)),
      url("./assets/hero-kv.jpg") center center / cover no-repeat,
      linear-gradient(135deg, var(--bg-deep), var(--bg));
  }
}

@media (max-width: 560px) {
  .hero {
    background-position: center center;
  }
}

/* Roadmap vertical spine */
.timeline{
  counter-reset:timeline-step; position:relative;
  display:flex; flex-direction:column; gap:4px;
  max-width:720px; margin:10px 0 0; padding:6px 0; border:0; background:none;
}
.timeline::before{
  content:""; position:absolute; left:19px; top:22px; bottom:22px;
  width:2px; border-radius:2px;
  background:linear-gradient(180deg,var(--cyan-400) 0%,var(--cyan-300) 45%,var(--gold-400) 100%);
  opacity:.6;
}
.timeline-step{
  counter-increment:timeline-step; list-style:none; position:relative;
  display:flex; align-items:center; flex-wrap:wrap; gap:14px;
  min-height:auto; margin:0; padding:15px 18px 15px 52px;
  border:1px solid transparent; border-radius:12px; background:none; box-shadow:none;
  transition:background .18s ease,border-color .18s ease;
}
.timeline-step:hover{
  background:linear-gradient(180deg,rgba(79,195,247,.06),rgba(15,37,64,.5));
  border-color:var(--card-border);
}
.timeline-step::before{
  content:""; position:absolute; left:13px; top:50%; transform:translateY(-50%);
  width:14px; height:14px; border-radius:999px;
  background:var(--cyan-400); border:3px solid var(--navy-900);
  box-shadow:0 0 0 2px rgba(57,194,224,.35); z-index:1;
}
.timeline-step::after{display:none;}
.timeline-prep::before {background:var(--cyan-300); box-shadow:0 0 0 2px rgba(111,224,242,.35);}
.timeline-event::before{background:var(--gold-400); box-shadow:0 0 0 2px rgba(255,209,92,.4);}
.timeline-step time{
  flex:0 0 auto; display:inline-flex; align-items:center; justify-content:center;
  min-width:104px; min-height:34px; padding:6px 14px; border-radius:999px;
  border:1px solid rgba(255,209,92,.32); color:var(--gold-400); background:rgba(255,209,92,.08);
  font-weight:900; line-height:1;
}
.timeline-step span{flex:1 1 200px; color:var(--text); font-size:1.05rem; font-weight:800; line-height:1.4;}
.timeline-step:nth-child(3)::before,
.timeline-step:last-child::before{
  width:18px; height:18px; left:11px; background:var(--gold-400);
  box-shadow:0 0 0 3px rgba(255,209,92,.25),0 0 16px rgba(255,209,92,.45);
}
.timeline-step:nth-child(3) time,
.timeline-step:last-child time{color:var(--navy-900); background:var(--gold-400); border-color:var(--gold-400);}
.timeline-status{margin:2px 0 16px; color:var(--cyan-300); font-weight:800; font-size:.98rem;}
.timeline-step.is-past{opacity:.48;}
.timeline-step.is-past:nth-child(3),
.timeline-step.is-past:last-child{opacity:1;}
.timeline-step.is-past:not(:nth-child(3)):not(:last-child)::before{background:var(--card-border)!important; box-shadow:none!important;}
.timeline-step.is-next{
  border-color:var(--cyan-400);
  background:linear-gradient(180deg,rgba(57,194,224,.16),rgba(15,37,64,.55));
  box-shadow:0 0 0 1px rgba(57,194,224,.55),0 0 26px rgba(57,194,224,.30);
}
.timeline-step.is-next::before{
  width:18px; height:18px; left:11px;
  background:var(--cyan-400);
  box-shadow:0 0 0 5px rgba(57,194,224,.30),0 0 22px rgba(57,194,224,.9);
  animation:tlPulse 1.6s ease-in-out infinite;
}
@keyframes tlPulse{0%,100%{transform:translateY(-50%) scale(1);}50%{transform:translateY(-50%) scale(1.28);}}
@media (max-width:600px){
  .timeline{max-width:none;}
  .timeline-step{padding:13px 14px 13px 48px; gap:10px;}
  .timeline-step time{min-width:0;}
  .timeline-step span{flex-basis:140px;}
}
/* Hero KV should remain readable; the KV already contains the event title/date. */
.hero {
  min-height: calc(56.25vw + 154px);
  padding: 0;
  background:
    linear-gradient(180deg, rgba(7,21,40,0.04), rgba(7,21,40,0.22)),
    url("./assets/hero-kv.jpg") center 74px / 100% auto no-repeat,
    linear-gradient(135deg, var(--bg-deep), var(--bg));
}

.hero::before {
  opacity: 0.18;
}

.hero-grid {
  min-height: inherit;
  display: block;
}

.hero-copy {
  position: relative;
  min-height: inherit;
  max-width: none;
}

.hero .eyebrow,
.hero h1,
.hero-subtitle,
.hero-lede,
.hero-meta {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-cta {
  display: none;
}

.hero-cta .button {
  min-width: 148px;
  justify-content: center;
}

@media (max-width: 820px) {
  .hero {
    min-height: calc(56.25vw + 64px);
    background:
      linear-gradient(180deg, rgba(7,21,40,0.04), rgba(7,21,40,0.26)),
      url("./assets/hero-kv.jpg") center 64px / 100% auto no-repeat,
      linear-gradient(135deg, var(--bg-deep), var(--bg));
  }
}

/* Prize podium */
.prize-podium{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.18fr) minmax(0,.9fr);
  align-items:end; max-width:1040px; gap:18px; margin-top:34px; border:0;
}
.prize-podium .prize-card{
  position:relative; display:grid; align-content:center; gap:12px;
  padding:30px 22px; min-height:210px; text-align:center; color:var(--text);
  border:1px solid var(--card-border); border-radius:16px;
  background:linear-gradient(180deg,rgba(79,195,247,.08),rgba(15,37,64,.72)),rgba(15,37,64,.72);
  box-shadow:0 18px 46px rgba(0,0,0,.18); backdrop-filter:blur(12px); overflow:hidden;
}
.prize-runner{order:1; min-height:216px;}
.prize-third {order:3; min-height:216px;}
.prize-main{
  order:2; min-height:288px; border-color:rgba(255,209,92,.7);
  background:radial-gradient(circle at 50% 0%,rgba(255,209,92,.24),transparent 55%),rgba(15,37,64,.82);
  box-shadow:0 0 42px rgba(255,209,92,.2);
}
.prize-main::before{
  content:"CHAMPION"; position:absolute; top:14px; left:50%; transform:translateX(-50%);
  padding:3px 12px; border-radius:999px; font-size:.68rem; font-weight:900; letter-spacing:.12em;
  color:var(--navy-900); background:var(--gold-400); box-shadow:0 0 18px rgba(255,209,92,.4);
}
.prize-runner::before, .prize-third::before{content:none;}
.prize-podium h3{margin:0; color:var(--text); font-size:clamp(1.4rem,2vw,1.9rem);}
.prize-main h3{padding-top:18px; font-size:clamp(1.7rem,2.4vw,2.3rem);}
.prize-podium .prize-amount{
  margin:0; white-space:nowrap; color:var(--gold-400); font-weight:900;
  font-size:clamp(1.7rem,2.6vw,2.4rem); text-shadow:0 0 22px rgba(255,209,92,.26);
}
.prize-main .prize-amount{font-size:clamp(2.1rem,3.4vw,3.1rem);}
.prize-podium .prize-card>p:not(.prize-amount){margin:0; color:var(--text-muted); font-weight:800;}
@media (max-width:760px){
  .prize-podium{grid-template-columns:1fr;}
  .prize-main,.prize-runner,.prize-third{order:initial; min-height:170px;}
  .prize-main::before{position:static; transform:none; display:inline-block; margin:0 auto 6px;}
  .prize-main h3{padding-top:0;}
}

/* 2026 IA refresh */
.header-actions {
  align-items: center;
}

.header-actions .button-small,
.language-toggle {
  min-height: 40px;
  height: 40px;
  border-radius: 999px;
}

.header-actions .button-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 0;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
}

.language-toggle button {
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
}

#hero .hero-cta {
  position: relative;
  z-index: 2;
  left: auto;
  bottom: auto;
  transform: none;
  display: flex;
  justify-content: center;
  gap: 12px;
  width: min(92vw, 520px);
  margin: calc(56.25vw + 88px) auto 0;
}

#hero .hero-grid,
#hero .hero-copy {
  min-height: 0;
}

#hero .hero-copy {
  padding-bottom: 34px;
}

#hero .hero-cta .button {
  min-height: 44px;
  box-shadow: 0 0 20px rgba(7, 21, 40, 0.35);
}

.compact-section {
  padding-block: 0;
}

.why-brief {
  max-width: 900px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.question-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.question-pills span {
  width: auto;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.prize-total {
  margin: 10px 0 0;
  color: var(--gold-400);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 32px rgba(255, 209, 92, 0.28);
}

.prize-total-note {
  margin: 12px 0 0;
  color: var(--cyan-300);
  font-weight: 800;
}

@media (min-width: 768px) {
  .timeline {
    counter-reset: timeline-step;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    max-width: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    margin: 26px 0 0;
    padding: 18px 0 22px;
    border: 0;
    background: none;
    scrollbar-width: thin;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 52px;
    right: 52px;
    top: 72px;
    bottom: auto;
    width: auto;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--cyan-400), var(--cyan-300), var(--gold-400));
    opacity: 0.72;
  }

  .timeline-step {
    counter-increment: timeline-step;
    list-style: none;
    position: relative;
    flex: 1 0 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 58px;
    min-height: 132px;
    margin: 0;
    padding: 0 8px 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: none;
    box-shadow: none;
    text-align: center;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  }

  .timeline-step:hover,
  .timeline-step.is-next {
    background: linear-gradient(180deg, rgba(57, 194, 224, 0.14), rgba(15, 37, 64, 0.46));
    border-color: var(--card-border);
  }

  .timeline-step::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 48px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--cyan-400);
    border: 3px solid var(--navy-900);
    box-shadow: 0 0 0 2px rgba(57, 194, 224, 0.35);
    z-index: 1;
  }

  .timeline-step::after {
    display: none;
  }

  .timeline-prep::before {
    background: var(--cyan-300);
    box-shadow: 0 0 0 2px rgba(111, 224, 242, 0.35);
  }

  .timeline-event::before {
    background: var(--gold-400);
    box-shadow: 0 0 0 2px rgba(255, 209, 92, 0.4);
  }

  .timeline-step time {
    order: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 209, 92, 0.32);
    color: var(--gold-400);
    background: rgba(255, 209, 92, 0.08);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
  }

  .timeline-step span {
    order: 2;
    max-width: 128px;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.35;
  }

  .timeline-step:nth-child(3)::before,
  .timeline-step:last-child::before {
    width: 18px;
    height: 18px;
    top: 46px;
    background: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(255, 209, 92, 0.25), 0 0 16px rgba(255, 209, 92, 0.45);
  }

  .timeline-step:nth-child(3) time,
  .timeline-step:last-child time {
    color: var(--navy-900);
    background: var(--gold-400);
    border-color: var(--gold-400);
  }

  .timeline-step.is-past {
    opacity: 0.5;
  }

  .timeline-step.is-past:nth-child(3),
  .timeline-step.is-past:last-child {
    opacity: 1;
  }

  .timeline-step.is-past:not(:nth-child(3)):not(:last-child)::before {
    background: var(--card-border) !important;
    box-shadow: none !important;
  }

  .timeline-step.is-next {
    border-color: var(--cyan-400);
    box-shadow: 0 0 0 1px rgba(57, 194, 224, 0.5), 0 0 26px rgba(57, 194, 224, 0.28);
  }

  .timeline-step.is-next::before {
    width: 20px;
    height: 20px;
    top: 45px;
    background: var(--cyan-400);
    box-shadow: 0 0 0 5px rgba(57, 194, 224, 0.3), 0 0 22px rgba(57, 194, 224, 0.85);
    animation: tlPulseHorizontal 1.6s ease-in-out infinite;
  }
}

@keyframes tlPulseHorizontal {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.28);
  }
}

.timeline-status {
  margin: 2px 0 16px;
  color: var(--cyan-300);
  font-weight: 800;
  font-size: 0.98rem;
}

.info-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.info-feature-grid .feature-card,
.day-card,
.workshop-card,
.info-card,
.minimum-card,
.track-card {
  padding: 20px;
}

.info-feature-grid .feature-card p,
.track-card dd,
.minimum-card p,
.workshop-card p,
.info-card li {
  font-size: 0.92rem;
  line-height: 1.55;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title-row h3 {
  margin: 0;
}

#tracks .track-card h3,
.trust-grid h3 {
  font-size: 1.18rem;
}

#tracks .track-icon,
.trust-grid .card-title-row span {
  flex: 0 0 auto;
}

#tracks .track-card dl {
  margin-top: 16px;
  gap: 8px;
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin: 10px auto 14px;
  color: var(--text-muted);
  font-weight: 700;
}

.contact-inline a,
.footer-contact a {
  color: var(--cyan-300);
  text-decoration: underline;
  text-underline-offset: 4px;
}

#rules .cta-row {
  justify-content: center;
  margin-bottom: 18px;
}

.trust-summary {
  margin-top: 34px;
  max-width: 920px;
}

.trust-summary h3 {
  margin-bottom: 8px;
  color: var(--text);
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.foundation-explain,
.callout {
  max-width: 920px;
}

.workshop-grid-conservative {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-contact {
  margin-top: 10px;
  font-weight: 800;
}

.footer-logo-row img,
.footer-logo-row img:first-child {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 1100px) {
  .info-feature-grid,
  .trust-grid,
  .workshop-grid-conservative {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .header-actions .button-small,
  .language-toggle {
    height: 38px;
    min-height: 38px;
  }

  #hero .hero-cta {
    bottom: auto;
    width: calc(100vw - 28px);
    gap: 8px;
    margin-top: calc(56.25vw + 78px);
  }

  #hero .hero-cta .button {
    min-width: 0;
    flex: 1 1 0;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .info-feature-grid,
  .trust-grid,
  .workshop-grid-conservative {
    grid-template-columns: 1fr;
  }

  .timeline {
    counter-reset: timeline-step;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: none;
    margin: 10px 0 0;
    padding: 6px 0;
    border: 0;
    background: none;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    height: auto;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--cyan-400) 0%, var(--cyan-300) 45%, var(--gold-400) 100%);
    opacity: 0.6;
  }

  .timeline-step {
    counter-increment: timeline-step;
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: auto;
    margin: 0;
    padding: 13px 14px 13px 48px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: none;
    box-shadow: none;
    text-align: left;
  }

  .timeline-step::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--cyan-400);
    border: 3px solid var(--navy-900);
    box-shadow: 0 0 0 2px rgba(57, 194, 224, 0.35);
    z-index: 1;
  }

  .timeline-step time {
    min-width: 0;
  }

  .timeline-step span {
    flex: 1 1 140px;
    max-width: none;
    font-size: 1rem;
  }

  .timeline-step:nth-child(3)::before,
  .timeline-step:last-child::before,
  .timeline-step.is-next::before {
    top: 50%;
    left: 11px;
    transform: translateY(-50%);
  }

  .timeline-step.is-next::before {
    animation: tlPulse 1.6s ease-in-out infinite;
  }
}

/* ============================================================
   BUILDMODE refresh: countdown / stat band / marquee /
   track accordion / benefits / partners coming-soon / venue
   ============================================================ */

/* A-2 Hero tagline — first visible element of the hero bottom cluster;
   carries the margin that clears the full-width KV image (16:9 = 56.25vw). */
.hero .hero-tagline {
  position: relative;
  z-index: 2;
  width: min(92vw, 520px);
  margin: calc(56.25vw + 88px) auto 0;
  text-align: center;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text-100);
}
/* CTA already reserved KV clearance; the tagline now does, so pull CTA up. */
#hero .hero-cta {
  margin-top: 20px;
}

/* A-1 Countdown — sits between tagline and CTA, centered, below the KV. */
.hero .countdown {
  position: relative;
  z-index: 2;
  width: min(92vw, 520px);
  margin: 18px auto 4px;
}
.countdown-label {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 6px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}
.countdown-num {
  font-size: clamp(1.6rem, 4.4vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--gold-400);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.countdown-unit {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* B-1 Stat band */
.statband-section {
  padding: 22px 0 10px;
}
.statband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}
.statband-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 10px;
  border-left: 2px solid rgba(57, 194, 224, 0.28);
  transition: transform 180ms ease, border-color 180ms ease;
}
.statband-item:hover {
  transform: translateY(-2px);
  border-left-color: var(--gold-400);
}
.statband-num {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gold-400);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.statband-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* B-2 Role marquee */
.role-marquee {
  margin-top: 14px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.role-marquee-track {
  display: flex;
  width: max-content;
  animation: roleMarquee 42s linear infinite;
}
.role-marquee:hover .role-marquee-track {
  animation-play-state: paused;
}
.role-marquee-group {
  white-space: nowrap;
  padding-right: 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
@keyframes roleMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* C-1 Track accordion */
.track-accordion {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.track-accordion .track-card {
  padding: 0;
  overflow: hidden;
}
.track-accordion summary {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}
.track-accordion summary::-webkit-details-marker {
  display: none;
}
.track-index {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--gold-400);
  font-variant-numeric: tabular-nums;
}
.track-accordion .track-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}
.track-accordion .track-icon svg {
  width: 22px;
  height: 22px;
}
.track-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.track-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-100);
}
.track-summary {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
}
.track-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 200ms ease;
  align-self: center;
}
.track-accordion .track-card[open] .track-chevron {
  transform: rotate(225deg);
}
.track-accordion .track-card[open] {
  border-color: var(--cyan-400);
}
.track-accordion dl {
  margin: 0;
  padding: 0 18px 18px;
  border-top: 1px solid var(--card-border);
  padding-top: 14px;
}

/* E Benefits grid */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit-card {
  padding: 20px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
  transition: transform 180ms ease, border-color 180ms ease;
}
.benefit-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan-400);
}
.benefit-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 10px;
  color: var(--cyan-400);
  background: rgba(57, 194, 224, 0.08);
}
.benefit-icon svg {
  width: 24px;
  height: 24px;
}
.benefit-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--text-100);
}
.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* F Partners Coming Soon */
.partner-groups-soon .partner-group {
  text-align: center;
  padding: 28px 20px;
}
.partner-soon {
  margin: 6px 0 4px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--gold-400);
}
.partner-pending {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.partner-logos:empty {
  display: none;
}

/* G Venue */
.venue-card {
  max-width: 620px;
  padding: 24px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}
.venue-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.venue-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--cyan-400);
  background: rgba(57, 194, 224, 0.08);
}
.venue-icon svg {
  width: 24px;
  height: 24px;
}
.venue-name {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-100);
}
.venue-pending {
  margin: 0 0 16px;
}
.button.is-pending {
  display: inline-block;
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 820px) {
  /* Mobile KV image is offset 64px from top; mirror the CTA clearance math. */
  .hero .hero-tagline {
    margin-top: calc(56.25vw + 78px);
    width: calc(100vw - 28px);
  }
  .hero .countdown {
    width: calc(100vw - 28px);
  }
}
@media (max-width: 900px) {
  .track-accordion {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .statband {
    grid-template-columns: repeat(2, 1fr);
  }
  .countdown-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .track-accordion {
    grid-template-columns: 1fr;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Respect reduced motion: static wrapped role list, no scroll */
@media (prefers-reduced-motion: reduce) {
  .role-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .role-marquee-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 0;
  }
  .role-marquee-group[aria-hidden="true"] {
    display: none;
  }
  .role-marquee-group {
    padding-right: 0;
    white-space: normal;
    text-align: center;
  }
}
