/* Car Focus — Midnight Cobalt & Electric Cyan */
:root {
  --obsidian: #060A14;
  --panel: #0C1524;
  --neon: #2ED8FF;
  --neon-dim: #00A8D4;
  --ice: #B8E8F8;
  --grid: #152030;
  --text: #E6F4FA;
  --muted: rgba(184, 232, 248, 0.62);
  --glass: rgba(12, 21, 36, 0.55);
  --glass-border: rgba(46, 216, 255, 0.18);
  --radius: 18px;
  --font-en: "Space Grotesk", sans-serif;
  --font-jp: "Zen Maru Gothic", "Hiragino Sans", sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }

body {
  font-family: var(--font-jp);
  font-weight: 400;
  background: var(--obsidian);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

body::-webkit-scrollbar { display: none; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font: inherit; color: inherit; }
strong, h1, h2, h3, h4 { font-weight: 500; }
em { font-style: normal; color: var(--neon); }

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

.ma-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--neon);
  color: var(--obsidian);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  font-weight: 500;
}
.ma-skip:focus { left: 1rem; top: 1rem; }

.ma-container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.ma-container--narrow { width: min(720px, calc(100% - 2.5rem)); }

/* Floating orbs + grid */
.ma-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ma-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: ma-float 18s ease-in-out infinite;
}
.ma-orb--a {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--neon-dim), transparent 70%);
  top: -10%; left: -8%;
}
.ma-orb--b {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #0a8f6a, transparent 70%);
  bottom: 10%; right: -5%;
  animation-delay: -6s;
}
.ma-orb--c {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(184, 232, 248, 0.45), transparent 70%);
  top: 45%; left: 55%;
  animation-delay: -11s;
}
@keyframes ma-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

.ma-grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(26, 40, 48, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 40, 48, 0.45) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.5;
}

.ma-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--neon-dim), var(--neon));
  z-index: 200;
  box-shadow: 0 0 12px var(--neon);
  transition: width 0.1s linear;
}

/* Keep header / menu fixed — do not flatten their positioning */
.ma-body > *:not(.ma-orbs):not(.ma-grid-bg):not(.ma-scroll-progress):not(.ma-header):not(.ma-mobile) {
  position: relative;
  z-index: 1;
}

/* Glass */
.ma-glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Typography */
.ma-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.ma-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
}
.ma-lead {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 36rem;
}
.ma-sec-head { margin-bottom: 2.5rem; }
.ma-sec-head--center { text-align: center; }
.ma-sec-head--center .ma-lead { margin-inline: auto; }

/* Buttons */
.ma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, border-color 0.35s, color 0.35s;
}
.ma-btn--neon {
  background: var(--neon);
  color: var(--obsidian);
  box-shadow: 0 0 24px rgba(46, 216, 255, 0.35);
}
.ma-btn--neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(46, 216, 255, 0.55);
  background: #7AE8FF;
}
.ma-btn--ghost {
  background: transparent;
  border-color: var(--glass-border);
  color: var(--ice);
}
.ma-btn--ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 20px rgba(46, 216, 255, 0.2);
}
.ma-btn--lg { padding: 1rem 2rem; font-size: 0.98rem; }

/* Header */
.ma-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 130;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.ma-header.is-scrolled,
.ma-header.is-menu-open {
  background: rgba(6, 10, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--glass-border);
}
.ma-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 100%;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  padding-inline: 0;
}

.ma-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.ma-logo__mark {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background:
    linear-gradient(135deg, transparent 40%, var(--neon) 40%, var(--neon) 48%, transparent 48%),
    linear-gradient(315deg, transparent 40%, var(--neon-dim) 40%, var(--neon-dim) 48%, transparent 48%),
    var(--panel);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 16px rgba(46, 216, 255, 0.35);
  animation: ma-glow-pulse 3.2s ease-in-out infinite;
}
@keyframes ma-glow-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(46, 216, 255, 0.3); }
  50% { box-shadow: 0 0 28px rgba(46, 216, 255, 0.65); }
}
.ma-logo__text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.ma-logo__en {
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ma-logo__jp {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ma-nav--desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ma-nav__list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.ma-nav__link {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.3s, background 0.3s;
}
.ma-nav__link:hover,
.ma-nav__link.is-active { color: var(--ice); }
.ma-nav__link--cta {
  background: rgba(46, 216, 255, 0.12);
  color: var(--neon) !important;
  border: 1px solid var(--glass-border);
}
.ma-nav__link--cta:hover {
  background: rgba(46, 216, 255, 0.22);
  box-shadow: 0 0 18px rgba(46, 216, 255, 0.25);
}
.ma-nav__li {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--ice);
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ma-nav__li:hover {
  color: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 16px rgba(46, 216, 255, 0.3);
}

/* Mobile menu toggle — sits in header flex row (logo left, toggle right) */
.ma-menu-toggle {
  display: none;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(15, 22, 28, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
}
.ma-menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--neon);
  transition: transform 0.35s var(--ease), opacity 0.3s;
  transform-origin: center;
}
.ma-menu-toggle.is-open {
  background: rgba(46, 216, 255, 0.16);
  border-color: var(--neon);
}
.ma-menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ma-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.ma-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.ma-mobile {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(6, 10, 20, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding:
    calc(var(--header-h) + 1rem)
    max(1.25rem, env(safe-area-inset-right, 0px))
    max(1.5rem, env(safe-area-inset-bottom, 0px))
    max(1.25rem, env(safe-area-inset-left, 0px));
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  visibility: hidden;
}
.ma-mobile.is-open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}
.ma-mobile[hidden] {
  display: none !important;
  pointer-events: none;
  visibility: hidden;
}
.ma-mobile:not([hidden]) { display: flex; }
.ma-mobile__top {
  margin-bottom: 1.75rem;
  padding-right: 0;
}
.ma-mobile__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.ma-mobile__link {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.15rem;
  border-radius: 14px;
  border: 1px solid transparent;
  color: var(--ice);
  transition: border-color 0.3s, background 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.ma-mobile__link:hover,
.ma-mobile__link.is-active {
  border-color: var(--glass-border);
  background: rgba(46, 216, 255, 0.08);
}
.ma-mobile__link--cta {
  color: var(--neon);
  border-color: var(--glass-border);
}
.ma-mobile__footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ma-mobile__footer p { color: var(--muted); font-size: 0.9rem; }

/* Hero */
.ma-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  overflow: hidden;
}
.ma-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ma-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
}
.ma-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.55) 0%, rgba(6, 10, 20, 0.2) 40%, rgba(6, 10, 20, 0.92) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(46, 216, 255, 0.15), transparent 55%);
}
.ma-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(46, 216, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 216, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  pointer-events: none;
}
.ma-hero__scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 20px var(--neon);
  animation: ma-scan 5s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}
@keyframes ma-scan {
  0% { top: 10%; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 90%; opacity: 0; }
}
.ma-hero__content {
  position: relative;
  z-index: 4;
  max-width: 720px;
}
.ma-hero__title {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
  text-shadow: 0 0 40px rgba(46, 216, 255, 0.25);
}
.ma-hero__lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 32rem;
  margin-bottom: 1.75rem;
}
.ma-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
.ma-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 520px;
}
.ma-hero__stat {
  padding: 1rem 1.1rem;
}
.ma-hero__stat span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.ma-hero__stat strong {
  font-family: var(--font-en);
  font-size: 1.25rem;
  color: var(--neon);
  font-weight: 500;
}
.ma-hero__brand-jp {
  position: absolute;
  right: -2%;
  bottom: 8%;
  z-index: 3;
  font-size: clamp(3rem, 10vw, 7rem);
  writing-mode: vertical-rl;
  color: rgba(46, 216, 255, 0.08);
  letter-spacing: 0.3em;
  pointer-events: none;
  font-weight: 500;
}

