/* ============================================================
   VoxShift — "The Shift" concept site
   ============================================================ */

@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-var.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --bg: #04060e;
  --bg-soft: #080d1c;
  --ink: #eef3ff;
  --muted: #93a1bd;
  --dim: #5d6a87;
  --line: rgba(160, 190, 255, 0.12);
  --panel: rgba(140, 170, 255, 0.05);
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --ice: #a5f3fc;
  --amber: #fbbf24;
  --grad: linear-gradient(92deg, #60a5fa 0%, #22d3ee 55%, #a5f3fc 100%);
  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Space Grotesk", "Zen Kaku Gothic New", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-jp);
  font-weight: 500;
  line-height: 1.9;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(34, 211, 238, 0.35); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1b2a4a; border-radius: 99px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #28406e; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pc { display: inline; }
.sp { display: none; }
@media (max-width: 760px) {
  .pc { display: none; }
  .sp { display: inline; }
  .hero__sub br.pc,
  .shift__lead br.pc,
  .lead br.pc {
    display: inline;
  }
}

/* ---------- Fixed layers ---------- */
#stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.grain {
  position: fixed;
  inset: -50%;
  z-index: 70;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-6%, 4%); }
  40% { transform: translate(4%, -7%); }
  60% { transform: translate(-3%, -4%); }
  80% { transform: translate(6%, 6%); }
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(2, 4, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(2, 4, 10, 0.5) 0%, transparent 12%, transparent 88%, rgba(2, 4, 10, 0.6) 100%);
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: grid;
  place-content: center;
  gap: 18px;
  justify-items: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
body[data-state="ready"] .loader { opacity: 0; visibility: hidden; }

