/* =========================================================
   VoltTwoWheeler — custom.css
   Future mobility EV launch site — glassmorphism system
   Navy / Electric-cyan · floating pill nav · soft neon
   ========================================================= */

:root {
  --navy: #050A14;
  --navy-soft: #0B1220;
  --cyan: #00E5FF;
  --cyan-soft: #5CEFFF;
  --soft-white: #E8EEF5;
  --mist: #9AA8B8;
  --mist-mid: #C5CED8;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.8, 0.4, 1);
  --glass-fill: rgba(13, 22, 38, 0.5);
  --glass-fill-soft: rgba(13, 22, 38, 0.32);
  --glass-border: rgba(154, 168, 184, 0.16);
  --glass-edge: rgba(0, 229, 255, 0.4);
}

/* ─────────────────────────────────────────
   Base / resets
   ───────────────────────────────────────── */
html.lenis,
html.lenis body {
  height: auto;
}

html.lenis {
  scroll-behavior: auto !important;
}

* {
  box-sizing: border-box;
}

body.vtw {
  background-color: var(--navy);
  color: var(--mist-mid);
  overflow-x: hidden;
  cursor: none;
}

body.vtw::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

body.vtw.is-touch,
body.vtw.no-custom-cursor {
  cursor: auto;
}

::selection {
  background: rgba(0, 229, 255, 0.28);
  color: var(--soft-white);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--cyan);
  color: var(--navy);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  cursor: auto;
}

.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;
}

/* ─────────────────────────────────────────
   Scroll progress
   ───────────────────────────────────────── */
.vtw-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 60;
  pointer-events: none;
}

.vtw-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-soft));
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.45);
}

/* ─────────────────────────────────────────
   Custom cursor
   ───────────────────────────────────────── */
.vtw-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.vtw-cursor.is-on { opacity: 1; }

.vtw-cursor__ring {
  position: absolute;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid rgba(197, 206, 216, 0.45);
  border-radius: 50%;
  transition: transform 0.2s ease, border-color 0.25s ease, width 0.25s ease, height 0.25s ease, margin 0.25s ease;
}

.vtw-cursor.is-hover .vtw-cursor__ring {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-color: rgba(0, 229, 255, 0.7);
}

.vtw-cursor__dot {
  position: absolute;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
}

/* ─────────────────────────────────────────
   VTW-PILL-NAV — floating glass pill navigation
   Completely unique shell: centered capsule, cyan edge glow
   ───────────────────────────────────────── */
.vtw-pill-nav-wrap {
  position: fixed;
  top: 1.1rem;
  inset-inline: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.vtw-pill-nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.5rem 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.58);
  border: 1px solid rgba(0, 229, 255, 0.22);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(0, 229, 255, 0.04);
  transition: box-shadow 0.5s var(--ease-soft), border-color 0.5s, background 0.5s, transform 0.5s var(--ease-soft), padding 0.4s;
  max-width: calc(100vw - 1.5rem);
}

.vtw-pill-nav.is-scrolled {
  background: rgba(8, 14, 26, 0.74);
  border-color: rgba(0, 229, 255, 0.38);
  box-shadow:
    0 14px 46px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(0, 229, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.vtw-pill-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-right: 0.6rem;
  border-right: 1px solid rgba(154, 168, 184, 0.16);
}

.vtw-pill-nav__mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 28%, rgba(92, 239, 255, 0.9), rgba(0, 229, 255, 0.55) 55%, rgba(0, 229, 255, 0.15));
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.45);
  flex-shrink: 0;
}

.vtw-pill-nav__mark::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.35);
  animation: vtwMarkPulse 3.2s ease-in-out infinite;
}

@keyframes vtwMarkPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.14); opacity: 0.05; }
}

.vtw-pill-nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.vtw-pill-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: rgba(197, 206, 216, 0.72);
  white-space: nowrap;
  transition: color 0.35s, background 0.35s;
}

.vtw-pill-link:hover {
  color: var(--soft-white);
  background: rgba(154, 168, 184, 0.08);
}

.vtw-pill-link.is-active {
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan-soft), var(--cyan));
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
}

.vtw-pill-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  margin-left: 0.15rem;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan-soft), var(--cyan));
  box-shadow: 0 4px 22px rgba(0, 229, 255, 0.35);
  white-space: nowrap;
  transition: box-shadow 0.35s, transform 0.35s var(--ease-soft);
  animation: vtwCtaGlow 3.6s ease-in-out infinite;
}

.vtw-pill-nav__cta:hover {
  box-shadow: 0 6px 30px rgba(0, 229, 255, 0.55);
}

