/* ===== MIZORA — Ultrasleek Institutional ===== */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  --bg: #0a0a0a;
  --bg-card: #111;
  --bg-white: #fff;
  --orange: #c4602a;
  --orange-bg: #b85a28;
  --green: #00c853;
  --text: #f5f5f5;
  --text-2: #888;
  --text-3: #555;
  --border: rgba(255,255,255,.08);
  --border-light: #e0e0e0;
  --max-w: 1280px;
  --pad: 64px;
  --nav-h: 100px;
  --font: 'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --mono: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth !important; }
body { font-family: var(--font); background: var(--bg-white); color: #111; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ===== LOADER ===== */
.loader { position: fixed; inset: 0; z-index: 9999; background: #000; display: flex; align-items: center; justify-content: center; transition: transform .8s cubic-bezier(.76,0,.24,1); will-change: transform; }
.loader.slide-out { transform: translateY(-100%); pointer-events: none; }
.loader-word {
  display: flex;
  position: relative;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 12px;
  color: #fff;
}
.loader-dot {
  position: absolute;
  right: -0.4em;
  bottom: 0;
}
.loader-word .loader-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.loader-word .loader-char.visible {
  opacity: 1;
  transform: translateY(0);
}
/* legacy compat */
.loader-ring { display: none; }
.loader-ring-inner { display: none; }
.loader-brand { display: none; }
.loader-tm { display: none; }

body:not(.loaded):not(.page) .landing-nav, body:not(.loaded) .hero, body:not(.loaded) .hero + * { opacity: 0; }
body.loaded .landing-nav { animation: fadeUp .5s ease forwards; }
body.loaded .hero { animation: fadeUp .5s ease forwards .05s; }
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(16px); } 100% { opacity: 1; transform: translateY(0); } }

/* ===== UTILITY ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.muted { color: var(--text-3); }

/* ===== SCROLL ANIM ===== */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: .06s; }
.stagger-2 { transition-delay: .12s; }
.stagger-3 { transition-delay: .18s; }
.stagger-4 { transition-delay: .24s; }
.stagger-5 { transition-delay: .30s; }
.stagger-6 { transition-delay: .36s; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; padding: 14px 40px; background: var(--orange); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; border: none; transition: background .3s, transform .3s; }
.btn-primary:hover { background: #a04d20; transform: translateY(-1px); }
.btn-ghost { display: inline-block; padding: 14px 40px; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8); font-size: 13px; font-weight: 500; letter-spacing: .5px; transition: border-color .3s, color .3s; }
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-ghost-light { display: inline-block; padding: 14px 40px; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500; letter-spacing: .5px; transition: all .3s; }
.btn-ghost-light:hover { border-color: #fff; color: #fff; }

/* ===== SECTION LABEL ===== */
.sec-label { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); }
.sec-label.light { color: var(--text-2); }
.sec-num { font-family: var(--mono); font-size: 11px; color: var(--orange); }
.section-headline { font-size: clamp(28px, 4vw, 48px); font-weight: 600; line-height: 1.2; letter-spacing: -.5px; margin-bottom: 56px; }
.section-headline.light { color: var(--text); }
.section-headline .muted { color: #999; }

/* ===== NAVBAR ===== */
.landing-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); display: flex; align-items: center; padding: 0 var(--pad); transition: background .4s; }
.landing-nav.scrolled { background: rgba(10,10,10,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--max-w); margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--text); }
.nav-logo-icon { width: 42px; height: 42px; object-fit: contain; }
.nav-logo-text { font-size: 20px; font-weight: 600; letter-spacing: 5px; }
.nav-center { display: flex; align-items: center; gap: 40px; }
.nav-center a { font-size: 15px; font-weight: 400; color: rgba(255,255,255,.6); transition: color .2s; display: flex; align-items: center; gap: 6px; }
.nav-center a:hover { color: #fff; }
.nav-center .nav-num { font-size: 11px; color: rgba(255,255,255,.25); font-family: var(--mono); }
.nav-enter { font-size: 14px; font-weight: 600; color: #fff; padding: 14px 36px; border: 1px solid rgba(255,255,255,.2); background: none; letter-spacing: .5px; transition: all .2s; border-radius: 100px; }
.nav-enter:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.nav-mobile-cta, .nav-center .nav-mobile-cta { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: transform .3s, opacity .3s; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; background: var(--bg); overflow: hidden; display: flex; flex-direction: column; }
.hero-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 120%; object-fit: cover; object-position: center bottom; z-index: 1; transform: scale(1.05); will-change: transform, opacity; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,.7) 0%, transparent 40%); z-index: 2; }

