/* ═══════════════════════════════════════════════════════════
   XOLT LEASE — cinematic dark UI
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #05080a;
  --bg-pine: #060d0a;
  --bg-raise: #0a1210;
  --ink: #eef4ef;
  --ink-dim: #9fb2a9;
  --ink-faint: #5f7169;
  --volt: #c8ff3e;
  --volt-soft: rgba(200, 255, 62, 0.14);
  --volt-glow: rgba(200, 255, 62, 0.35);
  --gold: #e6c26a;
  --gold-soft: rgba(230, 194, 106, 0.16);
  --line: rgba(238, 244, 239, 0.08);
  --line-strong: rgba(238, 244, 239, 0.16);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h: 72px;
  --radius: 20px;
  --radius-lg: 28px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--volt); color: #05080a; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

/* ── scrollbar ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1c2a24; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #2a3d34; }

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: grid; place-content: center; gap: 28px;
  transition: opacity 0.7s var(--ease-inout), visibility 0.7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__mark {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.14em;
  animation: preloader-breathe 2.2s var(--ease-inout) infinite;
}
.preloader__word { font-weight: 600; }
.preloader__word--thin { font-weight: 300; color: var(--ink-dim); }
.preloader__bolt { color: var(--volt); font-size: 0.7em; transform: translateY(-2px); }
.preloader__bar {
  width: 180px; height: 1.5px; margin-inline: auto;
  background: var(--line); border-radius: 2px; overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 40%;
  background: var(--volt);
  animation: preloader-sweep 1.1s var(--ease-inout) infinite;
}
@keyframes preloader-sweep {
  from { transform: translateX(-110%); }
  to { transform: translateX(280%); }
}
@keyframes preloader-breathe {
  0%, 100% { opacity: 1; } 50% { opacity: 0.75; }
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.5s var(--ease-out), border-color 0.5s, backdrop-filter 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 8, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: baseline; gap: 5px;
  font-family: var(--font-display);
  font-size: 1.05rem; letter-spacing: 0.16em;
}
.nav__logo-main { font-weight: 700; }
.nav__logo-bolt { color: var(--volt); font-size: 0.8em; }
.nav__logo-sub { font-weight: 300; color: var(--ink-dim); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--ink-dim);
  transition: color 0.3s;
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--volt);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:not(.nav__cta):hover { color: var(--ink); }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  color: var(--volt) !important;
  border: 1px solid rgba(200, 255, 62, 0.4);
  padding: 9px 20px; border-radius: 100px;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s !important;
}
.nav__cta:hover {
  background: var(--volt); color: #05080a !important;
  box-shadow: 0 0 32px var(--volt-glow);
}
.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.nav__burger span {
  width: 24px; height: 1.5px; background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 32px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, border-color 0.35s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--volt {
  background: var(--volt); color: #05080a;
  box-shadow: 0 0 0 rgba(200, 255, 62, 0);
}
.btn--volt:hover { box-shadow: 0 8px 44px var(--volt-glow); }
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: rgba(238, 244, 239, 0.4); background: rgba(255, 255, 255, 0.05); }
.btn--full { width: 100%; justify-content: center; }
.btn--xl { padding: 22px 46px; font-size: 1.05rem; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 80px;
}
.hero__media {
  position: absolute; inset: -12% 0;
  z-index: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 62%;
  animation: hero-zoom 18s var(--ease-out) forwards;
  filter: brightness(0.88) saturate(1.05);
}
@keyframes hero-zoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.02); }
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,8,10,0.85) 0%, rgba(5,8,10,0.25) 30%, rgba(5,8,10,0.35) 62%, var(--bg) 100%),
    radial-gradient(120% 90% at 50% 42%, transparent 40%, rgba(5,8,10,0.75) 100%);
}
.hero__glow {
  position: absolute; z-index: 1;
  left: 50%; bottom: -30%;
  width: 900px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, var(--volt-soft) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-dim);
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(5, 8, 10, 0.4);
  backdrop-filter: blur(10px);
  margin-bottom: 34px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 12px var(--volt);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.hero__line { display: block; overflow: hidden; }
.hero__line--accent {
  background: linear-gradient(100deg, var(--ink) 10%, var(--volt) 55%, var(--ink) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: sheen 7s var(--ease-inout) infinite 1.4s;
}
@keyframes sheen {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}
.hero__sub {
  margin-top: 30px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-dim);
  max-width: 44ch;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 44px; }

/* hero stagger entrance */
[data-hero-stagger] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
}
body.is-loaded [data-hero-stagger] { opacity: 1; transform: translateY(0); }
body.is-loaded [data-hero-stagger]:nth-of-type(1) { transition-delay: 0.15s; }