/* Sections */
.ma-section {
  padding: 6rem 0;
}
.ma-section--panel {
  background: linear-gradient(180deg, transparent, rgba(15, 22, 28, 0.65), transparent);
}

/* Range gallery */
.ma-range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ma-range-card {
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.ma-range-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 216, 255, 0.4);
  box-shadow: 0 12px 48px rgba(46, 216, 255, 0.12);
}
.ma-range-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ma-range-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.ma-range-card:hover .ma-range-card__media img { transform: scale(1.06); }
.ma-range-card__km {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.75rem;
  background: rgba(6, 10, 20, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: var(--neon);
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.ma-range-card__km small { font-size: 0.7rem; opacity: 0.7; }
.ma-range-card__body { padding: 1.25rem 1.35rem 1.5rem; }
.ma-range-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}
.ma-range-card__body p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}
.ma-range-card__spec {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--neon-dim);
}

/* Charge */
.ma-charge {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.ma-charge__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.ma-charge__visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(1.08) brightness(0.92);
}
.ma-charge__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(6, 10, 20, 0.55) 100%),
    radial-gradient(ellipse 70% 55% at 30% 70%, rgba(46, 216, 255, 0.22), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.ma-charge__pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  border: 2px solid var(--neon);
  animation: ma-pulse-ring 2.4s ease-out infinite;
  z-index: 2;
}
@keyframes ma-pulse-ring {
  0% { transform: scale(0.6); opacity: 0.9; box-shadow: 0 0 0 0 rgba(46, 216, 255, 0.5); }
  100% { transform: scale(2.2); opacity: 0; box-shadow: 0 0 0 40px rgba(46, 216, 255, 0); }
}
.ma-charge__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.ma-charge-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  align-items: flex-start;
}
.ma-charge-item__ico {
  flex-shrink: 0;
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 0.85rem;
  font-weight: 500;
  width: 2rem;
}
.ma-charge-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.ma-charge-item p { color: var(--muted); font-size: 0.9rem; }

/* Manifesto */
.ma-manifesto {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.ma-manifesto__bg {
  position: absolute;
  inset: 0;
}
.ma-manifesto__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}
.ma-manifesto__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 10, 20, 0.92) 0%, rgba(6, 10, 20, 0.55) 100%);
}
.ma-manifesto__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.ma-manifesto__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.ma-manifesto__text {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}
.ma-manifesto__points {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ma-manifesto__points li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--ice);
}
.ma-manifesto__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
}

/* Tech board */
.ma-tech-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.ma-tech-cell {
  padding: 1.5rem 1.35rem;
  text-align: center;
}
.ma-tech-cell__label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
  letter-spacing: 0.04em;
}
.ma-tech-cell__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.ma-tech-cell__value strong {
  font-family: var(--font-en);
  font-size: 2.4rem;
  color: var(--neon);
  font-weight: 500;
  line-height: 1;
}
.ma-tech-cell__value small {
  font-family: var(--font-en);
  color: var(--muted);
  font-size: 0.85rem;
}
.ma-tech-cell__bar {
  height: 3px;
  background: var(--grid);
  border-radius: 999px;
  overflow: hidden;
}
.ma-tech-cell__bar i {
  display: block;
  height: 100%;
  width: var(--p);
  background: linear-gradient(90deg, var(--neon-dim), var(--neon));
  box-shadow: 0 0 10px var(--neon);
  border-radius: inherit;
}
.ma-tech-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.ma-tech-visual img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
.ma-tech-visual__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(46, 216, 255, 0.15));
  pointer-events: none;
}

/* Sustain */
.ma-sustain {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
.ma-sustain__grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.ma-sustain-card {
  padding: 1.25rem 1.4rem;
}
.ma-sustain-card__n {
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 0.8rem;
  font-weight: 500;
}
.ma-sustain-card h3 { margin: 0.35rem 0; font-size: 1.05rem; }
.ma-sustain-card p { color: var(--muted); font-size: 0.9rem; }
.ma-sustain__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.ma-sustain__media img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Voices */
.ma-voices {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
}
.ma-voices__media {
  position: relative;
  width: 220px;
  margin-inline: auto;
}
.ma-voices__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
}
.ma-voices__ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(46, 216, 255, 0.35);
  animation: ma-spin 20s linear infinite;
}
@keyframes ma-spin { to { transform: rotate(360deg); } }
.ma-voices__quote {
  padding: 2rem 2.25rem;
}
.ma-voices__quote p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.ma-voices__quote footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.ma-voices__quote cite {
  font-style: normal;
  font-weight: 500;
  color: var(--neon);
}
.ma-voices__quote span {
  color: var(--muted);
  font-size: 0.88rem;
}
.ma-voices__dots {
  display: flex;
  gap: 0.5rem;
}
.ma-voices__dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid var(--neon-dim);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}
.ma-voices__dots button.is-active {
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
}

/* Stats */
.ma-stats {
  padding: 4rem 0;
  border-block: 1px solid var(--glass-border);
  background: rgba(15, 22, 28, 0.4);
}
.ma-stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.ma-stats__item strong {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--neon);
  font-weight: 500;
  line-height: 1.1;
  text-shadow: 0 0 24px rgba(46, 216, 255, 0.35);
}
.ma-stats__item span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* CTA */
.ma-cta {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}
.ma-cta__bg {
  position: absolute;
  inset: 0;
}
.ma-cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(1.15);
}
.ma-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 216, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 216, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.ma-cta__inner {
  position: relative;
  z-index: 2;
}
.ma-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.85rem;
}
.ma-cta p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 32rem;
  margin-inline: auto;
}

/* Page hero */
.ma-page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
  overflow: hidden;
}
.ma-page-hero__bg {
  position: absolute;
  inset: 0;
}
.ma-page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.ma-page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,10,20,0.5), rgba(6,10,20,0.9));
}
.ma-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.ma-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.ma-page-hero p { color: var(--muted); }

/* About */
.ma-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ma-split__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.ma-split__media img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}
.ma-manifesto-line {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-left: 2px solid var(--neon);
  color: var(--ice);
  background: rgba(46, 216, 255, 0.05);
}
.ma-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ma-mission-card { overflow: hidden; }
.ma-mission-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ma-mission-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ma-mission-card h3,
.ma-mission-card p { padding: 0 1.25rem; }
.ma-mission-card h3 { margin: 1.1rem 0 0.4rem; }
.ma-mission-card p {
  color: var(--muted);
  font-size: 0.92rem;
  padding-bottom: 1.4rem;
}
.ma-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}
.ma-timeline__item { padding: 1.35rem 1.2rem; }
.ma-timeline__year {
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 0.85rem;
  font-weight: 500;
}
.ma-timeline__item h3 { margin: 0.4rem 0; font-size: 0.98rem; }
.ma-timeline__item p { color: var(--muted); font-size: 0.85rem; }

/* Services */
.ma-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ma-svc-card { overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s; }
.ma-svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 216, 255, 0.35);
}
.ma-svc-card__media { aspect-ratio: 16/10; overflow: hidden; }
.ma-svc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ma-svc-card__body { padding: 1.25rem 1.35rem 1.5rem; }
.ma-svc-card__n {
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 0.78rem;
  font-weight: 500;
}
.ma-svc-card h3 { margin: 0.35rem 0; }
.ma-svc-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.ma-svc-card__price {
  font-family: var(--font-en);
  color: var(--ice);
  font-size: 0.88rem;
}
.ma-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ma-flow__step { padding: 1.5rem 1.25rem; }
.ma-flow__num {
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 1.4rem;
  font-weight: 500;
}
.ma-flow__step h3 { margin: 0.5rem 0 0.35rem; }
.ma-flow__step p { color: var(--muted); font-size: 0.88rem; }