.hero-main { position: relative; z-index: 3; padding: calc(var(--nav-h) + 80px) var(--pad) 0; flex: 1; display: flex; flex-direction: column; justify-content: center; max-width: 700px; }
.hero-headline { font-family: var(--font); font-size: clamp(36px, 5vw, 64px); font-weight: 500; color: #fff; line-height: 1.12; letter-spacing: -.5px; margin-bottom: 32px; }
.hero-cta-btn { display: inline-block; padding: 14px 36px; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; color: #fff; font-size: 13px; font-weight: 500; letter-spacing: .5px; transition: all .3s; width: fit-content; }
.hero-cta-btn:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }

.hero-footer { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: flex-end; padding: 0 var(--pad) 40px; margin-top: auto; }
.hero-footer-left p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; }
.hero-footer-left p strong { color: rgba(255,255,255,.7); font-weight: 500; }
.hero-footer-right p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; text-align: right; }
.hero-highlight { color: var(--orange); }

/* ===== TICKER ===== */
.ticker { background: var(--bg); border-bottom: 1px solid var(--border); padding: 10px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 0; animation: tickerScroll 40s linear infinite; width: max-content; }
.ticker-item { font-family: var(--mono); font-size: 12px; color: var(--text-2); white-space: nowrap; padding: 0 8px; }
.ticker-item em { font-style: normal; color: var(--green); }
.ticker-sep { color: var(--text-3); padding: 0 16px; font-size: 10px; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== WHY MIZORA ===== */
.why-section { background: var(--bg-white); padding: 120px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.why-left { display: flex; flex-direction: column; justify-content: center; }
.why-manifesto { font-size: 17px; color: #666; line-height: 1.8; margin-bottom: 48px; }
.why-numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-light); }
.why-num-item { background: var(--bg-white); padding: 24px 16px; text-align: center; }
.why-num-val { display: block; font-family: var(--mono); font-size: clamp(24px, 3vw, 36px); font-weight: 600; color: #111; margin-bottom: 4px; }
.why-num-label { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); }
.why-right { display: flex; flex-direction: column; gap: 0; }
.why-card { padding: 32px 0; border-bottom: 1px solid var(--border-light); }
.why-card:first-child { border-top: 1px solid var(--border-light); }
.why-card-num { font-family: var(--mono); font-size: 11px; color: var(--orange); margin-bottom: 12px; }
.why-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.how-section { background: #fafafa; padding: 120px 0; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; }
.how-step { position: relative; padding: 48px 40px 48px 40px; border-left: 1px solid var(--border-light); }
.how-step:first-child { border-left: none; }
.how-line { position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 1.5s cubic-bezier(.16,1,.3,1); }
.how-step.visible .how-line { width: 100%; }
.how-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; margin-bottom: 24px; }
.how-num { font-family: var(--mono); font-size: 11px; color: var(--text-3); margin-bottom: 16px; }
.how-step h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.how-step p { font-size: 14px; color: #666; line-height: 1.7; }

/* ===== MARKETS ===== */
.markets-section { background: var(--bg); color: var(--text); padding: 120px 0; }
.markets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
.market-card { background: var(--bg); padding: 48px 40px; transition: background .3s; }
.market-card:hover { background: #141414; }
.market-card-head { margin-bottom: 16px; }
.market-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--orange); display: block; margin-bottom: 8px; }
.market-card h3 { font-size: 28px; font-weight: 600; }
.market-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.market-instruments { display: flex; flex-wrap: wrap; gap: 6px; }
.market-instruments span { font-family: var(--mono); font-size: 10px; padding: 4px 10px; border: 1px solid var(--border); color: var(--text-3); letter-spacing: .5px; }

/* ===== PLATFORM SCREENSHOTS ===== */
.screens-section { background: var(--bg); color: var(--text); padding: 0 0 120px; }
.screens-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.screen-card { overflow: hidden; }
.screen-img { width: 100%; border: 1px solid var(--border); transition: transform .6s cubic-bezier(.16,1,.3,1); }
.screen-card:hover .screen-img { transform: scale(1.03); }
.screen-label { font-family: var(--mono); font-size: 11px; color: var(--text-3); margin-top: 12px; letter-spacing: .5px; }

/* ===== CHALLENGES ===== */
.challenge-section { background: var(--bg-white); padding: 120px 0; }
.challenge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-light); margin-bottom: 48px; }
.challenge-card { background: var(--bg-white); padding: 40px 28px; display: flex; flex-direction: column; position: relative; transition: background .3s; }
.challenge-card:hover { background: #fafafa; }
.challenge-card.popular { background: #111; color: #fff; }
.challenge-card.popular .challenge-desc, .challenge-card.popular .challenge-features li { color: rgba(255,255,255,.55); }
.challenge-card.popular .challenge-features li { border-color: var(--border); }
.challenge-card.popular .challenge-cta { background: var(--orange); color: #fff; border-color: var(--orange); }
.challenge-card.popular .challenge-cta:hover { background: #a04d20; }
.challenge-type { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--orange); margin-bottom: 12px; }
.challenge-name { font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.challenge-desc { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 24px; }
.challenge-features { list-style: none; margin-bottom: 28px; flex: 1; }
.challenge-features li { font-size: 13px; color: #555; padding: 10px 0; border-bottom: 1px solid #eee; }
.challenge-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.challenge-price { font-size: 24px; font-weight: 600; }
.challenge-price span { font-size: 12px; font-weight: 400; color: #999; }
.challenge-cta { padding: 10px 24px; border: 1px solid #222; font-size: 12px; font-weight: 600; letter-spacing: .5px; transition: all .3s; }
.challenge-cta:hover { background: #222; color: #fff; }

.challenge-sizes { text-align: center; }
.size-label { font-family: var(--mono); font-size: 11px; color: var(--text-3); letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 16px; }
.size-pills { display: inline-flex; gap: 0; }
.size-pills span { font-family: var(--mono); font-size: 12px; padding: 10px 20px; border: 1px solid var(--border-light); color: #888; cursor: pointer; transition: all .2s; margin-left: -1px; }
.size-pills span:first-child { margin-left: 0; }
.size-pills span:hover { color: #111; border-color: #111; z-index: 1; position: relative; }
.size-pills span.active { background: #111; color: #fff; border-color: #111; z-index: 1; position: relative; }

/* ===== STATS ===== */
.stats-section { background: #111; padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.stat-card { background: #111; padding: 48px 32px; text-align: center; }
.stat-number { font-family: var(--mono); font-size: clamp(36px, 5vw, 56px); font-weight: 600; color: #fff; margin-bottom: 8px; }
.stat-label { font-size: 12px; color: var(--text-2); letter-spacing: 1px; text-transform: uppercase; }

/* ===== LEADERBOARD ===== */
.leaderboard-section { background: var(--bg-white); padding: 120px 0; }
.leaderboard-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.leaderboard-table th { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: #999; text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border-light); }
.leaderboard-table td { padding: 16px; font-size: 14px; border-bottom: 1px solid #f0f0f0; }
.leaderboard-table tbody tr { transition: background .15s; }
.leaderboard-table tbody tr:hover { background: #fafafa; }
.lb-rank { font-family: var(--mono); font-weight: 600; color: #ccc; width: 50px; }
.lb-rank.top { color: var(--orange); }
.lb-name { font-weight: 600; }
.lb-pnl { font-family: var(--mono); font-weight: 600; color: var(--green); }
.lb-badge { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 1.5px; padding: 4px 10px; background: rgba(196,96,42,.06); color: var(--orange); }

/* ===== TRANSPARENCY ===== */
.transparency-section { background: var(--bg); color: var(--text); padding: 120px 0; }
.transparency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 48px; }
.transparency-card { background: var(--bg); padding: 36px; }
.transparency-card h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); margin-bottom: 24px; }
.t-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-2); }
.t-row:last-child { border-bottom: none; }
.t-row .green { font-family: var(--mono); font-weight: 600; color: var(--green); }
.t-row .val { font-family: var(--mono); font-weight: 600; color: var(--text); }
.badge-funded { font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 3px 8px; background: rgba(0,200,83,.1); color: var(--green); letter-spacing: .5px; }
.badge-progress { font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 3px 8px; background: rgba(196,96,42,.1); color: var(--orange); letter-spacing: .5px; }

/* ===== RULES ===== */
.rules-section { background: var(--bg-white); padding: 120px 0; }
.rules-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--border-light); }
.rule-card { background: var(--bg-white); padding: 36px 24px; text-align: center; transition: background .3s; }
.rule-card:hover { background: #fafafa; }
.rule-label { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.rule-value { font-size: 36px; font-weight: 600; margin-bottom: 8px; }
.rule-note { font-size: 12px; color: #999; }

/* ===== CTA ===== */
.cta-section { background: var(--bg); padding: 120px 0; text-align: center; }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-badge { display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); border: 1px solid rgba(196,96,42,.3); padding: 8px 20px; border-radius: 100px; margin-bottom: 32px; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(36px, 6vw, 72px); font-weight: 600; color: #fff; margin-bottom: 16px; line-height: 1.1; }
.cta-section p { font-size: 17px; color: var(--text-2); margin-bottom: 40px; line-height: 1.7; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 32px; }
.btn-lg { padding: 18px 48px !important; font-size: 14px !important; }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: 16px; }
.cta-trust span { font-family: var(--mono); font-size: 12px; color: var(--text-3); letter-spacing: .5px; }
.cta-dot { width: 4px; height: 4px; background: var(--text-3); border-radius: 50%; flex-shrink: 0; }

/* ===== ALL MARKETS CARD ===== */
.challenge-allmarkets { margin-top: 20px; }
.challenge-allmarkets .challenge-card { max-width: 100%; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-white); padding: 120px 0; }
.faq-layout { display: grid; grid-template-columns: 300px 1fr; gap: 80px; }
.faq-title { font-size: clamp(32px, 4vw, 48px); font-weight: 600; line-height: 1.15; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: none; border: none; width: 100%; text-align: left; font-family: var(--font); font-size: 15px; font-weight: 600; color: #111; padding: 20px 0; }
.faq-toggle { font-size: 20px; font-weight: 300; color: #ccc; transition: transform .3s; flex-shrink: 0; margin-left: 16px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: #666; line-height: 1.7; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== FOOTER (from component) ===== */
.diagonal-transition { position: relative; height: 100px; margin-top: -1px; }
.diagonal-transition::after { content: ''; position: absolute; inset: 0; }
.diagonal-transition.white-to-dark { background: var(--bg); }
.diagonal-transition.white-to-dark::after { background: var(--bg-white); clip-path: polygon(0 0, 100% 0, 0 100%); }
.diagonal-transition.dark-to-white { background: var(--bg-white); }
.diagonal-transition.dark-to-white::after { background: var(--bg); clip-path: polygon(0 0, 100% 0, 0 100%); }
.diagonal-transition.white-to-orange { background: var(--orange-bg); }
.diagonal-transition.white-to-orange::after { background: var(--bg-white); clip-path: polygon(0 0, 100% 0, 0 100%); }
.diagonal-transition.orange-to-white { background: var(--bg-white); }
.diagonal-transition.orange-to-white::after { background: var(--orange-bg); clip-path: polygon(0 0, 100% 0, 0 100%); }

.landing-footer { background: var(--bg); color: var(--text); padding: 100px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.footer-heading { font-size: clamp(28px, 4vw, 44px); font-weight: 600; color: var(--text-3); line-height: 1.2; margin-bottom: 8px; }
.footer-email { font-size: clamp(28px, 4vw, 44px); font-weight: 600; color: var(--text); line-height: 1.2; margin-bottom: 32px; }
.footer-nav-list { list-style: none; }
.footer-nav-list li { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 15px; font-weight: 500; }
.footer-nav-list li:first-child { border-top: 1px solid var(--border); }
.footer-nav-list .num { font-family: var(--mono); font-size: 11px; color: var(--text-3); }
.footer .bracket-btn { color: rgba(255,255,255,.6); }
.bracket-btn { display: inline-flex; align-items: center; gap: 80px; font-size: 15px; font-weight: 500; background: none; border: none; color: inherit; padding: 12px 0; border-bottom: 1px solid currentColor; transition: opacity .2s; }
.bracket-btn::after { content: '┐'; font-size: 18px; font-weight: 300; }
.bracket-btn:hover { opacity: .7; }
.footer-crosses { display: flex; justify-content: center; gap: 250px; padding: 40px 0; }
.footer-crosses .cross { font-size: 20px; color: rgba(255,255,255,.08); display: inline-block; }
.footer-brand { display: flex; align-items: center; gap: 32px; padding: 48px 0; border-top: 1px solid var(--border); }
.footer-brand-logo { width: 80px; height: auto; }
.footer-brand-text { font-size: clamp(48px, 10vw, 120px); font-weight: 600; letter-spacing: 12px; color: var(--text); font-family: var(--font-display); }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-3); padding-top: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --pad: 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .markets-grid { grid-template-columns: 1fr; }
  .screens-row { grid-template-columns: 1fr; }
  .challenge-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .transparency-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-left: none; border-bottom: 1px solid var(--border-light); }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --pad: 20px; }
  .nav-enter { display: none !important; }
  .nav-center { display: none !important; }
  .nav-center.open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: none !important;
    background: #050505 !important;
    flex-direction: column !important;
    padding: 100px 32px 40px !important;
    gap: 0 !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    border-radius: 0 !important;
    border: none !important;
    animation: navSlideIn .35s cubic-bezier(.16,1,.3,1) forwards;
  }
  @keyframes navSlideIn { from { opacity: 0; } to { opacity: 1; } }
  .nav-center.open a {
    font-size: 24px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,.5) !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.06) !important;
    background: none !important;
    border-radius: 0 !important;
    transition: color .2s;
  }
  .nav-center.open a:last-of-type:not(.nav-mobile-cta) { border-bottom: none !important; }
  .nav-center.open a:hover,
  .nav-center.open a.nav-active { color: #fff !important; }
  .nav-center.open .nav-num { font-size: 12px !important; color: rgba(255,255,255,.15) !important; display: inline !important; }
  .nav-center.open .nav-mobile-cta {
    display: block !important;
    margin-top: 32px !important;
    padding: 16px !important;
    background: #dc3545 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-align: center !important;
    border-radius: 12px !important;
    border-bottom: none !important;
  }
  .nav-center.open .nav-mobile-cta .nav-num { display: none !important; }
  .nav-hamburger { display: flex !important; z-index: 10000 !important; position: relative; }
  .hero-bg-image { opacity: .5; }
  .hero-overlay { background: linear-gradient(0deg, rgba(10,10,10,.8) 0%, transparent 60%); }
  .hero-footer { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-footer-right p { text-align: left; }
  .challenge-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { flex-direction: column; text-align: center; }
  .footer-brand-text { letter-spacing: 4px; }
  .footer-crosses { gap: 80px; }
  .footer-bottom-bar { flex-direction: column; gap: 8px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .size-pills { flex-wrap: wrap; justify-content: center; }
}
