/* ═══════════════════════════════════════════════
   MARUTI SUZUKI — Light Mode Redesign
   Brand palette derived from official logo SVG:
   indigo #2b3494 / #26439b · silver #9d9fa2
   ═══════════════════════════════════════════════ */

:root {
  --ink: #0a1633;
  --ink-2: #33406b;
  --muted: #64708f;
  --brand: #2b3494;
  --brand-bright: #3050e8;
  --accent: #0ea5e9;
  --paper: #ffffff;
  --wash: #f4f6fc;
  --wash-2: #eef1fb;
  --line: rgba(43, 52, 148, .12);
  --shadow-lg: 0 30px 60px -18px rgba(10, 22, 51, .18);
  --shadow-md: 0 16px 40px -14px rgba(10, 22, 51, .16);
  --shadow-sm: 0 6px 20px -8px rgba(10, 22, 51, .12);
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --font-d: "Space Grotesk", system-ui, sans-serif;
  --font-b: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--brand); color: #fff; }

.container { width: min(1240px, calc(100% - clamp(32px, 6vw, 96px))); margin-inline: auto; }

/* ─────────── scrollbar ─────────── */
::-webkit-scrollbar { width: 10px; height: 8px; }
::-webkit-scrollbar-track { background: var(--wash); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--brand), var(--accent)); border-radius: 99px; }

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--paper);
  display: grid; place-items: center;
  transition: clip-path 1s var(--ease);
  clip-path: inset(0 0 0 0);
}
.preloader.is-done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.preloader__inner { width: min(360px, 72vw); text-align: center; }
.preloader__logo { width: 200px; margin: 0 auto 28px; animation: pulse 1.6s ease-in-out infinite alternate; }
@keyframes pulse { from { opacity: .45; transform: scale(.985); } to { opacity: 1; transform: scale(1); } }
.preloader__bar { height: 2px; background: var(--wash-2); border-radius: 99px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--brand), var(--accent)); transition: width .25s ease; }
.preloader__count { margin-top: 14px; font-family: var(--font-d); font-size: 13px; letter-spacing: .35em; color: var(--muted); }

/* ═══════════ SCROLL PROGRESS ═══════════ */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--brand), var(--accent));
  z-index: 999;
}

/* ═══════════ CURSOR ═══════════ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 998; pointer-events: none;
  border-radius: 50%; mix-blend-mode: multiply; opacity: 0;
}
.cursor-dot { width: 7px; height: 7px; background: var(--brand-bright); }
.cursor-ring {
  width: 38px; height: 38px; border: 1.5px solid rgba(48, 80, 232, .5);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s;
}
.cursor-ring.is-hover { width: 64px; height: 64px; background: rgba(48, 80, 232, .08); border-color: transparent; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ═══════════ HEADER ═══════════ */
.header {
  position: fixed; inset: 0 0 auto; z-index: 900;
  padding-block: 18px;
  transition: padding .45s var(--ease), background .45s, box-shadow .45s, backdrop-filter .45s;
}
.header.is-stuck {
  padding-block: 10px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 10px 30px -18px rgba(10, 22, 51, .25);
}
.header__inner { display: flex; align-items: center; gap: 28px; }
.header__logo img { height: 26px; width: auto; transition: transform .4s var(--ease); }
.header__logo:hover img { transform: scale(1.04); }
.nav { display: flex; gap: 6px; margin-left: auto; }
.nav__link {
  position: relative; font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  padding: 8px 14px; border-radius: 99px; transition: color .3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  width: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width .35s var(--ease), left .35s var(--ease);
}
.nav__link:hover { color: var(--brand); }
.nav__link:hover::after { width: calc(100% - 28px); left: 14px; }
.header__cta { flex-shrink: 0; }