.loader__wave { display: flex; gap: 5px; align-items: center; height: 46px; }
.loader__wave span {
  width: 3px;
  height: 8px;
  border-radius: 99px;
  background: var(--grad);
  animation: lwave 1.1s ease-in-out infinite;
}
.loader__wave span:nth-child(2n) { animation-delay: 0.12s; }
.loader__wave span:nth-child(3n) { animation-delay: 0.24s; }
.loader__wave span:nth-child(4n) { animation-delay: 0.36s; }
.loader__wave span:nth-child(5n) { animation-delay: 0.48s; }
@keyframes lwave {
  0%, 100% { height: 7px; opacity: 0.5; }
  50% { height: 42px; opacity: 1; }
}
.loader__pct {
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.loader__pct::after { content: "%"; font-size: 0.5em; opacity: 0.8; }
.loader__label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--dim);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: transform 0.5s var(--ease-out), background 0.4s, backdrop-filter 0.4s;
}
.header.is-scrolled {
  background: rgba(4, 6, 14, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header.is-hidden { transform: translateY(-110%); }
.header__logo img {
  height: 28px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.16));
}
.header__nav { display: flex; gap: clamp(14px, 2.4vw, 30px); }
.header__nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.header__nav a:hover { color: var(--ink); }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.language-switcher {
  position: relative;
  z-index: 2;
  display: inline-grid;
}
.language-switcher__button {
  position: relative;
  min-width: 146px;
  height: 42px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 12px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border-radius: 99px;
  border: 1px solid rgba(165, 243, 252, 0.18);
  background:
    radial-gradient(circle at 18% 12%, rgba(165, 243, 252, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(140, 170, 255, 0.11), rgba(5, 9, 20, 0.5));
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow:
    0 18px 40px -24px rgba(34, 211, 238, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.language-switcher__button:hover,
.language-switcher__button:focus-visible,
.language-switcher.is-open .language-switcher__button {
  border-color: rgba(165, 243, 252, 0.45);
  background:
    radial-gradient(circle at 18% 12%, rgba(165, 243, 252, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(140, 170, 255, 0.16), rgba(5, 9, 20, 0.58));
  box-shadow:
    0 18px 46px -22px rgba(34, 211, 238, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.language-switcher__button:hover { transform: translateY(-1px); }
.language-switcher__button:focus-visible {
  outline: 2px solid rgba(165, 243, 252, 0.44);
  outline-offset: 3px;
}
.language-switcher__orb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(3, 16, 28, 0.8) 48%, rgba(3, 16, 28, 0.8) 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(3, 16, 28, 0.8) 48%, rgba(3, 16, 28, 0.8) 52%, transparent 53%),
    radial-gradient(circle, var(--ice), var(--cyan) 58%, var(--blue));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.38);
}
.language-switcher__current {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.language-switcher__chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--cyan);
  border-bottom: 1.5px solid var(--cyan);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.28s var(--ease-out);
}
.language-switcher.is-open .language-switcher__chevron {
  transform: translateY(2px) rotate(225deg);
}
.language-switcher__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 236px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(165, 243, 252, 0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 211, 238, 0.18), transparent 34%),
    linear-gradient(150deg, rgba(7, 13, 29, 0.96), rgba(3, 6, 14, 0.92));
  box-shadow:
    0 30px 90px -38px rgba(0, 0, 0, 0.95),
    0 0 52px -30px rgba(34, 211, 238, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform-origin: 88% 0%;
}
.language-switcher__menu::before {
  content: "";
  position: absolute;
  right: 21px;
  top: -6px;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(165, 243, 252, 0.18);
  border-top: 1px solid rgba(165, 243, 252, 0.18);
  background: rgba(7, 13, 29, 0.96);
  transform: rotate(45deg);
}
.language-switcher__menu[hidden] { display: none; }
.language-switcher__option {
  position: relative;
  width: 100%;
  min-height: 36px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 7px 10px 7px 8px;
  color: #c6d3ea;
  background: transparent;
  text-align: left;
  transition: background 0.22s var(--ease-out), color 0.22s, transform 0.22s var(--ease-out);
}
.language-switcher__option + .language-switcher__option { margin-top: 2px; }
.language-switcher__option:hover,
.language-switcher__option:focus-visible {
  color: var(--ink);
  background: rgba(140, 170, 255, 0.09);
  transform: translateX(2px);
  outline: none;
}
.language-switcher__option.is-active {
  color: #04101c;
  background: linear-gradient(92deg, #60a5fa, #22d3ee 70%, #a5f3fc);
  box-shadow: 0 12px 28px -18px rgba(34, 211, 238, 0.85);
}
.language-switcher__code {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 22px;
  border-radius: 8px;
  color: var(--ice);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.language-switcher__option.is-active .language-switcher__code {
  color: #04101c;
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(3, 16, 28, 0.08);
}
.language-switcher__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 860px) { .header__nav { display: none; } }
@media (max-width: 520px) {
  .header { gap: 12px; padding-inline: 16px; }
  .header__actions { gap: 8px; }
  .header__logo img { height: 24px; }
  .language-switcher__button {
    min-width: 106px;
    height: 36px;
    grid-template-columns: 18px minmax(0, 1fr) 10px;
    gap: 7px;
    padding-inline: 10px;
  }
  .language-switcher__orb {
    width: 18px;
    height: 18px;
  }
  .language-switcher__current {
    font-size: 11px;
  }
  .language-switcher__menu {
    right: -52px;
    width: min(236px, calc(100vw - 28px));
  }
  .header__actions .btn--sm {
    padding-inline: 13px;
  }
  .header__actions .btn--sm span {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 15px 28px;
  border-radius: 99px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  will-change: transform;
  white-space: nowrap;
  transition: box-shadow 0.35s, border-color 0.35s, color 0.35s, background 0.35s;
}
.btn span {
  min-width: 0;
  text-align: center;
}
.btn--store {
  color: #03101c;
  background: var(--grad);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
}
.btn--store:hover { box-shadow: 0 8px 40px -6px rgba(34, 211, 238, 0.55); }
.btn--ghost {
  color: var(--ink);
  background: rgba(140, 170, 255, 0.06);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: rgba(165, 243, 252, 0.5); background: rgba(140, 170, 255, 0.1); }
.btn--sm { padding: 10px 18px; font-size: 12.5px; }
.btn--lg { padding: 19px 40px; font-size: 16px; }
.btn--full {
  width: 100%;
  min-height: 54px;
  line-height: 1.35;
  white-space: normal;
}

/* ---------- Common ---------- */
.section {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(96px, 15vh, 170px) clamp(20px, 5vw, 56px);
}
.eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--cyan);
  margin-bottom: 18px;
}
.eyebrow--amber { color: var(--amber); }
.center { text-align: center; }
.h2 {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.015em;
  text-shadow: 0 2px 32px rgba(3, 5, 12, 0.85);
  text-wrap: balance;
}
.h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  margin-top: 26px;
  font-size: clamp(14.5px, 1.6vw, 16.5px);
  color: var(--muted);
  max-width: 56em;
  text-wrap: pretty;
}
.lead.center { margin-inline: auto; }
.lead strong { color: var(--ice); font-weight: 700; }
.note { margin-top: 18px; font-size: 12px; color: var(--dim); }

