/* ON THE EDGE: competition design system.
   Exodust's gold and logo carry the parent identity; everything else is built
   for a televised student competition rather than a consultancy: Anton display
   type at poster scale, a black canvas, a hot flare accent for urgency, a live
   countdown and a running ticker. */

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

:root {
 --ink: #070707;
 --ink-2: #111111;
 --white: #fafaf8;
 --cream: #f4f1eb;
 --gold: #c9a84c;
 --gold-light: #e8d5a3;
 --red: #ff3b14; /* used once, on the word AMBUSH. Not a brand colour. */
 --grey: #6b6b6b;
 --grey-light: #e8e8e4;
 --dim: rgba(255,255,255,0.58);
 --hair: rgba(255,255,255,0.14);
 --display: 'Anton', 'Arial Narrow', Impact, sans-serif;
 --sans: 'DM Sans', -apple-system, Segoe UI, sans-serif;
}

html { scroll-behavior: smooth; }

body {
 font-family: var(--sans);
 background: var(--ink);
 color: var(--white);
 font-weight: 300;
 line-height: 1.6;
 overflow-x: hidden;
 -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--gold); color: var(--ink); padding: 0.8rem 1.4rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.skip-link:focus { left: 0; }

/* Display type. Anton is a single weight; tracking does the work. */
.d1, .d2, .d3 { font-family: var(--display); font-weight: 400; line-height: 0.92; letter-spacing: 0.01em; text-transform: uppercase; }
.d1 { font-size: clamp(3.4rem, 13vw, 11rem); }
.d2 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.d3 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
.gold { color: var(--gold); }
.gold-2 { color: var(--gold-light); }
.ambush { color: var(--red); }
/* Inside a gold section the gold accents would disappear, so they flip. */
.light .gold, .light .gold-2 { color: var(--white); }
.light .eyebrow { color: var(--ink); }
.light .rules .n { color: var(--ink); }
.light .tbd { color: var(--ink); border-color: rgba(0,0,0,0.45); }
.flare { color: var(--gold); }