/* floating data panels */
.hero__panels {
  position: absolute; z-index: 2;
  right: max(4vw, calc((100vw - 1320px) / 2));
  top: 50%;
  display: flex; flex-direction: column; gap: 18px;
  transform: translateY(-46%);
}
.glass-chip {
  display: inline-flex; flex-direction: column; gap: 3px;
  padding: 15px 20px;
  border-radius: 16px;
  background: rgba(10, 18, 16, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  min-width: 190px;
}
.glass-chip__label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 500;
}
.glass-chip__value {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em;
}
.glass-chip__value em { font-style: normal; font-size: 0.7em; color: var(--ink-dim); font-weight: 400; }
.glass-chip__value.volt { color: var(--volt); }
.glass-chip__tag {
  margin-top: 6px;
  align-self: flex-start;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px solid var(--line);
  padding: 3px 8px; border-radius: 100px;
}
.float-a { animation: floaty 7s ease-in-out infinite; }
.float-b { animation: floaty 8.5s ease-in-out infinite 1.2s; }
.float-c { animation: floaty 7.8s ease-in-out infinite 2.4s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* scroll cue */
.hero__scrollcue {
  position: absolute; z-index: 2;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0.7; transition: opacity 0.3s;
}
.hero__scrollcue:hover { opacity: 1; }
.hero__scrollcue-track {
  width: 24px; height: 38px;
  border: 1.5px solid var(--line-strong);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.hero__scrollcue-dot {
  width: 4px; height: 8px; border-radius: 4px;
  background: var(--volt);
  animation: scroll-dot 2s var(--ease-inout) infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.hero__scrollcue-text {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-faint);
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-pine);
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee__track {
  display: flex; align-items: center; gap: 42px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}
.marquee__track i { color: var(--volt); font-style: normal; font-size: 0.7rem; opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ═══════════ SECTIONS (shared) ═══════════ */
.section { position: relative; padding: clamp(90px, 12vw, 160px) 0; }
.section__eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 22px;
}
.section__eyebrow--gold { color: var(--gold); }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.section__title .dim { color: var(--ink-faint); }
.section__lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-dim);
  max-width: 56ch;
}
.volt-text { color: var(--volt); }
.fineprint {
  font-size: 0.75rem; color: var(--ink-faint);
  margin-top: 40px; letter-spacing: 0.02em;
}

/* reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--ease-out) var(--d, 0ms), transform 1s var(--ease-out) var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* glass primitives */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-out), box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(200, 255, 62, 0.07), transparent 45%);
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover { border-color: var(--line-strong); background: var(--glass-strong); }
.glass-panel {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

/* ═══════════ HOW ═══════════ */
.how { background: var(--bg); }
.how .section__title { max-width: 22ch; }

.flow { margin: clamp(50px, 7vw, 90px) 0 clamp(40px, 6vw, 70px); position: relative; }
.flow__line { width: 100%; height: 120px; display: block; }
.flow__line path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 2.6s var(--ease-inout) 0.2s;
}
.flow.is-visible .flow__line path { stroke-dashoffset: 0; }
.flow__nodes {
  display: flex; justify-content: space-between;
  margin-top: 8px;
}
.flow__node {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  flex: 1;
}
.flow__icon {
  width: 54px; height: 54px;
  display: grid; place-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg-raise);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-dim);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, color 0.4s, border-color 0.4s;
}
.flow__node:hover .flow__icon { transform: translateY(-4px) scale(1.06); }
.flow__node--volt .flow__icon {
  color: var(--volt); border-color: rgba(200, 255, 62, 0.45);
  box-shadow: 0 0 30px rgba(200, 255, 62, 0.18);
}
.flow__node--gold .flow__icon {
  color: var(--gold); border-color: rgba(230, 194, 106, 0.45);
  box-shadow: 0 0 30px rgba(230, 194, 106, 0.15);
}
.flow__label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-dim); font-weight: 500;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step { padding: 36px 32px 40px; }
.step__num {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--volt);
  display: block; margin-bottom: 60px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.step__body { font-size: 0.92rem; color: var(--ink-dim); }