/* FAQ */
.ma-faq { display: flex; flex-direction: column; gap: 0.75rem; }
.ma-faq__item { padding: 0; overflow: hidden; }
.ma-faq__item summary {
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.ma-faq__item summary::-webkit-details-marker { display: none; }
.ma-faq__item summary::after {
  content: "+";
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 1.2rem;
}
.ma-faq__item[open] summary::after { content: "−"; }
.ma-faq__item p {
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Blog */
.ma-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
}
.ma-featured__media { position: relative; min-height: 320px; }
.ma-featured__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.ma-featured__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.75rem;
  background: rgba(6, 10, 20, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--neon);
  font-size: 0.75rem;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}
.ma-featured__copy { padding: 2rem; display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }
.ma-featured__copy time { color: var(--muted); font-size: 0.85rem; }
.ma-featured__copy h2 { font-size: 1.5rem; line-height: 1.35; }
.ma-featured__copy p { color: var(--muted); }
.ma-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ma-blog-card { overflow: hidden; }
.ma-blog-card__media { aspect-ratio: 16/10; overflow: hidden; }
.ma-blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ma-blog-card__body { padding: 1.2rem 1.3rem 1.4rem; }
.ma-blog-card time { color: var(--muted); font-size: 0.8rem; }
.ma-blog-card h3 { margin: 0.4rem 0; font-size: 1.05rem; }
.ma-blog-card p { color: var(--muted); font-size: 0.9rem; }
.ma-newsletter-box {
  padding: 2.5rem;
  text-align: center;
}
.ma-newsletter-box h2 { margin-bottom: 0.5rem; }
.ma-newsletter-box p { color: var(--muted); margin-bottom: 1.5rem; }

/* Contact */
.ma-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.ma-channel { padding: 1.75rem 1.5rem; text-align: center; }
.ma-channel__ico {
  display: inline-block;
  font-family: var(--font-en);
  color: var(--neon);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.ma-channel h3 { margin-bottom: 0.4rem; }
.ma-channel p { color: var(--muted); font-size: 0.9rem; }
.ma-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}
.ma-contact-form-wrap { padding: 2rem; }
.ma-contact-form-wrap > h2 { margin-bottom: 0.35rem; }
.ma-contact-form-wrap > p { color: var(--muted); margin-bottom: 1.5rem; }
.ma-form { display: flex; flex-direction: column; gap: 1.1rem; }
.ma-form__row { display: flex; flex-direction: column; gap: 0.4rem; }
.ma-form__row label { font-size: 0.88rem; color: var(--ice); font-weight: 500; }
.ma-form__row input,
.ma-form__row textarea {
  background: rgba(6, 10, 20, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ma-form__row input:focus,
.ma-form__row textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(46, 216, 255, 0.15);
}
.ma-alert {
  padding: 1rem 1.15rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}
.ma-alert--ok {
  background: rgba(46, 216, 255, 0.1);
  border: 1px solid rgba(46, 216, 255, 0.35);
  color: var(--ice);
}
.ma-alert--err {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.35);
  color: #ffb4b4;
}
.ma-alert ul { padding-left: 1.1rem; list-style: disc; }
.ma-contact-info { display: flex; flex-direction: column; gap: 1rem; }
.ma-contact-info__card { padding: 1.75rem; }
.ma-contact-info__card h2 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.ma-contact-info__card > p { color: var(--muted); margin-bottom: 1.25rem; font-size: 0.92rem; }
.ma-contact-dl { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.ma-contact-dl dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--neon);
  margin-bottom: 0.2rem;
  font-family: var(--font-en);
}
.ma-contact-dl dd { color: var(--ice); font-size: 0.92rem; }
.ma-contact-dl a:hover { color: var(--neon); }
.ma-hours { padding: 1.25rem 1.5rem; }
.ma-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(26, 40, 48, 0.8);
  font-size: 0.9rem;
}
.ma-hours__row:last-child { border-bottom: 0; }
.ma-map {
  overflow: hidden;
  aspect-ratio: 21/9;
}
.ma-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.05) brightness(0.85);
}

/* Newsletter */
.ma-newsletter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ma-newsletter input {
  flex: 1;
  min-width: 160px;
  background: rgba(6, 10, 20, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  outline: none;
}
.ma-newsletter input:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(46, 216, 255, 0.12);
}

/* Footer */
.ma-footer {
  position: relative;
  padding-top: 4.5rem;
  border-top: 1px solid var(--glass-border);
  background: var(--panel);
  overflow: hidden;
}
.ma-footer__glow {
  position: absolute;
  top: -120px; left: 50%;
  width: 500px; height: 240px;
  margin-left: -250px;
  background: radial-gradient(ellipse, rgba(46, 216, 255, 0.12), transparent 70%);
  pointer-events: none;
}
.ma-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.ma-footer__tagline {
  margin-top: 1rem;
  color: var(--neon);
  font-size: 0.95rem;
  font-weight: 500;
}
.ma-footer__desc {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 28rem;
}
.ma-footer__social {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.ma-social {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--ice);
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ma-social:hover {
  color: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 14px rgba(46, 216, 255, 0.3);
}
.ma-footer__col h3 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--neon);
  margin-bottom: 1rem;
  font-family: var(--font-en);
  text-transform: uppercase;
  font-weight: 500;
}
.ma-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.ma-footer__col a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.ma-footer__col a:hover { color: var(--ice); }
.ma-footer__address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ma-footer__address a:hover { color: var(--neon); }
.ma-footer__hours { margin-top: 0.35rem; }
.ma-footer__news-h { margin-top: 1.5rem; }
.ma-footer__bottom {
  border-top: 1px solid var(--glass-border);
  padding: 1.25rem 0;
}
.ma-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}
.ma-footer__note { opacity: 0.7; }
.ma-top {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--neon);
  cursor: pointer;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.ma-top:hover {
  border-color: var(--neon);
  box-shadow: 0 0 16px rgba(46, 216, 255, 0.3);
}