.burger {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--wash); position: relative; z-index: 960; flex-shrink: 0;
}
.burger span {
  position: absolute; left: 13px; right: 13px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s, top .4s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* mobile menu */
.mmenu { position: fixed; inset: 0; z-index: 950; visibility: hidden; pointer-events: none; }
.mmenu.is-open { visibility: visible; pointer-events: auto; }
.mmenu__bg {
  position: absolute; inset: 0; background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  opacity: 0; transition: opacity .5s var(--ease);
}
.mmenu.is-open .mmenu__bg { opacity: 1; }
.mmenu__nav {
  position: relative; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(28px, 8vw, 64px); gap: 6px;
}
.mmenu__link {
  font-family: var(--font-d); font-size: clamp(34px, 8vw, 56px); font-weight: 700;
  color: var(--ink); line-height: 1.25;
  display: flex; align-items: baseline; gap: 16px;
  opacity: 0; transform: translateY(34px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), color .3s;
  transition-delay: calc(.06s * var(--i) + .15s);
}
.mmenu.is-open .mmenu__link { opacity: 1; transform: none; }
.mmenu__link small { font-size: 13px; color: var(--brand-bright); letter-spacing: .2em; }
.mmenu__link:hover { color: var(--brand); }
.mmenu__cta {
  position: absolute; bottom: 48px; left: clamp(28px, 8vw, 64px);
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease) .55s, transform .5s var(--ease) .55s;
}
.mmenu.is-open .mmenu__cta { opacity: 1; transform: none; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  --btn-bg: var(--brand-bright);
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: 99px; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; stroke-width: 2; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-bright));
  color: #fff; box-shadow: 0 14px 30px -12px rgba(48, 80, 232, .55);
}
.btn--primary:hover { box-shadow: 0 20px 40px -12px rgba(48, 80, 232, .65); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--ink); backdrop-filter: blur(6px); background: rgba(255,255,255,.55); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { border: 1.5px solid var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--brand); box-shadow: 0 14px 30px -12px rgba(0,0,0,.35); }
.btn--light:hover { transform: translateY(-2px); }
.btn--sm { padding: 11px 22px; font-size: 13.5px; }
.btn--lg { padding: 18px 38px; font-size: 16px; }

/* ═══════════ TYPO HELPERS ═══════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--brand-bright);
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--accent)); animation: blink 2.2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; transform: scale(1);} 50% { opacity: .4; transform: scale(.75);} }

.section-title {
  font-family: var(--font-d); font-weight: 700;
  font-size: clamp(34px, 5vw, 62px); line-height: 1.04;
  letter-spacing: -.02em; margin-top: 18px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(110deg, var(--brand-bright) 10%, var(--accent) 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; transform: translateY(115%); transition: transform 1s var(--ease); }
.in-view .line-mask > span, .line-mask.in-view > span { transform: none; }
.line-mask:nth-child(2) > span { transition-delay: .12s; }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal[data-delay="80"] { transition-delay: .08s; } .reveal[data-delay="90"] { transition-delay: .09s; }
.reveal[data-delay="100"] { transition-delay: .1s; } .reveal[data-delay="120"] { transition-delay: .12s; }
.reveal[data-delay="150"] { transition-delay: .15s; } .reveal[data-delay="160"] { transition-delay: .16s; }
.reveal[data-delay="180"] { transition-delay: .18s; } .reveal[data-delay="200"] { transition-delay: .2s; }
.reveal[data-delay="240"] { transition-delay: .24s; } .reveal[data-delay="270"] { transition-delay: .27s; }
.reveal[data-delay="300"] { transition-delay: .3s; } .reveal[data-delay="320"] { transition-delay: .32s; }
.reveal[data-delay="350"] { transition-delay: .35s; } .reveal[data-delay="360"] { transition-delay: .36s; }
.reveal[data-delay="500"] { transition-delay: .5s; }
.reveal.in-view { opacity: 1; transform: none; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 120px; overflow: hidden;
  background: linear-gradient(180deg, var(--wash) 0%, #fff 78%);
}
.hero__media { position: absolute; inset: -12% 0 0; z-index: 0; will-change: transform; }
.hero__media img { width: 100%; height: 112%; object-fit: cover; object-position: center top; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.55) 30%, rgba(255,255,255,.12) 60%, rgba(244,246,252,.9) 96%),
    radial-gradient(120% 70% at 50% 108%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 55%);
}
.hero__ghost {
  position: absolute; top: 54%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-d); font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(90px, 17vw, 280px); white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px rgba(43, 52, 148, .13);
  z-index: 1; pointer-events: none; user-select: none;
}
.hero__content { position: relative; z-index: 2; }
.hero__title {
  font-family: var(--font-d); font-weight: 700; letter-spacing: -.03em;
  font-size: clamp(56px, 9.5vw, 128px); line-height: .98; margin-top: 22px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(110deg, var(--brand) 0%, var(--brand-bright) 45%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__sub {
  max-width: 520px; margin-top: 26px; font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-2); font-weight: 500;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero__stats {
  position: relative; z-index: 2;
  margin-top: clamp(48px, 8vh, 90px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding-bottom: 42px;
}
.stat {
  background: rgba(255,255,255,.72); border: 1px solid var(--line);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-md); padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.stat strong { display: block; font-family: var(--font-d); font-size: clamp(26px, 3vw, 40px); font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.stat span { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.hero__scrollhint {
  position: absolute; right: clamp(20px, 4vw, 56px); bottom: 34px; z-index: 2;
  writing-mode: vertical-rl; font-size: 11px; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 12px;
}
.hero__scrollhint span { width: 1.5px; height: 46px; background: var(--line); position: relative; overflow: hidden; }
.hero__scrollhint span::after {
  content: ""; position: absolute; inset: 0; background: var(--brand-bright);
  animation: drop 1.8s var(--ease) infinite;
}
@keyframes drop { 0% { transform: translateY(-100%);} 60%,100% { transform: translateY(100%);} }

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  overflow: hidden; padding: 22px 0; border-block: 1px solid var(--line);
  background: #fff;
}
.marquee__track { display: flex; gap: 44px; width: max-content; animation: scroll 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-d); font-weight: 700; font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: .14em; color: var(--ink);
}
.marquee__track i { color: var(--accent); font-style: normal; font-size: 14px; align-self: center; }
@keyframes scroll { to { transform: translateX(calc(-50% - 22px)); } }

/* ═══════════ SECTIONS COMMON ═══════════ */
.section { padding-block: clamp(84px, 11vw, 150px); position: relative; }
.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head--center { text-align: center; }