/* gold moment */
.goldmoment {
  position: relative;
  margin-top: clamp(80px, 10vw, 140px);
  min-height: 74vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.goldmoment__media { position: absolute; inset: -10% 0; z-index: 0; }
.goldmoment__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
  filter: brightness(0.8);
}
.goldmoment__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 26%, transparent 70%, var(--bg) 100%),
    linear-gradient(90deg, rgba(5,8,10,0.82) 0%, rgba(5,8,10,0.2) 55%, transparent 100%);
}
.goldmoment__copy {
  position: relative; z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
  padding: 90px 0;
}
.goldmoment__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05; letter-spacing: -0.02em;
}
.goldmoment__title em {
  font-style: normal;
  background: linear-gradient(100deg, #f4e0ae, var(--gold) 45%, #b98a2e);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.goldmoment__sub {
  margin-top: 22px;
  color: var(--ink-dim);
  font-size: 1.05rem;
  max-width: 40ch;
}

/* ═══════════ WHY EVS ═══════════ */
.why { background: var(--bg-pine); }
.why__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.why__list {
  list-style: none;
  margin-top: 34px;
  display: flex; flex-direction: column; gap: 16px;
}
.why__list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.98rem; color: var(--ink-dim);
}
.tick {
  width: 26px; height: 26px; flex: none;
  display: grid; place-content: center;
  border-radius: 50%;
  background: var(--volt-soft);
  color: var(--volt);
  font-size: 0.75rem;
}
.why__visual { position: relative; }
.why__imgwrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.55);
  aspect-ratio: 4 / 3.4;
}
.why__imgwrap img {
  width: 100%; height: 112%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.why__visual:hover .why__imgwrap img { transform: scale(1.04); }
.why__chip { position: absolute; bottom: -24px; left: -24px; }

.stats {
  margin-top: clamp(70px, 9vw, 110px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--bg-pine);
  padding: 40px 32px 36px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.4s;
}
.stat:hover { background: var(--bg-raise); }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--volt);
  display: flex; align-items: baseline; gap: 6px;
}
.stat__unit { font-size: 0.42em; color: var(--ink-dim); font-weight: 500; letter-spacing: 0.08em; }
.stat__label { font-size: 0.8rem; color: var(--ink-faint); max-width: 24ch; }

/* ═══════════ CHANGEOVER ═══════════ */
.changeover { background: var(--bg); overflow: hidden; }
.changeover__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.changeover__copy .btn { margin-top: 36px; }
.changeover__panelwrap { position: relative; perspective: 1200px; }
.changeover__panel { padding: 34px; }
.glass-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 26px;
}
.glass-panel__title {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem; letter-spacing: 0.02em;
}
.changeover__rows { display: flex; flex-direction: column; }
.changeover__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.changeover__row span { color: var(--ink-dim); }
.changeover__row strong { font-family: var(--font-display); font-weight: 600; }
.changeover__row--volt strong { color: var(--volt); }
.changeover__delta { margin-top: 26px; }
.changeover__delta-label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint);
}
.changeover__delta-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 600;
  color: var(--volt);
  margin: 6px 0 14px;
}
.changeover__delta-value em { font-style: normal; font-size: 0.65em; color: var(--ink); }
.changeover__bar {
  height: 6px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.changeover__bar span {
  display: block; height: 100%; width: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--volt), #7ddf64);
  box-shadow: 0 0 18px var(--volt-glow);
  transition: width 1.6s var(--ease-inout) 0.5s;
}
.is-visible .changeover__bar span { width: var(--w, 60%); }
.changeover__chip { position: absolute; bottom: -26px; right: -18px; }

/* ═══════════ TOOLS ═══════════ */
.tools { background: var(--bg-pine); }
.tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(40px, 6vw, 70px);
}
.tool { padding: 38px 32px; display: flex; flex-direction: column; cursor: pointer; }
.tool--featured { border-color: rgba(200, 255, 62, 0.3); }
.tool--featured::after {
  content: "Most popular";
  position: absolute; top: 20px; right: 20px;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--volt);
  border: 1px solid rgba(200, 255, 62, 0.35);
  padding: 4px 10px; border-radius: 100px;
}
.tool__icon {
  width: 52px; height: 52px;
  display: grid; place-content: center;
  border-radius: 14px;
  background: var(--volt-soft);
  color: var(--volt);
  margin-bottom: 26px;
}
.tool__icon svg { width: 26px; height: 26px; }
.tool__title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  margin-bottom: 12px;
}
.tool__body { font-size: 0.9rem; color: var(--ink-dim); flex: 1; }
.tool__link {
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 500;
  color: var(--volt);
  display: inline-flex; gap: 8px; align-items: center;
}
.tool__link i { font-style: normal; transition: transform 0.35s var(--ease-out); }
.tool:hover .tool__link i { transform: translateX(5px); }

