/* ============================================================
   ZAMOK · LIGHT EDITORIAL — IVORY + CRIMSON
   ============================================================ */

:root {
  /* BACKGROUND */
  --bg: #f5f5f6;
  --bg-2: #eaeaed;
  --bg-3: #d6d6da;
  --bg-dark: #14141a;
  --bg-darker: #0c0c10;

  /* TEXT */
  --fg: #161619;
  --fg-dim: #4c4c52;
  --fg-mute: #89898f;
  --fg-light: #f5f5f6;

  /* ACCENT — BRAND CRIMSON */
  --accent: #c32c2b;
  --accent-2: #e63d3c;
  --accent-dim: #e5c4c3;
  --accent-soft: #f6eaea;

  /* LINES */
  --line: rgba(22, 22, 25, 0.10);
  --line-2: rgba(22, 22, 25, 0.22);
  --line-3: rgba(22, 22, 25, 0.40);
  --line-light: rgba(255, 255, 255, 0.10);
  --line-light-2: rgba(255, 255, 255, 0.22);

  /* TYPE */
  --display: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* LAYOUT */
  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(96px, 12vw, 180px);

  /* EASING */
  --e-out: cubic-bezier(.2, .8, .2, 1);
  --e-in-out: cubic-bezier(.6, 0, .2, 1);
  --e-expo: cubic-bezier(.85, 0, .15, 1);
}

/* ============================================================
   BASE
   ============================================================ */

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-style: normal !important;
  font-variant-numeric: tabular-nums;
  overflow-x: hidden;
}

/* hard kill italics — global */
i, em, cite, dfn, var, address {
  font-style: normal !important;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: transparent; border: 0; color: inherit; }
input { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: var(--bg); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border: 2px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================================
   UTILITIES
   ============================================================ */

.mono {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.mono--dim { color: var(--fg-dim); }
.mono--mute { color: var(--fg-mute); }
.mono--accent { color: var(--accent); }
.mono--accent-light { color: var(--accent-2); }

.accent { color: var(--accent); }
.accent-text { color: var(--accent); font-weight: 700; }

.section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--line);
}

.section__head {
  max-width: var(--maxw);
  margin: 0 auto 72px;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0;
  color: var(--fg);
}
.section__title span.accent { color: var(--accent); }
.section__title--inline { font-size: clamp(36px, 5vw, 72px); }

.section__lead {
  max-width: 680px;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.5;
  color: var(--fg-dim);
  margin: 0;
  font-weight: 400;
}

/* registration mark — signature L corners */
.reg-mark {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.reg-mark::before,
.reg-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
}
.reg-mark::before {
  top: 0; left: 0;
  border-right: 0;
  border-bottom: 0;
}
.reg-mark::after {
  bottom: 0; right: 0;
  border-left: 0;
  border-top: 0;
}

/* PILL */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.5);
}
.pill--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(8px);
}
.pill__dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(195, 44, 43, 0.18);
  animation: pulse 2.4s var(--e-in-out) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.9); }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 320ms var(--e-out);
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -12px rgba(195, 44, 43, 0.55);
}
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}
.btn--ghost:hover {
  border-color: var(--accent-2);
  background: rgba(195, 44, 43, 0.08);
}

/* live dot */
.live { display: inline-flex; align-items: center; gap: 8px; }
.live__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(195, 44, 43, 0.18);
  animation: pulse 1.8s var(--e-in-out) infinite;
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  transition: all 360ms var(--e-out);
}
.nav.is-scrolled {
  background: rgba(245, 245, 246, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  padding: 12px var(--gutter);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 44px;
}
.nav__logo {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 320ms var(--e-out);
}
.nav__logo--red {
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto 0;
  opacity: 0;
}
.nav.is-scrolled .nav__logo--white { opacity: 0; }
.nav.is-scrolled .nav__logo--red { opacity: 1; }

.nav__menu {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav__menu a {
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
  transition: opacity 200ms var(--e-out);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--e-out);
}
.nav__menu a:hover { opacity: 1; }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 280ms var(--e-out);
}
.nav__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.nav__burger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  align-items: center;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 1.4px;
  background: currentColor;
}