/* Reveal animations */
.js .ma-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .ma-reveal.is-in {
  opacity: 1;
  transform: none;
}
.js .ma-reveal[data-delay="1"] { transition-delay: 0.1s; }
.js .ma-reveal[data-delay="2"] { transition-delay: 0.2s; }
.js .ma-reveal[data-delay="3"] { transition-delay: 0.3s; }
.js .ma-reveal[data-delay="4"] { transition-delay: 0.4s; }
.js .ma-reveal[data-delay="5"] { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 1024px) {
  .ma-range-grid,
  .ma-svc-grid,
  .ma-blog-grid,
  .ma-mission-grid { grid-template-columns: repeat(2, 1fr); }
  .ma-tech-board { grid-template-columns: repeat(2, 1fr); }
  .ma-timeline { grid-template-columns: repeat(3, 1fr); }
  .ma-flow { grid-template-columns: repeat(2, 1fr); }
  .ma-footer__top { grid-template-columns: 1fr 1fr; }
  .ma-charge,
  .ma-sustain,
  .ma-split,
  .ma-featured,
  .ma-contact-grid { grid-template-columns: 1fr; }
  .ma-voices { grid-template-columns: 1fr; text-align: center; }
  .ma-voices__quote footer { justify-content: center; }
  .ma-voices__dots { justify-content: center; }
  .ma-hero__brand-jp { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .ma-header__inner { padding-right: 0; }
  .ma-logo { min-width: 0; flex: 1; }
  .ma-logo__en { font-size: 0.88rem; }
  .ma-logo__jp { font-size: 0.62rem; }
  .ma-nav--desktop { display: none !important; }
  .ma-menu-toggle { display: inline-flex; }
  .ma-hero__stats { grid-template-columns: 1fr; max-width: 240px; }
  .ma-range-grid,
  .ma-svc-grid,
  .ma-blog-grid,
  .ma-mission-grid,
  .ma-channels,
  .ma-stats__row { grid-template-columns: 1fr; }
  .ma-timeline,
  .ma-flow,
  .ma-tech-board { grid-template-columns: 1fr; }
  .ma-footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .ma-section { padding: 4rem 0; }
  .ma-map { aspect-ratio: 4/3; }
  .ma-hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: flex-end;
    padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.25rem) 0 max(1.75rem, env(safe-area-inset-bottom, 0px));
  }
  .ma-hero__title {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
    margin-bottom: 0.75rem;
  }
  .ma-hero__lead {
    font-size: 0.95rem;
    margin-bottom: 1.15rem;
    line-height: 1.55;
  }
  .ma-hero__actions {
    margin-bottom: 1.25rem;
  }
  .ma-hero__orbs {
    display: none;
  }
  .ma-eyebrow { margin-bottom: 0.55rem; }
  .ma-featured__media { position: relative; min-height: 220px; }
  .ma-featured__media img { position: relative; }
  .ma-container {
    width: min(1180px, calc(100% - 1.75rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .ma-reveal { opacity: 1; transform: none; }
}
/* ===== HOMEPAGE v2 — constellation / timeline / ledger / whisper ===== */
.ma-hero__orbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.ma-stat-orb {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  border: 1px solid rgba(46,216,255,0.45);
  background: rgba(6,10,20,0.55);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  box-shadow: 0 0 24px rgba(46, 216, 255, 0.15);
}
.ma-stat-orb strong {
  color: var(--neon);
  font-size: 1.15rem;
  font-weight: 500;
  font-family: var(--font-en);
}
.ma-stat-orb span { font-size: 0.68rem; color: rgba(186,232,248,0.7); letter-spacing: 0.04em; }

.ma-range-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ma-range-bg__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ma-range-bg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.15);
}
.ma-range-bg__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.82) 0%, rgba(6, 10, 20, 0.55) 45%, rgba(6, 10, 20, 0.88) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(46, 216, 255, 0.18), transparent 55%);
  pointer-events: none;
}
.ma-range-bg > .ma-container {
  position: relative;
  z-index: 2;
}

.ma-constellation {
  position: relative;
  max-width: 720px;
  margin: 2.5rem auto 0;
  aspect-ratio: 1;
  border: 1px solid rgba(46,216,255,0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(46,216,255,0.08), transparent 55%),
    rgba(6,10,20,0.4);
}
.ma-constellation__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  border: 1px solid var(--neon);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(46,216,255,0.08);
  z-index: 2;
}
.ma-constellation__core span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: rgba(186,232,248,0.7);
}
.ma-constellation__core strong {
  font-family: "Space Grotesk", sans-serif;
  color: var(--neon);
  font-size: 1.4rem;
  font-weight: 500;
}
.ma-node {
  position: absolute;
  width: 7.5rem;
  padding: 0.65rem;
  text-align: center;
  background: rgba(10,16,20,0.85);
  border: 1px solid rgba(46,216,255,0.3);
  border-radius: 0.75rem;
}
.ma-node__km {
  display: block;
  color: var(--neon);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.ma-node h3 { font-size: 0.82rem; margin: 0 0 0.2rem; font-weight: 500; color: #e8fff4; }
.ma-node p { margin: 0; font-size: 0.68rem; color: rgba(186,232,248,0.55); line-height: 1.35; }
.ma-node--1 { top: 6%; left: 50%; transform: translateX(-50%); }
.ma-node--2 { top: 22%; right: 4%; }
.ma-node--3 { bottom: 22%; right: 4%; }
.ma-node--4 { bottom: 6%; left: 50%; transform: translateX(-50%); }
.ma-node--5 { bottom: 22%; left: 4%; }
.ma-node--6 { top: 22%; left: 4%; }
@media (max-width: 640px) {
  .ma-constellation { aspect-ratio: auto; border-radius: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; padding: 1rem; border-radius: 1rem; }
  .ma-constellation__core { position: static; transform: none; grid-column: 1 / -1; margin: 0 auto 0.5rem; }
  .ma-node { position: static; width: auto; transform: none !important; }
}

.ma-timeline {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0 0 0 1.25rem;
  border-left: 2px solid rgba(46,216,255,0.35);
}
.ma-timeline__item {
  position: relative;
  padding: 0 0 2rem 1.5rem;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
}
.ma-timeline__dot {
  position: absolute;
  left: -1.35rem;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
}
.ma-timeline__n {
  font-family: "Space Grotesk", sans-serif;
  color: var(--neon);
  font-size: 0.9rem;
}
.ma-timeline__item h3 { margin: 0 0 0.35rem; font-weight: 500; font-size: 1.05rem; }
.ma-timeline__item p { margin: 0; color: rgba(186,232,248,0.65); font-size: 0.92rem; line-height: 1.6; }

.ma-typewall {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: #05080a;
  border-top: 1px solid rgba(46,216,255,0.15);
  border-bottom: 1px solid rgba(46,216,255,0.15);
}
.ma-typewall__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #e8fff4;
  margin: 0.75rem 0 1.25rem;
  max-width: 12em;
}
.ma-typewall__text {
  max-width: 34em;
  color: rgba(186,232,248,0.65);
  font-size: 1.05rem;
  line-height: 1.75;
}

.ma-tech-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ma-tech-bg__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ma-tech-bg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.15);
}
.ma-tech-bg__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.82) 0%, rgba(6, 10, 20, 0.55) 45%, rgba(6, 10, 20, 0.88) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(46, 216, 255, 0.18), transparent 55%);
  pointer-events: none;
}
.ma-tech-bg > .ma-container {
  position: relative;
  z-index: 2;
}

.ma-lab,
.ma-hud-lab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 800px) {
  .ma-lab,
  .ma-hud-lab { grid-template-columns: repeat(4, 1fr); }
}
.ma-lab__cell,
.ma-hud-lab__cell {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.ma-lab__label,
.ma-hud-lab__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(186,232,248,0.55);
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}
.ma-lab__cell strong,
.ma-hud-lab__cell strong {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--neon);
  font-weight: 500;
  line-height: 1;
}
.ma-lab__cell small,
.ma-hud-lab__cell small { color: rgba(186,232,248,0.55); font-size: 0.8rem; }
.ma-hud-lab__scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  animation: ma-scan-y 3.2s linear infinite;
  opacity: 0.55;
  pointer-events: none;
}
@keyframes ma-scan-y {
  0% { top: 0; }
  100% { top: 100%; }
}

.ma-sustain-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ma-sustain-bg__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ma-sustain-bg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.15);
}
.ma-sustain-bg__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.82) 0%, rgba(6, 10, 20, 0.55) 45%, rgba(6, 10, 20, 0.88) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(46, 216, 255, 0.18), transparent 55%);
  pointer-events: none;
}
.ma-sustain-bg > .ma-container {
  position: relative;
  z-index: 2;
}