.link-arrow {
  display: inline-block;
  margin-left: 0.6em;
  color: var(--cyan);
  font-weight: 700;
  border-bottom: 1px solid rgba(34, 211, 238, 0.4);
  transition: color 0.3s, border-color 0.3s;
}
.link-arrow::after { content: " ↗"; font-size: 0.85em; }
.link-arrow:hover { color: var(--ice); border-color: var(--ice); }

/* split-text helper: SplitText moves chars into divs — re-apply the
   gradient per char (background-clip:text breaks with transformed children) */
.hero__title em div, .h2 em div {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px clamp(20px, 5vw, 56px) 90px;
}
.hero__eyebrow {
  font-family: var(--font-en);
  font-size: clamp(10px, 1.3vw, 12.5px);
  font-weight: 600;
  letter-spacing: 0.46em;
  color: var(--muted);
  margin-bottom: clamp(22px, 4vh, 40px);
}
.hero__greeting {
  font-family: var(--font-en);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cyan);
  min-height: 1.6em;
  display: flex;
  align-items: center;
  gap: 2px;
}
.hero__cursor {
  width: 2px;
  height: 1.1em;
  background: var(--cyan);
  display: inline-block;
  animation: blink 1.05s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero__title {
  margin-top: 14px;
  font-size: clamp(30px, 8.4vw, 96px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.01em;
  text-shadow: 0 6px 60px rgba(4, 6, 14, 0.9);
  text-wrap: balance;
}
.hero__title .line,
.h2 .line {
  display: inline-block;
}
.hero__title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: clamp(20px, 3.4vh, 34px);
  font-size: clamp(14px, 1.7vw, 17px);
  color: #b9c5dd;
  text-shadow: 0 1px 18px rgba(3, 5, 12, 0.95), 0 0 4px rgba(3, 5, 12, 0.8);
  max-width: 62em;
  text-wrap: pretty;
}
.hero__cta {
  margin-top: clamp(28px, 4.6vh, 46px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.hero__stats {
  list-style: none;
  margin-top: clamp(36px, 6.5vh, 64px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero__stats li { display: grid; gap: 2px; justify-items: center; }
.hero__stats li.divider { width: 1px; height: 38px; background: var(--line); }
.hero__stats strong {
  font-family: var(--font-en);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__stats strong i { font-style: normal; font-size: 0.6em; }
.hero__stats span { font-size: 11.5px; letter-spacing: 0.14em; color: var(--dim); }
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 9.5px;
  letter-spacing: 0.5em;
  color: var(--dim);
}
.hero__scroll i {
  width: 1px;
  height: 54px;
  background: linear-gradient(var(--cyan), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--ice), transparent);
  animation: scrollcue 1.8s var(--ease-out) infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(20px, 4vh, 42px) 0;
  border-block: 1px solid var(--line);
  background: rgba(4, 6, 14, 0.35);
  backdrop-filter: blur(4px);
}
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--font-en);
  font-size: clamp(26px, 4.2vw, 54px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(165, 243, 252, 0.4);
  padding-right: 0.4em;
}
.marquee__track em {
  font-style: normal;
  -webkit-text-stroke: 0;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Shift pipeline (pinned) ---------- */
.shift { position: relative; z-index: 2; }
.shift__sticky {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  max-width: 1180px;
  margin-inline: auto;
  padding: 90px clamp(20px, 5vw, 56px) 130px;
}
.shift__head .h2 { font-size: clamp(24px, 3.4vw, 40px); }
.shift__lead {
  margin-top: 24px;
  font-size: 15px;
  color: var(--muted);
  text-shadow: 0 1px 16px rgba(3, 5, 12, 0.9);
  text-wrap: pretty;
}
.shift__cards { position: relative; min-height: 340px; }
.shift__card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(8, 14, 30, 0.78), rgba(8, 14, 30, 0.55));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
}
.shift__num {
  font-family: var(--font-en);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(165, 243, 252, 0.55);
}
.shift__card h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.shift__card h3 small {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--cyan);
}
.shift__card p {
  font-size: 14.5px;
  color: var(--muted);
  text-wrap: pretty;
}
.shift__card code {
  align-self: flex-start;
  font-family: var(--font-en);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ice);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  padding: 6px 14px;
  border-radius: 99px;
}
.shift__progress {
  position: absolute;
  left: 50%;
  bottom: 56px;
  transform: translateX(-50%);
  width: min(420px, 70vw);
  height: 2px;
  background: rgba(160, 190, 255, 0.15);
  display: flex;
  justify-content: space-between;
}
.shift__bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.8);
}
.shift__node {
  position: relative;
  top: -9px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--dim);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 2px 9px;
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.shift__node.is-active {
  color: #021018;
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.7);
}
@media (max-width: 960px) {
  .shift__sticky { grid-template-columns: 1fr; align-content: center; gap: 30px; padding-bottom: 150px; }
  .shift__cards { min-height: 300px; }
}