/* ═══════════ CHANNELS ═══════════ */
.channels { background: linear-gradient(180deg, #fff 0%, var(--wash) 100%); }
.channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.channel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.channel:hover { box-shadow: var(--shadow-lg); }
.channel__link { display: block; }
.channel__media { aspect-ratio: 4/3.4; overflow: hidden; position: relative; }
.channel__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .5s; filter: saturate(.92); }
.channel:hover .channel__media img { transform: scale(1.09); filter: saturate(1.05); }
.channel__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,22,51,.28));
  opacity: 0; transition: opacity .5s;
}
.channel:hover .channel__media::after { opacity: 1; }
.channel__body { padding: 26px 24px 28px; position: relative; }
.channel__num {
  position: absolute; top: 20px; right: 22px;
  font-family: var(--font-d); font-size: 13px; font-weight: 600;
  color: transparent; -webkit-text-stroke: 1px rgba(43,52,148,.3); letter-spacing: .1em;
}
.channel__brand { height: 22px; width: auto; margin-bottom: 16px; object-fit: contain; object-position: left; }
.channel__brand--arena { height: 26px; }
.channel__body h4 { font-family: var(--font-d); font-size: 19px; line-height: 1.3; letter-spacing: -.01em; margin-bottom: 8px; }
.channel__body p { font-size: 14px; color: var(--muted); }
.channel__go {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 13.5px; font-weight: 700; color: var(--brand-bright);
}
.channel__go svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.channel:hover .channel__go svg { transform: translateX(5px); }

/* ═══════════ SPOTLIGHT ═══════════ */
.spotlight { background: var(--wash); overflow: hidden; }
.slider-nav { display: flex; gap: 12px; }
.snav {
  width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--line);
  display: grid; place-items: center; background: #fff;
  transition: all .35s var(--ease); box-shadow: var(--shadow-sm);
}
.snav svg { width: 20px; height: 20px; }
.snav:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 26px -10px rgba(43,52,148,.5); }