@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.9;
}
.hero__map {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__route {
  stroke-dasharray: 4 8;
  animation: routeMove 28s linear infinite;
}
@keyframes routeMove {
  to { stroke-dashoffset: -240; }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 70% 30%, rgba(195, 44, 43, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(20, 20, 26, 0.0) 0%, rgba(20, 20, 26, 0.78) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  z-index: 1;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(140px, 16vh, 220px) var(--gutter) clamp(48px, 7vh, 80px);
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 36px;
}

.hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero__main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 0;
}

@media (max-width: 1100px) {
  .hero__split { grid-template-columns: 1fr; }
}

/* ============================================================
   COCKPIT (HERO RIGHT VISUAL)
   ============================================================ */

.cockpit {
  position: relative;
  padding: 26px 26px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  isolation: isolate;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: cockpitIn 1.1s var(--e-out) 0.6s forwards;
}
.cockpit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 3px,
      rgba(255,255,255,0.025) 3px,
      rgba(255,255,255,0.025) 4px
    );
  pointer-events: none;
  z-index: -1;
}
@keyframes cockpitIn {
  to { opacity: 1; transform: translateY(0); }
}

.cockpit__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--accent-2);
  z-index: 4;
  pointer-events: none;
}
.cockpit__corner--tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.cockpit__corner--tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.cockpit__corner--bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.cockpit__corner--br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.cockpit__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
}
.cockpit__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
}
[data-clock] {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.cockpit__map {
  position: relative;
  height: 180px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  overflow: hidden;
}
.cockpit__svg { width: 100%; height: 100%; display: block; }
.cockpit__scan {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(180deg, rgba(230,61,60,0.55), transparent 80%);
  box-shadow: 0 0 18px rgba(230,61,60,0.4);
  animation: scanV 4.2s var(--e-in-out) infinite;
}
@keyframes scanV {
  0% { transform: translateY(0); opacity: 0.9; }
  50% { opacity: 0.4; }
  100% { transform: translateY(178px); opacity: 0.9; }
}
.cockpit__crosshair {
  position: absolute;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cockpit__crosshair--h {
  left: 0; right: 0;
  top: 50%;
  height: 1px;
}
.cockpit__crosshair--v {
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
}

.cockpit__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cockpit__stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.cockpit__stats li:last-child { border-right: 0; padding-right: 0; }
.cockpit__stats strong {
  font-weight: 800;
  font-size: clamp(22px, 1.8vw, 30px);
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.cockpit__stats .mono--mute { color: rgba(255,255,255,0.45); }

.cockpit__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.18);
}
.cockpit__foot .mono { color: rgba(255,255,255,0.85); font-size: 10.5px; }
.cockpit__foot .mono--mute { color: rgba(255,255,255,0.45); }

@media (max-width: 1100px) {
  .cockpit { max-width: 480px; }
}

.hero__top {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 9.5vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}
.hero__title > span.reveal {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}
.hero__title > span.reveal > span {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1.1s var(--e-expo) forwards;
}
.hero__title > span.reveal:nth-child(1) > span { animation-delay: 0.10s; }
.hero__title > span.reveal:nth-child(2) > span { animation-delay: 0.22s; }
.hero__title > span.reveal:nth-child(3) > span { animation-delay: 0.34s; }
.hero__title .accent { color: var(--accent-2); }

@keyframes lineUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.hero__lead {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  max-width: 1100px;
  border-top: 1px solid var(--line-light-2);
  padding-top: 28px;
  opacity: 0;
  animation: fadeIn 900ms var(--e-out) 0.85s forwards;
}
.hero__lead p {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 520px;
}
.hero__lead .accent-text { color: var(--accent-2); }
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__meta { display: flex; gap: 20px; flex-wrap: wrap; }
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll-line {
  display: block;
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-2);
  transform: translateX(-100%);
  animation: scrollLine 2.4s var(--e-in-out) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.hero__counter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light-2);
  padding-top: 24px;
}
.hero__counter li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 24px;
  border-right: 1px solid var(--line-light);
}
.hero__counter li:last-child { border-right: 0; }
.hero__counter-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  color: #fff;
}