/* ---------- Voice ---------- */
.voice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 960px) { .voice { grid-template-columns: 1fr; } }
.checks { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.checks li {
  position: relative;
  padding-left: 34px;
  font-size: 14.5px;
  color: var(--muted);
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
}
.checks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.42em + 5px);
  width: 8px;
  height: 4.5px;
  border-left: 1.6px solid var(--ice);
  border-bottom: 1.6px solid var(--ice);
  transform: rotate(-45deg);
}

.wavecard {
  position: relative;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(140, 170, 255, 0.08), rgba(140, 170, 255, 0.02));
  backdrop-filter: blur(16px);
  padding: clamp(26px, 3vw, 40px);
  display: grid;
  gap: 8px;
  overflow: hidden;
}
.wavecard::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(40% 35% at 50% 50%, rgba(34, 211, 238, 0.14), transparent 70%);
  pointer-events: none;
}
.wavecard__row { display: grid; gap: 10px; position: relative; }
.wavecard__tag {
  font-family: var(--font-en);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--blue);
}
.wavecard__tag--out { color: var(--cyan); }
.wave { width: 100%; height: 58px; }
.wave path { fill: none; stroke-width: 2; stroke-linecap: round; }
.wave--in path { stroke: var(--blue); filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.7)); }
.wave--out path { stroke: var(--cyan); filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.7)); }
.wavecard__text { font-size: 13.5px; color: var(--muted); }
.wavecard__core {
  justify-self: center;
  margin-block: 6px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: #021018;
  background: var(--grad);
  padding: 6px 18px 6px 22px;
  border-radius: 99px;
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.55);
  animation: corepulse 2.6s ease-in-out infinite;
}
@keyframes corepulse {
  0%, 100% { box-shadow: 0 0 16px rgba(34, 211, 238, 0.35); }
  50% { box-shadow: 0 0 34px rgba(34, 211, 238, 0.75); }
}