.eyebrow { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.eyebrow-gold { color: var(--gold); }

.body-text { font-size: 1rem; color: var(--dim); line-height: 1.85; max-width: 60ch; }
.body-text + .body-text { margin-top: 1.1rem; }
.body-text strong { color: var(--white); font-weight: 500; }
.body-text a { color: var(--gold); }

section { padding: 5.5rem 4rem; }
.wrap { max-width: 1240px; margin: 0 auto; }
.light { background: var(--gold); color: var(--ink); }
.light .body-text { color: rgba(0,0,0,0.72); }
.light .body-text strong { color: var(--ink); }
.light .body-text a { color: var(--ink); }

/* ---------------- BACK STRIP + NAV ---------------- */
.back-strip { background: #000; padding: 0.5rem 4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.back-strip img { height: 17px; width: auto; display: block; }
.back-strip a { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none; }
.back-strip a:hover { color: #fff; }

.ote-nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 0.9rem 4rem; background: rgba(7,7,7,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--hair); }
.wordmark { text-decoration: none; display: flex; align-items: baseline; gap: 0.55rem; flex-shrink: 0; }
.wordmark .m { font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.02em; text-transform: uppercase; color: #fff; line-height: 1; }
.wordmark .m em { font-style: normal; color: var(--gold); }
.wordmark .s { font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

.nav-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; }
.nav-links a { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.62); text-decoration: none; padding: 0.35rem 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: #fff; }
.nav-links a[aria-current="page"] { color: #fff; border-bottom-color: var(--gold); }
.nav-links a.nav-cta, .mobile-nav a.nav-cta {
 background: var(--gold); color: var(--ink) !important;
 padding: 0.78rem 1.7rem; border-radius: 2px; border-bottom: none !important;
 font-weight: 500; letter-spacing: 0.16em; line-height: 1;
 display: inline-block; transition: background 0.2s, transform 0.2s;
}
.nav-links a.nav-cta:hover, .mobile-nav a.nav-cta:hover { background: var(--gold-light); color: var(--ink) !important; transform: translateY(-1px); }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; background: none; border: none; cursor: pointer; padding: 0; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; transition: transform 0.3s, opacity 0.2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; position: fixed; inset: 0; z-index: 150; background: var(--ink); flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.mobile-nav a { font-family: var(--display); font-size: 1.7rem; letter-spacing: 0.02em; text-transform: uppercase; color: rgba(255,255,255,0.65); text-decoration: none; }
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: #fff; }
.mobile-nav a.nav-cta { color: var(--ink) !important; padding: 0.95rem 2.4rem; font-family: var(--sans); font-size: 0.85rem; }

/* ---------------- TICKER ---------------- */
.ticker { background: var(--gold); color: var(--ink); overflow: hidden; white-space: nowrap; border-bottom: 1px solid rgba(0,0,0,0.2); }
.ticker-track { display: inline-flex; padding: 0.6rem 0; animation: slide 34s linear infinite; }
.ticker-track span { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; padding: 0 1.4rem; }
.ticker-track span::after { content: '\2022'; margin-left: 1.4rem; opacity: 0.6; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------------- HERO ---------------- */
.hero { position: relative; padding: 4rem 4rem 4.5rem; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -30%; left: 50%; width: 900px; height: 900px; transform: translateX(-50%); background: radial-gradient(circle, rgba(201,168,76,0.17) 0%, transparent 65%); pointer-events: none; }
.hero-inner { position: relative; max-width: 1240px; margin: 0 auto; }
.hero .kicker { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; align-items: center; margin-bottom: 1.6rem; }
.hero .d1 { margin: 0; }
.hero .line-2 { display: block; }
.hero-sub { margin-top: 1.6rem; font-size: 0.82rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.hero-lede { margin-top: 1.7rem; font-size: 1.05rem; color: var(--dim); max-width: 56ch; line-height: 1.8; }

.live-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 0.3rem 0.7rem; border-radius: 2px; font-weight: 500; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------------- COUNTDOWN ---------------- */
.countdown { margin-top: 2.6rem; }
.countdown-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.9rem; }
.cd-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cd-box { background: var(--ink-2); border: 1px solid var(--hair); border-radius: 3px; padding: 0.9rem 0; width: 92px; text-align: center; }
.cd-num { font-family: var(--display); font-size: 2.2rem; line-height: 1; color: #fff; display: block; font-variant-numeric: tabular-nums; }
.cd-unit { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.45rem; display: block; }
.cd-live { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--gold); text-transform: uppercase; }

/* ---------------- BUTTONS ---------------- */
.btn, .btn-line, .btn-gold {
 font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
 font-weight: 500; text-decoration: none; padding: 1.05rem 2.2rem; border-radius: 2px;
 display: inline-block; cursor: pointer; border: 1px solid transparent; transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
}
.btn { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn:hover { background: var(--gold-light); color: var(--ink); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-line { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-line:hover { border-color: #fff; transform: translateY(-2px); }
.light .btn, .light .btn-gold { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.light .btn:hover, .light .btn-gold:hover { background: var(--ink-2); color: var(--gold-light); border-color: var(--ink-2); }
.light .btn-line { color: var(--ink); border-color: rgba(0,0,0,0.4); }
.light .btn-line:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2.4rem; }

/* ---------------- FACTS ---------------- */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.fact { background: var(--ink); padding: 2.2rem 1.5rem; text-align: center; }
.fact-num { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; color: #fff; display: block; }
.fact-num.is-gold, .fact-num.is-prize { color: var(--gold); }
.fact-label { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.7rem; display: block; }

/* ---------------- VS ---------------- */
.vs-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; margin-top: 3rem; }
.vs-team { background: var(--ink-2); border: 1px solid var(--hair); border-radius: 4px; padding: 2.6rem 2rem; text-align: center; position: relative; overflow: hidden; }
.vs-team::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.vs-team:last-of-type::before { background: var(--gold-light); }
.vs-team h3 { font-family: var(--display); font-size: 2rem; text-transform: uppercase; color: #fff; }
.vs-team p { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.5rem; }
.vs-dots { display: flex; justify-content: center; gap: 0.45rem; margin-top: 1.4rem; }
.vs-dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--gold); }
.vs-team:last-of-type .vs-dots span { background: var(--gold-light); }
.vs-mark { font-family: var(--display); font-size: clamp(2rem, 5vw, 3.6rem); color: rgba(255,255,255,0.22); }

/* ---------------- PRIZE ---------------- */
.prize { text-align: center; }
.prize-num { font-family: var(--display); font-size: clamp(4.4rem, 17vw, 13rem); line-height: 0.88; color: var(--gold); display: block; }
.prize-note { font-size: 0.9rem; color: var(--dim); margin-top: 1.4rem; }

/* ---------------- PATH / STAGES ---------------- */
.path { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(0,0,0,0.22); margin-top: 3rem; }

.path-step { background: var(--gold); padding: 2.2rem 1.8rem; position: relative; transition: background 0.25s; }
.path-step:hover { background: var(--gold-light); }
.path-num { font-family: var(--display); font-size: 2.6rem; line-height: 1; color: var(--ink); display: block; }
.path-step h3 { font-family: var(--display); font-size: 1.15rem; text-transform: uppercase; margin: 0.7rem 0 0.6rem; color: var(--ink); letter-spacing: 0.02em; }
.path-step p { font-size: 0.88rem; color: rgba(0,0,0,0.72); line-height: 1.8; }

.stages { margin-top: 3rem; }
.stage { display: grid; grid-template-columns: 110px 1fr; gap: 2rem; padding: 2.4rem 0; border-top: 1px solid var(--hair); }
.stage:last-child { border-bottom: 1px solid var(--hair); }
.stage-num { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 0.9; color: var(--gold); }
.stage h3 { font-family: var(--display); font-size: clamp(1.4rem, 2.6vw, 2rem); text-transform: uppercase; color: #fff; margin-bottom: 0.8rem; letter-spacing: 0.02em; }
.stage p { font-size: 0.95rem; color: var(--dim); line-height: 1.85; max-width: 66ch; }
.stage ul { margin: 1rem 0 0 1.1rem; }
.stage li { font-size: 0.92rem; color: var(--dim); line-height: 1.85; }

/* ---------------- EPISODES ---------------- */
.eps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.ep { background: var(--ink-2); border: 1px solid var(--hair); border-radius: 4px; padding: 1.8rem 1.5rem; transition: border-color 0.25s, transform 0.25s; }
.ep:hover { border-color: var(--gold); transform: translateY(-3px); }
.ep-tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.ep-when { font-family: var(--display); font-size: 1.9rem; text-transform: uppercase; color: #fff; margin-top: 0.6rem; line-height: 1; }
.ep-what { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0.7rem; line-height: 1.7; }
.ep.is-finale { border-color: var(--gold); background: linear-gradient(160deg, rgba(201,168,76,0.16), var(--ink-2) 60%); }

/* ---------------- LISTS ---------------- */
.rules { list-style: none; margin-top: 2.4rem; max-width: 74ch; }
.rules li { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--hair); font-size: 0.97rem; color: var(--dim); line-height: 1.8; }
.light .rules li { border-bottom-color: rgba(0,0,0,0.18); color: rgba(0,0,0,0.75); }
.rules li strong { color: #fff; font-weight: 500; }
.light .rules li strong { color: var(--ink); }
.rules .n { font-family: var(--display); font-size: 1.5rem; color: var(--gold); line-height: 1.2; }

.callout { border-left: 3px solid var(--gold); background: var(--ink-2); padding: 1.8rem 2rem; margin-top: 2.4rem; max-width: 74ch; border-radius: 0 3px 3px 0; }
.light .callout { background: rgba(0,0,0,0.08); border-left-color: var(--ink); }
.callout p { font-size: 0.94rem; color: var(--dim); line-height: 1.85; }
.light .callout p { color: rgba(0,0,0,0.75); }
.callout p + p { margin-top: 0.9rem; }
.callout strong { color: #fff; font-weight: 500; }
.light .callout strong { color: var(--ink); }

.tbd { display: inline-block; font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); border: 1px dashed var(--gold); border-radius: 2px; padding: 0.1rem 0.5rem; white-space: nowrap; }

/* ---------------- DATES ---------------- */
.dates { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; margin-top: 2.8rem; }
.date-card { background: var(--ink-2); border: 1px solid var(--hair); border-radius: 4px; padding: 1.8rem; }
.date-when { font-family: var(--display); font-size: 1.7rem; text-transform: uppercase; color: var(--gold); line-height: 1; }
.date-what { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 0.8rem; line-height: 1.75; }

/* ---------------- NOTIFY ---------------- */
.notify { margin-top: 1.6rem; max-width: 520px; }
.notify form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.notify input[type="email"] { flex: 1 1 230px; font-family: var(--sans); font-size: 0.92rem; padding: 1rem; border: 1px solid var(--hair); border-radius: 2px; background: var(--ink); color: #fff; }
.light .notify input[type="email"] { background: #fff; color: var(--ink); border-color: rgba(0,0,0,0.2); }
.notify input[type="email"]:focus { outline: none; border-color: var(--gold); }
.notify button { border: none; }
.msg { font-size: 0.86rem; margin-top: 0.8rem; line-height: 1.7; }
.msg.err { color: #ff8a70; }
.msg.ok { color: var(--gold); }
.light .msg.err { color: #c0392b; }
.light .msg.ok { color: var(--ink); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------------- VIDEO ---------------- */
.video-wrap {
 margin-top: 2.6rem;
 border: 1px solid var(--hair);
 border-radius: 4px;
 overflow: hidden;
 background: #000;
 max-width: 980px;
}
.light .video-wrap { border-color: rgba(0,0,0,0.25); }
.video-wrap video {
 display: block;
 width: 100%;
 height: auto;
 aspect-ratio: 16 / 9;
 background: #000;
}

/* ---------------- SOCIALS ---------------- */
.socials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.6rem; }
.social {
 display: flex; align-items: center; gap: 1rem;
 background: var(--ink-2); border: 1px solid var(--hair); border-radius: 4px;
 padding: 1.4rem 1.5rem; text-decoration: none;
 transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.social:hover { border-color: var(--gold); transform: translateY(-3px); }
.light .social { background: rgba(255,255,255,0.42); border-color: rgba(0,0,0,0.16); }
.social svg { width: 26px; height: 26px; flex-shrink: 0; fill: var(--gold); }
.social-name, .social-handle { display: block; }
.social-name { font-family: var(--display); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.03em; color: #fff; line-height: 1.1; }
.light .social-name { color: var(--ink); }
.social-handle { font-size: 0.76rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; word-break: break-all; }
.light .social-handle { color: rgba(0,0,0,0.6); }
.light .social svg { fill: var(--ink); }

.footer-socials { display: flex; gap: 1.1rem; align-items: center; }
.footer-socials a { display: inline-flex; padding: 0.3rem; }
.footer-socials svg { width: 17px; height: 17px; fill: rgba(255,255,255,0.4); transition: fill 0.2s; }
.footer-socials a:hover svg { fill: var(--gold); }

@media (max-width: 768px) { .socials { grid-template-columns: 1fr; } }

/* ---------------- FAQ ---------------- */
.faq { max-width: 900px; margin-top: 2.6rem; }
.faq details { border-bottom: 1px solid var(--hair); }
.faq details:first-child { border-top: 1px solid var(--hair); }
.faq summary { list-style: none; cursor: pointer; padding: 1.5rem 2.5rem 1.5rem 0; font-family: var(--display); font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; position: relative; transition: color 0.2s; }
.faq summary:hover { color: var(--gold); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--gold); font-family: var(--sans); font-size: 1.4rem; font-weight: 300; }
.faq details[open] summary::after { content: '\2013'; }
.faq .a { padding: 0 2.5rem 1.7rem 0; }
.faq .a p { font-size: 0.94rem; color: var(--dim); line-height: 1.85; max-width: 70ch; }
.faq .a p + p { margin-top: 0.8rem; }
.faq .a a { color: var(--gold); }

/* ---------------- FORM ---------------- */
.form { max-width: 780px; margin-top: 2.6rem; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.form label { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.55rem; }
.form input, .form select { font-family: var(--sans); font-size: 0.95rem; font-weight: 300; color: #fff; background: var(--ink-2); padding: 0.95rem 1rem; border: 1px solid var(--hair); border-radius: 2px; width: 100%; }
.form select option { background: var(--ink-2); color: #fff; }
.form input:focus, .form select:focus { outline: none; border-color: var(--gold); }
.form .hint { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.45rem; line-height: 1.7; }
.confirms { margin-top: 2.6rem; border-top: 1px solid var(--hair); padding-top: 2rem; }
.confirm { display: grid; grid-template-columns: 22px 1fr; gap: 0.9rem; padding: 0.8rem 0; align-items: start; }
.confirm input { margin-top: 0.3rem; width: 16px; height: 16px; accent-color: var(--gold); }
.confirm label { text-transform: none; letter-spacing: 0; font-size: 0.92rem; color: var(--dim); line-height: 1.7; margin: 0; }
.submit-row { margin-top: 2.4rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.form button[disabled] { opacity: 0.5; cursor: not-allowed; }
.success { display: none; }
.success.show { display: block; }

/* ---------------- FOOTER ---------------- */
.ote-footer { background: #000; color: rgba(255,255,255,0.4); padding: 3rem 4rem; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; font-size: 0.76rem; }
.ote-footer img { height: 25px; width: auto; display: block; }
.ote-footer ul { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.ote-footer a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.ote-footer a:hover { color: #fff; }

/* ---------------- REVEAL ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
 .reveal { opacity: 1; transform: none; transition: none; }
 .ticker-track { animation: none; }
 .live-dot { animation: none; }
 html { scroll-behavior: auto; }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1080px) { .nav-links { gap: 1.1rem; } .nav-links a { font-size: 0.68rem; letter-spacing: 0.1em; } }
@media (max-width: 980px) {
 .path { grid-template-columns: repeat(2, 1fr); }
 .eps { grid-template-columns: repeat(2, 1fr); }
 .nav-links { display: none; }
 .burger { display: flex; }
 .mobile-nav { display: flex; }
 .vs-grid { grid-template-columns: 1fr; }
 .vs-mark { text-align: center; }
}
@media (max-width: 768px) {
 .path { grid-template-columns: 1fr; }
 .facts { grid-template-columns: 1fr; }
 section { padding: 3.6rem 1.4rem; }
 .hero { padding: 2.8rem 1.4rem 3.2rem; }
 .back-strip, .ote-nav { padding-left: 1.4rem; padding-right: 1.4rem; }
 .ote-footer { padding: 2.4rem 1.4rem; flex-direction: column; text-align: center; }
 .ote-footer ul { justify-content: center; gap: 1rem; }
 .grid { grid-template-columns: 1fr; }
 .stage { grid-template-columns: 1fr; gap: 0.6rem; }
 .cd-box { width: calc(25% - 0.53rem); padding: 0.8rem 0; }
 .cd-num { font-size: 1.5rem; }
 .cd-unit { font-size: 0.5rem; letter-spacing: 0.1em; }
}