.spot__frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 21/9; background: #dfe5f5; }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .9s var(--ease), visibility .9s; }
.slide.is-active { opacity: 1; visibility: visible; }
.slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 6.5s linear; }
.slide.is-active img { transform: scale(1); }
.slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(88deg, rgba(10,22,51,.62) 0%, rgba(10,22,51,.22) 45%, transparent 70%);
}
.slide__panel {
  position: absolute; left: clamp(24px, 5vw, 72px); bottom: clamp(24px, 5vh, 60px);
  color: #fff; max-width: 480px;
  transform: translateY(26px); opacity: 0;
  transition: transform .9s var(--ease) .25s, opacity .9s var(--ease) .25s;
}
.slide.is-active .slide__panel { transform: none; opacity: 1; }
.tag {
  display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .24em;
  text-transform: uppercase; padding: 7px 16px; border-radius: 99px; margin-bottom: 16px;
  background: linear-gradient(120deg, var(--brand-bright), var(--accent)); color: #fff;
}
.tag--nexa { background: #111; }
.slide__panel h4 { font-family: var(--font-d); font-size: clamp(28px, 3.6vw, 48px); font-weight: 700; letter-spacing: -.02em; line-height: 1.05; margin-bottom: 10px; }
.slide__panel p { font-size: 15px; opacity: .92; margin-bottom: 22px; }

.spot__dots { position: absolute; right: clamp(20px, 4vw, 48px); bottom: 28px; display: flex; gap: 10px; }
.dot {
  width: 34px; height: 5px; border-radius: 99px; background: rgba(255,255,255,.4);
  position: relative; overflow: hidden; transition: background .3s;
}
.dot::after {
  content: ""; position: absolute; inset: 0; background: #fff;
  transform: scaleX(0); transform-origin: 0 50%;
}
.dot.is-active::after { animation: fill 6s linear forwards; }
@keyframes fill { to { transform: scaleX(1); } }

/* ═══════════ CARS ═══════════ */
.cars { background: #fff; overflow: hidden; }
.cars-tabs {
  position: relative; display: inline-flex; padding: 5px;
  background: var(--wash); border: 1px solid var(--line); border-radius: 99px;
}
.tab {
  position: relative; z-index: 1; font-family: var(--font-d); font-weight: 700;
  font-size: 13.5px; letter-spacing: .18em; padding: 12px 30px; border-radius: 99px;
  color: var(--muted); transition: color .35s;
}
.tab.is-active { color: #fff; }
.tab-pill {
  position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px);
  background: linear-gradient(120deg, var(--brand), var(--brand-bright));
  border-radius: 99px; transition: transform .5s var(--ease);
  box-shadow: 0 8px 18px -8px rgba(48,80,232,.6);
}
.cars-tabs[data-active="nexa"] .tab-pill { transform: translateX(100%); }

.rail-wrap { position: relative; }
.rail { outline: none; }
.rail__group {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 24vw, 320px);
  gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 10px 4px 26px; scrollbar-width: none;
  cursor: grab;
}
.rail__group::-webkit-scrollbar { display: none; }
.rail__group.is-drag { cursor: grabbing; scroll-snap-type: none; }
.rail__group.is-fading { animation: fadeSwap .45s var(--ease); }
@keyframes fadeSwap { 0% { opacity: 0; transform: translateY(14px);} 100% { opacity: 1; transform: none;} }

.car {
  scroll-snap-align: start;
  background: var(--wash); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 18px 20px; position: relative;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .4s, border-color .4s;
}
.car:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); background: #fff; border-color: rgba(48,80,232,.35); }
.car__badge {
  align-self: flex-start; font-size: 10.5px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brand-bright);
  background: rgba(48,80,232,.08); border: 1px solid rgba(48,80,232,.18);
  padding: 5px 12px; border-radius: 99px; margin-bottom: 6px;
}
.car__badge--nexa { color: #111; background: #f1f1f3; border-color: #e2e2e8; }
.car figure { height: 150px; display: grid; place-items: center; margin-bottom: 14px; }
.car figure img { max-height: 140px; width: auto; max-width: 92%; object-fit: contain; transition: transform .6s var(--ease); filter: drop-shadow(0 14px 14px rgba(10,22,51,.14)); }
.car:hover figure img { transform: translateX(6%) scale(1.05); }
.car h4 { font-family: var(--font-d); font-size: 20px; letter-spacing: -.01em; }
.car__go { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--muted); transition: color .3s; }
.car__go svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.car:hover .car__go { color: var(--brand-bright); }
.car:hover .car__go svg { transform: translateX(4px); }

.rail-nav { display: flex; gap: 12px; justify-content: center; margin-top: 8px; }