.ma-ledger {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(46,216,255,0.25);
}
.ma-ledger__row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.75rem 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(46,216,255,0.15);
}
@media (min-width: 700px) {
  .ma-ledger__row {
    grid-template-columns: 3rem 14rem 1fr;
    align-items: baseline;
  }
}
.ma-ledger__n {
  font-family: "Space Grotesk", sans-serif;
  color: var(--neon);
  font-size: 0.95rem;
}
.ma-ledger__row h3 { margin: 0; font-weight: 500; font-size: 1.05rem; color: #e8fff4; }
.ma-ledger__row p { margin: 0; color: rgba(186,232,248,0.6); font-size: 0.92rem; line-height: 1.6; }

.ma-whisper {
  max-width: 640px;
  margin: 2rem auto 0;
  padding: 2rem 1.75rem;
  text-align: center;
}
.ma-whisper p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e8fff4;
  margin: 0 0 1.25rem;
}
.ma-whisper footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.ma-whisper cite { font-style: normal; color: var(--neon); font-size: 0.9rem; }
.ma-whisper span { font-size: 0.8rem; color: rgba(186,232,248,0.55); }
.ma-whisper__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}
.ma-whisper__dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: none;
  background: rgba(46,216,255,0.25);
  cursor: pointer;
  padding: 0;
}
.ma-whisper__dots button.is-active { background: var(--neon); }

.ma-quiet {
  position: relative;
  padding: clamp(4.5rem, 12vw, 7rem) 0;
  background: #05080a;
  border-top: 1px solid rgba(46,216,255,0.2);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.ma-quiet__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ma-quiet__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.32) saturate(0.9);
}
.ma-quiet__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 8, 10, 0.88) 0%, rgba(5, 8, 10, 0.62) 45%, rgba(5, 8, 10, 0.92) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(46, 216, 255, 0.12), transparent 55%);
  pointer-events: none;
}
.ma-quiet__inner {
  position: relative;
  z-index: 2;
}
.ma-quiet__inner h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  color: #e8fff4;
  margin: 0 0 0.75rem;
}
.ma-quiet__inner p {
  color: rgba(186,232,248,0.6);
  max-width: 28em;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.ma-quiet__inner::before {
  content: "";
  display: block;
  width: 4rem;
  height: 1px;
  background: var(--neon);
  margin: 0 auto 1.5rem;
}

/* Supplemental editorial cards */
.ma-extra {
  padding: 0 1.25rem 2rem;
}
.ma-extra__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  background:
    linear-gradient(135deg, rgba(10, 16, 20, 0.96), rgba(6, 10, 20, 0.92));
  border: 1px solid rgba(46, 216, 255, 0.18);
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.ma-extra__media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  isolation: isolate;
}
.ma-extra__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}
.ma-extra__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.08) 0%, rgba(6, 10, 20, 0.22) 38%, rgba(6, 10, 20, 0.82) 100%),
    linear-gradient(135deg, rgba(46, 216, 255, 0.22), transparent 55%);
  pointer-events: none;
}
.ma-extra__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.35rem 1.5rem;
  color: #e8fff4;
}
.ma-extra__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 0.55rem;
  font-weight: 500;
}
.ma-extra__overlay h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.15;
  margin: 0 0 0.45rem;
  color: #e8fff4;
  font-weight: 500;
}
.ma-extra__overlay p {
  max-width: 24rem;
  margin: 0;
  color: rgba(186, 232, 248, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
}
.ma-extra__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}
.ma-extra__kicker {
  margin: -0.15rem 0 0;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(186, 232, 248, 0.55);
}
.ma-extra__body .ma-title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.1;
}
.ma-extra__body > p:not(.ma-eyebrow):not(.ma-extra__kicker) {
  margin: 0;
  max-width: 34rem;
  color: rgba(186, 232, 248, 0.65);
  line-height: 1.7;
}
.ma-extra__points {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.ma-extra__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  align-items: baseline;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(46, 216, 255, 0.15);
  border-radius: 0.65rem;
  background: rgba(46, 216, 255, 0.04);
}
.ma-extra__points strong {
  color: var(--neon);
  font-size: 0.88rem;
  font-weight: 500;
}
.ma-extra__points span {
  color: rgba(186, 232, 248, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}
.ma-extra__body .ma-btn {
  margin-top: 0.5rem;
}
@media (min-width: 900px) {
  .ma-extra__inner {
    grid-template-columns: 1fr 1fr;
  }
  .ma-extra__inner--reverse .ma-extra__media {
    order: 2;
  }
  .ma-extra__media {
    min-height: 100%;
  }
  .ma-extra__media img {
    min-height: 100%;
  }
}

/* ===== Mobile polish ===== */
@media (max-width: 767px) {
  .js .ma-reveal {
    transform: translateY(20px);
  }
  .ma-hero {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .ma-hero__orbs {
    display: none;
  }
  .ma-orb {
    width: 6.25rem;
    height: 6.25rem;
    padding: 0.55rem;
  }
  .ma-hero__actions,
  .ma-extra__body,
  .ma-quiet__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .ma-hero__actions .ma-btn,
  .ma-extra__body .ma-btn,
  .ma-quiet__inner .ma-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .ma-extra {
    padding: 0 0.85rem 1.5rem;
  }
  .ma-extra__media {
    min-height: 200px;
  }
  .ma-extra__media img {
    min-height: 200px;
  }
  .ma-extra__overlay {
    padding: 1.1rem 1rem 1.2rem;
  }
  .ma-extra__body {
    padding: 1.35rem 1.15rem 1.6rem;
  }
  .ma-extra__points li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .ma-title,
  .ma-hero__title {
    overflow-wrap: anywhere;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .ma-header__inner {
    width: min(1180px, calc(100% - 1.5rem));
  }
  .ma-logo__mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .ma-menu-toggle {
    width: 42px;
    height: 42px;
  }
  .ma-stat-orb {
    width: 5.5rem;
    height: 5.5rem;
  }
  .ma-stat-orb strong {
    font-size: 0.95rem;
  }
  .ma-btn--lg {
    padding: 0.95rem 1.25rem;
  }
  .ma-extra__inner {
    border-radius: 1rem;
  }
}

/* ===== Car Focus EV futuristic layouts ===== */
.ma-longcopy {
  margin: 2rem auto 0;
  max-width: 52rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.9;
}

.ma-page-hero__scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(46, 216, 255, 0.03) 3px,
    rgba(46, 216, 255, 0.03) 4px
  );
  animation: ma-scanline 8s linear infinite;
  opacity: 0.7;
}
@keyframes ma-scanline {
  0% { background-position: 0 0; }
  100% { background-position: 0 120px; }
}

.ma-charge-rhythm {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.ma-charge-rhythm__item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(15, 22, 28, 0.45);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.ma-charge-rhythm__wave {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(46,216,255,0.4);
  box-shadow: 0 0 0 0 rgba(46,216,255,0.35);
  animation: ma-pulse-ring 2.4s ease-out infinite;
}
.ma-charge-rhythm__n {
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 0.95rem;
  font-weight: 500;
}
.ma-charge-rhythm__item h3 { margin: 0 0 0.35rem; font-weight: 500; }
.ma-charge-rhythm__item p { margin: 0; color: var(--muted); font-size: 0.92rem; }
@keyframes ma-pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(46,216,255,0.4); }
  70% { box-shadow: 0 0 0 14px rgba(46,216,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,216,255,0); }
}