@keyframes vtwCtaGlow {
  0%, 100% { box-shadow: 0 4px 22px rgba(0, 229, 255, 0.32); }
  50% { box-shadow: 0 4px 30px rgba(0, 229, 255, 0.58); }
}

.vtw-pill-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: rgba(154, 168, 184, 0.08);
  border: 1px solid rgba(154, 168, 184, 0.18);
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.vtw-pill-toggle span {
  display: block;
  width: 14px;
  height: 1px;
  background: var(--mist-mid);
  transition: transform 0.35s var(--ease-soft), opacity 0.35s;
}

.vtw-pill-toggle span + span { margin-top: 4px; }

.vtw-pill-toggle.is-open {
  border-color: rgba(0, 229, 255, 0.45);
}

.vtw-pill-toggle.is-open span:nth-child(1) {
  transform: translateY(2.5px) rotate(45deg);
}

.vtw-pill-toggle.is-open span:nth-child(2) {
  transform: translateY(-2.5px) rotate(-45deg);
}

/* Mobile floating dock sheet */
#mobileMenu.is-open {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .vtw-pill-nav__links { display: flex; }
}

@media (max-width: 1023px) {
  .vtw-pill-nav__links { display: none; }
  .vtw-pill-nav__cta { display: none; }
}

/* ─────────────────────────────────────────
   Buttons
   ───────────────────────────────────────── */
.btn-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.85rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan-soft), var(--cyan));
  border: none;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-luxury), box-shadow 0.35s;
  box-shadow: 0 4px 28px rgba(0, 229, 255, 0.28);
}

.btn-cyan:hover {
  box-shadow: 0 8px 40px rgba(0, 229, 255, 0.45);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.85rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist-mid);
  background: rgba(11, 18, 32, 0.55);
  border: 1px solid rgba(154, 168, 184, 0.22);
  border-radius: 2px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.35s, color 0.35s, box-shadow 0.35s;
}

.btn-glass:hover {
  border-color: rgba(0, 229, 255, 0.5);
  color: var(--soft-white);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.15);
}

.btn-magnetic {
  will-change: transform;
}

/* ─────────────────────────────────────────
   Lines / dividers
   ───────────────────────────────────────── */
.cyan-line {
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(154, 168, 184, 0.3));
}

.cyan-line-left {
  width: 3.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.cyan-underline {
  position: relative;
  display: inline-block;
}

.cyan-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.4s var(--ease-luxury);
}

.cyan-underline:hover::after {
  width: 100%;
}

.cyan-line-draw__path {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
}

.cyan-line-draw.is-drawn .cyan-line-draw__path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.4s var(--ease-luxury);
}

/* ─────────────────────────────────────────
   Glass panels — .glass-panel (legacy alias) + .vtw-glass (flagship)
   Heavy glassmorphism: blur + border + cyan edge light, soft rounded
   ───────────────────────────────────────── */
.glass-panel,
.vtw-glass {
  position: relative;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: border-color 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), transform 0.45s var(--ease-soft);
  overflow: hidden;
}

.glass-panel::before,
.vtw-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(0, 229, 255, 0.45), transparent 35%, transparent 65%, rgba(92, 239, 255, 0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

.glass-panel:hover,
.vtw-glass:hover {
  border-color: rgba(0, 229, 255, 0.34);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 229, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.vtw-glass--soft {
  background: var(--glass-fill-soft);
  border-radius: 1.75rem;
}

.vtw-glass--pill {
  border-radius: 999px;
}

/* ─────────────────────────────────────────
   .vtw-charge-ring — decorative circular charge visual
   ───────────────────────────────────────── */
.vtw-charge-ring {
  position: relative;
  width: 15rem;
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-inline: auto;
}

.vtw-charge-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.vtw-charge-ring__track {
  fill: none;
  stroke: rgba(154, 168, 184, 0.14);
  stroke-width: 6;
}

.vtw-charge-ring__fill {
  fill: none;
  stroke: url(#vtwChargeGradient);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 690;
  stroke-dashoffset: 690;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.55));
  transition: stroke-dashoffset 1.8s var(--ease-soft);
}

.vtw-charge-ring__core {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 10.5rem;
  height: 10.5rem;
  border-radius: 50%;
  background: rgba(11, 18, 32, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vtw-charge-ring__pct {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--soft-white);
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.35);
  line-height: 1;
}

.vtw-charge-ring__bolt {
  position: absolute;
  top: -0.6rem;
  color: var(--cyan);
  font-size: 1rem;
  animation: vtwBoltPulse 1.8s ease-in-out infinite;
}

@keyframes vtwBoltPulse {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

.vtw-charge-step {
  position: relative;
  padding-left: 1.4rem;
}

.vtw-charge-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.vtw-charge-step::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1.1rem;
  bottom: -1.1rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(0, 229, 255, 0.35), transparent);
}