@media (max-width: 720px) {
  .hero__lead { grid-template-columns: 1fr; }
  .hero__counter { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .hero__counter li:nth-child(2n) { border-right: 0; }
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  background: var(--bg-dark);
  color: #fff;
  border-top: 1px solid var(--line-light-2);
  border-bottom: 1px solid var(--line-light-2);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-weight: 800;
  font-size: clamp(20px, 2.8vw, 38px);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  animation: scrollX 36s linear infinite;
  padding-left: 36px;
}
.marquee__sep {
  color: var(--accent-2);
  font-size: 0.7em;
  transform: translateY(-2px);
}
@keyframes scrollX {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   VALUE — INTRO (TITLE + IMAGE)
   ============================================================ */

.value__intro {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.value__intro-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.value__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.value__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
}

.value__hero {
  position: relative;
  margin: 0;
  padding: 28px;
  background: var(--bg-dark);
  isolation: isolate;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  animation: heroIn 1s var(--e-out) 0.3s forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.value__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,0.025) 3px 4px);
  pointer-events: none;
  z-index: 1;
}
.value__hero-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent-2);
  z-index: 5;
  pointer-events: none;
}
.value__hero-corner--tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.value__hero-corner--tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.value__hero-corner--bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.value__hero-corner--br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.value__hero-label {
  position: absolute;
  top: 22px; left: 36px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
}
.value__hero-label .mono { color: #fff; font-size: 10.5px; }

.value__hero-clock {
  position: absolute;
  top: 26px; right: 36px;
  z-index: 6;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.value__hero-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.10);
  /* slow Ken Burns + initial reveal */
  clip-path: inset(0 0 0 0);
  z-index: 2;
}
.value__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.9);
  animation: heroPan 18s var(--e-in-out) infinite alternate;
  transform-origin: 50% 55%;
}
@keyframes heroPan {
  0% { transform: scale(1.02) translate(-1%, 0); }
  100% { transform: scale(1.08) translate(2%, -1%); }
}
.value__hero-scan {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(180deg, rgba(230,61,60,0.55), transparent 70%);
  box-shadow: 0 0 24px rgba(230,61,60,0.55);
  animation: heroScan 5s var(--e-in-out) infinite;
  z-index: 4;
  pointer-events: none;
}
@keyframes heroScan {
  0% { transform: translateY(0); opacity: 0.95; }
  50% { opacity: 0.4; }
  100% { transform: translateY(100%); opacity: 0.95; }
}
.value__hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
  z-index: 3;
}
.value__hero-flare {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(195,44,43,0.18), transparent 40%);
  pointer-events: none;
  z-index: 3;
}
.value__hero-tag {
  position: absolute;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(230,61,60,0.5);
  color: #fff;
  font-family: var(--display);
  backdrop-filter: blur(4px);
}
.value__hero-tag .mono { color: rgba(255,255,255,0.55); font-size: 9.5px; letter-spacing: 0.2em; }
.value__hero-tag strong {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.value__hero-tag--count {
  bottom: 22px; left: 22px;
}
.value__hero-tag--count strong { color: var(--accent-2); font-size: 24px; }
.value__hero-tag--id {
  bottom: 22px; right: 22px;
}

.value__hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.18);
}
.value__hero-foot .mono { color: rgba(255,255,255,0.55); font-size: 10.5px; }

@media (max-width: 1100px) {
  .value__intro { grid-template-columns: 1fr; }
  .value__hero { max-width: 720px; }
}

/* ============================================================
   VALUE PROPOSITION
   ============================================================ */

.value {
  background: var(--bg);
}
.value__split {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px var(--gutter) 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(28px, 4vw, 64px);
  border-top: 1px solid var(--line-2);
}
.value__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.value__title {
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  color: var(--fg);
}
.value__divider {
  width: 1px;
  color: var(--line-2);
}
.value__divider svg { width: 100%; height: 100%; }

.value__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value__list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: background 320ms var(--e-out), padding 320ms var(--e-out);
}
.value__list li:last-child { border-bottom: 1px solid var(--line); }
.value__list li:hover {
  background:
    linear-gradient(90deg, rgba(195,44,43,0.04), transparent 60%);
}
.value__num {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding-top: 4px;
}
.value__body { display: flex; flex-direction: column; gap: 6px; }
.value__body strong {
  font-weight: 700;
  font-size: clamp(17px, 1.15vw, 20px);
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.2;
}
.value__body p {
  margin: 0;
  font-size: clamp(15px, 1vw, 16px);
  line-height: 1.55;
  color: var(--fg-dim);
}

@media (max-width: 880px) {
  .value__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .value__divider { display: none; }
}

/* ============================================================
   SOLUTION / CAPS
   ============================================================ */

.solution {
  background: var(--bg-2);
}

.solution__intro {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.solution__intro-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-self: end;
}

