/* My Automotives — Cyber EV Futurism */
:root {
  --obsidian: #070B0E;
  --panel: #0F161C;
  --neon: #00F5A0;
  --neon-dim: #00C47A;
  --ice: #B8F3DE;
  --grid: #1A2830;
  --text: #E8F5EF;
  --muted: rgba(184, 243, 222, 0.62);
  --glass: rgba(15, 22, 28, 0.55);
  --glass-border: rgba(0, 245, 160, 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, 243, 222, 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(0, 245, 160, 0.35);
}
.ma-btn--neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(0, 245, 160, 0.55);
  background: #5fffc0;
}
.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(0, 245, 160, 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(7, 11, 14, 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(0, 245, 160, 0.35);
  animation: ma-glow-pulse 3.2s ease-in-out infinite;
}
@keyframes ma-glow-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(0, 245, 160, 0.3); }
  50% { box-shadow: 0 0 28px rgba(0, 245, 160, 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(0, 245, 160, 0.12);
  color: var(--neon) !important;
  border: 1px solid var(--glass-border);
}
.ma-nav__link--cta:hover {
  background: rgba(0, 245, 160, 0.22);
  box-shadow: 0 0 18px rgba(0, 245, 160, 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(0, 245, 160, 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(0, 245, 160, 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(7, 11, 14, 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(0, 245, 160, 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(7, 11, 14, 0.55) 0%, rgba(7, 11, 14, 0.2) 40%, rgba(7, 11, 14, 0.92) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(0, 245, 160, 0.15), transparent 55%);
}
.ma-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(0, 245, 160, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 160, 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(0, 245, 160, 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(0, 245, 160, 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(0, 245, 160, 0.4);
  box-shadow: 0 12px 48px rgba(0, 245, 160, 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(7, 11, 14, 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(7, 11, 14, 0.55) 100%),
    radial-gradient(ellipse 70% 55% at 30% 70%, rgba(0, 245, 160, 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(0, 245, 160, 0.5); }
  100% { transform: scale(2.2); opacity: 0; box-shadow: 0 0 0 40px rgba(0, 245, 160, 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(7, 11, 14, 0.92) 0%, rgba(7, 11, 14, 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(0, 245, 160, 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(0, 245, 160, 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(0, 245, 160, 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(0, 245, 160, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 160, 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(7,11,14,0.5), rgba(7,11,14,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(0, 245, 160, 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(0, 245, 160, 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(7, 11, 14, 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(7, 11, 14, 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(0, 245, 160, 0.15);
}
.ma-alert {
  padding: 1rem 1.15rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}
.ma-alert--ok {
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid rgba(0, 245, 160, 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(7, 11, 14, 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(0, 245, 160, 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(0, 245, 160, 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(0, 245, 160, 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(0, 245, 160, 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-orb {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  border: 1px solid rgba(0,245,160,0.45);
  background: rgba(7,11,14,0.55);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
}
.ma-orb strong {
  color: var(--neon);
  font-size: 1.15rem;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
}
.ma-orb span { font-size: 0.68rem; color: rgba(200,255,230,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(7, 11, 14, 0.82) 0%, rgba(7, 11, 14, 0.55) 45%, rgba(7, 11, 14, 0.88) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(0, 245, 160, 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(0,245,160,0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(0,245,160,0.08), transparent 55%),
    rgba(7,11,14,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(0,245,160,0.08);
  z-index: 2;
}
.ma-constellation__core span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: rgba(200,255,230,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(0,245,160,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(200,255,230,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(0,245,160,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(200,255,230,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(0,245,160,0.15);
  border-bottom: 1px solid rgba(0,245,160,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(200,255,230,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(7, 11, 14, 0.82) 0%, rgba(7, 11, 14, 0.55) 45%, rgba(7, 11, 14, 0.88) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(0, 245, 160, 0.18), transparent 55%);
  pointer-events: none;
}
.ma-tech-bg > .ma-container {
  position: relative;
  z-index: 2;
}

.ma-lab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 800px) {
  .ma-lab { grid-template-columns: repeat(4, 1fr); }
}
.ma-lab__cell {
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.ma-lab__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(200,255,230,0.55);
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}
.ma-lab__cell strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--neon);
  font-weight: 500;
  line-height: 1;
}
.ma-lab__cell small { color: rgba(200,255,230,0.55); font-size: 0.8rem; }

.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(7, 11, 14, 0.82) 0%, rgba(7, 11, 14, 0.55) 45%, rgba(7, 11, 14, 0.88) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 245, 160, 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(0,245,160,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(0,245,160,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(200,255,230,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(200,255,230,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(0,245,160,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(0,245,160,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(0, 245, 160, 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(200,255,230,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(7, 11, 14, 0.92));
  border: 1px solid rgba(0, 245, 160, 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(7, 11, 14, 0.08) 0%, rgba(7, 11, 14, 0.22) 38%, rgba(7, 11, 14, 0.82) 100%),
    linear-gradient(135deg, rgba(0, 245, 160, 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(200, 255, 230, 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(200, 255, 230, 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(200, 255, 230, 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(0, 245, 160, 0.15);
  border-radius: 0.65rem;
  background: rgba(0, 245, 160, 0.04);
}
.ma-extra__points strong {
  color: var(--neon);
  font-size: 0.88rem;
  font-weight: 500;
}
.ma-extra__points span {
  color: rgba(200, 255, 230, 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-orb {
    width: 5.5rem;
    height: 5.5rem;
  }
  .ma-orb strong {
    font-size: 0.95rem;
  }
  .ma-btn--lg {
    padding: 0.95rem 1.25rem;
  }
  .ma-extra__inner {
    border-radius: 1rem;
  }
}