/* calculator placeholder */
.calc { margin-top: 26px; padding: clamp(26px, 4vw, 44px); }
.calc__tabs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.calc__tab {
  padding: 11px 22px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 500;
  color: var(--ink-dim);
  border: 1px solid transparent;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.calc__tab:hover { color: var(--ink); }
.calc__tab.is-active {
  color: var(--volt);
  background: var(--volt-soft);
  border-color: rgba(200, 255, 62, 0.3);
}
.calc__tag { margin-left: auto; margin-top: 0; }
.calc__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 60px);
}
.calc__inputs { display: flex; flex-direction: column; gap: 30px; }
.calc__field { display: block; }
.calc__field-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
  font-size: 0.88rem; color: var(--ink-dim);
}
.calc__field-head output {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.05rem;
  color: var(--ink);
}
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--volt) var(--fill, 50%), rgba(255,255,255,0.1) var(--fill, 50%));
  outline: none;
  cursor: grab;
}
input[type="range"]:active { cursor: grabbing; }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink);
  border: 5px solid var(--bg-raise);
  box-shadow: 0 0 0 1px var(--line-strong), 0 4px 14px rgba(0,0,0,0.5);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 1px var(--volt), 0 0 20px var(--volt-glow);
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); border: 5px solid var(--bg-raise);
  box-shadow: 0 0 0 1px var(--line-strong);
}
.calc__results {
  display: flex; flex-direction: column; gap: 14px;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(5, 8, 10, 0.5);
  border: 1px solid var(--line);
}
.calc__result {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.calc__result-label { font-size: 0.85rem; color: var(--ink-dim); }
.calc__result-value {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
}
.calc__result-value em { font-style: normal; font-size: 0.62em; color: var(--ink-dim); font-weight: 400; }
.calc__result--volt .calc__result-value { color: var(--volt); font-size: 1.8rem; }
.calc__note { font-size: 0.72rem; color: var(--ink-faint); margin: 6px 0 10px; }

/* ═══════════ FBT ═══════════ */
.fbt {
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}
.fbt__glow {
  position: absolute; left: 50%; top: 50%;
  width: 1100px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(200, 255, 62, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.fbt__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.fbt__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.06; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.fbt__title .dim { color: var(--ink-faint); }
.fbt__lede { margin-inline: auto; }
.countdown {
  display: flex; align-items: center; gap: clamp(10px, 2.5vw, 26px);
  margin-top: clamp(44px, 6vw, 70px);
}
.countdown__cell {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  min-width: clamp(76px, 12vw, 140px);
  padding: clamp(20px, 3vw, 34px) clamp(10px, 2vw, 22px);
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.countdown__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.countdown__label {
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-faint);
}
.countdown__sep {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--volt);
  opacity: 0.5;
  animation: pulse 2s ease-in-out infinite;
}

/* ═══════════ TRUST ═══════════ */
.trust { background: var(--bg-pine); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vw, 60px);
  margin-top: clamp(44px, 6vw, 70px);
}
.trust__item {
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
  transition: border-color 0.5s;
}
.trust__item:hover { border-top-color: var(--volt); }
.trust__num {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.24em;
  color: var(--ink-faint);
  display: block; margin-bottom: 22px;
}
.trust__item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  margin-bottom: 14px;
}
.trust__item p { font-size: 0.92rem; color: var(--ink-dim); }