/* TRUST BADGE — KOSGEB · TÜBİTAK · TEKNOKENT */
.trust-badge {
  position: relative;
  margin: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 22px;
  isolation: isolate;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.9s var(--e-out) 0.4s forwards;
}
.trust-badge::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}
.trust-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(195,44,43,0.05), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.trust-badge__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--accent);
  z-index: 4;
  pointer-events: none;
}
.trust-badge__corner--tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.trust-badge__corner--tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.trust-badge__corner--bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.trust-badge__corner--br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.trust-badge__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 5px 12px 5px 10px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
}

.trust-badge__inner {
  position: relative;
  padding: 32px 24px;
  background:
    radial-gradient(circle at 50% 50%, var(--bg) 0%, var(--bg-2) 100%);
  border: 1px dashed var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
}
.trust-badge__rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.trust-badge__rings span {
  position: absolute;
  border: 1px solid rgba(195,44,43,0.18);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: trustRing 4s var(--e-out) infinite;
}
.trust-badge__rings span:nth-child(2) { animation-delay: 1.3s; }
.trust-badge__rings span:nth-child(3) { animation-delay: 2.6s; }
@keyframes trustRing {
  0% { width: 60px; height: 60px; opacity: 0.7; border-color: rgba(195,44,43,0.45); }
  100% { width: 360px; height: 360px; opacity: 0; border-color: rgba(195,44,43,0); }
}
.trust-badge__img {
  position: relative;
  width: 70%;
  max-width: 320px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(195,44,43,0.18));
  animation: trustFloat 5s var(--e-in-out) infinite;
}
@keyframes trustFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.trust-badge__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.trust-badge__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 16px;
  border-right: 1px solid var(--line);
}
.trust-badge__meta > div:last-child { border-right: 0; }
.trust-badge__meta strong {
  font-weight: 800;
  font-size: clamp(16px, 1.3vw, 22px);
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1;
}

.trust-badge__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-dim);
}

@media (max-width: 1100px) {
  .solution__intro { grid-template-columns: 1fr; }
  .trust-badge { max-width: 720px; }
}

.solution__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-2);
}

.cap {
  position: relative;
  padding: 48px 36px 40px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.45);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 360ms var(--e-out);
  overflow: hidden;
  isolation: isolate;
}
.cap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
              rgba(195, 44, 43, 0.10), transparent 50%);
  opacity: 0;
  transition: opacity 400ms var(--e-out);
  z-index: -1;
}
.cap::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 700ms var(--e-out) 200ms;
}
.cap.is-revealed::after { transform: scaleX(1); }
.cap:hover::before { opacity: 1; }
.cap:hover { background: rgba(255,255,255,0.85); }
.cap:last-child { border-right: 0; }

.cap__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cap__title {
  font-weight: 700;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}
.cap__body {
  margin: 0;
  font-size: 15.5px;
  color: var(--fg-dim);
  line-height: 1.55;
  flex: 1;
}
.cap__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px dashed var(--accent-dim);
}
.cap__tags li {
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--fg-dim);
}

@media (max-width: 880px) {
  .solution__grid { grid-template-columns: 1fr; }
  .cap { border-right: 0; border-bottom: 1px solid var(--line); }
  .cap:last-child { border-bottom: 0; }
}

/* ============================================================
   EXPERIENCE COMPARE
   ============================================================ */

.experience { background: var(--bg); }

.experience__split {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-top: 1px solid var(--line-2);
}

.experience__panel {
  position: relative;
  padding: 56px 40px 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid var(--line);
  min-height: 580px;
}
.experience__panel:last-child { border-right: 0; }
.experience__panel header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.experience__panel h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(22px, 1.8vw, 30px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.experience__panel--old {
  background: rgba(0,0,0,0.02);
}
.experience__panel--old h3 { color: var(--fg-dim); }

.experience__panel--new {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(195,44,43,0.04) 100%);
  border-left: 2px solid var(--accent);
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  font-size: 16.5px;
  font-weight: 500;
}
.step-list li:last-child { border-bottom: 1px solid var(--line); }
.step-list--mute li { color: var(--fg-mute); }
.step-list--mute li:nth-last-child(1) { color: var(--fg-mute); }
.step-list__num {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.experience__note {
  margin: 0;
  padding-top: 12px;
}

/* phone mockups */
.experience__phone {
  width: 220px;
  height: 440px;
  border: 1px solid var(--line-3);
  border-radius: 32px;
  padding: 8px;
  position: relative;
  background: #fff;
  margin-top: auto;
  align-self: flex-start;
}
.phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: var(--bg-dark);
  border-radius: 999px;
  z-index: 2;
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-2);
}