/* ---------- Use cases ---------- */
.usecases__grid {
  margin-top: clamp(40px, 6vh, 70px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.ucard {
  --mx: 50%;
  --my: 50%;
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(10, 16, 32, 0.72), rgba(10, 16, 32, 0.5));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px 26px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.4s;
  overflow: hidden;
}
.ucard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(34, 211, 238, 0.13), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.ucard:hover { border-color: rgba(165, 243, 252, 0.35); }
.ucard:hover::before { opacity: 1; }
.ucard__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--ice);
  background: rgba(34, 211, 238, 0.09);
  border: 1px solid rgba(34, 211, 238, 0.22);
  margin-bottom: 20px;
  transform: translateZ(30px);
}
.ucard h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
  transform: translateZ(24px);
}
.ucard > p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 16px;
  transform: translateZ(18px);
  text-wrap: pretty;
}
.ucard ul { list-style: none; display: grid; gap: 7px; transform: translateZ(12px); }
.ucard ul li {
  font-size: 12.5px;
  color: var(--dim);
  padding-left: 16px;
  position: relative;
}
.ucard ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--grad);
  transform: rotate(45deg);
}

/* ---------- Privacy ---------- */
.privacy__frame {
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(5, 9, 20, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 70px);
  position: relative;
  overflow: hidden;
}
.privacy__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(160, 190, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 190, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none;
}
.privacy__grid {
  margin-top: clamp(36px, 5vh, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  position: relative;
}
.pcard {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(140, 170, 255, 0.045);
  padding: 26px 24px;
  text-align: left;
}
.pcard strong {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pcard p {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted);
  text-wrap: pretty;
}

/* ---------- Gallery ---------- */
.gallery {
  max-width: none;
  padding-inline: 0;
  overflow: clip;
  --gallery-progress: 0;
  --gallery-turn: 0;
}
.gallery__head {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  position: relative;
  z-index: 3;
}
.gallery__head .h2 { margin-bottom: clamp(18px, 3vh, 34px); }
.gallery__viewport {
  position: relative;
  max-width: min(1540px, 100vw);
  min-height: clamp(640px, 72svh, 820px);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  overflow: visible;
}
.gallery__viewport::before,
.gallery__viewport::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.gallery__viewport::before {
  inset: 9% -7% 5%;
  background:
    radial-gradient(circle at 50% 18%, rgba(165, 243, 252, 0.18), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(59, 130, 246, 0.12), transparent 42%),
    linear-gradient(90deg, rgba(3, 6, 14, 0.92), rgba(8, 18, 36, 0.34) 45%, rgba(3, 6, 14, 0.92));
  filter: blur(0.2px);
}
.gallery__viewport::after {
  inset: 12% 0 13%;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(165, 243, 252, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 243, 252, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(900px) rotateX(64deg) translateY(18%);
  transform-origin: 50% 100%;
  mask-image: radial-gradient(ellipse at center, #000 34%, transparent 72%);
}
.gallery__depth {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform-style: preserve-3d;
}
.gallery__beam {
  position: absolute;
  left: 50%;
  width: min(64vw, 860px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(165, 243, 252, 0.14), rgba(34, 211, 238, 0.5), rgba(165, 243, 252, 0.14), transparent);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.28);
  transform: translateX(-50%);
  opacity: 0.8;
}
.gallery__beam--top { top: 16%; }
.gallery__beam--bottom { bottom: 20%; }
.gallery__orbit {
  position: absolute;
  left: 50%;
  top: 52%;
  border: 1px solid rgba(165, 243, 252, 0.16);
  border-inline-color: rgba(34, 211, 238, 0.38);
  border-radius: 34px;
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(calc(var(--gallery-turn) * 90deg));
  box-shadow: 0 0 48px rgba(34, 211, 238, 0.08);
}
.gallery__orbit--outer {
  width: min(82vw, 1080px);
  height: min(52vw, 520px);
}
.gallery__orbit--inner {
  width: min(56vw, 720px);
  height: min(34vw, 330px);
  opacity: 0.62;
  border-radius: 26px;
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(calc(var(--gallery-turn) * -90deg));
}
.gallery__axis {
  position: absolute;
  left: 50%;
  top: 10%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(transparent, rgba(165, 243, 252, 0.34), transparent);
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.25);
  transform: translateX(-50%);
  opacity: 0.65;
}
.gallery__track {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
  max-width: 1180px;
  margin: 0 auto;
}
.shot {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(165, 243, 252, 0.16);
  background:
    linear-gradient(145deg, rgba(13, 22, 43, 0.84), rgba(5, 8, 18, 0.92)) padding-box,
    linear-gradient(135deg, rgba(165, 243, 252, 0.24), rgba(59, 130, 246, 0.08), rgba(251, 191, 36, 0.12)) border-box;
  padding: clamp(10px, 1.1vw, 14px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 34px 90px -44px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  transform-style: preserve-3d;
  isolation: isolate;
  overflow: hidden;
}
.shot::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 8%, rgba(165, 243, 252, 0.2), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(251, 191, 36, 0.1), transparent 21%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 36%);
  opacity: 0.68;
  transition: opacity 0.35s var(--ease-out);
}
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.12) 28%, transparent 38%),
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.16), transparent 44%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 0.45s var(--ease-out), transform 0.75s var(--ease-out);
}
.shot.is-active::after,
.shot:hover::after {
  opacity: 0.72;
  transform: translateX(28%);
}
.shot__index {
  position: absolute;
  right: clamp(16px, 2vw, 26px);
  top: clamp(14px, 1.8vw, 22px);
  z-index: 3;
  font-family: var(--font-en);
  font-size: clamp(22px, 3.8vw, 52px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(238, 243, 255, 0.14);
  text-shadow: 0 0 28px rgba(34, 211, 238, 0.12);
  transform: translateZ(34px);
}
.shot__screen {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(160, 190, 255, 0.12);
  background: #050711;
  box-shadow:
    0 20px 64px -34px rgba(34, 211, 238, 0.56),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transform: translateZ(18px);
}
.shot__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.1), transparent);
  mix-blend-mode: screen;
}
.shot__screen img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: inherit;
  transform: scale(1.01);
}
.shot figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px 6px 5px;
  font-size: 12.7px;
  line-height: 1.75;
  color: #aebbd2;
  transform: translateZ(26px);
}
.shot figcaption b {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ice);
  border: 1px solid rgba(34, 211, 238, 0.38);
  border-radius: 99px;
  padding: 4px 10px 4px 12px;
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.08) inset;
  white-space: nowrap;
}
.shot figcaption span {
  min-width: 0;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
.gallery__hud {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: clamp(-28px, -3vh, -18px);
  width: min(640px, calc(100% - 40px));
  transform: translateX(-50%);
  display: grid;
  gap: 10px;
  pointer-events: none;
}
.gallery__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.gallery__step {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: rgba(147, 161, 189, 0.58);
  transition: color 0.35s var(--ease-out), text-shadow 0.35s var(--ease-out);
}
.gallery__step.is-active {
  color: var(--ice);
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
}
.gallery__progress {
  height: 2px;
  border-radius: 99px;
  overflow: hidden;
  background: rgba(160, 190, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(160, 190, 255, 0.04);
}
.gallery__progress i {
  display: block;
  width: calc(var(--gallery-progress) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--amber));
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.46);
}
.gallery.is-3d .gallery__viewport {
  height: min(78svh, 840px);
  min-height: 660px;
  padding-inline: 0;
  perspective: 1450px;
  perspective-origin: 50% 42%;
}
.gallery.is-3d .gallery__track {
  position: absolute;
  inset: 0;
  display: block;
  max-width: none;
  margin: 0;
  transform-style: preserve-3d;
}
.gallery.is-3d .shot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(260px, 28vw, 420px);
  max-width: calc(100vw - 64px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
}
.gallery.is-3d .shot:not(.is-active) {
  filter: saturate(0.78) brightness(0.76);
}
.gallery.is-3d .shot:not(.is-active) figcaption span {
  color: rgba(147, 161, 189, 0.78);
}
.gallery.is-3d .shot.is-active {
  border-color: rgba(165, 243, 252, 0.34);
  box-shadow:
    0 42px 110px -42px rgba(0, 0, 0, 0.95),
    0 0 72px -22px rgba(34, 211, 238, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.045) inset;
}
@media (max-width: 980px) {
  .gallery__track { grid-template-columns: 1fr; }
  .gallery.is-3d .gallery__viewport {
    height: 74svh;
    min-height: 620px;
    perspective: 1120px;
  }
  .gallery.is-3d .shot { width: min(64vw, 420px); }
  .gallery__beam { width: 86vw; }
  .gallery__orbit--outer {
    width: 92vw;
    height: 64vw;
  }
  .gallery__orbit--inner {
    width: 68vw;
    height: 44vw;
  }
}
@media (max-width: 560px) {
  .btn {
    max-width: 100%;
    padding-inline: 22px;
  }
  .btn--lg {
    min-height: 58px;
    white-space: normal;
    line-height: 1.35;
  }
  .gallery__viewport { min-height: 560px; }
  .gallery.is-3d .gallery__viewport {
    height: 70svh;
    min-height: 560px;
  }
  .gallery.is-3d .shot { width: min(64vw, 300px); }
  .shot { border-radius: 18px; }
  .shot__screen { border-radius: 12px; }
  .shot figcaption {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 11.5px;
  }
  .gallery__hud {
    top: -22px;
    gap: 10px;
  }
  .gallery__steps { gap: 6px; }
  .gallery__step {
    font-size: 8.5px;
    letter-spacing: 0.14em;
  }
}

