:root { color-scheme: dark; --bg: #050505; --surface-1: #0a0a0a; --border-1: #161616; --border-2: #2a2a2a; --text: #E5E5E5; --text-2: #888888; --text-3: #5A5A5A; --acc: #00FF41; --err: #ff5050; --font-mono: 'IBM Plex Mono', 'JetBrains Mono', 'Roboto Mono', 'Source Code Pro', 'Menlo', 'Consolas', monospace; --font-sans: 'Inter', 'Helvetica Neue', system-ui, -apple-system, sans-serif; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { background: var(--bg); color: var(--text); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.5; overflow-x: hidden; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; }
.acc  { color: var(--acc); }
nav { position: sticky; top: 0; z-index: 50; background: rgba(5,5,5,0.85); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border-1); padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; }
.nav-left { display:flex; align-items:center; gap: 10px; }
.nav-mark { width: 22px; height: 22px; }
.nav-brand { font-family: var(--font-mono); font-weight: 700; font-size: 13px; letter-spacing: 0.18em; }
.nav-right { display:flex; align-items:center; gap: 22px; }
.nav-right a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--text-2); text-decoration: none; transition: color 0.2s; }
.nav-right a:hover { color: var(--text); }
.nav-status { display:flex; align-items:center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--text-2); padding-left: 18px; border-left: 1px solid var(--border-2); }
.led { width: 6px; height: 6px; background: var(--acc); display:inline-block; animation: led-pulse 2s ease-in-out infinite; }
@keyframes led-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero { min-height: 100vh; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 120px 28px 80px; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(#0c0c0c 1px, transparent 1px), linear-gradient(90deg, #0c0c0c 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 920px; }
.hero-sigil { width: 130px; height: 130px; margin-bottom: 44px; }
.hero-title { text-align: center; font-family: var(--font-mono); font-weight: 700; font-size: clamp(28px, 4.4vw, 56px); letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 24px; }
.hero-title .l1 { display: block; }
.hero-title .l2 { display: block; color: var(--text-2); font-weight: 500; font-size: 0.55em; letter-spacing: 0.18em; margin-top: 16px; }
.hero-sub { text-align: center; max-width: 560px; font-size: 15px; color: var(--text-2); margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content:center; }
.btn { font-family: var(--font-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; padding: 14px 22px; border: none; cursor: pointer; background: transparent; color: var(--text); transition: all 0.18s ease; display: inline-flex; align-items: center; gap: 10px; }
.btn-primary { background: var(--acc); color: #001a08; box-shadow: 0 0 0 1px var(--acc), 0 0 24px rgba(0,255,65,0.18); }
.btn-primary:hover { box-shadow: 0 0 0 1px var(--acc), 0 0 36px rgba(0,255,65,0.4); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.65; cursor: wait; box-shadow: 0 0 0 1px var(--acc); transform: none; }
.btn-secondary { border: 1px solid var(--border-2); color: var(--text); }
.btn-secondary:hover { border-color: var(--text-2); background: var(--surface-1); }
.scroll-cue { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.32em; color: var(--text-3); }
.scroll-cue::after { content: ''; width: 1px; height: 36px; background: linear-gradient(to bottom, var(--text-3), transparent); animation: scroll-cue 2s ease-in-out infinite; }
@keyframes scroll-cue { 0%,100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(0.6) translateY(8px); } }
.section { padding: 140px 28px; max-width: 1280px; margin: 0 auto; }
.section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 56px; }
.section-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.32em; color: var(--acc); }
.section-title { font-family: var(--font-mono); font-weight: 700; font-size: clamp(24px, 3.4vw, 40px); letter-spacing: 0.04em; line-height: 1.1; }
.section-tag { font-size: 14px; color: var(--text-2); max-width: 560px; }
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.gap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border-2); margin-bottom: 80px; }
.gap-card { padding: 44px 40px; border-right: 1px solid var(--border-2); display: flex; flex-direction: column; gap: 24px; }
.gap-card:last-child { border-right: none; }
.gap-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.32em; color: var(--text-3); }
.gap-card.win .gap-label { color: var(--acc); }
.gap-quote { font-family: var(--font-mono); font-size: 15px; line-height: 1.6; color: var(--text-2); letter-spacing: 0.01em; border-left: 2px solid var(--border-2); padding-left: 18px; }
.gap-card.win .gap-quote { border-left-color: var(--acc); color: var(--text); }
.core-head { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.core-rule { flex: 1; height: 1px; background: var(--border-2); }
.core-title { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.36em; color: var(--text-3); }
.core-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border-2); }
.core-card { padding: 32px 28px; border-right: 1px solid var(--border-2); display: flex; flex-direction: column; gap: 12px; }
.core-card:last-child { border-right: none; }
.core-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.32em; color: var(--acc); }
.core-name { font-family: var(--font-mono); font-weight: 700; font-size: 15px; letter-spacing: 0.04em; color: var(--text); line-height: 1.2; }
.core-desc { font-family: var(--font-mono); font-size: 12px; line-height: 1.55; color: var(--text-3); letter-spacing: 0.02em; }
.map-panel { position: relative; background: #060606; border: 1px solid var(--border-1); aspect-ratio: 1000 / 460; overflow: hidden; }
.map-panel svg { width: 100%; height: 100%; display: block; }
.map-overlay { position: absolute; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; line-height: 1.6; pointer-events: none; }
.map-overlay .lab { color: var(--text-3); }
.map-overlay .val { color: var(--text); }
.map-overlay .val.acc { color: var(--acc); }
.ovl-tl { top: 18px; left: 22px; }
.ovl-tr { top: 18px; right: 22px; text-align: right; }
.ovl-bl { bottom: 18px; left: 22px; }
.ovl-br { bottom: 18px; right: 22px; text-align: right; }
.map-corner { position: absolute; width: 14px; height: 14px; border: 1px solid var(--text-3); }
.map-corner.tl { top: 8px; left: 8px; border-right:none; border-bottom:none; }
.map-corner.tr { top: 8px; right: 8px; border-left:none; border-bottom:none; }
.map-corner.bl { bottom: 8px; left: 8px; border-right:none; border-top:none; }
.map-corner.br { bottom: 8px; right: 8px; border-left:none; border-top:none; }
.map-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border-1); border-top: none; }
.stat { padding: 24px 28px; border-right: 1px solid var(--border-1); display: flex; flex-direction: column; gap: 8px; }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-mono); font-weight: 700; font-size: 32px; color: var(--text); letter-spacing: 0.02em; }
.stat-num .acc { color: var(--acc); }
.stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; color: var(--text-3); }
.video-frame { position: relative; border: 1px solid var(--border-1); background: #060606; aspect-ratio: 16 / 9; overflow: hidden; cursor: pointer; }
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: #060606; z-index: 1; }
.video-ui { position: absolute; inset: 0; z-index: 2; transition: opacity 0.5s ease; }
.video-frame.playing { cursor: default; }
.video-frame.playing .video-ui { opacity: 0; pointer-events: none; }
.vp-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(229,229,229,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(229,229,229,0.025) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.vp-crosshair { position: absolute; inset: 0; pointer-events: none; }
.vp-crosshair::before, .vp-crosshair::after { content: ''; position: absolute; background: rgba(229,229,229,0.18); }
.vp-crosshair::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.vp-crosshair::after { top: 50%; left: 0; right: 0; height: 1px; }
.vp-meta { position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--text-2); padding: 14px 18px 28px; background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent); pointer-events: none; }
.vp-meta .live { color: var(--acc); display:flex; align-items:center; gap:6px; }
.vp-foot { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: space-between; align-items: flex-end; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--text-2); padding: 28px 18px 14px; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); pointer-events: none; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 110px; height: 110px; border: none; background: transparent; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color 0.25s ease, transform 0.25s ease; padding: 0; }
.play-btn:hover { color: var(--acc); transform: translate(-50%, -50%) scale(1.06); }
.play-btn .reticle { position: absolute; inset: 0; width: 100%; height: 100%; }
.play-btn .play-tri { width: 26px; height: 26px; position: relative; z-index: 2; margin-left: 4px; }
.play-btn .reticle .pulse-ring { transform-origin: center; animation: reticle-pulse 2.4s ease-out infinite; }
@keyframes reticle-pulse { 0% { transform: scale(0.92); opacity: 0; } 40% { opacity: 0.55; } 100% { transform: scale(1.18); opacity: 0; } }
.video-caption { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; color: var(--text-3); flex-wrap: wrap; gap: 12px; }
.econ-hero { border: 1px solid var(--border-2); padding: 52px 48px; margin-bottom: 28px; display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
.econ-hero-num { font-family: var(--font-mono); font-weight: 700; font-size: clamp(80px, 12vw, 140px); line-height: 1; letter-spacing: -0.03em; color: var(--text); }
.econ-hero-num .acc { color: var(--acc); }
.econ-hero-text { font-family: var(--font-mono); font-size: clamp(16px, 1.6vw, 22px); line-height: 1.45; color: var(--text-2); letter-spacing: 0.02em; }
.econ-hero-text strong { color: var(--text); font-weight: 700; }
.econ-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border-2); }
.cc { padding: 36px 32px; border-right: 1px solid var(--border-2); display: flex; flex-direction: column; gap: 18px; }
.cc:last-child { border-right: none; }
.cc-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.32em; color: var(--text-3); }
.cc-value { font-family: var(--font-mono); font-weight: 700; font-size: 64px; line-height: 1; letter-spacing: 0; color: var(--text-2); }
.cc.win .cc-value { color: var(--text); }
.cc.win .cc-value .pct { color: var(--acc); }
.cc-sublabel { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; color: var(--text-3); }
.cc-bar { height: 4px; background: var(--surface-1); position: relative; overflow: hidden; }
.cc-bar-fill { position: absolute; left: 0; top: 0; bottom: 0; transform-origin: left; transform: scaleX(0); transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1); }
.cc.visible .cc-bar-fill { transform: scaleX(1); }
.contact-wrap { max-width: 640px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 22px; border: 1px solid var(--border-2); padding: 44px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; color: var(--text-3); }
.field input { background: transparent; border: none; border-bottom: 1px solid var(--border-2); padding: 10px 0; font-family: var(--font-mono); font-size: 14px; color: var(--text); letter-spacing: 0.04em; outline: none; transition: border-color 0.2s; }
.field input:focus { border-bottom-color: var(--acc); }
.form-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--text-3); }
.submitted .contact-form-inner, .failed .contact-form-inner { display: none; }
.form-success, .form-error { display: none; }
.submitted .form-success { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; padding: 80px 20px; border: 1px solid var(--acc); text-align: center; }
.failed .form-error { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; padding: 80px 20px; border: 1px solid var(--err); text-align: center; }
.form-success .check { font-size: 32px; color: var(--acc); }
.form-error .check { font-size: 32px; color: var(--err); }
.form-success .ok-text, .form-error .ok-text { font-family: var(--font-mono); letter-spacing: 0.22em; font-size: 13px; }
.form-error .ok-text { color: var(--err); }
.form-success .ok-sub, .form-error .ok-sub { font-family: var(--font-mono); letter-spacing: 0.22em; font-size: 10px; color: var(--text-3); }
footer { border-top: 1px solid var(--border-1); padding: 32px 28px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; color: var(--text-3); flex-wrap: wrap; gap: 16px; }
footer .ft-left { display: flex; align-items: center; gap: 10px; color: var(--text-2); }
footer .ft-left svg { width: 18px; height: 18px; }
footer a { color: var(--text-3); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--acc); }
@media (max-width: 820px) {
  .nav-right a { display: none; }
  .nav-right .nav-status { padding-left: 0; border-left: none; }
  .section { padding: 90px 22px; }
  .section-head { margin-bottom: 36px; }
  .gap-grid { grid-template-columns: 1fr; margin-bottom: 56px; }
  .gap-card { border-right: none; border-bottom: 1px solid var(--border-2); padding: 32px 24px; }
  .gap-card:last-child { border-bottom: none; }
  .core-grid { grid-template-columns: 1fr; }
  .core-card { border-right: none; border-bottom: 1px solid var(--border-2); }
  .core-card:last-child { border-bottom: none; }
  .map-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border-1); }
  .stat:last-child { border-bottom: none; }
  .econ-hero { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .econ-compare { grid-template-columns: 1fr; }
  .cc { border-right: none; border-bottom: 1px solid var(--border-2); }
  .cc:last-child { border-bottom: none; }
  .contact-form { padding: 28px 22px; }
  .ovl-tl, .ovl-tr, .ovl-bl, .ovl-br { font-size: 9px; }
  .play-btn { width: 90px; height: 90px; }
  .play-btn .play-tri { width: 22px; height: 22px; }
}