/* ═══════════ VALUES ═══════════ */
.values { overflow: hidden; }
.values__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("/assets/img/values-bg.png") center/cover no-repeat, linear-gradient(180deg, var(--wash) 0%, #fff 100%);
  opacity: .5;
}
.values .container { position: relative; z-index: 1; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.value {
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 34px 24px; text-align: center;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.value:hover { transform: translateY(-10px) rotate(-1deg); box-shadow: var(--shadow-md); }
.value img { height: 58px; width: auto; margin: 0 auto 18px; }
.value h4 { font-family: var(--font-d); font-size: 19px; margin-bottom: 8px; letter-spacing: -.01em; }
.value p { font-size: 13.5px; color: var(--muted); }
.values__cta { display: flex; gap: 16px; justify-content: center; margin-top: clamp(40px, 5vw, 60px); flex-wrap: wrap; }

/* ═══════════ SERVICES ═══════════ */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.svc {
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 24px;
  background: var(--wash); position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .4s, border-color .4s;
  display: flex; flex-direction: column; min-height: 250px;
}
.svc::before {
  content: ""; position: absolute; inset: auto -30% -55% auto;
  width: 75%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(48,80,232,.14), transparent 65%);
  opacity: 0; transition: opacity .5s, transform .8s var(--ease);
  transform: scale(.6);
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); background: #fff; border-color: rgba(48,80,232,.3); }
.svc:hover::before { opacity: 1; transform: scale(1); }
.svc__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-bright)); color: #fff;
  box-shadow: 0 10px 20px -8px rgba(48,80,232,.5); margin-bottom: 20px;
  transition: transform .45s var(--ease);
}
.svc:hover .svc__icon { transform: rotate(-8deg) scale(1.08); }
.svc__icon svg { width: 24px; height: 24px; stroke-width: 1.8; }
.svc h4 { font-family: var(--font-d); font-size: 17.5px; margin-bottom: 8px; letter-spacing: -.01em; }
.svc p { font-size: 13.5px; color: var(--muted); flex-grow: 1; }
.svc__go { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--brand-bright); margin-top: 16px; }
.svc__go svg { width: 13px; height: 13px; transition: transform .35s var(--ease); }
.svc:hover .svc__go svg { transform: translate(3px, -3px); }

/* ═══════════ CTA ═══════════ */
.cta {
  position: relative; overflow: hidden; padding-block: clamp(90px, 12vw, 170px);
  background:
    radial-gradient(60% 90% at 12% 10%, rgba(48,80,232,.16), transparent 60%),
    radial-gradient(50% 80% at 88% 90%, rgba(14,165,233,.16), transparent 60%),
    linear-gradient(180deg, #fff, var(--wash));
  text-align: center;
}
.cta__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta__title { font-family: var(--font-d); font-weight: 700; font-size: clamp(36px, 6vw, 74px); line-height: 1.04; letter-spacing: -.02em; }
.cta__title em {
  font-style: normal;
  background: linear-gradient(110deg, var(--brand), var(--brand-bright) 50%, var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cta p { color: var(--ink-2); font-size: clamp(15px, 1.8vw, 18px); max-width: 460px; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--ink); color: #aab3cf; padding-top: clamp(60px, 8vw, 100px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: clamp(28px, 4vw, 60px); padding-bottom: 56px; }
.footer__brand img { height: 26px; width: auto; margin-bottom: 20px; }
.footer__brand p { font-size: 14px; max-width: 340px; }
.footer__col h5 {
  color: #fff; font-family: var(--font-d); font-size: 13px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 20px;
}
.footer__col a { display: block; font-size: 14.5px; padding: 5px 0; color: #aab3cf; transition: color .3s, transform .3s var(--ease); }
.footer__col a:hover { color: #fff; transform: translateX(5px); }
.footer__base {
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 26px; font-size: 13px;
}
.totop {
  font-weight: 700; color: #fff; padding: 10px 20px; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.2); transition: all .35s var(--ease);
}
.totop:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; margin-left: auto; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 16px 18px; }
  .spot__frame { aspect-ratio: auto; min-height: 480px; }
  .slide img { position: absolute; inset: 0; }
  .rail__group { grid-auto-columns: minmax(230px, 78vw); }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .svc { min-height: 220px; }
  .section-head--row { align-items: flex-start; flex-direction: column; }
  .hero__scrollhint { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__base { flex-direction: column; }
}

@media (max-width: 520px) {
  .channel-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value { padding: 26px 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .btn { padding: 14px 24px; font-size: 14px; }
  .header__logo img { height: 22px; }
  .hero { padding-top: 104px; }
  .spot__frame { min-height: 430px; }
  .slide__panel { left: 20px; right: 20px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; scroll-behavior: auto !important; }
  .line-mask > span { transform: none; }
  .reveal { opacity: 1; transform: none; }
}
