/* ==========================================================================
   Motorcity Karting Arena
   ========================================================================== */

:root {
  --bg: #05070a;
  --bg-2: #080b10;
  --panel: #0c1117;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .15);
  --text: #eef3f6;
  --text-2: #b6c1ca;
  --muted: #7b8894;
  --green: #45e36a;
  --cyan: #1fd3f0;
  --grad: linear-gradient(95deg, var(--green) 0%, var(--cyan) 100%);
  --radius: 22px;
  --radius-lg: 30px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --nav-h: 72px;
  --gutter: clamp(20px, 4vw, 48px);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-h); overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
[hidden] { display: none !important; }
::selection { background: var(--green); color: #03140a; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 8px; }

.wrap { width: 100%; max-width: 1320px; margin-inline: auto; padding-inline: var(--gutter); }
.i { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mono { font-family: var(--mono); font-stretch: 100%; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --h: 48px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--h); padding: 0 22px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: .005em; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, border-color .25s, color .25s;
  isolation: isolate; overflow: hidden;
}
.btn .i { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .i { transform: translateX(3px); }
.btn--primary {
  background: var(--grad); color: #03140a;
  box-shadow: 0 10px 30px -12px rgba(69, 227, 106, .7), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(31, 211, 240, .75), inset 0 1px 0 rgba(255, 255, 255, .35); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--glass { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); color: #fff; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.btn--glass:hover { background: rgba(255, 255, 255, .15); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: rgba(69, 227, 106, .6); color: #fff; background: rgba(69, 227, 106, .06); }
.btn--lg { --h: 58px; padding: 0 28px; font-size: 16px; }
.btn--sm { --h: 40px; padding: 0 16px; font-size: 14px; }
.btn--sm .i { width: 16px; height: 16px; }
.btn--block { width: 100%; }
.btn__play { display: grid; place-items: center; width: 30px; height: 30px; margin-left: -10px; border-radius: 50%; background: #fff; color: #05070a; }
.btn__play .i { width: 14px; height: 14px; margin-left: 2px; }
.btn:hover .btn__play .i { transform: none; }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 60; border-bottom: 1px solid transparent; transition: background-color .35s, border-color .35s; }
.nav.is-scrolled { background: rgba(5, 7, 10, .74); -webkit-backdrop-filter: saturate(1.5) blur(18px); backdrop-filter: saturate(1.5) blur(18px); border-color: var(--line); }
.nav__inner { height: var(--nav-h); display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand img { width: 36px; height: auto; filter: drop-shadow(0 0 12px rgba(31, 211, 240, .3)); }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__txt b { font-weight: 800; font-stretch: 125%; text-transform: uppercase; letter-spacing: .02em; font-size: 17px; }
.brand__txt small { font-family: var(--mono); font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--cyan); margin-top: 5px; }
.nav__links { display: flex; gap: 2px; margin-inline: auto; }
.nav__links a { position: relative; padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--text-2); border-radius: 999px; transition: color .2s, background-color .2s; }
.nav__links a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.nav__links a.is-active { color: #fff; }
.nav__links a.is-active::after { content: ""; position: absolute; left: 50%; bottom: 1px; width: 4px; height: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); transform: translateX(-50%); }
.nav__right { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--text-2); white-space: nowrap; }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); flex: none; }
.status.is-open .status__dot { background: var(--green); animation: ping 2s infinite; }
.status.is-closed .status__dot { background: #ff5c5c; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(69, 227, 106, .55); } 70% { box-shadow: 0 0 0 8px rgba(69, 227, 106, 0); } 100% { box-shadow: 0 0 0 0 rgba(69, 227, 106, 0); } }

.lang { display: inline-flex; padding: 3px; border: 1px solid var(--line-2); border-radius: 999px; }
.lang button { font-family: var(--mono); font-size: 11.5px; font-weight: 700; padding: 5px 9px; border-radius: 999px; color: var(--muted); transition: background-color .2s, color .2s; }
.lang button[aria-pressed="true"] { background: #fff; color: #05070a; }

.burger { display: none; position: relative; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); flex: none; }
.burger span { position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px; background: #fff; transition: transform .35s var(--ease), top .35s var(--ease); }
.burger span:first-child { top: 17px; }
.burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu { position: fixed; inset: 0; z-index: 55; background: rgba(5, 7, 10, .96); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; }
.menu.is-open { opacity: 1; visibility: visible; }
.menu__inner { height: 100%; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; padding-top: calc(var(--nav-h) + 20px); padding-bottom: calc(28px + env(safe-area-inset-bottom)); overflow-y: auto; }
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  display: flex; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: clamp(1.9rem, 8.2vw, 3.4rem); font-weight: 800; font-stretch: 112%; text-transform: uppercase; line-height: 1; letter-spacing: -.01em;
  opacity: 0; transform: translateY(20px); transition: transform .6s var(--ease), opacity .6s var(--ease), color .2s;
}
.menu__links a:hover { color: var(--green); }
.menu__links i { font-style: normal; font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--green); letter-spacing: .1em; }
.menu.is-open .menu__links a { opacity: 1; transform: none; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: .04s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: .08s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: .12s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: .16s; }
.menu.is-open .menu__links a:nth-child(6) { transition-delay: .2s; }
.menu__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.menu__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 14px; }
.menu__phone .i { width: 16px; height: 16px; color: var(--green); }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding-top: calc(var(--nav-h) + 40px); }
.hero__media { position: absolute; inset: 0; z-index: -1; background: #05070a url(../video/hero-poster.jpg) center/cover no-repeat; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, .7) 0%, rgba(5, 7, 10, .1) 26%, rgba(5, 7, 10, .25) 52%, rgba(5, 7, 10, .9) 84%, var(--bg) 100%),
    radial-gradient(110% 80% at 0% 100%, rgba(5, 7, 10, .8) 0%, rgba(5, 7, 10, 0) 60%);
}
.hero__lines { position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .18) 0 1px, transparent 1px 3px); opacity: .5; }
.hero__content { position: relative; padding-bottom: 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 8px 14px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-2);
  border: 1px solid var(--line-2); border-radius: 999px; background: rgba(5, 7, 10, .4); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; animation: fadeUp .9s .1s var(--ease) forwards;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: ping 2s infinite; }