.vtw-charge-step:last-child::after {
  display: none;
}

/* ─────────────────────────────────────────
   .vtw-horizon-card — horizontal-scroll Innovation cards
   ───────────────────────────────────────── */
.vtw-horizon {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 255, 0.35) transparent;
}

.vtw-horizon.is-pinned {
  overflow: hidden;
}

.vtw-horizon__track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  will-change: transform;
  padding: 0 8vw;
}

@media (min-width: 1024px) {
  .vtw-horizon__track {
    padding: 0 max(2rem, calc((100% - 80rem) / 2 + 2rem));
  }
}

.vtw-horizon-card {
  position: relative;
  flex-shrink: 0;
  width: min(78vw, 380px);
  padding: 2.25rem 2rem;
  border-radius: 1.75rem;
  background: var(--glass-fill-soft);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.vtw-horizon-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 34px rgba(0, 229, 255, 0.12);
}

.vtw-horizon-card__index {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  color: rgba(154, 168, 184, 0.1);
  line-height: 1;
}

.vtw-horizon-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.15rem;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.28);
  margin-bottom: 1.5rem;
}

.vtw-horizon-progress {
  height: 2px;
  border-radius: 999px;
  background: rgba(154, 168, 184, 0.15);
  overflow: hidden;
  max-width: 220px;
}

.vtw-horizon-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-soft));
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

/* ─────────────────────────────────────────
   .vtw-soft-hero — inner page hero: mesh gradient + glass title card
   ───────────────────────────────────────── */
.vtw-soft-hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.vtw-soft-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.22), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(92, 239, 255, 0.14), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(0, 229, 255, 0.1), transparent 55%);
}

.vtw-soft-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, black, transparent 70%);
}

.vtw-soft-hero__card {
  position: relative;
  z-index: 2;
  padding: 2.75rem 2.25rem;
  border-radius: 2rem;
}

@media (min-width: 640px) {
  .vtw-soft-hero__card {
    padding: 3.5rem 3.25rem;
  }
}

.vtw-soft-hero__thumb {
  position: relative;
  z-index: 2;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

@media (max-width: 639px) {
  .vtw-soft-hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
}

/* ─────────────────────────────────────────
   Glow orbs
   ───────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.orb--cyan {
  background: radial-gradient(circle, rgba(0, 229, 255, 0.22), transparent 70%);
}

.orb--hero-a {
  width: 480px;
  height: 480px;
  top: -140px;
  right: -100px;
  z-index: 2;
}

.orb--hero-b {
  width: 380px;
  height: 380px;
  bottom: -100px;
  left: -80px;
  z-index: 2;
  opacity: 0.7;
}

.orb--models {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
}

.orb--perf {
  width: 460px;
  height: 460px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}

.orb--sustain {
  width: 400px;
  height: 400px;
  bottom: -120px;
  right: -60px;
}

.orb--cta {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.45;
}

.orb--404 {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.35;
}

/* ─────────────────────────────────────────
   Images / frames
   ───────────────────────────────────────── */
.img-ev {
  filter: saturate(0.82) contrast(1.1) brightness(0.88) hue-rotate(-4deg);
}

.editorial-frame {
  border: 1px solid rgba(154, 168, 184, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}

.editorial-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 229, 255, 0.08), transparent 55%);
  pointer-events: none;
}

/* ─────────────────────────────────────────
   CINEMATIC FULL-BLEED HERO (.vtw-hero)
   Stable layout — no floating bike layer
   ───────────────────────────────────────── */
.vtw-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.vtw-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vtw-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vtw-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 20, 0.55) 0%, rgba(5, 10, 20, 0.25) 35%, rgba(5, 10, 20, 0.88) 100%),
    linear-gradient(90deg, rgba(5, 10, 20, 0.65) 0%, transparent 55%);
}

.vtw-hero__glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  right: -8%;
  bottom: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(8px);
}

.vtw-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 7.5rem;
  padding-bottom: 5.5rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .vtw-hero__inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 3rem;
    padding-bottom: 6rem;
  }
}

.vtw-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .vtw-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .vtw-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.vtw-hero__stat {
  padding: 1rem 1.1rem;
}

.vtw-hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .vtw-hero__scroll { display: flex; }
}