.experience__phone--old .phone__screen {
  background: #fafafb;
  padding: 40px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone__row { font-size: 12.5px; padding: 10px 12px; border-radius: 4px; }
.phone__row--bar { width: 30px; height: 14px; background: var(--bg-3); padding: 0; }
.phone__row--input { background: #fff; border: 1px solid var(--line); color: var(--fg-mute); }
.phone__row--input2 { background: #fff; }
.phone__loader {
  width: 22px; height: 22px;
  border: 2px solid var(--bg-3);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 14px auto 0;
  animation: spin 1.2s linear infinite;
  opacity: 0.7;
}
@keyframes spin { to { transform: rotate(360deg); } }

.phone__stops {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4px;
  border-top: 1px solid rgba(22,22,25,0.06);
}
.phone__stop {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(22,22,25,0.06);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--fg-mute);
  opacity: 0.85;
  position: relative;
}
.phone__stop-num {
  font-size: 8.5px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.phone__stop-name {
  font-weight: 700;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
  font-size: 9.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone__stop-dist {
  font-size: 8.5px;
  color: var(--fg-mute);
}
.phone__stop.is-hover {
  background: rgba(195,44,43,0.06);
  outline: 1px solid rgba(195,44,43,0.18);
  animation: stopHover 4s var(--e-in-out) infinite;
}
.phone__stop.is-hover .phone__stop-name { color: var(--accent); }
.phone__stop.is-fade { opacity: 0.45; }
.phone__stop.is-fade::after {
  content: "▾";
  position: absolute;
  right: 4px;
  bottom: -4px;
  color: var(--fg-mute);
  font-size: 8px;
  animation: bobDown 2s var(--e-in-out) infinite;
}
@keyframes stopHover {
  0%, 30% { background: rgba(195,44,43,0.06); }
  50%, 80% { background: rgba(195,44,43,0.12); }
  100% { background: rgba(195,44,43,0.06); }
}
@keyframes bobDown {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(2px); opacity: 1; }
}

.experience__phone--new .phone__screen { background: #fff; }
.mini-map { width: 100%; height: 100%; }
.mini-map__route { stroke-dashoffset: 0; animation: routeMove 4s linear infinite; }
.mini-map__bus rect { animation: busHover 2.4s var(--e-in-out) infinite; }
.mini-map__bus rect:nth-child(2) { animation-delay: 0.3s; }
.mini-map__bus rect:nth-child(3) { animation-delay: 0.6s; }
.mini-map__bus rect:nth-child(4) { animation-delay: 0.9s; }
@keyframes busHover { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }

@media (max-width: 1000px) {
  .experience__split { grid-template-columns: 1fr; }
  .experience__panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .experience__panel:last-child { border-bottom: 0; }
}

/* ============================================================
   OPERATIONS
   ============================================================ */

.ops { background: var(--bg-2); }

.ops__grid {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-2);
}
.ops__card {
  padding: 48px 36px 40px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 320ms var(--e-out);
}
.ops__card:hover { background: #fff; }
.ops__card:last-child { border-right: 0; }
.ops__card h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.ops__card p {
  margin: 0;
  color: var(--fg-dim);
  font-size: 15.5px;
  line-height: 1.55;
}
.ops__icon { width: 40px; height: 40px; }

.dashboard {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.dashboard__head {
  background: var(--bg-dark);
  color: #fff;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 8px 8px 0 0;
}
.dashboard__chrome {
  display: flex;
  gap: 6px;
}
.dashboard__chrome span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.dashboard__chrome span:first-child { background: var(--accent); }
.dashboard__head .mono { color: rgba(255,255,255,0.7); }
.dashboard__head .mono--accent { color: var(--accent-2); margin-left: auto; }

.dashboard__body {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 32px;
  align-items: stretch;
}
.dashboard__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 32px;
  border-right: 1px solid var(--line);
}
.dashboard__stat:nth-child(3) { border-right: 0; }
.dashboard__stat strong {
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.dashboard__chart {
  height: 160px;
  background: var(--bg-2);
  border-radius: 4px;
  padding: 12px;
}
.dashboard__chart svg { width: 100%; height: 100%; }

@media (max-width: 1000px) {
  .ops__grid { grid-template-columns: 1fr; }
  .ops__card { border-right: 0; border-bottom: 1px solid var(--line); }
  .ops__card:last-child { border-bottom: 0; }
  .dashboard__body { grid-template-columns: 1fr 1fr; }
  .dashboard__stat { border-right: 0; padding-right: 0; }
  .dashboard__chart { grid-column: 1 / -1; }
}

/* ============================================================
   PRIVACY
   ============================================================ */

.privacy { background: var(--bg); }

.privacy__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-2);
}

.privacy__visual {
  position: relative;
  padding: 56px 40px;
  background:
    radial-gradient(circle at 50% 50%, rgba(20,20,26,0.04), transparent 70%),
    var(--bg-2);
  border-right: 1px solid var(--line);
  min-height: 460px;
  overflow: hidden;
}

.privacy__camera {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  height: 360px;
  background:
    linear-gradient(135deg, #1a3a5e 0%, #14141a 100%);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.privacy__camera::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.privacy__camera > .mono {
  position: absolute;
  top: 14px; left: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  z-index: 5;
}
.privacy__rec {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 5;
}
.privacy__face {
  position: absolute;
  width: 76px;
  height: 76px;
  z-index: 2;
}
.privacy__face::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.privacy__face::after {
  content: "";
  position: absolute;
  bottom: -32px; left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  border-radius: 60px 60px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  filter: blur(6px);
}
.privacy__face--1 { top: 180px; left: 70px; }
.privacy__face--2 { top: 210px; left: 240px; transform: scale(0.85); }
.privacy__face--3 { top: 180px; right: 80px; transform: scale(0.95); }
.privacy__blur {
  position: absolute;
  inset: -6px;
  border: 1px dashed var(--accent-2);
  border-radius: 4px;
  z-index: 3;
}
.privacy__blur::before,
.privacy__blur::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent-2);
}
.privacy__blur::before {
  top: -1px; left: -1px;
  border-right: 0; border-bottom: 0;
}
.privacy__blur::after {
  bottom: -1px; right: -1px;
  border-left: 0; border-top: 0;
}

.privacy__corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--accent-2);
  z-index: 4;
}
.privacy__corner--tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.privacy__corner--tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.privacy__corner--bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.privacy__corner--br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.privacy__items {
  display: flex;
  flex-direction: column;
}
.privacy__item {
  padding: 36px 40px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.privacy__item:last-child { border-bottom: 0; }
.privacy__item h3 {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 24px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.privacy__item p {
  margin: 0;
  color: var(--fg-dim);
  font-size: 15.5px;
  line-height: 1.55;
}
.privacy__item .mono { padding-top: 4px; }

@media (max-width: 1000px) {
  .privacy__grid { grid-template-columns: 1fr; }
  .privacy__visual { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ============================================================
   CITIZEN
   ============================================================ */

.citizen { background: var(--bg-2); }
.citizen__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-2);
}
.citizen__card {
  padding: 48px 36px 40px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
  transition: background 320ms var(--e-out);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.citizen__card:hover { background: #fff; }
.citizen__card:last-child { border-right: 0; }
.citizen__icon { width: 40px; height: 40px; }
.citizen__card h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.citizen__card p { margin: 0; color: var(--fg-dim); font-size: 15.5px; line-height: 1.55; }

@media (max-width: 880px) {
  .citizen__grid { grid-template-columns: 1fr; }
  .citizen__card { border-right: 0; border-bottom: 1px solid var(--line); }
  .citizen__card:last-child { border-bottom: 0; }
}

/* ============================================================
   WALLET
   ============================================================ */

.wallet { background: var(--bg); padding: var(--section-pad) 0; border-top: 1px solid var(--line); }
.wallet__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wallet__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
.wallet__split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  border-top: 1px solid var(--line-2);
  padding-top: 56px;
  align-items: start;
}
.wallet__features {
  display: flex;
  flex-direction: column;
}
.wallet__features li {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
}
.wallet__features li:first-child { border-top: 0; padding-top: 0; }
.wallet__features li .mono { padding-top: 4px; }
.wallet__features h3 {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 28px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.wallet__features p { margin: 0; color: var(--fg-dim); line-height: 1.55; font-size: 15.5px; }

.wallet__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.wallet__phone {
  width: 280px;
  height: 540px;
  border: 1px solid var(--line-3);
  border-radius: 36px;
  padding: 8px;
  background: #fff;
  position: relative;
  z-index: 2;
  box-shadow:
    -20px 30px 60px -30px rgba(20,20,26,0.18),
    -2px 4px 12px -4px rgba(20,20,26,0.08);
}
.wallet__phone-screen {
  background: linear-gradient(180deg, var(--bg) 0%, #fff 60%);
  padding: 50px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.wallet__card {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a36 60%, var(--accent) 220%);
  border-radius: 14px;
  padding: 22px 22px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 180px;
  box-shadow: 0 10px 30px -12px rgba(20,20,26,0.4);
}
.wallet__card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(195,44,43,0.4), transparent 70%);
  pointer-events: none;
}
.wallet__card,
.wallet__card .mono { color: #fff; }
.wallet__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #fff;
}
.wallet__card-top .mono { color: #fff; }
.wallet__card-num {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #fff;
  font-family: var(--mono);
  font-weight: 500;
}
.wallet__card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.wallet__card-bottom strong {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.wallet__card-bottom .mono {
  color: rgba(255,255,255,0.65);
  font-size: 10px;
}
.wallet__action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg);
  transition: all 280ms var(--e-out);
}
.wallet__action:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.wallet__nfc {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.wallet__nfc .mono { color: var(--accent); }
.wallet__waves {
  position: relative;
  width: 80px;
  height: 80px;
}
.wallet__waves span {
  position: absolute;
  inset: 0;
  border: 1.4px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: nfcPulse 2.4s var(--e-out) infinite;
}
.wallet__waves span:nth-child(2) { animation-delay: 0.6s; }
.wallet__waves span:nth-child(3) { animation-delay: 1.2s; }
@keyframes nfcPulse {
  0% { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 1000px) {
  .wallet__split { grid-template-columns: 1fr; gap: 48px; }
  .wallet__nfc { right: 16px; }
}

/* ============================================================
   INTEGRATION
   ============================================================ */

.integration { background: var(--bg-2); }
.integration__panel {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-2);
}
.integration__map {
  position: relative;
  border-right: 1px solid var(--line);
  min-height: 520px;
  overflow: hidden;
  background: #eaeaed;
}
.integration__svg { width: 100%; height: 100%; display: block; }

.integration__corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--accent);
  z-index: 4;
  pointer-events: none;
}
.integration__corner--tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.integration__corner--tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.integration__corner--bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.integration__corner--br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.integration__label {
  position: absolute;
  top: 22px; left: 36px;
  z-index: 3;
  background: rgba(245,245,246,0.9);
  padding: 4px 10px;
  border: 1px solid var(--line);
}
.integration__live {
  position: absolute;
  top: 22px; right: 36px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-dark);
  color: #fff;
  padding: 5px 12px 5px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.integration__live .live__dot { background: var(--accent-2); }

.integration__scan {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195,44,43,0.7), transparent);
  box-shadow: 0 0 18px rgba(195,44,43,0.45);
  animation: integrationScan 5.6s var(--e-in-out) infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes integrationScan {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(518px); opacity: 0.5; }
}

