:root {
  --navy: #061225;
  --navy-2: #091a33;
  --blue: #0ca7ff;
  --cyan: #62dcff;
  --yellow: #ffcf24;
  --white: #f7fbff;
  --muted: #9baabd;
  --line: rgba(98, 220, 255, 0.2);
  --display: "Chakra Petch", "Noto Sans TC", sans-serif;
  --body: "Noto Sans TC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--navy);
  font-family: var(--body);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.energy-line {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 101;
  background: linear-gradient(90deg, transparent, var(--blue), var(--yellow), transparent);
  transform-origin: left; animation: energy 7s linear infinite;
}
@keyframes energy { 0% { transform: scaleX(.05) translateX(-20%); } 50% { transform: scaleX(1); } 100% { transform: scaleX(.05) translateX(2000%); } }

.site-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  height: 92px; padding: 0 clamp(24px, 5vw, 80px);
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark, .footer-logo span {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 2px solid var(--cyan); color: var(--yellow); font: 800 22px var(--display);
  transform: skew(-9deg); box-shadow: 0 0 18px rgba(12,167,255,.35), inset 0 0 15px rgba(12,167,255,.2);
}
.brand b { display: block; font-weight: 900; letter-spacing: .08em; }
.brand small { display: block; font: 600 9px var(--display); color: var(--cyan); letter-spacing: .22em; margin-top: 2px; }
.site-nav nav { display: flex; gap: 36px; font-size: 14px; font-weight: 600; }
.site-nav nav a { color: #cad6e4; transition: color .2s; }
.site-nav nav a:hover { color: var(--yellow); }
.nav-cta { padding: 11px 22px; background: var(--yellow); color: #08111d; font-weight: 800; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%); }

.hero { min-height: 820px; height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0; background: url("assets/hero-battle-tops-v4.png") 56% center / cover no-repeat;
  transform: scale(1.05); animation: heroZoom 9s cubic-bezier(.18,.8,.18,1) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,12,28,.97) 0%, rgba(4,12,28,.84) 30%, rgba(4,12,28,.22) 62%, rgba(4,12,28,.18)), linear-gradient(0deg, var(--navy) 0%, transparent 24%); }
.hero::after { content:""; position:absolute; inset: 0; opacity:.25; background-image: linear-gradient(rgba(75,190,255,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(75,190,255,.09) 1px,transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 70%); }
.battle-fx { position:absolute; z-index:2; inset:0; pointer-events:none; mix-blend-mode:screen; }
.battle-fx::before { content:""; position:absolute; width:170px; height:52px; left:65%; top:57%; border-radius:50%; background:radial-gradient(ellipse,rgba(255,245,189,.95) 0%,rgba(255,170,29,.55) 25%,transparent 72%); filter:blur(5px); transform:translate(-50%,-50%); animation:impactPulse .72s ease-in-out infinite; }
.battle-fx::after { content:""; position:absolute; width:42%; height:2px; left:48%; top:56%; background:linear-gradient(90deg,transparent,rgba(255,226,117,.9),transparent); filter:blur(2px); transform-origin:left center; animation:impactSweep 1.4s ease-in-out infinite; }
.spark { position:absolute; display:block; width:5px; height:30px; border-radius:99px; background:linear-gradient(transparent,#fff9c2 35%,#ffb91e); box-shadow:0 0 10px #ffbd25,0 0 22px #ff8a00; animation:sparkFly 1.1s ease-out infinite; }
.spark-a{left:46%;top:12%;transform:rotate(-28deg);animation-delay:-.2s}.spark-b{left:75%;top:30%;transform:rotate(54deg);animation-delay:-.7s}.spark-c{left:17%;top:39%;transform:rotate(-70deg);animation-delay:-.45s}.spark-d{left:62%;top:68%;transform:rotate(112deg);animation-delay:-.9s}.spark-e{left:30%;top:73%;transform:rotate(-142deg);animation-delay:-.05s}.spark-f{left:58%;top:26%;transform:rotate(18deg);animation-delay:-1.1s}.spark-g{left:81%;top:61%;transform:rotate(128deg);animation-delay:-.35s}.spark-h{left:40%;top:56%;transform:rotate(-96deg);animation-delay:-1.7s}.spark-i{left:70%;top:14%;transform:rotate(76deg);animation-delay:-.8s}.spark-j{left:52%;top:82%;transform:rotate(-18deg);animation-delay:-1.35s}
@keyframes sparkFly { 0%,100%{opacity:0;transform:translate(0,12px) rotate(45deg) scale(.55)} 35%{opacity:1} 78%{opacity:.2;transform:translate(42px,-58px) rotate(45deg) scale(1)} }
@keyframes impactPulse { 0%,100%{opacity:.35;transform:translate(-50%,-50%) scale(.72)} 45%{opacity:1;transform:translate(-50%,-50%) scale(1.18)} }
@keyframes impactSweep { 0%,100%{opacity:0;transform:rotate(-18deg) scaleX(.4)} 45%{opacity:.9;transform:rotate(8deg) scaleX(1)} }
.impact-flare { position:absolute; left:65%; top:57%; width:12px; height:12px; border-radius:50%; background:#fffbd7; box-shadow:0 0 12px 5px #ffd45a,0 0 34px 12px #ff9a1f; animation:impactCore .48s ease-in-out infinite; }
@keyframes impactCore { 0%,100%{opacity:.5;transform:scale(.65)} 50%{opacity:1;transform:scale(1.45)} }
.energy-shard { position:absolute; left:65%; top:57%; width:120px; height:3px; transform-origin:left center; background:linear-gradient(90deg,rgba(255,255,255,.95),rgba(255,194,48,.8),transparent); filter:blur(1px); opacity:0; animation:shardBurst 1.6s cubic-bezier(.16,.8,.3,1) infinite; }
.shard-a{transform:rotate(-40deg);animation-delay:-.1s}.shard-b{transform:rotate(-18deg);animation-delay:-.48s}.shard-c{transform:rotate(21deg);animation-delay:-.86s;background:linear-gradient(90deg,rgba(255,255,255,.95),rgba(54,201,255,.8),transparent)}.shard-d{transform:rotate(47deg);animation-delay:-1.22s;background:linear-gradient(90deg,rgba(255,255,255,.95),rgba(54,201,255,.8),transparent)}
@keyframes shardBurst { 0%{opacity:0;scale:.35;translate:0 0} 18%{opacity:1} 58%{opacity:.45} 100%{opacity:0;scale:1.35;translate:80px 0} }
.hero-content { position: relative; z-index: 3; width: min(1280px, calc(100% - 48px)); margin: 70px auto 0; }
.eyebrow { display: inline-flex; align-items:center; gap:14px; color: var(--yellow); font-weight: 800; letter-spacing: .18em; }
.eyebrow::before { content:""; width: 48px; height: 3px; background: var(--yellow); box-shadow: 0 0 12px var(--yellow); }
.hero h1 { margin: 20px 0 12px; line-height: .9; letter-spacing: -.06em; font-style: italic; }
.hero h1 span { display: block; font-size: clamp(64px, 9vw, 130px); font-weight: 900; text-shadow: 8px 8px 0 rgba(12,167,255,.15); }
.hero h1 strong { display:block; font-size: clamp(54px, 7vw, 100px); color: var(--yellow); font-weight:900; }
.hero-sub { font-size: clamp(18px,2vw,25px); letter-spacing: .12em; color: #dbe8f8; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; }
.button { min-height: 54px; padding: 0 27px; display:inline-flex; align-items:center; justify-content:center; gap:32px; border: 1px solid rgba(255,255,255,.28); font-weight:800; }
.button-primary { background: var(--yellow); border-color: var(--yellow); color: #091424; clip-path: polygon(12px 0,100% 0,calc(100% - 12px) 100%,0 100%); transition: transform .2s, filter .2s; }
.button-primary:hover { transform: translateY(-3px); filter: brightness(1.08); }
.button-ghost { background: rgba(4,16,34,.55); backdrop-filter: blur(8px); }
.hero-meta { display:flex; margin-top: 64px; border-top:1px solid rgba(255,255,255,.18); width:min(680px,100%); padding-top:18px; gap:0; }
.hero-meta div { flex:1; padding-right:24px; margin-right:24px; border-right:1px solid rgba(255,255,255,.18); }
.hero-meta div:last-child { border:0; }
.hero-meta span { display:block; font:600 10px var(--display); color:var(--cyan); letter-spacing:.18em; }
.hero-meta b { display:block; font:600 15px var(--display); margin-top:5px; }
.scroll-cue { position:absolute; z-index:4; right:4vw; bottom:30px; font:600 9px var(--display); letter-spacing:.18em; color:#9db3ca; writing-mode:vertical-rl; display:flex; align-items:center; gap:10px; }
.scroll-cue span { width:1px; height:46px; background:linear-gradient(var(--cyan),transparent); }
@keyframes spin { to { transform: rotate(360deg); } }

.section { padding: 110px max(24px, calc((100vw - 1280px)/2)); }
.section-kicker { font: 700 12px var(--display); color: var(--cyan); letter-spacing: .22em; text-transform:uppercase; margin-bottom:30px; }
.section h2 { margin:0; font-size:clamp(38px,5vw,68px); line-height:1.15; letter-spacing:-.04em; }
.section h2 strong { color:var(--yellow); }
.intro-section { position:relative; background:linear-gradient(180deg,#061225,#081a32); }
.intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:8vw; align-items:end; }
.intro-copy p { color:#b9c7d7; font-size:17px; line-height:2; margin:0; }
.capacity { display:grid;grid-template-columns:auto 1fr auto;gap:14px;align-items:center;margin-top:34px;font-size:12px;color:#9fb0c3; }
.capacity b { height:5px;background:#142941;overflow:hidden; }
.capacity i { display:block;width:40%;height:100%;background:linear-gradient(90deg,var(--blue),var(--yellow));box-shadow:0 0 14px var(--blue); }
.capacity em { color:var(--white);font-style:normal;font-weight:700; }
.feature-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:70px; }
.feature-card { position:relative;min-height:270px;padding:30px;background:linear-gradient(145deg,rgba(13,40,68,.9),rgba(5,19,38,.95));border:1px solid var(--line);overflow:hidden;transition:.35s; }
.feature-card::before { content:"";position:absolute;inset:auto -30% -55% 15%;height:170px;background:radial-gradient(circle,rgba(12,167,255,.25),transparent 65%); }
.feature-card:hover { transform:translateY(-8px);border-color:var(--cyan); }
.feature-card>span { position:absolute;right:20px;top:16px;font:700 12px var(--display);color:#466079; }
.feature-card i { width:55px;height:55px;display:block;border:1px solid rgba(98,220,255,.3);margin-bottom:40px;position:relative; }
.feature-card i::after { content:"";position:absolute;inset:16px;background:var(--yellow);clip-path:polygon(46% 0,100% 0,64% 42%,91% 42%,27% 100%,43% 56%,9% 56%); }
.feature-card:nth-child(2) i::after { clip-path:polygon(15% 10%,85% 10%,80% 55%,60% 70%,60% 88%,77% 88%,77% 100%,23% 100%,23% 88%,40% 88%,40% 70%,20% 55%); }
.feature-card:nth-child(3) i::after { clip-path:polygon(8% 88%,8% 60%,30% 60%,30% 38%,52% 38%,52% 16%,74% 16%,74% 0,100% 0,100% 100%,8% 100%); }
.feature-card:nth-child(3) i::after { clip-path:circle(24% at 35% 30%);box-shadow:15px 2px 0 var(--yellow),8px 18px 0 6px var(--yellow); }
.feature-card h3 { font-size:22px;margin:0 0 12px; }
.feature-card p { color:#9eb0c4;line-height:1.7;font-size:14px;margin:0; }

.facts-section { background:linear-gradient(120deg,rgba(2,10,23,.94),rgba(8,24,45,.78)),url("assets/hero-battle-tops-v4.png") center/cover fixed; }
.facts-panel { background:rgba(4,15,31,.86);backdrop-filter:blur(14px);border:1px solid rgba(98,220,255,.23);padding:clamp(28px,5vw,70px);position:relative; }
.facts-panel::before,.facts-panel::after { content:"";position:absolute;width:70px;height:3px;background:var(--yellow); }
.facts-panel::before { left:-1px;top:-1px; }.facts-panel::after{right:-1px;bottom:-1px;}
.facts-grid { display:grid;grid-template-columns:repeat(3,1fr);margin:52px 0 40px;border-top:1px solid var(--line);border-left:1px solid var(--line); }
.facts-grid div { padding:25px;border-right:1px solid var(--line);border-bottom:1px solid var(--line); }
.facts-grid span,.facts-grid small { display:block;color:#86a0bb;font-size:12px; }
.facts-grid b { display:block;font-size:19px;margin:8px 0; }
.map-link { color:var(--yellow);font-weight:800;display:inline-flex;gap:20px; }

.schedule-section { background:#edf3f6;color:#0b1b2d; }
.schedule-section .section-kicker { color:#087ec0; }
.section-heading { display:flex;align-items:end;justify-content:space-between;gap:40px;margin-bottom:70px; }
.section-heading p { color:#596a79;max-width:430px;line-height:1.8;margin:0; }
.timeline { position:relative;max-width:1040px;margin:auto; }
.timeline::before { content:"";position:absolute;left:214px;top:0;bottom:0;width:1px;background:#b5c5d0; }
.timeline-item { display:grid;grid-template-columns:180px 68px 1fr;gap:0;align-items:center;min-height:112px;border-bottom:1px solid #cfdae1; }
.timeline-item time { font:600 16px var(--display);color:#177bb4; }
.timeline-item>span { position:relative;z-index:1;width:34px;height:34px;display:grid;place-items:center;background:#edf3f6;border:1px solid #9db4c4;border-radius:50%;font:700 11px var(--display); }
.timeline-item div { padding:22px 30px; }
.timeline-item h3 { margin:0 0 7px;font-size:23px; }
.timeline-item p { margin:0;color:#60707c;font-size:14px; }
.timeline-item.featured div { background:#0a91d5;color:white;clip-path:polygon(0 0,100% 0,calc(100% - 18px) 100%,0 100%); }
.timeline-item.featured p { color:#d5f2ff; }
.timeline-item.featured>span { background:var(--yellow);border-color:var(--yellow); }

.prizes-section { background:radial-gradient(circle at 76% 45%,rgba(134,49,255,.22),transparent 35%),linear-gradient(120deg,#071529,#110d28);display:grid;grid-template-columns:.75fr 1.25fr;gap:7vw;align-items:center;overflow:hidden; }
.prize-copy p { color:#aebbd0;line-height:1.8;max-width:430px; }
.podium { display:grid;grid-template-columns:repeat(4,1fr);align-items:end;gap:8px;min-height:390px; }
.podium-item { min-height:180px;padding:24px 10px;text-align:center;background:linear-gradient(180deg,#1d2d4a,#0d182d);border:1px solid rgba(255,255,255,.14);display:flex;flex-direction:column;justify-content:center;align-items:center; }
.podium-item img{width:min(100%,190px);height:125px;object-fit:contain;margin:10px auto 6px;filter:drop-shadow(0 12px 12px rgba(0,0,0,.4));}.podium-item.first img{height:155px;width:min(100%,230px)}.prize-question{font-size:76px!important;line-height:1;color:var(--yellow);text-shadow:0 0 24px rgba(255,207,36,.5);margin:20px 0!important}
.podium-item span { color:#a5b7ce;font-size:14px; }.podium-item b{font-size:20px;margin:10px 0;color:white;}.podium-item small{color:var(--yellow);line-height:1.6;font-size:12px;}
.podium-item.first { min-height:360px;background:linear-gradient(180deg,#493073,#181633);border-color:#8759c6;box-shadow:0 0 45px rgba(133,68,224,.25); }
.podium-item.first::before { content:"★";font-size:50px;color:var(--yellow);text-shadow:0 0 24px var(--yellow);margin-bottom:15px; }
.podium-item.first i { font:600 9px var(--display);letter-spacing:.2em;color:#c99cff; }
.podium-item.second{min-height:285px}.podium-item.third{min-height:235px}.podium-item.fourth{min-height:190px}

.register-section { display:grid;grid-template-columns:.8fr 1.2fr;gap:8vw;background:linear-gradient(135deg,#eaf1f4 0%,#fff 58%);color:#0a1a2b;align-items:start; }
.register-copy { position:static;align-self:start; }
.register-copy .section-kicker{color:#0988c9}.register-copy p{color:#526476;line-height:1.9;font-size:16px;}
.register-copy ul{padding:0;list-style:none;margin-top:35px}.register-copy li{padding:15px 0 15px 28px;border-bottom:1px solid #cad7df;position:relative;color:#42566a}.register-copy li::before{content:"";position:absolute;left:0;top:22px;width:10px;height:10px;background:var(--yellow);transform:rotate(45deg);}
.registration-form { background:white;padding:clamp(25px,4vw,54px);box-shadow:0 25px 70px rgba(21,50,74,.14);border-top:5px solid #0a9dec; }
.form-heading { display:flex;justify-content:space-between;align-items:end;border-bottom:1px solid #d9e2e7;padding-bottom:22px;margin-bottom:28px; }
.form-heading span{font:600 11px var(--display);color:#0889cc;letter-spacing:.16em}.form-heading b{font-size:24px;}
.form-grid { display:grid;grid-template-columns:1fr 1fr;gap:20px; }
.form-grid label>span { display:block;font-size:13px;font-weight:700;margin-bottom:9px;color:#34495c; }
.form-grid input,.form-grid select,.form-grid textarea { width:100%;border:1px solid #cad7df;background:#f7fafb;padding:14px;color:#102437;outline:none;border-radius:0;transition:.2s; }
.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus{border-color:#079fe8;box-shadow:0 0 0 3px rgba(7,159,232,.1);background:white}
.waitlist-box{grid-column:1/-1;margin-top:10px;padding:28px 32px;border:1px solid rgba(255,207,36,.42);background:linear-gradient(135deg,rgba(31,35,18,.8),rgba(7,24,39,.9));box-shadow:0 18px 50px rgba(0,0,0,.2)}
.waitlist-box h3{margin:8px 0;font-size:24px;color:#fff}.waitlist-box>p{color:#a9bac9;margin:0 0 18px}.waitlist-form{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.waitlist-form input:not([type=checkbox]){min-height:46px;padding:0 14px;border:1px solid #415668;background:#fff;color:#102033}.waitlist-form label{grid-column:1/-1;color:#b9c8d6;font-size:13px}.waitlist-form button{justify-self:start;border:0;background:var(--yellow);color:#101b24;padding:13px 18px;font-weight:800}.waitlist-form button:disabled{opacity:.6}.waitlist-form p{grid-column:1/-1;margin:0;color:#ffe57b;min-height:1.2em}
.form-grid input.invalid{border-color:#d6424e;background:#fff5f5;color:#b22835}
.form-grid .full{grid-column:1/-1}.consent{display:flex;gap:10px;align-items:flex-start}.consent input{width:18px;height:18px;accent-color:#0b97dc;flex:0 0 auto;margin-top:2px}.consent span{font-weight:500!important;line-height:1.6;margin:0!important}.hp{position:absolute!important;left:-9999px!important;}
.submit-button { width:100%;border:0;background:#08192b;color:white;display:flex;justify-content:space-between;padding:18px 22px;margin-top:28px;font-weight:800;transition:.25s; }
.submit-button:hover{background:#087ec0}.submit-button i{color:var(--yellow);font-style:normal}.submit-button:disabled{opacity:.55;cursor:wait}
.form-status{min-height:22px;margin:12px 0 0;text-align:center;color:#c42b37;font-size:13px}

footer{padding:55px max(24px,calc((100vw - 1280px)/2));background:#030b16;border-top:1px solid #182b40;color:#8295a9;text-align:center;font-size:13px;}
.unit-credit{display:flex;flex-direction:column;align-items:center;gap:7px;margin-bottom:34px}.unit-credit p{margin:0}.unit-small{font-size:12px;letter-spacing:.08em;color:#91a4b6}.unit-large{font-size:clamp(18px,2.4vw,27px);font-weight:800;letter-spacing:.04em;color:#f4f8ff;text-shadow:0 0 18px rgba(78,205,255,.18)}.unit-large strong{font-size:1.22em;color:#fff;text-shadow:0 0 22px rgba(98,220,255,.45)}
.top-credit{margin:0;padding:28px 24px 34px;background:#030b16;border-top:1px solid #182b40;border-bottom:1px solid #182b40}
.footer-logo{display:flex;align-items:center;justify-content:center;gap:14px;color:white;margin-bottom:25px}.footer-logo span{width:34px;height:34px;font-size:18px}.footer-logo b{font-size:18px;}
footer small{display:block;margin-top:24px;color:#53677c}

dialog{border:1px solid rgba(98,220,255,.35);background:#07172b;color:white;padding:50px;width:min(480px,calc(100% - 32px));text-align:center;box-shadow:0 30px 100px rgba(0,0,0,.6)}
dialog::backdrop{background:rgba(1,7,15,.82);backdrop-filter:blur(5px)}
.dialog-close{position:absolute;right:14px;top:10px;background:none;border:0;color:#8199af;font-size:28px}.success-icon{width:72px;height:72px;border-radius:50%;display:grid;place-items:center;margin:0 auto 20px;border:1px solid var(--cyan);color:var(--yellow);font-size:32px;box-shadow:0 0 30px rgba(12,167,255,.28)}
dialog>span{font:600 10px var(--display);letter-spacing:.2em;color:var(--cyan)}dialog h2{font-size:28px;margin:10px 0}dialog p{color:#a7b7c8;line-height:1.7}.dialog-ok{border:0;margin-top:14px}

.reveal { opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible{opacity:1;transform:none}.feature-card:nth-child(2),.timeline-item:nth-child(2){transition-delay:.08s}.feature-card:nth-child(3),.timeline-item:nth-child(3){transition-delay:.16s}.feature-card:nth-child(4),.timeline-item:nth-child(4){transition-delay:.24s}

@media (max-width: 900px) {
  .site-nav{height:72px}.site-nav nav{display:none}.brand b{font-size:13px}.nav-cta{font-size:13px;padding:9px 15px}
  .hero{min-height:740px}.hero-media{background-position:64% center}.hero-shade{background:linear-gradient(90deg,rgba(4,12,28,.97),rgba(4,12,28,.63) 75%,rgba(4,12,28,.3)),linear-gradient(0deg,var(--navy),transparent 35%)}.hero-content{margin-top:40px}.hero h1 span{font-size:clamp(58px,15vw,90px)}.hero h1 strong{font-size:clamp(46px,12vw,72px)}.hero-meta{margin-top:45px}.scroll-cue{display:none}.hero-top{width:240px}.hero-top-blue{left:42%;top:48%}.hero-top-gold{left:64%;top:45%}
  .section{padding-top:80px;padding-bottom:80px}.intro-grid,.prizes-section,.register-section{grid-template-columns:1fr}.feature-grid{grid-template-columns:1fr 1fr}.facts-grid{grid-template-columns:1fr 1fr}.prizes-section{gap:60px}.register-copy{position:static}
}
@media (max-width: 600px) {
  .site-nav{padding:0 18px}.brand-mark{width:34px;height:34px}.brand small{display:none}
  .hero{height:100svh;min-height:700px}.hero-media{background-position:60% center}.hero-shade{background:linear-gradient(90deg,rgba(4,12,28,.96),rgba(4,12,28,.55)),linear-gradient(0deg,var(--navy),transparent 45%)}.hero-content{width:calc(100% - 36px);padding-top:34px}.eyebrow{font-size:11px}.eyebrow::before{width:24px}.hero-sub{font-size:15px}.hero-actions{flex-direction:column;align-items:stretch;width:250px}.button{min-height:48px}.hero-meta{gap:12px}.hero-meta div{padding:0;margin:0;border:0}.hero-meta b{font-size:11px}.hero-meta span{font-size:8px}.battle-fx{width:220px;height:220px;right:2%;top:59%;opacity:.78}.hero-top{width:170px}.hero-top-blue{left:33%;top:58%}.hero-top-gold{left:57%;top:54%}
  .section{padding-left:20px;padding-right:20px;padding-top:64px;padding-bottom:64px}.section h2{font-size:34px;line-height:1.12}.intro-grid{gap:22px}.feature-grid{grid-template-columns:1fr;gap:10px;margin-top:42px}.feature-card{min-height:0;height:auto;padding:22px 20px 24px}.feature-card i{width:44px;height:44px;margin-bottom:20px}.feature-card i::after{inset:12px}.feature-card h3{font-size:20px;margin-bottom:7px}.feature-card p{font-size:13px;line-height:1.5}.facts-panel{padding:26px 18px}.facts-grid{grid-template-columns:1fr;margin-top:35px}.section-heading{display:block;margin-bottom:36px}.section-heading p{margin-top:14px;line-height:1.6}.timeline::before{left:17px}.timeline-item{grid-template-columns:46px 1fr;min-height:0;padding:15px 0}.timeline-item time{grid-column:2;font-size:13px;padding-left:16px}.timeline-item>span{grid-column:1;grid-row:1/3}.timeline-item div{grid-column:2;padding:7px 16px 14px}.timeline-item h3{font-size:19px}.timeline-item.featured div{clip-path:none}
  .podium{min-height:320px;gap:4px}.podium-item{padding:14px 3px}.podium-item b{font-size:13px}.podium-item.first{min-height:300px}.podium-item.second{min-height:240px}.podium-item.third{min-height:205px}.podium-item.fourth{min-height:175px}
  .form-grid{grid-template-columns:1fr}.form-grid .full{grid-column:auto}.registration-form{padding:28px 20px}.form-heading{display:block}.form-heading span,.form-heading b{display:block}.form-heading b{margin-top:7px}
  .waitlist-box{padding:24px 20px}.waitlist-form{grid-template-columns:1fr}.waitlist-form label,.waitlist-form p{grid-column:auto}.waitlist-form button{width:100%}
  .unit-credit{gap:5px;margin-bottom:28px}.unit-large{font-size:17px;line-height:1.35}.unit-small{font-size:10px}
}
@media (prefers-reduced-motion: reduce) {
  html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}.reveal{opacity:1;transform:none}
}