.hero__title { font-size: clamp(1.9rem, 5.4vw, 5.2rem); font-weight: 850; font-stretch: 112%; line-height: .92; letter-spacing: -.02em; text-transform: uppercase; margin-bottom: 26px; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .05em; }
.hero__title .line:nth-child(2) { font-size: 1.48em; line-height: .88; font-stretch: 118%; }
.hero__title .line > span { display: inline-block; transform: translateY(110%); animation: rise 1.1s var(--ease) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: .12s; }
.hero__title .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes rise { to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero__lead { max-width: 560px; font-size: clamp(1rem, 1.3vw, 1.2rem); color: var(--text-2); margin-bottom: 32px; opacity: 0; animation: fadeUp 1s .45s var(--ease) forwards; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; animation: fadeUp 1s .6s var(--ease) forwards; }

.hero__hud { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-block: 24px 28px; }
.hud { display: flex; border: 1px solid var(--line-2); border-radius: 18px; background: rgba(5, 7, 10, .5); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); overflow: hidden; opacity: 0; animation: fadeUp 1s .8s var(--ease) forwards; }
.hud__cell { display: flex; flex-direction: column; gap: 4px; padding: 12px 22px; border-right: 1px solid var(--line); }
.hud__cell:last-child { border-right: 0; }
.hud__label { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.hud__time { font-family: var(--mono); font-size: 20px; font-weight: 700; font-variant-numeric: tabular-nums; color: #fff; transition: color .3s, text-shadow .3s; }
.hud__time--grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
#lapTimer.flash { color: var(--green); text-shadow: 0 0 18px rgba(69, 227, 106, .7); }
.rec { width: 7px; height: 7px; border-radius: 50%; background: #ff3b3b; animation: blink 1.2s steps(2) infinite; }
@keyframes blink { 50% { opacity: .2; } }
.scroll-cue { position: relative; width: 26px; height: 42px; flex: none; border: 1.5px solid var(--line-2); border-radius: 14px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; border-radius: 2px; background: #fff; transform: translateX(-50%); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 14px); } }

/* ---------- Ticker ---------- */
.ticker { position: relative; overflow: hidden; padding: 18px 0; border-block: 1px solid var(--line); background: var(--bg-2); }
.ticker__track { display: flex; align-items: center; width: max-content; animation: marquee 40s linear infinite; }
.ticker__track > * { margin-right: 28px; }
.ticker span { font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 800; font-stretch: 125%; text-transform: uppercase; white-space: nowrap; }
.ticker b { font-size: .9rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { position: relative; padding-block: clamp(88px, 12vw, 168px); }
.section--tight { padding-block: clamp(24px, 4vw, 56px); }
.sec-head { max-width: 980px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head--split { max-width: none; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px 64px; align-items: end; }
.kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; font-family: var(--mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-2); }
.kicker__n { color: var(--green); }
.kicker__n::after { content: ""; display: inline-block; width: 28px; height: 1px; margin-left: 12px; vertical-align: middle; background: var(--line-2); }
.kicker .i { width: 16px; height: 16px; color: var(--green); }
.h2 { font-size: clamp(2.1rem, 5.2vw, 4.5rem); font-weight: 800; font-stretch: 108%; line-height: .98; letter-spacing: -.025em; text-wrap: balance; }
.lead { max-width: 62ch; font-size: clamp(1.02rem, 1.25vw, 1.18rem); line-height: 1.65; color: var(--text-2); }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--rd, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Chips, ticks, links, prices (shared) ---------- */
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text); background: rgba(5, 7, 10, .55); border: 1px solid var(--line-2); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.chip .i { width: 14px; height: 14px; color: var(--green); }
.chip--solid { background: var(--grad); color: #03140a; border: 0; font-weight: 700; }

.ticks { display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; font-size: 15px; color: var(--text-2); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(69, 227, 106, .14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2345e36a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.ticks--big li { font-size: 16px; color: var(--text); }
.ticks--inline { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.ticks--muted li::before { background-color: rgba(31, 211, 240, .12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231fd3f0' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); }

.link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 3px; font-weight: 700; color: #fff; background: linear-gradient(var(--green), var(--green)) 0 100% / 0 2px no-repeat; transition: background-size .35s var(--ease); }
.link .i { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link:hover { background-size: 100% 2px; }
.link:hover .i { transform: translateX(4px); }

.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; line-height: 1; }
.price b { font-size: clamp(3rem, 4.4vw, 4rem); font-weight: 800; font-stretch: 115%; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.price > span { font-size: 1.6rem; font-weight: 700; color: var(--cyan); }
.price small { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-inline: 4px; }
.price small:first-child { margin-left: 0; }
.price--text { font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 800; font-stretch: 112%; letter-spacing: -.02em; line-height: 1.1; }

/* ---------- 01 Track ---------- */
.track__intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px 64px; align-items: start; margin-bottom: clamp(40px, 5vw, 64px); }
.big-quote { font-size: clamp(1.5rem, 2.6vw, 2.3rem); font-weight: 500; line-height: 1.2; letter-spacing: -.015em; text-wrap: balance; }
.big-quote em { font-style: normal; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.track__map { position: relative; aspect-ratio: 1280 / 550; border-radius: var(--radius-lg); overflow: hidden; background: #020304; border: 1px solid var(--line); box-shadow: 0 40px 120px -40px rgba(31, 211, 240, .25); }
.track__map > img { width: 100%; height: 100%; object-fit: cover; }
.track__sweep {
  position: absolute; inset: 0;
  background: url(../img/track-map.webp) center / cover no-repeat;
  filter: brightness(2.4) saturate(1.8); mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(100deg, transparent 42%, #000 50%, transparent 58%); mask-image: linear-gradient(100deg, transparent 42%, #000 50%, transparent 58%);
  -webkit-mask-size: 300% 100%; mask-size: 300% 100%;
  animation: sweep 5s linear infinite;
}
@keyframes sweep { from { -webkit-mask-position: 100% 0; mask-position: 100% 0; } to { -webkit-mask-position: 0 0; mask-position: 0 0; } }
.ping { position: absolute; left: var(--x); top: var(--y); width: 14px; height: 14px; transform: translate(-50%, -50%); pointer-events: none; }
.ping::before, .ping::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--cyan); opacity: 0; animation: ripple 3.2s var(--d, 0s) infinite; }
.ping::after { animation-delay: calc(var(--d, 0s) + .6s); }
.ping--start::before, .ping--start::after { border-color: var(--green); animation-duration: 2s; }
@keyframes ripple { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(3.2); opacity: 0; } }
.ping b { position: absolute; left: 50%; bottom: calc(100% + 14px); transform: translateX(-50%); white-space: nowrap; padding: 5px 9px; border-radius: 999px; font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--green); background: rgba(69, 227, 106, .12); border: 1px solid rgba(69, 227, 106, .45); }
.track__legend { position: absolute; left: 22px; bottom: 18px; display: flex; gap: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); }
.track__legend > span { display: flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 2px; transform: rotate(45deg); }
.dot--green { background: var(--green); box-shadow: 0 0 10px var(--green); }
.dot--cyan { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.stat { padding: 28px 24px 8px; border-right: 1px solid var(--line); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat__val { display: flex; align-items: baseline; gap: 6px; font-size: clamp(2.6rem, 5.4vw, 4.8rem); font-weight: 800; font-stretch: 118%; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat__val em { font-style: normal; font-size: .36em; font-weight: 700; letter-spacing: 0; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { display: block; margin-top: 10px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(40px, 5vw, 64px); }
.spec { padding: 26px 26px 12px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel), var(--bg-2)); }
.spec h3 { margin-bottom: 12px; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--green); }
.spec dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-top: 1px dashed var(--line-2); font-size: 14px; }
.spec dt { color: var(--muted); }
.spec dd { font-weight: 600; text-align: right; }

/* ---------- 02 Machine ---------- */
.machine { overflow: hidden; border-block: 1px solid var(--line); background: radial-gradient(60% 50% at 80% 30%, rgba(31, 211, 240, .09), transparent 70%), radial-gradient(50% 40% at 10% 80%, rgba(69, 227, 106, .06), transparent 70%), var(--bg-2); }
.machine__glow {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='%23ffffff' fill-opacity='.035' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: radial-gradient(70% 60% at 70% 40%, #000, transparent 75%); mask-image: radial-gradient(70% 60% at 70% 40%, #000, transparent 75%);
}
.machine__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.checks { display: grid; gap: 12px; margin: 28px 0; }
.checks li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-2); }
.checks .i { width: 22px; height: 22px; padding: 4px; margin-top: 1px; border-radius: 50%; background: rgba(69, 227, 106, .12); color: var(--green); stroke-width: 3; }
.note { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(31, 211, 240, .25); background: rgba(31, 211, 240, .06); color: var(--text-2); font-size: 14px; }
.note .i { margin-top: 1px; color: var(--cyan); }
.machine__visual { position: relative; }
.machine__visual > img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: 0 50px 120px -40px rgba(31, 211, 240, .35); }
.gauge { position: absolute; right: -12px; bottom: -32px; width: 210px; padding: 16px 18px 14px; border-radius: 20px; text-align: center; background: rgba(8, 11, 16, .8); border: 1px solid var(--line-2); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.gauge svg { width: 100%; height: auto; overflow: visible; }
.gauge path { fill: none; stroke-width: 10; stroke-linecap: round; }
.gauge__track { stroke: rgba(255, 255, 255, .08); }
.gauge__val { stroke: url(#gg); stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 2s var(--ease); filter: drop-shadow(0 0 6px rgba(31, 211, 240, .6)); }
.gauge__read { display: flex; flex-direction: column; align-items: center; margin-top: -56px; line-height: 1; }
.gauge__read b { font-family: var(--mono); font-size: 40px; font-weight: 700; font-variant-numeric: tabular-nums; }
.gauge__read small { margin-top: 2px; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--muted); }
.gauge__label { display: block; margin-top: 10px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); }

.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(64px, 7vw, 96px); }
.tile { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, .02); transition: border-color .3s, transform .3s var(--ease); }
.tile:hover { border-color: rgba(69, 227, 106, .4); transform: translateY(-4px); }
.tile b { display: flex; align-items: baseline; gap: 4px; font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 800; font-stretch: 115%; line-height: 1; letter-spacing: -.02em; }
.tile b em { font-style: normal; font-size: .42em; font-weight: 700; color: var(--cyan); }
.tile span { display: block; margin-top: 10px; font-size: 14px; color: var(--muted); }

/* ---------- 03 Prices ---------- */
.seg { position: relative; display: inline-flex; max-width: 100%; margin-bottom: 28px; padding: 5px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--panel); }
.seg button { position: relative; z-index: 1; padding: 11px 24px; border-radius: 999px; font-size: 14.5px; font-weight: 700; color: var(--text-2); white-space: nowrap; transition: color .3s; }
.seg button[aria-selected="true"] { color: #03140a; }
.seg__ind { position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 0; width: 0; border-radius: 999px; background: var(--grad); box-shadow: 0 8px 24px -10px rgba(69, 227, 106, .7); transition: transform .45s var(--ease), width .45s var(--ease); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-grid--4 { grid-template-columns: repeat(4, 1fr); }
.price-grid:not([hidden]) { animation: panelIn .5s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.price-card { position: relative; display: flex; flex-direction: column; gap: 18px; padding: 28px; border-radius: 26px; border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel), var(--bg-2)); transition: transform .35s var(--ease), border-color .35s; }
.price-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.price-card--hot { border-color: transparent; background: linear-gradient(180deg, #0f1a17, #0a1014) padding-box, var(--grad) border-box; box-shadow: 0 30px 80px -40px rgba(69, 227, 106, .5); }
.price-card--hot:hover { border-color: transparent; }
.price-card--soft { border-style: dashed; background: rgba(255, 255, 255, .015); }
.price-card header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 12px; min-height: 28px; }
.price-card__tag { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); }
.badge { padding: 5px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 800; letter-spacing: .02em; white-space: nowrap; color: #03140a; background: var(--grad); }
.price-card__dur { display: flex; align-items: center; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-weight: 600; }
.price-card__dur .i { color: var(--green); }
.price-card__txt { font-size: 15px; color: var(--text-2); }
.price-card .btn { margin-top: auto; }

.info-strip { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 28px 48px; align-items: center; margin-top: 24px; padding: 26px 30px; border-radius: 24px; border: 1px solid var(--line); background: rgba(255, 255, 255, .015); }
.info-strip h3 { margin-bottom: 14px; font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.info-strip__pay { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--muted); }
.info-strip__pay img, .footer__pay img { width: auto; filter: brightness(0) invert(1); opacity: .8; }
.info-strip__pay img { height: 20px; }

/* ---------- 04 Events ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(290px, auto); gap: 16px; }
.bento__item { position: relative; isolation: isolate; display: flex; align-items: flex-end; overflow: hidden; min-height: 300px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--panel); }
.bento__item--corp { grid-column: span 7; grid-row: span 2; }
.bento__item--bday, .bento__item--bach, .bento__item--perk { grid-column: span 5; }
.bento__item--youth { grid-column: span 7; }
.bento__item > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.bento__item:hover > img { transform: scale(1.05); }
.bento__item::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(5, 7, 10, .15) 0%, rgba(5, 7, 10, .5) 35%, rgba(5, 7, 10, .94) 78%); }
.bento__body { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; max-width: 620px; padding: clamp(22px, 2.6vw, 36px); }
.bento h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); font-weight: 800; font-stretch: 112%; line-height: 1; letter-spacing: -.02em; text-transform: uppercase; text-wrap: balance; }
.bento__item--corp h3 { font-size: clamp(1.9rem, 3.6vw, 3.4rem); }
.bento p { max-width: 52ch; color: var(--text-2); }
blockquote { padding-left: 14px; border-left: 2px solid var(--green); font-size: 14.5px; font-style: italic; color: var(--text); }
blockquote cite { display: block; margin-top: 4px; font-family: var(--mono); font-size: 11px; font-style: normal; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.bento__item--perk { align-items: stretch; border-color: rgba(69, 227, 106, .25); background: radial-gradient(80% 90% at 100% 0%, rgba(31, 211, 240, .12), transparent 60%), linear-gradient(160deg, #0e1a14 0%, #081016 70%); }
.bento__item--perk::before { display: none; }
.perk { display: flex; flex-direction: column; justify-content: center; gap: 16px; padding: clamp(24px, 2.6vw, 36px); }
.perk__big { font-size: clamp(4rem, 7vw, 6.4rem); font-weight: 900; font-stretch: 125%; line-height: .85; letter-spacing: -.04em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.perk h3 { font-size: clamp(1.15rem, 1.7vw, 1.5rem); font-weight: 700; font-stretch: 100%; line-height: 1.25; letter-spacing: -.01em; text-transform: none; }

.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.offer { display: flex; flex-direction: column; gap: 14px; padding: 28px; border-radius: 26px; border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel), var(--bg-2)); }
.offer__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--green); background: rgba(69, 227, 106, .1); border: 1px solid rgba(69, 227, 106, .25); }
.offer__icon .i { width: 22px; height: 22px; }
.offer h3 { font-size: 1.3rem; font-weight: 800; font-stretch: 108%; letter-spacing: -.01em; }
.offer p { font-size: 15px; color: var(--text-2); }
.offer .btn { margin-top: auto; }
.hours-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.hours-chips span { display: inline-flex; gap: 6px; padding: 6px 10px; border-radius: 10px; font-family: var(--mono); font-size: 12.5px; color: var(--text-2); background: rgba(255, 255, 255, .04); border: 1px solid var(--line); }
.hours-chips b { color: #fff; }

/* ---------- 05 Compete ---------- */
.compete { background: var(--bg-2); border-block: 1px solid var(--line); }
.compete__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; align-items: stretch; }
.compete__grid > *, .visit__grid > *, .faq__grid > *, .machine__grid > *, .track__intro > *, .sec-head--split > * { min-width: 0; }
.board { display: flex; flex-direction: column; gap: 18px; padding: clamp(20px, 2.4vw, 32px); border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(180deg, #0b1016, #070a0e); }
.board__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.board__head h3 { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 800; font-stretch: 110%; }
.board__head h3 .i { color: var(--green); }
.board__head p { margin-top: 4px; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--muted); }
.live { display: inline-flex; align-items: center; gap: 7px; padding: 5px 10px; border-radius: 999px; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .14em; color: #ff6b6b; background: rgba(255, 59, 59, .1); border: 1px solid rgba(255, 59, 59, .4); }
.live i { width: 7px; height: 7px; border-radius: 50%; background: #ff3b3b; animation: blink 1.2s steps(2) infinite; }
.board__tabs { display: flex; gap: 6px; margin-inline: -4px; padding: 2px 4px; overflow-x: auto; scrollbar-width: none; }
.board__tabs::-webkit-scrollbar { display: none; }
.board__tabs button { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; white-space: nowrap; color: var(--text-2); transition: background-color .25s, color .25s, border-color .25s; }
.board__tabs button:hover { border-color: var(--line-2); color: #fff; }
.board__tabs button[aria-selected="true"] { background: #fff; border-color: #fff; color: #05070a; }
.board__list { display: grid; gap: 6px; }
.row { display: grid; grid-template-columns: 44px 1fr auto auto; align-items: center; gap: 14px; padding: 13px 16px; border-radius: 14px; border: 1px solid transparent; background: rgba(255, 255, 255, .025); opacity: 0; transform: translateX(-10px); animation: rowIn .5s var(--ease) forwards; animation-delay: calc(var(--i) * 60ms); }
@keyframes rowIn { to { opacity: 1; transform: none; } }
.row__pos { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--muted); }
.row__name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
.row__date { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.row__time { min-width: 80px; text-align: right; font-family: var(--mono); font-size: 17px; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1.15; }
.row__gap { display: block; font-size: 11px; font-weight: 500; color: var(--muted); }
.row--p1 { background: linear-gradient(90deg, rgba(69, 227, 106, .14), rgba(31, 211, 240, .05)); border-color: rgba(69, 227, 106, .35); }
.row--p1 .row__pos, .row--p1 .row__time { color: var(--green); }
.row--p2 .row__pos { color: #dfe5ea; }
.row--p3 .row__pos { color: #d89c66; }
.board__foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; margin-top: auto; padding-top: 6px; }

.champ { position: relative; isolation: isolate; display: flex; align-items: flex-end; min-height: 540px; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.champ > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.champ:hover > img { transform: scale(1.04); }
.champ::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(5, 7, 10, .05) 0%, rgba(5, 7, 10, .55) 50%, rgba(5, 7, 10, .96) 100%); }
.champ__body { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: clamp(24px, 3vw, 40px); }
.champ h3 { font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 850; font-stretch: 115%; line-height: .95; letter-spacing: -.02em; text-transform: uppercase; }
.champ p { max-width: 46ch; color: var(--text-2); }

/* ---------- 06 School ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: clamp(32px, 4vw, 48px); border-block: 1px solid var(--line); }
.pillar { padding: 26px 26px 26px 0; border-right: 1px solid var(--line); }
.pillar + .pillar { padding-left: 26px; }
.pillar:last-child { border-right: 0; }
.pillar span { font-family: var(--mono); font-size: 12px; color: var(--green); }
.pillar h3 { margin: 10px 0 6px; font-size: 1.2rem; font-weight: 800; font-stretch: 108%; }
.pillar p { font-size: 15px; color: var(--muted); }
.levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.level { display: flex; flex-direction: column; gap: 14px; padding: 28px; border-radius: 26px; border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel), var(--bg-2)); transition: transform .35s var(--ease), border-color .35s; }
.level:hover { transform: translateY(-6px); border-color: var(--line-2); }
.level--hot { border-color: transparent; background: linear-gradient(180deg, #0f1a17, #0a1014) padding-box, var(--grad) border-box; }
.level--hot:hover { border-color: transparent; }
.level__bars { display: flex; gap: 5px; }
.level__bars i { width: 28px; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .1); }
.level__bars i.on { background: var(--grad); }
.level h3 { font-size: clamp(1.8rem, 2.6vw, 2.4rem); font-weight: 850; font-stretch: 118%; line-height: 1; letter-spacing: -.02em; text-transform: uppercase; }
.level__time { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 12px; font-family: var(--mono); font-size: 13.5px; background: rgba(255, 255, 255, .04); }
.level__time .i { width: 16px; height: 16px; color: var(--cyan); }
.level > p:not(.level__time) { font-size: 15px; color: var(--text-2); }
.level .btn { margin-top: auto; }

/* ---------- 07 Venue ---------- */
.film { position: relative; isolation: isolate; display: block; width: 100%; aspect-ratio: 21 / 9; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); text-align: left; }
.film img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.film:hover img { transform: scale(1.04); }
.film::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5, 7, 10, .85) 0%, rgba(5, 7, 10, .15) 60%), linear-gradient(0deg, rgba(5, 7, 10, .6), transparent 50%); }
.film__play { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 96px; height: 96px; margin: -48px 0 0 -48px; border-radius: 50%; color: #03140a; background: var(--grad); animation: pingBig 2.4s infinite; transition: transform .35s var(--ease); }
.film:hover .film__play { transform: scale(1.08); }
.film__play .i { width: 34px; height: 34px; margin-left: 4px; }
@keyframes pingBig { 0% { box-shadow: 0 0 0 0 rgba(69, 227, 106, .45); } 70% { box-shadow: 0 0 0 28px rgba(69, 227, 106, 0); } 100% { box-shadow: 0 0 0 0 rgba(69, 227, 106, 0); } }
.film__txt { position: absolute; left: clamp(20px, 3vw, 40px); bottom: clamp(20px, 3vw, 36px); display: flex; flex-direction: column; gap: 4px; }
.film__txt .kicker { margin: 0; }
.film__txt b { font-size: clamp(1.8rem, 4vw, 3.6rem); font-weight: 850; font-stretch: 118%; line-height: 1; letter-spacing: -.02em; text-transform: uppercase; }

.spaces { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 16px; }
.space { display: flex; flex-direction: column; gap: 10px; }
.space__img { position: relative; aspect-ratio: 4 / 3; margin-bottom: 6px; overflow: hidden; border-radius: 20px; border: 1px solid var(--line); background: #030507; }
.space__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.space:hover .space__img img { transform: scale(1.05); }
.space__img--neon span { position: absolute; left: 12px; bottom: 12px; padding: 5px 9px; border-radius: 999px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); background: rgba(5, 7, 10, .6); border: 1px solid var(--line); }
.space__meta { display: flex; gap: 8px; }
.space__meta span { padding: 4px 9px; border-radius: 8px; font-family: var(--mono); font-size: 12px; border: 1px solid var(--line-2); }
.space__meta span:first-child { color: var(--green); border-color: rgba(69, 227, 106, .35); }
.space h3 { font-size: 1.2rem; font-weight: 800; font-stretch: 108%; }
.space p { font-size: 14.5px; color: var(--muted); }

.rail { margin-top: clamp(56px, 7vw, 96px); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.rail__track { display: flex; width: max-content; animation: marquee 70s linear infinite; }
.rail:hover .rail__track { animation-play-state: paused; }
.rail__track > img { height: clamp(200px, 26vw, 340px); width: auto; aspect-ratio: 3 / 2; margin-right: 16px; object-fit: cover; border-radius: 20px; border: 1px solid var(--line); }

/* ---------- Gift ---------- */
.gift { position: relative; isolation: isolate; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 32px; min-height: 480px; padding: clamp(28px, 5vw, 72px); overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.gift__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.gift::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, var(--bg) 0%, rgba(5, 7, 10, .88) 45%, rgba(5, 7, 10, .35) 100%); }
.gift__copy .lead { margin: 18px 0 30px; }
.gift__card { display: grid; place-items: center; perspective: 1000px; }
.gcard {
  position: relative; width: min(100%, 360px); aspect-ratio: 1.586; padding: 22px; overflow: hidden; border-radius: 22px;
  background: radial-gradient(120% 120% at 100% 0%, rgba(31, 211, 240, .35), transparent 50%), radial-gradient(120% 120% at 0% 100%, rgba(69, 227, 106, .3), transparent 50%), linear-gradient(135deg, #0d141b, #05070a);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8), 0 0 60px -20px rgba(31, 211, 240, .45), inset 0 1px 0 rgba(255, 255, 255, .2);
  transform: rotateY(-14deg) rotateX(8deg) rotateZ(-4deg); transition: transform .5s var(--ease);
}
.gcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .14) 50%, transparent 65%); transform: translateX(var(--shine, -40%)); transition: transform .5s var(--ease); }
.gcard img { width: 46px; height: auto; }
.gcard__chip { position: absolute; right: 22px; top: 26px; width: 42px; height: 32px; border-radius: 7px; background: linear-gradient(135deg, #e7d28c, #9f8a45); opacity: .9; }
.gcard__label { position: absolute; left: 22px; bottom: 52px; font-family: var(--mono); font-size: 11px; letter-spacing: .3em; color: var(--text-2); }
.gcard__name { position: absolute; left: 22px; bottom: 20px; font-size: 24px; font-weight: 900; font-stretch: 125%; letter-spacing: .02em; }
.gcard__val { position: absolute; right: 22px; bottom: 24px; font-size: 13px; color: var(--green); }

/* ---------- 08 Visit ---------- */
.visit__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 16px; }
.visit__info { display: flex; flex-direction: column; gap: 28px; padding: clamp(22px, 3vw, 40px); border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel), var(--bg-2)); }
.addr { display: flex; align-items: center; gap: 18px; }
.addr__badge { display: grid; place-items: center; flex: none; width: 68px; height: 68px; border-radius: 18px; font-size: 24px; font-weight: 900; font-stretch: 125%; color: #03140a; background: var(--grad); }
.addr__main { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 800; font-stretch: 108%; line-height: 1.15; letter-spacing: -.01em; }
.addr__sub { margin-top: 4px; color: var(--muted); }
.visit__btns { display: flex; flex-wrap: wrap; gap: 8px; }
.hours__head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 8px; }
.hours h3, .contacts small { font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.hours__row { position: relative; display: flex; justify-content: space-between; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); color: var(--text-2); }
.hours__row b { font-weight: 500; color: var(--text); }
.hours__row.is-today { color: #fff; font-weight: 600; }
.hours__row.is-today::before { content: ""; position: absolute; left: -14px; top: 50%; width: 4px; height: 18px; margin-top: -9px; border-radius: 2px; background: var(--grad); }
.hours__row.is-today b { color: var(--green); font-weight: 700; }
.contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; border-radius: 18px; border: 1px solid var(--line); background: var(--line); }
.contacts a { display: flex; flex-direction: column; gap: 4px; padding: 16px; background: var(--panel); transition: background-color .25s; }
.contacts a:hover { background: #121a22; }
.contacts span { font-size: 14.5px; font-weight: 600; overflow-wrap: anywhere; }
.visit__media { display: grid; gap: 16px; align-content: start; }
.visit__photo, .visit__map { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.visit__photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.visit__photo figcaption { position: absolute; left: 16px; bottom: 16px; right: 16px; width: fit-content; padding: 8px 12px; border-radius: 12px; font-size: 13px; color: #fff; background: rgba(5, 7, 10, .55); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.visit__map { display: grid; grid-template-columns: .9fr 1.1fr; background: #0b1117; }
.visit__map img { width: 100%; height: 100%; aspect-ratio: 940 / 788; object-fit: cover; }
.visit__map figcaption { display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 22px; }
.visit__map b { font-size: 1.1rem; font-weight: 800; }
.visit__map span { font-size: 14.5px; color: var(--muted); }
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.facts li { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 14px; color: var(--text-2); }
.facts .i { width: 16px; height: 16px; color: var(--green); stroke-width: 3; }

/* ---------- 09 FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.faq__side { position: sticky; top: calc(var(--nav-h) + 32px); }
.faq__side .lead { margin: 18px 0 24px; }
.faq__contact { display: flex; flex-wrap: wrap; gap: 8px; }
.qa { border-bottom: 1px solid var(--line); }
.qa:first-child { border-top: 1px solid var(--line); }
.qa summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; list-style: none; cursor: pointer; font-size: clamp(1.02rem, 1.3vw, 1.15rem); font-weight: 650; transition: color .2s; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--green); }
.qa__icon { display: grid; place-items: center; flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--text); transition: transform .35s var(--ease), background-color .3s, border-color .3s; }
.qa__icon .i { width: 16px; height: 16px; }
.qa[open] .qa__icon { transform: rotate(45deg); border-color: transparent; color: #03140a; background: var(--grad); }
.qa__a { padding: 0 56px 24px 0; line-height: 1.7; color: var(--text-2); }
.qa[open] .qa__a { animation: fadeUp .4s var(--ease); }

/* ---------- Finale ---------- */
.finale { position: relative; isolation: isolate; display: grid; place-items: center; min-height: 88vh; min-height: 88svh; padding-block: 120px; overflow: hidden; text-align: center; }
.finale__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.finale::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 55% at 50% 50%, rgba(5, 7, 10, .35), rgba(5, 7, 10, .92) 80%), linear-gradient(180deg, var(--bg) 0%, transparent 25%, transparent 75%, var(--bg) 100%); }
.finale__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.lights { display: flex; gap: clamp(10px, 2vw, 18px); padding: 14px 18px; border-radius: 999px; background: rgba(5, 7, 10, .7); border: 1px solid var(--line-2); }
.lights i { width: clamp(22px, 4vw, 34px); aspect-ratio: 1; border-radius: 50%; background: #1c0c0c; box-shadow: inset 0 2px 6px rgba(0, 0, 0, .6); transition: background-color .12s, box-shadow .12s; }
.lights i.on { background: #ff2a2a; box-shadow: 0 0 18px #ff2a2a, 0 0 40px rgba(255, 42, 42, .6); }
.lights.go i { background: var(--green); box-shadow: 0 0 18px var(--green), 0 0 40px rgba(69, 227, 106, .5); }
.finale__title { display: flex; flex-direction: column; font-size: clamp(3rem, 9vw, 8.4rem); font-weight: 900; font-stretch: 120%; line-height: .88; letter-spacing: -.035em; text-transform: uppercase; }
.finale .lead { margin-inline: auto; }
.finale__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ---------- Footer ---------- */
.footer { padding: 72px 0 32px; border-top: 1px solid var(--line); background: var(--bg); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand img { width: 84px; height: auto; margin-bottom: 16px; }
.footer__brand p { max-width: 30ch; color: var(--muted); }
.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); transition: background-color .25s, color .25s; }
.socials a:hover { background: #fff; color: #05070a; }
.footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__col h4 { margin-bottom: 6px; font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.footer__col a { font-size: 15px; color: var(--text-2); transition: color .2s; }
.footer__col a:hover { color: var(--green); }
.footer__addr { margin-top: 4px; font-size: 14px; color: var(--muted); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 28px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }
.footer__bottom a:hover { color: #fff; }
.footer__pay { display: inline-flex; align-items: center; gap: 10px; }
.footer__pay img { height: 18px; }

/* ---------- Mobile booking bar ---------- */
.mbar { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 50; display: none; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 10px 10px 18px; border-radius: 20px; border: 1px solid var(--line-2); background: rgba(12, 17, 23, .84); -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4); box-shadow: 0 20px 50px rgba(0, 0, 0, .55); transform: translateY(calc(100% + 32px)); transition: transform .5s var(--ease); }
.mbar.is-visible { transform: none; }
.mbar__info { display: flex; flex-direction: column; line-height: 1.1; }
.mbar__info small { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.mbar__info b { font-size: 20px; font-weight: 800; font-stretch: 112%; }

/* ---------- Dialogs ---------- */
dialog { max-width: none; max-height: none; padding: 0; border: 0; background: transparent; color: var(--text); }
dialog::backdrop { background: rgba(2, 3, 5, .74); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
dialog[open]::backdrop { animation: fade .35s ease; }
dialog.is-closing::backdrop { animation: fadeOut .3s ease forwards; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut { to { opacity: 0; } }
@keyframes popIn { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes popOut { to { opacity: 0; transform: translateY(24px) scale(.98); } }
@keyframes sheetUp { from { transform: translateY(100%); } to { transform: none; } }
@keyframes sheetDown { to { transform: translateY(100%); } }

.sheet { width: min(580px, calc(100% - 32px)); margin: auto; }
.sheet[open], .modal[open] { animation: popIn .45s var(--ease); }
.sheet.is-closing, .modal.is-closing { animation: popOut .3s var(--ease) forwards; }
.sheet__panel:focus { outline: none; }
.sheet__panel { position: relative; overflow: hidden; padding: 24px; border-radius: 28px; border: 1px solid var(--line-2); background: linear-gradient(180deg, #0d1319, #080b10); box-shadow: 0 40px 120px rgba(0, 0, 0, .7), 0 0 80px -30px rgba(31, 211, 240, .3); }
.sheet__panel::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--grad); }
.sheet__grab { display: none; width: 44px; height: 5px; margin: -6px auto 14px; border-radius: 3px; background: rgba(255, 255, 255, .2); }
.sheet__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.sheet__head .kicker { margin-bottom: 8px; }
.sheet__head .kicker__n { animation: blink 1.2s steps(2) infinite; }
.sheet__head .kicker__n::after { display: none; }
.sheet h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); font-weight: 850; font-stretch: 112%; line-height: 1; letter-spacing: -.02em; }
.icon-btn { display: grid; place-items: center; flex: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(5, 7, 10, .5); transition: background-color .25s, color .25s; }
.icon-btn:hover { background: #fff; color: #05070a; }
.sheet__opts { display: grid; gap: 8px; }
.opt { display: grid; grid-template-columns: 44px 1fr auto 18px; align-items: center; gap: 14px; padding: 14px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); transition: background-color .25s, border-color .25s, transform .25s var(--ease); }
.opt:hover { transform: translateX(3px); border-color: rgba(69, 227, 106, .4); background: rgba(69, 227, 106, .06); }
.opt--hot { border-color: transparent; background: linear-gradient(90deg, #0f1c16, #0a1318) padding-box, var(--grad) border-box; }
.opt--hot:hover { border-color: transparent; }
.opt__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: var(--green); background: rgba(69, 227, 106, .1); }
.opt--hot .opt__icon { color: #03140a; background: var(--grad); }
.opt__body { display: flex; flex-direction: column; min-width: 0; }
.opt__body b { font-size: 15.5px; font-weight: 700; }
.opt__body small { margin-top: 2px; font-size: 13px; line-height: 1.35; color: var(--muted); }
.opt__price { display: flex; flex-direction: column; align-items: flex-end; font-family: var(--mono); font-size: 14px; font-weight: 700; line-height: 1.15; white-space: nowrap; }
.opt__price small { font-size: 10.5px; font-weight: 400; color: var(--muted); }
.opt__go { width: 18px; height: 18px; color: var(--muted); }
.opt:hover .opt__go { color: var(--green); }
.sheet__foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.sheet__foot > span, .sheet__foot a { display: inline-flex; align-items: center; gap: 8px; }
.sheet__foot .i { width: 15px; height: 15px; color: var(--green); }
.sheet__foot a { font-family: var(--mono); color: var(--text); }

.modal { width: min(1120px, calc(100% - 32px)); margin: auto; overflow: visible; }
.modal video { width: 100%; aspect-ratio: 16 / 9; border-radius: 22px; border: 1px solid var(--line-2); background: #000; box-shadow: 0 40px 120px rgba(0, 0, 0, .7); }
.modal__close { position: absolute; right: 12px; top: 12px; z-index: 2; }
.modal--timing { width: min(1040px, calc(100% - 24px)); height: min(86vh, 860px); overflow: hidden; border-radius: 24px; border: 1px solid var(--line-2); background: #0b1016; }
.modal--timing[open] { display: flex; flex-direction: column; }
.modal__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 12px 12px 20px; border-bottom: 1px solid var(--line); }
.modal__head h2 { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; font-weight: 800; }
.modal__head > div { display: flex; align-items: center; gap: 8px; }
.modal--timing iframe { flex: 1; width: 100%; border: 0; background: #fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .nav__links { display: none; }
  .burger { display: block; }
}

@media (max-width: 1080px) {
  .price-grid--4 { grid-template-columns: 1fr 1fr; }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .info-strip__pay { grid-column: 1 / -1; flex-direction: row; align-items: center; }
  .spaces { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .sec-head--split { grid-template-columns: 1fr; }
  .track__intro, .machine__grid, .compete__grid, .visit__grid, .faq__grid { grid-template-columns: minmax(0, 1fr); }
  .specs, .offers, .levels { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__item { grid-column: auto !important; grid-row: auto !important; min-height: 440px; }
  .bento__item--corp { min-height: 540px; }
  .bento__item--perk { min-height: 0; }
  .champ { min-height: 460px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar, .pillar + .pillar { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }
  .gift { grid-template-columns: 1fr; }
  .gift::before { background: linear-gradient(180deg, rgba(5, 7, 10, .65), rgba(5, 7, 10, .95)); }
  .gift__card { order: -1; }
  .gcard { width: min(80%, 300px); }
  .faq__side { position: static; }
  .qa__a { padding-right: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --nav-h: 64px; }
  .nav .status, .nav .lang { display: none; }
  .brand__txt b { font-size: 15px; }

  .hero { padding-top: calc(var(--nav-h) + 24px); }
  .hero__title { font-size: 7.4vw; font-stretch: 100%; }
  .hero__title .line:nth-child(2) { font-size: 1.4em; font-stretch: 100%; }
  .eyebrow { font-size: 10.5px; letter-spacing: .14em; }
  .hero__cta .btn { flex: 1 1 auto; }
  .hero__hud { padding-top: 16px; }
  .hud { width: 100%; }
  .hud__cell { flex: 1; padding: 10px 14px; }
  .hud__cell--wide, .scroll-cue { display: none; }
  .hud__time { font-size: 17px; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat, .stat:first-child { padding: 22px 0 18px; border-right: 0; }
  .stat:nth-child(odd) { padding-right: 16px; border-right: 1px solid var(--line); }
  .stat:nth-child(even) { padding-left: 18px; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .ping b, .track__legend { display: none; }

  .machine__visual { margin-bottom: 36px; }
  .machine__visual > img { aspect-ratio: 4 / 3; object-fit: cover; }
  .gauge { right: 12px; bottom: -40px; width: 148px; padding: 10px 10px 8px; }
  .gauge__read { margin-top: -44px; }
  .gauge__read b { font-size: 30px; }

  .seg { display: flex; width: 100%; }
  .seg button { flex: 1; padding: 11px 6px; }

  .price-grid, .price-grid--4, .spaces {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 84%;
    margin-inline: calc(-1 * var(--gutter)); padding: 8px var(--gutter) 16px; scroll-padding-inline: var(--gutter);
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  }
  .spaces { grid-auto-columns: 78%; }
  .price-grid::-webkit-scrollbar, .spaces::-webkit-scrollbar { display: none; }
  .price-card, .space { scroll-snap-align: start; }
  .price-card:hover, .level:hover { transform: none; }
  .info-strip { grid-template-columns: 1fr; padding: 22px; }

  .row { grid-template-columns: 34px 1fr auto; gap: 10px; padding: 12px; }
  .row__date { display: none; }

  .film { aspect-ratio: 4 / 3; }
  .film__play { width: 72px; height: 72px; margin: -36px 0 0 -36px; }
  .film__play .i { width: 26px; height: 26px; }

  .finale__title { font-size: 11.5vw; font-stretch: 100%; }
  .mbar { display: flex; }
  .footer { padding-bottom: 120px; }

  .sheet { width: 100%; margin: auto 0 0; }
  .sheet[open] { animation: sheetUp .5s var(--ease); }
  .sheet.is-closing { animation: sheetDown .3s var(--ease) forwards; }
  .sheet__panel { max-height: 90vh; overflow-y: auto; padding: 20px 16px calc(20px + env(safe-area-inset-bottom)); border-radius: 28px 28px 0 0; border-bottom: 0; }
  .sheet__grab { display: block; }
  .opt { grid-template-columns: 40px 1fr auto; gap: 12px; padding: 12px; }
  .opt__icon { width: 40px; height: 40px; }
  .opt__go { display: none; }
}

@media (max-width: 560px) {
  .gcard__val { display: none; }
  .contacts { grid-template-columns: 1fr; }
  .visit__map { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .nav__book { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .ticker__track, .rail__track, .track__sweep { animation: none !important; }
}