.map-bus rect, .map-dolmus rect {
  filter: drop-shadow(0 2px 4px rgba(22,22,25,0.18));
}

.integration__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
}
.integration__meta li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.integration__meta strong {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.integration__legend {
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #fff;
}
.integration__chip {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 16px;
  align-items: start;
}
.integration__dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 7px;
  box-shadow: 0 0 0 4px var(--bg-2);
}
.integration__chip strong {
  display: block;
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 24px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.integration__chip p { margin: 0; color: var(--fg-dim); font-size: 15px; line-height: 1.55; }

@media (max-width: 1000px) {
  .integration__panel { grid-template-columns: 1fr; }
  .integration__map { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ============================================================
   ROLLOUT
   ============================================================ */

.rollout { background: var(--bg); }
.rollout__list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-2);
}
.rollout__item {
  position: relative;
  padding: 56px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255,255,255,0.4);
}
.rollout__item:last-child { border-right: 0; }
.rollout__item.is-active { background: #fff; }
.rollout__item.is-active::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
}
.rollout__item header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.rollout__item h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}
.rollout__item p {
  margin: 0;
  color: var(--fg-dim);
  font-size: 15.5px;
  line-height: 1.55;
}
.rollout__bar {
  margin-top: auto;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.rollout__bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  transition: width 1.2s var(--e-out);
}