.ma-pulse-ring {
  position: relative;
  max-width: 760px;
  margin: 2.5rem auto 0;
  min-height: 280px;
  display: grid;
  gap: 1rem;
}
.ma-pulse-ring__core {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid var(--neon);
  display: grid;
  place-items: center;
  background: rgba(46,216,255,0.08);
  box-shadow: 0 0 40px rgba(46,216,255,0.25);
  position: relative;
}
.ma-pulse-ring__core span {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--neon);
  opacity: 0.85;
  animation: ma-pulse-ring 2s ease-out infinite;
}
.ma-pulse-ring__item {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(46,216,255,0.25);
  border-radius: 14px;
  background: rgba(6,10,20,0.65);
}
.ma-pulse-ring__item h3 { margin: 0 0 0.35rem; font-weight: 500; color: var(--ice); }
.ma-pulse-ring__item p { margin: 0; color: var(--muted); font-size: 0.9rem; }
@media (min-width: 800px) {
  .ma-pulse-ring {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
  .ma-pulse-ring__core {
    grid-column: 1 / -1;
  }
}

.ma-orbit {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 800px) {
  .ma-orbit { grid-template-columns: repeat(4, 1fr); }
}
.ma-orbit__node {
  padding: 1.35rem 1.2rem;
  position: relative;
}
.ma-orbit__n {
  display: block;
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.ma-orbit__node h3 { margin: 0 0 0.4rem; font-weight: 500; }
.ma-orbit__node p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.ma-hud-rail {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .ma-hud-rail { grid-template-columns: repeat(3, 1fr); }
}
.ma-hud-rail__item { overflow: hidden; }
.ma-hud-rail__media { height: 160px; overflow: hidden; }
.ma-hud-rail__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1) brightness(0.85); }
.ma-hud-rail__body { padding: 1.2rem 1.25rem 1.4rem; }
.ma-hud-rail__n { font-family: var(--font-en); color: var(--neon); font-size: 0.8rem; }
.ma-hud-rail__body h3 { margin: 0.35rem 0 0.45rem; font-weight: 500; }
.ma-hud-rail__body p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.ma-charge-path {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
  position: relative;
}
.ma-charge-path::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--neon), transparent);
  opacity: 0.5;
}
@media (min-width: 800px) {
  .ma-charge-path {
    grid-template-columns: repeat(5, 1fr);
  }
  .ma-charge-path::before { display: none; }
}
.ma-charge-path__item { padding: 1.2rem; }
.ma-charge-path__year {
  display: block;
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.ma-charge-path__item h3 { margin: 0 0 0.4rem; font-weight: 500; font-size: 1rem; }
.ma-charge-path__item p { margin: 0; color: var(--muted); font-size: 0.86rem; }

.ma-star-map {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 2rem auto 0;
  max-width: 640px;
  padding: 0;
}
.ma-star-map li {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(46,216,255,0.28);
  border-radius: 999px;
  text-align: center;
  background: rgba(6,10,20,0.55);
  box-shadow: 0 0 20px rgba(46,216,255,0.08);
  font-weight: 500;
}
.ma-whisper-solo,
.ma-visit-hud,
.ma-care-orbit,
.ma-begin-path,
.ma-visit-prep,
.ma-form-pulse,
.ma-price-pulse,
.ma-reply-meter,
.ma-privacy-ledger,
.ma-next-signal {
  padding: 2rem 1.75rem;
  text-align: center;
}
.ma-whisper-solo p,
.ma-visit-hud p,
.ma-care-orbit p,
.ma-begin-path p,
.ma-visit-prep p,
.ma-form-pulse p,
.ma-price-pulse p,
.ma-reply-meter p,
.ma-privacy-ledger p,
.ma-next-signal p {
  color: var(--muted);
  margin: 0.75rem auto 1.25rem;
  max-width: 36rem;
}

.ma-sustain-pulse,
.ma-delivery-bg,
.ma-diary-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  align-items: center;
}
.ma-sustain-pulse__media,
.ma-delivery-bg__media,
.ma-diary-bg__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ma-sustain-pulse__media img,
.ma-delivery-bg__media img,
.ma-diary-bg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.2);
}
.ma-sustain-pulse__veil,
.ma-delivery-bg__veil,
.ma-diary-bg__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,10,20,0.92), rgba(6,10,20,0.55)),
    radial-gradient(ellipse at 70% 40%, rgba(46,216,255,0.2), transparent 55%);
}
.ma-sustain-pulse__inner,
.ma-delivery-bg__inner,
.ma-diary-bg__inner {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  max-width: 36rem;
}
.ma-sustain-pulse__inner p,
.ma-delivery-bg__inner p,
.ma-diary-bg__inner p { color: var(--muted); margin-top: 0.75rem; }

.ma-hex-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .ma-hex-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .ma-hex-grid { grid-template-columns: repeat(3, 1fr); }
}
.ma-hex { padding: 0; overflow: hidden; }
.ma-hex__media { height: 150px; overflow: hidden; }
.ma-hex__media img { width: 100%; height: 100%; object-fit: cover; }
.ma-hex__n,
.ma-hex h3,
.ma-hex p,
.ma-hex__price { display: block; padding-left: 1.2rem; padding-right: 1.2rem; }
.ma-hex__n { padding-top: 1rem; color: var(--neon); font-family: var(--font-en); font-size: 0.8rem; }
.ma-hex h3 { margin: 0.35rem 0; font-weight: 500; }
.ma-hex p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.ma-hex__price { padding: 0.85rem 1.2rem 1.25rem; color: var(--neon); font-weight: 500; font-size: 0.9rem; }

.ma-flow-charge {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 800px) {
  .ma-flow-charge { grid-template-columns: repeat(4, 1fr); }
}
.ma-flow-charge__step {
  padding: 1.25rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(15,22,28,0.5);
}
.ma-flow-charge__num {
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 1.4rem;
  font-weight: 500;
}
.ma-flow-charge__bar {
  height: 4px;
  background: rgba(46,216,255,0.15);
  border-radius: 999px;
  margin: 0.75rem 0 1rem;
  overflow: hidden;
}
.ma-flow-charge__bar i {
  display: block;
  height: 100%;
  width: var(--p, 40%);
  background: linear-gradient(90deg, var(--neon-dim), var(--neon));
  box-shadow: 0 0 12px var(--neon);
}
.ma-flow-charge__step h3 { margin: 0 0 0.4rem; font-weight: 500; }
.ma-flow-charge__step p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.ma-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.ma-matrix__cell {
  padding: 1.35rem 1rem;
  text-align: center;
  border: 1px solid rgba(46,216,255,0.3);
  border-radius: 12px;
  background: rgba(46,216,255,0.05);
  font-weight: 500;
  box-shadow: inset 0 0 30px rgba(46,216,255,0.06);
}

.ma-price-pulse__bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.65rem;
  height: 100px;
  margin-top: 1.25rem;
}
.ma-price-pulse__bars span {
  width: 1.4rem;
  height: var(--h, 50%);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--neon), rgba(46,216,255,0.2));
  box-shadow: 0 0 16px rgba(46,216,255,0.35);
  animation: ma-bar 2.8s ease-in-out infinite alternate;
}
.ma-price-pulse__bars span:nth-child(2) { animation-delay: 0.2s; }
.ma-price-pulse__bars span:nth-child(3) { animation-delay: 0.4s; }
.ma-price-pulse__bars span:nth-child(4) { animation-delay: 0.6s; }
@keyframes ma-bar {
  from { filter: brightness(0.85); transform: scaleY(0.92); transform-origin: bottom; }
  to { filter: brightness(1.15); transform: scaleY(1); transform-origin: bottom; }
}