/* ═══════════ MATCH CTA ═══════════ */
.match {
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}
.match__glow {
  position: absolute; left: 50%; bottom: -45%;
  width: 1300px; height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(48% 48% at 50% 50%, rgba(200, 255, 62, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.match__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.match__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.match__lede { margin-bottom: 44px; }
.match__steps {
  margin-top: 46px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint);
}
.match__steps i { color: var(--volt); font-style: normal; }

/* ═══════════ CONTACT ═══════════ */
.contact { background: var(--bg-pine); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact__details {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 8px;
}
.contact__details a {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  color: var(--volt);
  transition: opacity 0.3s;
}
.contact__details a:hover { opacity: 0.8; }
.contact__details span { font-size: 0.85rem; color: var(--ink-faint); }
.contact__form { padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 22px; }
.contact__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.contact__field { display: flex; flex-direction: column; gap: 9px; }
.contact__field span {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 500;
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  font: inherit; font-size: 0.95rem;
  color: var(--ink);
  background: rgba(5, 8, 10, 0.5);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.contact__field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-dim) 50%), linear-gradient(135deg, var(--ink-dim) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.contact__field input::placeholder, .contact__field textarea::placeholder { color: var(--ink-faint); }
.contact__field input:focus, .contact__field select:focus, .contact__field textarea:focus {
  border-color: rgba(200, 255, 62, 0.5);
  box-shadow: 0 0 0 3px rgba(200, 255, 62, 0.08);
}
.contact__consent {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.82rem; color: var(--ink-dim);
  cursor: pointer;
}
.contact__consent input {
  appearance: none;
  width: 20px; height: 20px; flex: none;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(5, 8, 10, 0.5);
  cursor: pointer;
  display: grid; place-content: center;
  transition: background 0.25s, border-color 0.25s;
  margin-top: 1px;
}
.contact__consent input::before {
  content: "✓";
  font-size: 0.7rem; color: #05080a;
  transform: scale(0);
  transition: transform 0.25s var(--ease-out);
}
.contact__consent input:checked { background: var(--volt); border-color: var(--volt); }
.contact__consent input:checked::before { transform: scale(1); }
.contact__demo-note {
  font-size: 0.78rem; color: var(--volt);
  text-align: center;
  min-height: 1.2em;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: clamp(44px, 6vw, 70px);
  border-bottom: 1px solid var(--line);
}
.footer__logo { font-size: 1.5rem; }
.footer__tagline { margin-top: 16px; color: var(--ink-faint); font-size: 0.9rem; }
.footer__cols { display: flex; gap: clamp(40px, 6vw, 90px); }
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__head {
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.footer__col a {
  font-size: 0.87rem; color: var(--ink-dim);
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--volt); }
.footer__legal { padding-top: 36px; }
.footer__legal p {
  font-size: 0.74rem; color: var(--ink-faint);
  max-width: 88ch; line-height: 1.7;
}
.footer__base {
  margin-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.76rem; color: var(--ink-faint);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .hero__panels { display: none; }
  .steps, .tools__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0;
    background: rgba(5, 8, 10, 0.96);
    backdrop-filter: blur(24px);
    flex-direction: column; justify-content: center; gap: 34px;
    font-size: 1.4rem;
    opacity: 0; visibility: hidden;
    transition: opacity 0.45s var(--ease-out), visibility 0.45s;
  }
  .nav__links a { font-size: 1.25rem; }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; }
  .nav__burger { display: flex; position: relative; z-index: 10; }
  .why__grid, .changeover__grid, .contact__grid, .calc__grid { grid-template-columns: 1fr; }
  .changeover__panelwrap { order: -1; }
  .why__chip { left: 12px; bottom: -18px; }
  .flow__line { display: none; }
  .flow__nodes { flex-wrap: wrap; gap: 26px 8px; justify-content: center; }
  .flow__node { flex: 0 0 30%; }
  .footer__top { grid-template-columns: 1fr; gap: 44px; }
  .contact__row { grid-template-columns: 1fr; }
  .goldmoment { min-height: 60vh; }
}

@media (max-width: 620px) {
  .steps, .tools__grid, .stats { grid-template-columns: 1fr; }
  .calc__result { flex-direction: column; align-items: flex-start; gap: 4px; }
  .changeover__row { flex-direction: column; align-items: flex-start; gap: 2px; padding: 12px 4px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .countdown { gap: 8px; }
  .countdown__sep { display: none; }
  .countdown__cell { min-width: 0; flex: 1; }
  .footer__cols { flex-wrap: wrap; gap: 36px; }
  .marquee__track { gap: 26px; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal], [data-hero-stagger] { opacity: 1; transform: none; }
  .flow__line path { stroke-dashoffset: 0; }
}