@media (max-width: 880px) {
  .rollout__list { grid-template-columns: 1fr; }
  .rollout__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .rollout__item:last-child { border-bottom: 0; }
}

/* ============================================================
   PARTNERSHIP
   ============================================================ */

.partnership { background: var(--bg-2); }
.partnership__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-2);
}
.partnership__card {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.partnership__card:last-child { border-right: 0; }
.partnership__card--alt { background: rgba(255,255,255,0.85); }
.partnership__card header { display: flex; align-items: center; gap: 16px; }
.partnership__card h3 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 1;
}
.partnership__card p { margin: 0; font-size: 16px; color: var(--fg-dim); line-height: 1.55; max-width: 460px; }
.partnership__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.partnership__list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.partnership__list li::before {
  content: "▸";
  color: var(--accent);
}

@media (max-width: 880px) {
  .partnership__grid { grid-template-columns: 1fr; }
  .partnership__card { border-right: 0; border-bottom: 1px solid var(--line); }
  .partnership__card:last-child { border-bottom: 0; }
}

/* ============================================================
   VISION
   ============================================================ */

.vision {
  background: var(--bg-dark);
  color: #fff;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
}
.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
}
.vision::after {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(195,44,43,0.18), transparent 70%);
  bottom: -300px; right: -200px;
  pointer-events: none;
}
.vision__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 1;
}
.vision__title {
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
}
.vision__title .accent { color: var(--accent-2); }
.vision__lead {
  max-width: 760px;
  font-size: clamp(16px, 1.2vw, 20px);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0;
}
.vision__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light-2);
  padding-top: 32px;
  margin-top: 28px;
}
.vision__metrics li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 24px;
  border-right: 1px solid var(--line-light);
}
.vision__metrics li:last-child { border-right: 0; }
.vision__metrics strong {
  font-size: clamp(38px, 4.6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.vision__metrics .mono { color: rgba(255,255,255,0.55); }

@media (max-width: 720px) {
  .vision__metrics { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .vision__metrics li:nth-child(2n) { border-right: 0; }
}

/* ============================================================
   CTA
   ============================================================ */

.cta { background: var(--bg); position: relative; overflow: hidden; }
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(22,22,25,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22,22,25,0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 80%);
}
.cta__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cta__title {
  font-weight: 800;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
}
.cta__title .accent { color: var(--accent); }
.cta__lead {
  max-width: 580px;
  font-size: clamp(16px, 1.15vw, 19px);
  color: var(--fg-dim);
  line-height: 1.55;
  margin: 0;
}

.cta__form {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: #fff;
  margin-top: 16px;
  max-width: 720px;
}
.cta__form input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
  color: var(--fg);
}
.cta__form input::placeholder {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.cta__form button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 280ms var(--e-out);
}
.cta__form button:hover { background: var(--accent-2); }

.cta__contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta__contact {
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: color 280ms var(--e-out);
}
.cta__contact:last-child { border-right: 0; padding-left: 24px; }
.cta__contact:nth-child(2) { padding-left: 24px; }
.cta__contact:hover { color: var(--accent); }
.cta__contact strong {
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: -0.01em;
}

@media (max-width: 880px) {
  .cta__form { grid-template-columns: 1fr; border-radius: 16px; }
  .cta__contacts { grid-template-columns: 1fr; }
  .cta__contact { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0 !important; }
  .cta__contact:last-child { border-bottom: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px var(--gutter) 32px;
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: end;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
}
.footer__logo {
  height: 48px;
  width: auto;
  display: block;
}
.footer__tag {
  margin: 0;
  max-width: 580px;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.footer__cols {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 56px;
  border-top: 1px solid var(--line-light-2);
  border-bottom: 1px solid var(--line-light-2);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col .mono { color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.footer__col a, .footer__col span {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  transition: color 200ms var(--e-out);
}
.footer__col a:hover { color: var(--accent-2); }

.footer__bottom {
  max-width: var(--maxw);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 800ms var(--e-out), transform 800ms var(--e-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}
.reveal-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 900ms var(--e-expo);
}
.is-revealed .reveal-line > span,
.section.is-revealed .reveal-line > span {
  transform: translateY(0);
}
.section__title .reveal-line:nth-child(2) > span { transition-delay: 80ms; }
.section__title .reveal-line:nth-child(3) > span { transition-delay: 160ms; }

/* fallback: reveal lines without container */
.section__title.is-revealed .reveal-line > span { transform: translateY(0); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], .reveal-line > span { opacity: 1; transform: none; }
}