.ma-route-strip {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 800px) {
  .ma-route-strip { grid-template-columns: repeat(3, 1fr); }
}
.ma-route-strip__item { padding: 1.35rem 1.25rem; }
.ma-route-strip__item h3 { margin: 0 0 0.4rem; font-weight: 500; }
.ma-route-strip__item p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.ma-featured-hud {
  display: grid;
  gap: 0;
  overflow: hidden;
  margin-top: 1.5rem;
}
@media (min-width: 900px) {
  .ma-featured-hud { grid-template-columns: 1.1fr 1fr; }
}
.ma-featured-hud__media { position: relative; min-height: 240px; }
.ma-featured-hud__media img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.ma-featured-hud__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(46,216,255,0.9);
  color: var(--obsidian);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.ma-featured-hud__copy { padding: 1.75rem 1.5rem; }
.ma-featured-hud__copy time { color: var(--muted); font-size: 0.82rem; }
.ma-featured-hud__copy h2 { margin: 0.5rem 0 0.75rem; font-weight: 500; font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
.ma-featured-hud__copy p { color: var(--muted); margin: 0 0 0.75rem; }
.ma-featured-hud__body { font-size: 0.92rem; line-height: 1.8; }

.ma-article-orbit {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 800px) {
  .ma-article-orbit { grid-template-columns: repeat(3, 1fr); }
}
.ma-article-orbit__item { overflow: hidden; }
.ma-article-orbit__media { height: 160px; overflow: hidden; }
.ma-article-orbit__media img { width: 100%; height: 100%; object-fit: cover; }
.ma-article-orbit__item time,
.ma-article-orbit__item h3,
.ma-article-orbit__item p { display: block; padding: 0 1.15rem; }
.ma-article-orbit__item time { padding-top: 1rem; color: var(--muted); font-size: 0.78rem; }
.ma-article-orbit__item h3 { margin: 0.4rem 0; font-weight: 500; font-size: 1.05rem; }
.ma-article-orbit__item p { padding-bottom: 1.25rem; margin: 0; color: var(--muted); font-size: 0.9rem; }

.ma-radar {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  border: 1px solid rgba(46,216,255,0.28);
  background:
    radial-gradient(circle at center, rgba(46,216,255,0.12), transparent 55%),
    rgba(6,10,20,0.7);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
}
.ma-radar__sweep {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px dashed rgba(46,216,255,0.35);
  animation: ma-spin 12s linear infinite;
}
.ma-radar__sweep::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(46,216,255,0.2);
}
@keyframes ma-spin {
  to { transform: rotate(360deg); }
}
.ma-radar__copy { position: relative; z-index: 1; max-width: 28rem; }
.ma-radar__copy p { color: var(--muted); margin-top: 0.75rem; }

.ma-axes { display: grid; gap: 0.85rem; margin-top: 1.5rem; }
.ma-axes__bar {
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--neon);
  background: linear-gradient(90deg, rgba(46,216,255,0.12), transparent);
  border-radius: 0 12px 12px 0;
  font-weight: 500;
  box-shadow: 0 0 24px rgba(46,216,255,0.08);
}

.ma-channels-hud {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 800px) {
  .ma-channels-hud { grid-template-columns: repeat(3, 1fr); }
}
.ma-channels-hud__item { padding: 1.5rem 1.25rem; text-align: center; }
.ma-channels-hud__ico {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--neon);
  color: var(--neon);
  font-family: var(--font-en);
  margin-bottom: 0.75rem;
  box-shadow: 0 0 18px rgba(46,216,255,0.25);
}
.ma-channels-hud__item h3 { margin: 0 0 0.4rem; font-weight: 500; }
.ma-channels-hud__item p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.ma-reply-meter__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(46,216,255,0.15);
  overflow: hidden;
  max-width: 280px;
  margin: 0 auto;
}
.ma-reply-meter__bar i {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--neon-dim), var(--neon));
  box-shadow: 0 0 12px var(--neon);
  animation: ma-meter 2.5s ease-in-out infinite alternate;
}
@keyframes ma-meter {
  from { width: 55%; }
  to { width: 88%; }
}

.ma-online-glass {
  display: grid;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 860px) {
  .ma-online-glass { grid-template-columns: 1.1fr 1fr; }
}
.ma-online-glass__media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
}
.ma-online-glass__media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; filter: brightness(0.75) saturate(1.15); }
.ma-online-glass__copy { padding: 1.75rem 1.5rem; }
.ma-online-glass__copy p { color: var(--muted); margin-top: 0.75rem; }

.ma-privacy-ledger {
  border-top: 1px solid rgba(46,216,255,0.2);
  border-bottom: 1px solid rgba(46,216,255,0.2);
  padding: 2.5rem 1rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(46,216,255,0.05), transparent);
}

@media (max-width: 640px) {
  .ma-charge-rhythm__item { grid-template-columns: auto 1fr; }
  .ma-charge-rhythm__wave { display: none; }
  .ma-matrix { grid-template-columns: 1fr; }
  .ma-star-map li { border-radius: 14px; }
}

/* =====================================================================
   HOMEPAGE — Car Focus "Neon Horizon" (cf-*)
   Midnight cobalt + electric cyan — matches site header/orbs language.
   ===================================================================== */
.cf-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