.vtw-hero__scroll-line {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Legacy parallax classes kept harmless */
.parallax-hero,
.parallax-hero__pin {
  position: relative;
  min-height: 0;
  height: auto;
  overflow: visible;
}

.parallax-hero__layer--bike {
  display: none !important;
}

/* ─────────────────────────────────────────
   Layered parallax hero (legacy / unused)
   ───────────────────────────────────────── */
.parallax-hero__layer {
  will-change: transform;
}

.parallax-hero__layer--bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.parallax-hero__layer--type {
  position: relative;
  z-index: 6;
}

.parallax-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-hero__bike {
  display: none;
}

.parallax-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(5, 10, 20, 0.6) 0%,
    rgba(5, 10, 20, 0.35) 40%,
    rgba(5, 10, 20, 0.92) 100%
  );
}

.parallax-hero__grid { display: none; }

.parallax-hero__content {
  position: relative;
  z-index: 6;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.parallax-hero__title {
  text-shadow: 0 4px 48px rgba(0, 0, 0, 0.55);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  max-width: 22ch;
}

.hero-line {
  display: block;
  opacity: 1;
}

.parallax-hero__stats {
  position: relative;
  z-index: 6;
  margin: 2rem 1.25rem 3rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 360px;
}

@media (min-width: 640px) {
  .parallax-hero__stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }
}

.hero-stat {
  padding: 0.9rem 1.05rem;
  min-width: 5.5rem;
}

.parallax-hero__scroll {
  display: none;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ─────────────────────────────────────────
   Manifesto
   ───────────────────────────────────────── */
.manifesto-title {
  line-height: 1.15;
}

.manifesto-block {
  transition: transform 0.4s var(--ease-luxury);
}

/* ─────────────────────────────────────────
   Model spec chips (used on services.php lineup cards)
   ───────────────────────────────────────── */
.model-card__year {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--soft-white);
  background: rgba(5, 10, 20, 0.82);
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 999px;
}

.model-card__specs,
.model-full-card .model-card__specs {
  border-top: 1px solid rgba(154, 168, 184, 0.12);
  padding-top: 1rem;
}

.model-spec {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}

.model-spec__n {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cyan-soft);
  line-height: 1.1;
}

.model-spec__l {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6rem;
  color: rgba(154, 168, 184, 0.55);
  line-height: 1.3;
}

/* Full lineup grid (services.php) */
.model-full-card {
  transition: transform 0.4s var(--ease-luxury);
}

.model-full-card:hover {
  transform: translateY(-4px);
}

.model-full-card__media {
  position: relative;
  overflow: hidden;
}

/* ─────────────────────────────────────────
   Battery / power technology panels
   ───────────────────────────────────────── */
.battery-panel {
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.battery-panel__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.4s, transform 0.4s var(--ease-luxury);
}

.battery-panel:hover .battery-panel__icon {
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.35);
  transform: scale(1.08);
}

/* ─────────────────────────────────────────
   Range & performance counters
   ───────────────────────────────────────── */
.perf-stat__num {
  text-shadow: 0 0 22px rgba(0, 229, 255, 0.25);
}

/* ─────────────────────────────────────────
   Vertical soft-neon timeline
   ───────────────────────────────────────── */
.vtw-timeline {
  position: relative;
  padding-left: 2.25rem;
}

.vtw-timeline::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.5) 8%, rgba(0, 229, 255, 0.5) 92%, transparent);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}

@media (min-width: 768px) {
  .vtw-timeline {
    padding-left: 0;
  }
  .vtw-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.vtw-timeline__item {
  position: relative;
  padding-bottom: 3rem;
}

.vtw-timeline__item:last-child {
  padding-bottom: 0;
}

.vtw-timeline__dot {
  position: absolute;
  left: -2.25rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 229, 255, 0.12), 0 0 18px rgba(0, 229, 255, 0.65);
}

@media (min-width: 768px) {
  .vtw-timeline__dot {
    left: 50%;
    transform: translateX(-50%);
  }
  .vtw-timeline__item {
    width: 50%;
    padding-right: 3.5rem;
  }
  .vtw-timeline__item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 3.5rem;
  }
}

.vtw-timeline__card {
  padding: 1.75rem 1.75rem;
}

/* ─────────────────────────────────────────
   Abbreviated news strip
   ───────────────────────────────────────── */
.vtw-news-strip {
  display: flex;
  flex-direction: column;
}

.vtw-news-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--glass-border);
  transition: padding-left 0.4s var(--ease-soft), border-color 0.4s;
}

@media (min-width: 640px) {
  .vtw-news-row {
    grid-template-columns: 6.5rem 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }
}