/* ---------- Languages ---------- */
.langs__list {
  list-style: none;
  margin-top: clamp(40px, 6vh, 70px);
  border-top: 1px solid var(--line);
}
.langs__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 10px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.langs__list li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.1), transparent 60%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  pointer-events: none;
}
.langs__list li:hover::before { transform: scaleX(1); }
.langs__name {
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 900;
  transition: color 0.3s, transform 0.4s var(--ease-out);
}
.langs__list li:hover .langs__name { color: var(--ice); transform: translateX(10px); }
.langs__greet {
  font-family: var(--font-en);
  font-size: clamp(14px, 1.8vw, 19px);
  font-weight: 600;
  color: var(--dim);
  letter-spacing: 0.06em;
  transition: color 0.3s;
  text-align: right;
  overflow-wrap: normal;
}
.langs__list li:hover .langs__greet { color: var(--cyan); }

/* ---------- Honest ---------- */
.honest__panel {
  border-radius: 26px;
  border: 1px solid rgba(251, 191, 36, 0.22);
  background: linear-gradient(165deg, rgba(251, 191, 36, 0.06), rgba(251, 191, 36, 0.012) 55%);
  padding: clamp(34px, 5vw, 64px);
}
.honest__list {
  list-style: none;
  margin-top: clamp(28px, 4vh, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px 28px;
}
.honest__list li {
  font-size: 14px;
  color: var(--muted);
  padding: 14px 16px 14px 44px;
  position: relative;
  border-radius: 14px;
  background: rgba(251, 191, 36, 0.045);
  border: 1px solid rgba(251, 191, 36, 0.12);
  text-wrap: pretty;
}
.honest__list li b { color: var(--amber); font-weight: 700; }
.honest__list li::before {
  content: "!";
  position: absolute;
  left: 15px;
  top: 14px;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: #1c1303;
  background: var(--amber);
}
.honest__cta {
  margin-top: 30px;
  font-size: 14.5px;
  color: var(--muted);
  text-wrap: pretty;
}
.honest__cta b { color: var(--ink); }

/* ---------- Pricing ---------- */
.pricing__grid {
  margin-top: clamp(40px, 6vh, 70px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  max-width: 880px;
  margin-inline: auto;
}
.plan {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(10, 16, 32, 0.7), rgba(10, 16, 32, 0.5));
  backdrop-filter: blur(12px);
  padding: clamp(30px, 3.6vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.plan--pro {
  background:
    linear-gradient(rgba(6, 12, 26, 0.92), rgba(6, 12, 26, 0.92)) padding-box,
    var(--grad) border-box;
  border: 1.4px solid transparent;
  box-shadow: 0 24px 80px -28px rgba(34, 211, 238, 0.4);
}
.plan__badge {
  position: absolute;
  top: -13px;
  right: 26px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #021018;
  background: var(--grad);
  padding: 6px 14px 6px 17px;
  border-radius: 99px;
}
.plan h3 { font-family: var(--font-en); font-size: 22px; font-weight: 700; letter-spacing: 0.02em; }
.plan h3 i {
  font-style: normal;
  font-size: 12px;
  vertical-align: super;
  color: var(--cyan);
  letter-spacing: 0.2em;
  margin-left: 6px;
}
.plan__price { font-size: 15px; font-weight: 700; color: var(--ice); }
.plan__purpose {
  font-size: 13px;
  color: var(--dim);
  min-height: 3em;
  text-wrap: pretty;
}
.plan ul { list-style: none; display: grid; gap: 9px; margin-block: 8px 18px; flex: 1; }
.plan ul li {
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
}
.plan ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 5px;
  border-left: 1.6px solid var(--cyan);
  border-bottom: 1.6px solid var(--cyan);
  transform: rotate(-45deg);
}

/* ---------- Final CTA ---------- */
.cta {
  position: relative;
  z-index: 2;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px clamp(20px, 5vw, 56px);
  gap: 26px;
}
.cta > * { position: relative; }
.cta__title {
  font-family: var(--font-en);
  font-size: clamp(64px, 13vw, 168px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.015em;
  background: linear-gradient(180deg, #f4f9ff 20%, #8fd9f5 70%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 60px rgba(34, 211, 238, 0.25));
  text-wrap: balance;
}
/* SplitText moves chars into divs — re-apply the gradient per char */
.cta__title div {
  background: linear-gradient(180deg, #f4f9ff 20%, #8fd9f5 70%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta__sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: #c6d2e8;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 14px rgba(3, 5, 12, 0.9);
}
.cta__actions { display: grid; gap: 16px; justify-items: center; margin-top: 8px; }
.cta__note { font-size: 11.5px; letter-spacing: 0.1em; color: var(--dim); }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(3, 5, 11, 0.85);
  backdrop-filter: blur(16px);
  padding: clamp(48px, 7vh, 80px) clamp(20px, 5vw, 56px) 30px;
}
.footer__inner {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 860px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand img { height: 26px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 12.5px; color: var(--dim); }
.footer__col { display: grid; gap: 10px; align-content: start; }
.footer__col h4 {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--cyan);
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 13px;
  color: var(--muted);
  width: fit-content;
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.footer__col a:hover { color: var(--ice); transform: translateX(4px); }
.footer__copy {
  max-width: 1180px;
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--dim);
  text-align: center;
}

/* ---------- PV Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(2, 3, 8, 0.88);
  backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 60px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__body {
  width: min(1080px, 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(165, 243, 252, 0.25);
  box-shadow: 0 30px 120px -20px rgba(34, 211, 238, 0.35);
  transform: scale(0.94);
  transition: transform 0.45s var(--ease-out);
}
.modal.is-open .modal__body { transform: scale(1); }
.modal__body video { width: 100%; display: block; aspect-ratio: 16 / 9; background: #000; }
.modal__close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(140, 170, 255, 0.07);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  transition: background 0.3s, transform 0.3s;
}
.modal__close:hover { background: rgba(140, 170, 255, 0.16); transform: rotate(90deg); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .hero__scroll i::after, .grain { animation: none !important; }
}