/* ---------- 1. Hero ---------- */
.cf-horizon {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--obsidian);
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
}
.cf-horizon__bg { position: absolute; inset: 0; z-index: 0; }
.cf-horizon__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.55) saturate(1.05) contrast(1.05);
  animation: cf-ken 22s ease-in-out infinite alternate;
}
@keyframes cf-ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.cf-horizon__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.55) 0%, rgba(6, 10, 20, 0.2) 35%, rgba(6, 10, 20, 0.88) 100%),
    linear-gradient(90deg, rgba(6, 10, 20, 0.75) 0%, rgba(6, 10, 20, 0.15) 55%, rgba(6, 10, 20, 0.45) 100%);
}
.cf-horizon__glow {
  position: absolute;
  left: -10%; bottom: -20%;
  width: 55%; height: 55%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(46, 216, 255, 0.18), transparent 65%);
}
.cf-horizon__watermark {
  position: absolute;
  right: 4%; top: 42%;
  z-index: 1;
  margin: 0;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(4rem, 16vw, 12rem);
  letter-spacing: -0.03em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(46, 216, 255, 0.22);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.cf-horizon__content { position: relative; z-index: 3; max-width: 40rem; }
.cf-horizon__brand {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  line-height: 0.95;
  color: #f0faff;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}
.cf-horizon__brand::after {
  content: '';
  display: block;
  width: 72px; height: 3px;
  margin-top: 0.85rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--neon), transparent);
  box-shadow: 0 0 16px rgba(46, 216, 255, 0.55);
}
.cf-horizon__brand-jp {
  font-size: 0.88rem;
  letter-spacing: 0.35em;
  color: var(--ice);
  margin: 0.85rem 0 1.35rem;
  opacity: 0.85;
}
.cf-horizon__title {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
  line-height: 1.45;
  color: #eaf8ff;
  margin: 0 0 1rem;
}
.cf-horizon__lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 32rem;
  margin: 0 0 1.75rem;
}
.cf-horizon__scroll {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px; height: 48px;
  background: linear-gradient(180deg, rgba(46, 216, 255, 0.7), transparent);
}
.cf-horizon__scroll span {
  position: absolute;
  top: 0; left: 50%;
  width: 6px; height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
  animation: cf-scroll-dot 2.2s ease-in-out infinite;
}
@keyframes cf-scroll-dot {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ---------- 2. Day ribbon ---------- */
.cf-day {
  background: var(--panel);
  border-top: 1px solid var(--glass-border);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}
.cf-day__head { max-width: 40rem; margin-bottom: 2.75rem; }
.cf-day__title {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  color: #eaf8ff;
  margin-bottom: 0.85rem;
}
.cf-day__lead { color: var(--muted); max-width: 36rem; }
.cf-day__ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.cf-day__ribbon::before {
  content: '';
  position: absolute;
  top: 2.15rem; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0.45;
  pointer-events: none;
}
.cf-day__stop {
  position: relative;
  padding: 0 0.25rem;
}
.cf-day__time {
  display: block;
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--neon);
  margin-bottom: 0.85rem;
}
.cf-day__dot {
  display: block;
  width: 11px; height: 11px;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  background: var(--panel);
  border: 2px solid var(--neon);
  box-shadow: 0 0 0 4px rgba(46, 216, 255, 0.12), 0 0 14px rgba(46, 216, 255, 0.35);
}
.cf-day__stop h3 {
  color: #eaf8ff;
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}
.cf-day__stop p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---------- 3. Range bands ---------- */
.cf-sil {
  background: var(--obsidian);
  padding: clamp(4rem, 9vw, 6rem) 0 0;
}
.cf-sil__head { text-align: center; margin-bottom: 2.75rem; }
.cf-sil__title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: #eaf8ff;
  margin-bottom: 0.85rem;
}
.cf-sil__lead { color: var(--muted); max-width: 36rem; margin-inline: auto; }
.cf-sil__bands { display: flex; flex-direction: column; }
.cf-sil__band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: min(56vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.cf-sil__band + .cf-sil__band { border-top: 1px solid rgba(46, 216, 255, 0.14); }
.cf-sil__media { position: absolute; inset: 0; }
.cf-sil__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(1.08);
}
.cf-sil__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.15) 0%, rgba(6, 10, 20, 0.82) 100%),
    linear-gradient(90deg, rgba(6, 10, 20, 0.55) 0%, transparent 50%, rgba(6, 10, 20, 0.35) 100%);
}
.cf-sil__overlay {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: clamp(1.75rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.cf-sil__km {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  line-height: 0.9;
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 0 40px rgba(46, 216, 255, 0.25);
}
.cf-sil__km small {
  font-size: 0.28em;
  color: var(--neon);
  margin-left: 0.35rem;
  letter-spacing: 0.06em;
}
.cf-sil__copy { max-width: 22rem; text-align: right; }
.cf-sil__copy h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.35rem; }
.cf-sil__copy p { color: rgba(230, 242, 250, 0.72); font-size: 0.92rem; line-height: 1.6; }
.cf-sil__band:nth-child(even) .cf-sil__overlay { flex-direction: row-reverse; }
.cf-sil__band:nth-child(even) .cf-sil__copy { text-align: left; }

/* ---------- 4. Manifesto ---------- */
.cf-quiet {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(46, 216, 255, 0.08), transparent 55%),
    var(--panel);
  border-top: 1px solid var(--glass-border);
  padding: clamp(4.5rem, 11vw, 7.5rem) 0;
  text-align: center;
}
.cf-quiet__inner { max-width: 44rem; }
.cf-quiet__title {
  font-size: clamp(1.9rem, 4.8vw, 3.2rem);
  line-height: 1.35;
  color: #eaf8ff;
  margin-bottom: 1.35rem;
}
.cf-quiet__text {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.cf-quiet__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.cf-quiet__points li {
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ice);
  background: rgba(15, 22, 28, 0.65);
}
.cf-quiet__points li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-right: 0.55rem;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  vertical-align: middle;
}

/* ---------- 5. Eco spine ---------- */
.cf-eco {
  background: var(--obsidian);
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  border-top: 1px solid rgba(46, 216, 255, 0.12);
}
.cf-eco__head { max-width: 38rem; margin-bottom: 2.75rem; }
.cf-eco__title {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  color: #eaf8ff;
  margin-bottom: 0.85rem;
}
.cf-eco__lead { color: var(--muted); }
.cf-eco__spine { position: relative; list-style: none; }
.cf-eco__spine::before {
  content: '';
  position: absolute;
  left: 6px; top: 0.5rem; bottom: 0.5rem;
  width: 2px;
  background: rgba(46, 216, 255, 0.15);
}
.cf-eco__spine::after {
  content: '';
  position: absolute;
  left: 6px; top: 0.5rem; bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--neon), var(--neon-dim));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.5s var(--ease) 0.1s;
}
.cf-eco__spine.is-in::after { transform: scaleY(1); }
.cf-eco__row {
  position: relative;
  padding: 1.35rem 0 1.35rem 2.6rem;
  border-bottom: 1px solid rgba(46, 216, 255, 0.08);
}
.cf-eco__row:last-child { border-bottom: none; }
.cf-eco__row::before {
  content: '';
  position: absolute;
  left: 1px; top: 1.7rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--obsidian);
  border: 2px solid var(--neon);
  box-shadow: 0 0 12px rgba(46, 216, 255, 0.4);
  z-index: 1;
}
.cf-eco__n {
  display: block;
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.3rem;
}
.cf-eco__copy h3 { color: #eaf8ff; font-size: 1.12rem; margin-bottom: 0.35rem; }
.cf-eco__copy p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; max-width: 34rem; }

/* ---------- 6. Voice ---------- */
.cf-voice {
  background: var(--panel);
  border-top: 1px solid var(--glass-border);
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  text-align: center;
}
.cf-voice__inner { max-width: 42rem; }
.cf-voice__head { margin-bottom: 2rem; }
.cf-voice__title {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  color: #eaf8ff;
}
.cf-voice__quote p {
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  line-height: 1.75;
  color: #eaf8ff;
  margin-bottom: 1.5rem;
}
.cf-voice__quote footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}
.cf-voice__quote cite {
  font-style: normal;
  font-family: var(--font-en);
  color: var(--neon);
  font-size: 0.95rem;
}
.cf-voice__quote footer span { color: var(--muted); font-size: 0.85rem; }

/* ---------- 7. Close ---------- */
.cf-close {
  position: relative;
  padding: clamp(4.5rem, 11vw, 7rem) 0;
  background: #05080a;
  border-top: 1px solid rgba(46, 216, 255, 0.18);
  text-align: center;
  overflow: hidden;
}
.cf-close__media { position: absolute; inset: 0; z-index: 0; }
.cf-close__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.32) saturate(0.95);
}
.cf-close__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 8, 10, 0.88) 0%, rgba(5, 8, 10, 0.55) 45%, rgba(5, 8, 10, 0.92) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(46, 216, 255, 0.14), transparent 55%);
}
.cf-close__inner { position: relative; z-index: 2; max-width: 40rem; }
.cf-close__inner h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  color: #f0faff;
}
.cf-close__inner p {
  color: rgba(200, 236, 250, 0.72);
  margin-bottom: 1.85rem;
  font-size: 1.02rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cf-day__ribbon {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cf-day__ribbon::before { display: none; }
  .cf-sil__copy { max-width: 18rem; }
}

@media (max-width: 767px) {
  .cf-horizon { padding-bottom: 3.25rem; }
  .cf-horizon__watermark {
    font-size: clamp(3.5rem, 28vw, 7rem);
    top: 28%;
    right: 2%;
    opacity: 0.7;
  }
  .cf-sil__band { min-height: 44vh; }
  .cf-sil__overlay {
    flex-direction: column !important;
    align-items: flex-start;
  }
  .cf-sil__copy { text-align: left !important; max-width: 100%; }
  .cf-sil__km { font-size: clamp(3rem, 18vw, 5rem); }
  .cf-quiet__points { gap: 0.5rem; }
  .cf-eco__row { padding-left: 2.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cf-horizon__bg img { animation: none; }
  .cf-horizon__scroll span { animation: none; }
  .cf-eco__spine::after { transition: none; transform: scaleY(1); }
}