.vtw-news-row:hover {
  border-color: rgba(0, 229, 255, 0.3);
  padding-left: 0.5rem;
}

.vtw-news-row:last-child {
  border-bottom: none;
}

/* ─────────────────────────────────────────
   Soft CTA — glow pulse
   ───────────────────────────────────────── */
.vtw-soft-cta {
  position: relative;
  padding: 3.5rem 2rem;
  border-radius: 2.25rem;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 640px) {
  .vtw-soft-cta {
    padding: 5rem 4rem;
  }
}

.vtw-soft-cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 30%, rgba(0, 229, 255, 0.16), transparent 60%);
  animation: vtwCtaBreathe 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes vtwCtaBreathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Gentle float — soft modern idle motion */
.vtw-float {
  animation: vtwFloat 7s ease-in-out infinite;
}

.vtw-float--slow {
  animation: vtwFloat 9.5s ease-in-out infinite;
}

.vtw-float--delay {
  animation-delay: 1.4s;
}

@keyframes vtwFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─────────────────────────────────────────
   Forms
   ───────────────────────────────────────── */
.vtw-input {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  color: var(--mist-mid);
  background: rgba(11, 18, 32, 0.65);
  border: 1px solid rgba(154, 168, 184, 0.18);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.vtw-input:focus {
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

textarea.vtw-input {
  min-height: 8rem;
  resize: vertical;
}

select.vtw-input {
  cursor: pointer;
}

/* ─────────────────────────────────────────
   FAQ
   ───────────────────────────────────────── */
.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item.is-open {
  border-color: rgba(0, 229, 255, 0.3) !important;
}

/* ─────────────────────────────────────────
   Reveal clip
   ───────────────────────────────────────── */
.reveal-clip__inner {
  overflow: hidden;
}

.reveal-clip__inner img {
  transform: scale(1.08);
  transition: transform 1.2s var(--ease-luxury);
}

.reveal-clip.is-revealed .reveal-clip__inner img {
  transform: scale(1);
}

/* ─────────────────────────────────────────
   Minimal futuristic footer — wordmark watermark + glass card
   ───────────────────────────────────────── */
.vtw-footer {
  position: relative;
  overflow: hidden;
}

.vtw-footer__mark {
  position: absolute;
  left: 50%;
  bottom: -0.35em;
  transform: translateX(-50%);
  z-index: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(4.5rem, 18vw, 13rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(180deg, rgba(154, 168, 184, 0.16), rgba(154, 168, 184, 0.02));
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.vtw-footer__hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.55), rgba(154, 168, 184, 0.15), rgba(0, 229, 255, 0.55), transparent);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.25);
}

.section-editorial {
  position: relative;
}

/* ─────────────────────────────────────────
   Fade-up fallback (non-AOS)
   ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.fade-up.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   Visibility safety net
   ───────────────────────────────────────── */
.hero-stat,
.hero-line,
.model-card,
.battery-panel,
.perf-stat,
.vtw-horizon-card,
.vtw-timeline__item,
[data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
}

.reveal-clip__inner {
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

.vtw-models-swiper {
  overflow: visible;
}

.vtw-models-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(154, 168, 184, 0.35);
  opacity: 1;
}

.vtw-models-pagination .swiper-pagination-bullet-active {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.45);
}

.model-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(11, 18, 32, 0.55);
  border: 1px solid rgba(154, 168, 184, 0.12);
}

/* ─────────────────────────────────────────
   Reduced motion
   ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  body.vtw { cursor: auto; }
  body.vtw::before { display: none; }
  .vtw-cursor { display: none; }
  .parallax-hero__layer--bike { display: none; }
  .parallax-hero__scroll-line { animation: none; }
  .reveal-clip__inner { clip-path: none !important; }
  .fade-up { opacity: 1; transform: none; }
  .cyan-line-draw__path { stroke-dashoffset: 0; }
  .vtw-horizon__track { transform: none !important; }
  .vtw-float, .vtw-float--slow { animation: none; }
  .vtw-pill-nav__mark::after,
  .vtw-pill-nav__cta,
  .vtw-soft-cta::before,
  .vtw-charge-ring__bolt { animation: none; }
}

/* ─────────────────────────────────────────
   Small-screen refinements
   ───────────────────────────────────────── */
@media (max-width: 639px) {
  .parallax-hero__content {
    padding-top: 6.5rem;
  }
  .parallax-hero__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .vtw-charge-ring {
    width: 12rem;
    height: 12rem;
  }
  .vtw-charge-ring__core {
    width: 8.5rem;
    height: 8.5rem;
  }
  .vtw-charge-ring__pct {
    font-size: 2rem;
  }
}
