/* MyCarSpot — Glacier Drift redesign */
:root {
  --deep: #061018;
  --navy: #0c1a28;
  --slate: #152536;
  --fog: #e7eef5;
  --ice: #f4f8fb;
  --ink: #122033;
  --mute: #5f7388;
  --line: rgba(18, 32, 51, 0.1);
  --mint: #3ecfc0;
  --mint-deep: #2a9c94;
  --glow: #7ee8dc;
  --steel: #8aa0b5;
  --radius: 0;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 68px;
  --font: 'Manrope', 'Noto Sans JP', sans-serif;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar { width: 0; height: 0; display: none; }

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ice);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
ul, ol { list-style: none; }
button, input, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6, strong, b {
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  background: var(--mint); color: var(--deep); padding: .75rem 1.25rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(100% - 2.4rem, var(--max)); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.8rem; border: 1px solid transparent;
  font-weight: 400; letter-spacing: .06em; cursor: pointer;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-3px); }
.btn:focus-visible {
  outline: 2px solid var(--mint); outline-offset: 3px;
}
.btn--mint {
  background: var(--mint); color: var(--deep); border-color: var(--mint);
  box-shadow: 0 0 0 0 rgba(62, 207, 192, .35);
}
.btn--mint:hover { background: var(--mint-deep); border-color: var(--mint-deep); box-shadow: 0 12px 40px rgba(62, 207, 192, .25); }
.btn--line {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--line:hover { background: var(--ink); color: var(--ice); }
.btn--line-light {
  background: transparent; color: var(--ice); border-color: rgba(244,248,251,.4);
}
.btn--line-light:hover { background: var(--ice); color: var(--deep); }
.btn--lg { padding: 1.1rem 2.3rem; }

@media (hover: none) {
  .btn:hover { transform: none; }
  .btn:active { transform: scale(.98); }
  .btn--mint:active { box-shadow: 0 8px 28px rgba(62, 207, 192, .28); }
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: rgba(6, 16, 24, .78);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(126, 232, 220, .08);
  transition: background .4s var(--ease);
}
.site-header.is-scrolled { background: rgba(6, 16, 24, .94); }
.site-header__inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.site-logo {
  display: flex; align-items: center; gap: .7rem; color: var(--ice); z-index: 102;
}
.site-logo__mark {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--mint), transparent 60%),
              linear-gradient(315deg, var(--glow), transparent 50%);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.site-logo__text { font-size: 1rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }

.site-nav--desktop { display: flex; align-items: center; gap: 1.5rem; }
.site-nav__list { display: flex; align-items: center; gap: .1rem; }
.site-nav__link {
  display: block; padding: .4rem .65rem; font-size: .78rem; letter-spacing: .1em;
  color: rgba(244,248,251,.65); text-transform: uppercase;
}
.site-nav__link:hover, .site-nav__link.is-active { color: var(--mint); }
.site-nav__link--cta {
  margin-left: .4rem; background: var(--mint); color: var(--deep) !important;
  padding: .5rem 1rem;
}
.site-nav__social { display: flex; gap: .6rem; }
.site-nav__social-link { color: rgba(244,248,251,.45); display: grid; place-items: center; }
.site-nav__social-link:hover { color: var(--mint); }

.menu-toggle {
  display: none; position: fixed; top: 1.05rem; right: 1.05rem; z-index: 120;
  width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px; margin: 5px auto;
  background: var(--ice); transition: .3s var(--ease);
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 110; background: var(--deep);
  display: flex; flex-direction: column; justify-content: center; padding: 4rem 2rem;
  opacity: 0; visibility: hidden; transition: .45s var(--ease);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav__list { display: grid; gap: .4rem; margin: 2rem 0; }
.mobile-nav__link {
  font-size: clamp(1.5rem, 6vw, 2.3rem); color: rgba(244,248,251,.5);
  letter-spacing: .04em; font-weight: 400;
}
.mobile-nav__link.is-active, .mobile-nav__link:hover, .mobile-nav__link--cta { color: var(--mint); }
.mobile-nav__tagline { color: var(--steel); font-size: .9rem; margin-bottom: 1rem; }
.mobile-nav__social { display: flex; gap: 1rem; }
.mobile-nav__social-link { color: var(--glow); }

.scroll-rail {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 130; pointer-events: none;
}
.scroll-rail span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--mint), var(--glow), transparent);
  box-shadow: 0 0 12px rgba(62, 207, 192, .5);
}

.cursor-glow {
  position: fixed; width: 320px; height: 320px; border-radius: 50%;
  pointer-events: none; z-index: 40; mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(62, 207, 192, .16), transparent 68%);
  transform: translate(-50%, -50%); opacity: 0; transition: opacity .4s;
}
body.is-pointer .cursor-glow { opacity: 1; }

/* Velocity streaks (scroll-driven) */
.velocity-field {
  position: fixed; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; opacity: 0;
  transition: opacity .2s;
}
.velocity-field.is-on { opacity: 1; }
.velocity-field span {
  position: absolute; height: 1px; background: linear-gradient(90deg, transparent, var(--mint), transparent);
  opacity: .35; transform: translateX(-100%);
}

/* Reveal FX — only hide when JS is available (html.js) so images never stay blank */
html.js .fx, html.js .fx-blur, html.js .fx-wipe, html.js .fx-rise, html.js .fx-tilt, html.js .fx-scale {
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease), clip-path 1.15s var(--ease);
}
html.js .fx { transform: translateY(40px); }
html.js .fx-blur { filter: blur(14px); transform: translateY(24px) scale(1.02); }
/* Wipe clips children only — parent stays measurable for IntersectionObserver */
html.js .fx-wipe { transform: none; opacity: 1; overflow: hidden; }
html.js .fx-wipe > * {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.15s var(--ease);
}
html.js .fx-rise { transform: translateY(70px); }
html.js .fx-tilt { transform: perspective(800px) rotateX(8deg) translateY(30px); }
html.js .fx-scale { transform: scale(.88); }
html.js .fx.is-in, html.js .fx-blur.is-in, html.js .fx-rise.is-in, html.js .fx-tilt.is-in, html.js .fx-scale.is-in {
  opacity: 1; transform: none; filter: none;
}
html.js .fx-wipe.is-in > * { clip-path: inset(0 0 0 0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .4s; }

/* Shared */
.section { padding: clamp(4.2rem, 9vw, 7.2rem) 0; position: relative; }
.section--deep { background: var(--deep); color: var(--ice); }
.section--navy { background: var(--navy); color: var(--ice); }
.section--fog { background: var(--fog); }
.section--slate { background: var(--slate); color: var(--ice); }

.kicker {
  display: inline-block; font-size: .7rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--mint); margin-bottom: .9rem; font-weight: 400;
}
.sec-title { font-size: clamp(1.75rem, 4vw, 2.95rem); font-weight: 400; margin-bottom: .9rem; }
.sec-lead { color: var(--mute); max-width: 36rem; font-weight: 300; }
.section--deep .sec-lead, .section--navy .sec-lead, .section--slate .sec-lead {
  color: rgba(244,248,251,.58);
}
.sec-head { margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.sec-head--center { text-align: center; }
.sec-head--center .sec-lead { margin-inline: auto; }

/* ===== Configurator hero (home) ===== */
body[data-page="index"] .site-header {
  background: rgba(244, 246, 248, .82);
  border-bottom-color: rgba(0,0,0,.06);
  backdrop-filter: blur(16px);
}
body[data-page="index"] .site-header.is-scrolled {
  background: rgba(255,255,255,.94);
}
body[data-page="index"] .site-logo,
body[data-page="index"] .site-logo__text { color: #111; }
body[data-page="index"] .site-nav__link { color: rgba(17,17,17,.55); }
body[data-page="index"] .site-nav__link:hover,
body[data-page="index"] .site-nav__link.is-active { color: #111; }
body[data-page="index"] .site-nav__link--cta {
  background: #111; color: #fff !important;
}
body[data-page="index"] .site-nav__social-link { color: rgba(17,17,17,.45); }
body[data-page="index"] .site-nav__social-link:hover { color: #111; }
body[data-page="index"] .menu-toggle span { background: #111; }
body[data-page="index"] .site-logo__mark {
  background: linear-gradient(135deg, #111, #666);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.cfg-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 1.25rem) 0 1.75rem;
  overflow: hidden;
  color: #1a1a1a;
  background: #eceff2;
}
.cfg-hero__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.cfg-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  filter: blur(1.5px) saturate(.95) brightness(.92) contrast(1.05);
}
.cfg-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(236,239,242,.42) 0%, rgba(236,239,242,.55) 45%, rgba(220,224,230,.62) 100%),
    radial-gradient(ellipse at 55% 40%, rgba(255,255,255,.18), transparent 60%);
}
.cfg-hero__orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(40px); z-index: 1;
}
.cfg-hero__orb--a {
  width: 340px; height: 340px; left: 8%; top: 18%;
  background: rgba(196, 120, 42, .14);
  animation: cfg-orb 9s ease-in-out infinite;
}
.cfg-hero__orb--b {
  width: 280px; height: 280px; right: 6%; bottom: 22%;
  background: rgba(29, 78, 216, .1);
  animation: cfg-orb 11s ease-in-out infinite reverse;
}
@keyframes cfg-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -22px) scale(1.08); }
}
.cfg-hero__watermark {
  position: absolute; left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  color: rgba(0,0,0,.05);
  pointer-events: none; z-index: 1;
  animation: cfg-spin 70s linear infinite;
}
@keyframes cfg-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cfg-hero__shell {
  position: relative; z-index: 2;
  width: min(100% - 2rem, 1240px);
  margin-inline: auto;
  display: flex; flex-direction: column; gap: 1.1rem;
  min-height: calc(100vh - var(--header-h) - 3rem);
}

.cfg-hero__cats {
  display: flex; flex-direction: column; gap: .45rem;
  align-items: stretch; justify-content: center;
}
.cfg-cat {
  border: 0;
  background: rgba(255,255,255,.78);
  color: #4b5563;
  padding: .6rem 1.15rem;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
  transition: background .35s, color .35s, transform .4s var(--ease), box-shadow .35s;
  font-weight: 400;
  text-align: left;
  display: flex; align-items: center; gap: .55rem;
  backdrop-filter: blur(8px);
}
.cfg-cat span {
  font-size: .65rem; opacity: .45; letter-spacing: .08em;
}
.cfg-cat:hover { transform: translateX(6px); box-shadow: 0 10px 28px rgba(0,0,0,.08); }
.cfg-cat.is-active {
  background: #111;
  color: #fff;
  transform: translateX(8px) scale(1.03);
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}
.cfg-cat.is-active span { opacity: .55; color: #fff; }

.cfg-hero__stage {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
  min-height: 300px;
  perspective: 1200px;
}

.cfg-hero__car-wrap {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
}
.cfg-hero__frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #fafbfc, #e4e8ee);
  box-shadow:
    0 30px 60px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.8);
  padding: 1.2rem 1rem .6rem;
}
.cfg-hero__shine {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.45) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: cfg-shine 4.5s ease-in-out 1.2s infinite;
}
@keyframes cfg-shine {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}
.cfg-hero__car {
  position: relative; z-index: 1;
  width: 100%;
  height: auto;
  max-height: min(40vh, 400px);
  object-fit: cover;
  border-radius: 18px;
  transform: translateX(6%) scale(1.02);
  opacity: 0;
  animation: cfg-car-in 1.15s var(--ease) .2s forwards;
  transition: filter .55s ease, opacity .35s ease, transform .55s var(--ease);
}
@keyframes cfg-car-in {
  to { transform: translateX(0) scale(1); opacity: 1; }
}
.cfg-hero__car.is-swap {
  opacity: 0;
  transform: translateX(5%) scale(.97);
}
.cfg-hero__car.is-pulse {
  animation: cfg-car-pulse .7s var(--ease);
}
@keyframes cfg-car-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.035); }
  100% { transform: scale(1); }
}
.cfg-hero__reflection {
  height: 28px; margin-top: .35rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.16), transparent 70%);
  filter: blur(4px);
}

.cfg-hotspot {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  border: 0; background: transparent;
  cursor: pointer; padding: 0;
  z-index: 4;
}
.cfg-hotspot__ring {
  position: absolute; left: 50%; top: 50%;
  width: 42px; height: 42px; margin: -21px 0 0 -21px;
  border-radius: 50%;
  border: 1px solid rgba(17,17,17,.2);
  animation: cfg-ring 2.4s ease-out infinite;
  opacity: 0;
}
.cfg-hotspot.is-on .cfg-hotspot__ring,
.cfg-hotspot:hover .cfg-hotspot__ring { opacity: 1; }
@keyframes cfg-ring {
  0% { transform: scale(.6); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.cfg-hotspot__dot {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(20,20,20,.62);
  backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  animation: cfg-pulse 2.2s ease-in-out infinite;
  position: relative; z-index: 1;
  transition: background .3s, transform .3s;
}
.cfg-hotspot.is-on .cfg-hotspot__dot,
.cfg-hotspot:hover .cfg-hotspot__dot {
  background: #111;
  transform: scale(1.08);
}
.cfg-hotspot__dot::before {
  content: '+';
  font-size: .95rem;
  line-height: 1;
  font-weight: 400;
}
@keyframes cfg-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,.28); }
  50% { box-shadow: 0 0 0 12px rgba(0,0,0,0); }
}
.cfg-hotspot__label {
  position: absolute;
  left: calc(100% + .6rem);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  white-space: nowrap;
  font-size: .74rem;
  letter-spacing: .03em;
  color: #1f2937;
  background: rgba(255,255,255,.95);
  padding: .5rem .85rem;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s, transform .35s var(--ease);
  display: grid; gap: .15rem;
}
.cfg-hotspot__label small {
  font-size: .68rem; color: #6b7280; font-weight: 300;
}
.cfg-hotspot:hover .cfg-hotspot__label,
.cfg-hotspot.is-on .cfg-hotspot__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.cfg-float-note {
  position: absolute;
  right: 4%;
  top: 4%;
  max-width: 200px;
  background: rgba(255,255,255,.94);
  border-radius: 18px;
  padding: .85rem 1rem;
  font-size: .78rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.5;
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  animation: cfg-float 4s ease-in-out infinite;
  z-index: 5;
  backdrop-filter: blur(10px);
  transition: opacity .35s, transform .35s;
}
.cfg-float-note__tag {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: .35rem;
}
@keyframes cfg-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.cfg-power-card {
  width: min(100%, 268px);
  animation: cfg-card-in .9s var(--ease) .35s both;
}
@keyframes cfg-card-in {
  from { opacity: 0; transform: translateY(22px) rotateX(6deg); }
  to { opacity: 1; transform: none; }
}
.cfg-power-card__panel {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: .7rem;
  border-radius: 28px;
  background:
    linear-gradient(165deg, rgba(255,255,255,.72), rgba(255,255,255,.42));
  border: 1px solid rgba(255,255,255,.65);
  box-shadow:
    0 24px 50px rgba(0,0,0,.1),
    inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.cfg-power-card__top {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(196,120,42,.28), transparent 55%),
    linear-gradient(155deg, #1f1f1f 0%, #0a0a0a 55%, #141414 100%);
  color: #fff;
  border-radius: 22px;
  padding: 1.15rem 1.2rem 1.2rem;
  position: relative;
  overflow: hidden;
}
.cfg-power-card__top::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, transparent 40%, rgba(255,255,255,.06) 50%, transparent 60%);
  pointer-events: none;
}
.cfg-power-card__top::after {
  content: '';
  position: absolute; inset: auto -18% -45% auto;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,194,122,.22), transparent 70%);
}
.cfg-power-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: .6rem; margin-bottom: .75rem; position: relative; z-index: 1;
}
.cfg-power-card__icon {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .85rem;
  animation: cfg-star 2.8s ease-in-out infinite;
}
@keyframes cfg-star {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .85; }
  50% { transform: scale(1.12) rotate(12deg); opacity: 1; }
}
.cfg-power-card__badge {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  padding: .3rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}
.cfg-power-card__top h2 {
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.18;
  position: relative;
  z-index: 1;
  transition: opacity .25s;
  max-width: 11ch;
}
.cfg-power-card__meter-wrap {
  display: flex; align-items: center; gap: .65rem;
  margin-top: 1.1rem;
  position: relative; z-index: 1;
}
.cfg-power-card__meter {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  overflow: hidden;
}
.cfg-power-card__meter i {
  display: block; height: 100%; width: var(--p, 70%);
  background: linear-gradient(90deg, #c4782a, #f0c27a 70%, #fff3d6);
  border-radius: inherit;
  transition: width .7s var(--ease);
  box-shadow: 0 0 12px rgba(240,194,122,.45);
}
.cfg-power-card__meter-val {
  font-size: .72rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  min-width: 2.2ch;
  font-variant-numeric: tabular-nums;
}
.cfg-power-card__meter-val::after { content: '%'; opacity: .55; }
.cfg-power-card__body {
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1.05rem 1.05rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}
.cfg-power-card__eyebrow {
  display: block;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: .45rem;
}
.cfg-power-card__body p {
  font-size: .8rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.65;
  transition: opacity .25s;
}
.cfg-power-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .4rem;
}
.cfg-power-card__stats > div {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 14px;
  padding: .55rem .4rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.cfg-power-card__stats em {
  display: block;
  font-style: normal;
  font-size: .95rem;
  letter-spacing: -.02em;
  color: #111;
  line-height: 1.1;
}
.cfg-power-card__stats span {
  display: block;
  margin-top: .15rem;
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9ca3af;
}
.cfg-access-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  width: 100%;
  background: #111;
  border-radius: 999px;
  padding: .78rem 1rem .78rem 1.15rem;
  font-size: .78rem;
  letter-spacing: .04em;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: transform .35s, background .3s, box-shadow .3s;
}
.cfg-access-pill i {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-style: normal;
  transition: transform .35s var(--ease), background .3s;
}
.cfg-access-pill:hover {
  transform: translateY(-3px);
  background: #000;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  color: #fff;
}
.cfg-access-pill:hover i {
  transform: translateX(3px);
  background: rgba(240,194,122,.9);
  color: #111;
}

.cfg-hero__bottom { margin-top: auto; }
.cfg-features-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: .9rem;
}
.cfg-features-head h2 {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -.01em;
}

.cfg-specs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .7rem;
}
.cfg-spec {
  background: #fff;
  border-radius: 20px;
  padding: .95rem 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  min-height: 80px;
  transition: transform .4s var(--ease), box-shadow .4s, background .35s, color .35s;
  cursor: default;
  animation: cfg-spec-in .7s var(--ease) both;
}
.cfg-spec:nth-child(1) { animation-delay: .05s; }
.cfg-spec:nth-child(2) { animation-delay: .12s; }
.cfg-spec:nth-child(3) { animation-delay: .19s; }
.cfg-spec:nth-child(4) { animation-delay: .26s; }
.cfg-spec:nth-child(5) { animation-delay: .33s; }
@keyframes cfg-spec-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.cfg-spec:hover,
.cfg-spec.is-focus {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.1);
}
.cfg-spec.is-focus:not(.cfg-spec--dark) {
  background: #111;
  color: #fff;
}
.cfg-spec.is-focus:not(.cfg-spec--dark) .cfg-spec__label { color: rgba(255,255,255,.55); }
.cfg-spec.is-focus:not(.cfg-spec--dark) .cfg-spec__ico {
  background: rgba(255,255,255,.12); color: #fff;
}
.cfg-spec--dark {
  background: #111;
  color: #fff;
}
.cfg-spec--dark .cfg-spec__label { color: rgba(255,255,255,.55); }
.cfg-spec__ico {
  width: 34px; height: 34px; border-radius: 50%;
  background: #f3f4f6;
  display: grid; place-items: center;
  font-size: .65rem;
  color: #4b5563;
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.cfg-spec--dark .cfg-spec__ico { background: rgba(255,255,255,.12); color: #fff; }
.cfg-spec__label {
  display: block;
  font-size: .68rem;
  letter-spacing: .06em;
  color: #9ca3af;
  margin-bottom: .15rem;
  transition: color .3s;
}
.cfg-spec__val {
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.3;
}
.cfg-spec__thumb {
  width: 56px; height: 40px; object-fit: cover;
  border-radius: 8px; margin-left: auto;
}

@media (max-width: 980px) {
  .cfg-hero {
    min-height: 0;
    padding: calc(var(--header-h) + .85rem) 0 1.4rem;
  }
  .cfg-hero__shell {
    width: min(100% - 1.35rem, 1240px);
    min-height: 0;
    gap: .95rem;
  }
  .cfg-hero__bg::before {
    content: '';
    position: absolute; inset: -10% -20%;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(circle at 12% 28%, transparent 38%, rgba(255,255,255,.55) 38.5%, transparent 39.5%),
      radial-gradient(circle at 78% 62%, transparent 42%, rgba(0,0,0,.04) 42.5%, transparent 43.5%);
    opacity: .9;
  }
  .cfg-hero__watermark {
    top: 28%;
    width: min(120vw, 420px);
    height: auto;
    color: rgba(0,0,0,.045);
  }
  .cfg-hero__watermark svg {
    width: 100%; height: auto;
  }
  .cfg-hero__stage {
    grid-template-columns: 1fr;
    gap: .85rem;
    perspective: none;
    min-height: 0;
  }
  .cfg-hero__cats {
    order: -1;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: .45rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: .15rem .1rem .55rem;
    mask-image: linear-gradient(90deg, #000 92%, transparent);
  }
  .cfg-hero__cats::-webkit-scrollbar { display: none; }
  .cfg-cat {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
    text-align: center;
    padding: .62rem 1.05rem;
    font-size: .74rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
  }
  .cfg-cat:hover,
  .cfg-cat.is-active { transform: none; }
  .cfg-cat.is-active {
    transform: scale(1.02);
    box-shadow: 0 10px 26px rgba(0,0,0,.16);
  }

  .cfg-hero__car-wrap {
    max-width: none;
  }
  .cfg-hero__frame {
    border-radius: 26px;
    padding: .7rem .7rem .45rem;
    box-shadow:
      0 22px 48px rgba(0,0,0,.1),
      inset 0 1px 0 rgba(255,255,255,.85);
  }
  .cfg-hero__car {
    max-height: 38vw;
    min-height: 168px;
    border-radius: 18px;
    object-fit: cover;
    object-position: center 55%;
  }
  .cfg-hero__reflection { height: 18px; margin-top: .2rem; }

  .cfg-power-card {
    width: 100%;
  }
  .cfg-power-card__panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .65rem;
    padding: .55rem;
    border-radius: 24px;
  }
  .cfg-power-card__top {
    grid-column: 1 / -1;
    border-radius: 18px;
    padding: 1.05rem 1.1rem 1.1rem;
  }
  .cfg-power-card__top h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
    max-width: none;
  }
  .cfg-power-card__body {
    border-radius: 16px;
    padding: .9rem .95rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }
  .cfg-power-card__eyebrow { margin-bottom: .3rem; }
  .cfg-power-card__body p {
    font-size: .78rem;
    line-height: 1.55;
  }
  .cfg-power-card__stats {
    grid-column: 1 / -1;
  }
  .cfg-access-pill {
    align-self: stretch;
    width: auto;
    min-width: 7.5rem;
    min-height: 48px;
    writing-mode: horizontal-tb;
    flex-direction: column;
    justify-content: center;
    gap: .35rem;
    border-radius: 18px;
    padding: .7rem .75rem;
    text-align: center;
  }
  .cfg-access-pill i {
    margin-inline: auto;
  }

  .cfg-float-note { display: none; }
  .cfg-hotspot__label { display: none; }
  .cfg-hero__orb { display: none; }

  .cfg-features-head {
    margin: .35rem 0 .65rem;
  }
  .cfg-features-head h2 {
    font-size: 1.05rem;
  }

  .cfg-specs {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: .65rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: .15rem .05rem .55rem;
  }
  .cfg-specs::-webkit-scrollbar { display: none; }
  .cfg-spec {
    flex: 0 0 min(88%, 300px);
    scroll-snap-align: start;
    border-radius: 22px;
    min-height: 86px;
    padding: 1rem 1.05rem;
  }
  .cfg-spec:hover { transform: none; }
  .cfg-spec.is-focus {
    transform: none;
    box-shadow: 0 14px 32px rgba(0,0,0,.12);
  }
  .cfg-spec__thumb {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
  }
  .cfg-spec__val {
    font-size: 1.15rem;
    letter-spacing: -.02em;
  }
}

@media (max-width: 680px) {
  .cfg-hero__shell { width: min(100% - 1.1rem, 1240px); gap: .8rem; }
  .cfg-hero__car {
    max-height: none;
    height: 42vw;
    min-height: 150px;
  }
  .cfg-hotspot:nth-child(n+5) { display: none; }
  .cfg-hotspot__dot {
    width: 28px; height: 28px;
  }
  .cfg-power-card__panel {
    grid-template-columns: 1fr;
    gap: .55rem;
  }
  .cfg-power-card__body {
    min-width: 0;
  }
  .cfg-access-pill {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 999px;
    padding: .78rem 1rem .78rem 1.1rem;
    text-align: left;
    min-width: 0;
  }
  .cfg-access-pill i { margin-inline: 0; }
  .cfg-cat {
    animation: cfg-pill-in .55s var(--ease) both;
  }
  .cfg-cat:nth-child(1) { animation-delay: .04s; }
  .cfg-cat:nth-child(2) { animation-delay: .08s; }
  .cfg-cat:nth-child(3) { animation-delay: .12s; }
  .cfg-cat:nth-child(4) { animation-delay: .16s; }
  .cfg-cat:nth-child(5) { animation-delay: .2s; }
}

@keyframes cfg-pill-in {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cfg-hero__watermark,
  .cfg-hero__car,
  .cfg-hotspot__dot,
  .cfg-hotspot__ring,
  .cfg-float-note,
  .cfg-power-card,
  .cfg-hero__shine,
  .cfg-hero__orb,
  .cfg-power-card__icon,
  .cfg-spec,
  .cfg-cat { animation: none !important; }
  .cfg-hero__car { opacity: 1; transform: none; }
  .cfg-spec { opacity: 1; }
}

.drift-hero {
  min-height: 100vh; min-height: 100dvh;
  position: relative; display: grid; align-items: end;
  color: var(--ice); overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
}
.drift-hero__layers { position: absolute; inset: 0; }
.drift-hero__layers img {
  width: 100%; height: 120%; object-fit: cover; position: absolute; inset: 0;
  will-change: transform;
}
.drift-hero__fog {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(120deg, rgba(6,16,24,.94) 0%, rgba(6,16,24,.5) 42%, rgba(6,16,24,.25) 100%),
    linear-gradient(to top, rgba(6,16,24,.9), transparent 40%);
}
.drift-hero__mesh {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .4;
  background-image:
    linear-gradient(rgba(62,207,192,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,207,192,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 70%, black, transparent 70%);
}
.drift-hero__content {
  position: relative; z-index: 3;
  width: min(100% - 2.4rem, var(--max)); margin-inline: auto;
}
.drift-hero__title {
  font-size: clamp(2.6rem, 9vw, 5.8rem); font-weight: 300;
  letter-spacing: -.03em; line-height: .95; margin-bottom: 1.4rem;
  max-width: 12ch;
}
.drift-hero__title em {
  font-style: normal; color: var(--mint); display: block;
  font-size: .28em; letter-spacing: .4em; margin-bottom: .8rem; font-weight: 400;
}
.drift-hero__lead {
  font-weight: 300; color: rgba(244,248,251,.72); max-width: 28rem; margin-bottom: 2rem;
}
.drift-hero__hint {
  position: absolute; bottom: 2rem; right: clamp(1.2rem, 4vw, 3rem); z-index: 3;
  font-size: .68rem; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(244,248,251,.4); writing-mode: vertical-rl;
}

.pulse-bar {
  overflow: hidden; background: var(--mint); color: var(--deep);
  padding: .7rem 0; white-space: nowrap;
}
.pulse-bar__track {
  display: inline-flex; gap: 2.8rem;
  animation: drift-marquee 26s linear infinite;
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 400;
}
@keyframes drift-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.signal-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem;
}
.signal {
  position: relative; overflow: hidden; min-height: 280px;
  color: var(--ice); background: var(--slate);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
  transition: transform .4s var(--ease);
}
.signal:hover { transform: translateY(-4px); }
.signal__media {
  position: absolute; inset: 0;
}
.signal__media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .45; transition: opacity .45s, transform .8s var(--ease);
}
.signal:hover .signal__media img { opacity: .6; transform: scale(1.05); }
.signal__body {
  position: relative; z-index: 1;
  background: linear-gradient(transparent, rgba(6,16,24,.92));
  margin: -1.4rem; padding: 3.5rem 1.4rem 1.4rem;
}
.signal__idx { font-size: .72rem; letter-spacing: .2em; color: var(--mint); margin-bottom: .6rem; display: block; }
.signal h3 { font-size: 1.1rem; font-weight: 400; margin-bottom: .45rem; color: #fff; }
.signal p { color: rgba(244,248,251,.7); font-size: .9rem; font-weight: 300; }

.meter-stage {
  position: relative; overflow: hidden;
  background: var(--deep); color: var(--ice);
}
.meter-stage__bg {
  position: absolute; inset: 0;
}
.meter-stage__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .45; filter: saturate(.9);
}
.meter-stage__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,16,24,.7), rgba(6,16,24,.88));
}
.meter-stage .meter-board { position: relative; z-index: 1; }

.media-quote {
  display: grid; grid-template-columns: 1.05fr .95fr; min-height: 420px;
  background: var(--deep); color: var(--ice);
}
.media-quote__img { overflow: hidden; }
.media-quote__img img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.media-quote__copy {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.media-quote__copy .big-line { color: var(--ice); max-width: none; }
.media-quote__copy .sec-lead { color: rgba(244,248,251,.68); }

.perk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem;
}
.perk-card {
  position: relative; overflow: hidden; min-height: 220px;
  color: var(--ice); background: var(--slate);
}
.perk-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .4; transition: opacity .4s, transform .7s var(--ease);
}
.perk-card:hover img { opacity: .55; transform: scale(1.04); }
.perk-card span {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; height: 100%;
  padding: 1.25rem;
  background: linear-gradient(transparent 30%, rgba(6,16,24,.9));
  font-size: .95rem; font-weight: 400;
}

/* Sticky pin gallery — cinematic full-bleed */
.pin-track {
  position: relative; height: 320vh;
}
.pin-sticky {
  position: sticky; top: var(--header-h); height: calc(100vh - var(--header-h));
  overflow: hidden; display: grid; grid-template-columns: 1fr;
  background: var(--deep); color: var(--ice);
}
.pin-sticky__stage {
  position: absolute; inset: 0; overflow: hidden;
}
.pin-sticky__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(105deg, rgba(6,16,24,.92) 0%, rgba(6,16,24,.72) 32%, rgba(6,16,24,.2) 58%, rgba(6,16,24,.35) 100%),
    linear-gradient(0deg, rgba(6,16,24,.55) 0%, transparent 35%);
}
.pin-slide {
  position: absolute; inset: 0; opacity: 0;
  clip-path: inset(0 12% 0 0);
  transition: opacity .7s var(--ease), transform 1s var(--ease), clip-path .9s var(--ease);
  transform: scale(1.1) translateX(3%);
}
.pin-slide.is-active {
  opacity: 1; transform: scale(1) translateX(0);
  clip-path: inset(0 0 0 0);
  z-index: 1;
}
.pin-slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.pin-sticky__panel {
  position: relative; z-index: 2;
  width: min(100%, 440px);
  margin: auto 0 auto clamp(1.25rem, 5vw, 4.5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(6, 16, 24, .42);
  border: 1px solid rgba(126, 232, 220, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.pin-sticky__brand {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--glow);
  margin-bottom: .35rem;
  line-height: 1.1;
}
.pin-sticky__panel .kicker {
  color: rgba(231, 238, 245, .65);
  margin-bottom: 1.1rem;
}
.pin-sticky__count {
  font-size: .78rem;
  letter-spacing: .22em;
  color: var(--mint);
  margin-bottom: .85rem;
}
.pin-sticky__count-total { color: rgba(231, 238, 245, .4); letter-spacing: .18em; }
.pin-sticky__panel .sec-title {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  color: #fff;
  margin-bottom: .75rem;
  min-height: 2.6em;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.pin-sticky__panel .sec-lead {
  color: rgba(231, 238, 245, .72);
  font-size: .95rem;
  max-width: none;
  min-height: 3.6em;
  margin-bottom: 1rem;
  transition: opacity .35s var(--ease);
}
.pin-sticky__price {
  font-size: 1.05rem;
  letter-spacing: .06em;
  color: var(--glow);
  margin-bottom: 1.35rem;
  font-weight: 500;
}
.pin-sticky__panel.is-swap .sec-title,
.pin-sticky__panel.is-swap .sec-lead,
.pin-sticky__panel.is-swap .pin-sticky__price {
  opacity: 0;
  transform: translateY(8px);
}
.pin-progress {
  display: flex; gap: .45rem; margin-bottom: 1.5rem;
}
.pin-progress span {
  height: 3px; flex: 1; background: rgba(255,255,255,.14);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.pin-progress span.is-on { background: rgba(62, 207, 192, .25); }
.pin-progress span i {
  position: absolute; inset: 0 auto 0 0; width: 0; background: var(--mint);
  box-shadow: 0 0 12px rgba(62, 207, 192, .55);
}
.pin-sticky__cta {
  align-self: flex-start;
  padding: .8rem 1.35rem;
  font-size: .85rem;
}

.pin-rail {
  position: absolute; z-index: 2;
  right: clamp(1rem, 3vw, 2.25rem);
  top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: .65rem;
}
.pin-rail__item {
  display: flex; align-items: center; gap: .55rem;
  color: rgba(231, 238, 245, .4);
  font-size: .72rem;
  letter-spacing: .14em;
  transition: color .35s, transform .35s;
}
.pin-rail__item span {
  font-variant-numeric: tabular-nums;
  min-width: 1.4rem;
}
.pin-rail__item em {
  font-style: normal;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .35s, transform .35s;
  white-space: nowrap;
}
.pin-rail__item.is-active {
  color: var(--mint);
  transform: translateX(-4px);
}
.pin-rail__item.is-active em {
  opacity: 1;
  transform: translateX(0);
}
.pin-rail__item.is-active span::before {
  content: '';
  display: inline-block;
  width: 10px; height: 2px;
  background: var(--mint);
  margin-right: .4rem;
  vertical-align: middle;
}

/* Zigzag features */
.zig {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center; margin-bottom: clamp(3rem, 7vw, 5rem);
}
.zig:last-child { margin-bottom: 0; }
.zig--flip .zig__media { order: 2; }
.zig--flip .zig__copy { order: 1; }
.zig__media { overflow: hidden; aspect-ratio: 5/4; position: relative; }
.zig__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.zig.is-in .zig__media img { transform: scale(1.05); }
.zig__copy .spec { margin: 1.4rem 0 1.8rem; display: grid; gap: .6rem; }
.zig__copy .spec li {
  display: flex; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid var(--line); padding-bottom: .55rem; font-size: .9rem;
}
.zig__copy .spec span:last-child { color: var(--mute); font-weight: 300; }

.meter-board {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(126,232,220,.12);
}
.meter {
  background: var(--navy); padding: 2rem 1rem; text-align: center;
}
.meter-stage .meter {
  background: rgba(12, 26, 40, .78);
  backdrop-filter: blur(6px);
}
.meter__n {
  font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 300; color: var(--mint);
  display: block; margin-bottom: .35rem;
}
.meter__l { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,248,251,.5); }

.voice-stage {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: min(72vh, 620px);
  background: var(--deep);
}
.voice-stage__media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #0c1520;
}
.voice-stage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  display: block;
  transition: opacity .45s ease, transform .8s var(--ease);
}
.voice-stage__shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(6,16,24,.35));
  pointer-events: none;
}
.voice-stage__badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255,255,255,.92);
  color: #111;
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.voice-stage__panel {
  background: var(--slate);
  color: var(--ice);
  padding: clamp(2.2rem, 5vw, 3.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.voice-stage__panel::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 3px;
  background: linear-gradient(var(--mint), transparent);
  border-radius: 2px;
}
.voice-stage__mark {
  display: block;
  font-size: 3.5rem;
  line-height: .8;
  color: var(--mint);
  opacity: .55;
  margin-bottom: .4rem;
  font-weight: 300;
}
.voice-stage blockquote {
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}
.voice-stage cite {
  font-style: normal;
  color: var(--mint);
  display: block;
  font-size: 1rem;
}
.voice-stage .meta {
  color: rgba(244,248,251,.45);
  font-size: .85rem;
  margin-top: .3rem;
  display: block;
}
.quote-dots { display: flex; gap: .5rem; margin-top: 2rem; }
.quote-dots button {
  width: 10px; height: 10px; border: 1.5px solid var(--mint);
  background: transparent; border-radius: 50%; cursor: pointer; padding: 0;
  transition: .3s;
}
.quote-dots button.is-active {
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(62, 207, 192, .18);
}

.quote-glide {
  display: grid; grid-template-columns: 1fr 1.15fr; min-height: 500px;
}
.quote-glide__img { overflow: hidden; }
.quote-glide__img img {
  width: 100%; height: 100%; object-fit: cover; min-height: 420px;
  transition: opacity .35s;
}
.quote-glide__body {
  background: var(--slate); color: var(--ice);
  padding: clamp(2rem, 4vw, 3.2rem); display: flex; flex-direction: column; justify-content: center;
}
.quote-glide blockquote {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem); font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem;
}
.quote-glide cite { font-style: normal; color: var(--mint); display: block; }
.quote-glide .meta { color: rgba(244,248,251,.45); font-size: .85rem; margin-top: .25rem; }

.lane-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem;
}
.lane-card {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
}
.lane-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease), filter .6s;
  filter: saturate(.8);
}
.lane-card:hover img { transform: scale(1.07); filter: saturate(1.1); }
.lane-card span {
  position: absolute; left: .9rem; bottom: .9rem; color: var(--ice);
  font-size: .9rem; letter-spacing: .06em; text-shadow: 0 2px 14px rgba(0,0,0,.5);
}

.reel-block {
  position: relative; min-height: 400px; display: grid; place-items: center;
  overflow: hidden; color: var(--ice); text-align: center;
}
.reel-block__bg { position: absolute; inset: 0; }
.reel-block__bg img { width: 100%; height: 100%; object-fit: cover; }
.reel-block__dim { position: absolute; inset: 0; background: rgba(6,16,24,.64); }
.reel-block__in { position: relative; z-index: 2; padding: 3rem 1.5rem; }
.reel-block h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 300; margin: .5rem 0 1rem; }
.reel-block p { color: rgba(244,248,251,.68); font-weight: 300; max-width: 28rem; margin: 0 auto 1.6rem; }
.reel-btn {
  display: inline-flex; align-items: center; gap: 1rem; border: 0; background: transparent;
  color: var(--ice); cursor: pointer; font: inherit;
}
.reel-btn__orb {
  width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--mint);
  display: grid; place-items: center; transition: .35s;
  animation: orb-pulse 2.4s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,207,192,.35); }
  50% { box-shadow: 0 0 0 14px rgba(62,207,192,0); }
}
.reel-btn:hover .reel-btn__orb { background: var(--mint); color: var(--deep); }

.duo-notes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.note-card { display: grid; gap: .9rem; }
.note-card__img { overflow: hidden; aspect-ratio: 16/10; }
.note-card__img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease);
}
.note-card:hover .note-card__img img { transform: scale(1.05); }
.note-card time { font-size: .75rem; color: var(--mute); letter-spacing: .1em; }
.note-card h3 { font-size: 1.2rem; font-weight: 400; }
.note-card p { color: var(--mute); font-weight: 300; font-size: .94rem; }

.exit-band {
  text-align: center; padding: clamp(3.5rem, 9vw, 5.5rem) 1.5rem;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(62,207,192,.2), transparent 55%),
    var(--deep);
  color: var(--ice); position: relative; overflow: hidden;
}
.exit-band h2,
.exit-band p,
.exit-band .btn { position: relative; z-index: 2; }
.exit-band h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 300; margin-bottom: .7rem; }
.exit-band p { color: rgba(244,248,251,.58); margin-bottom: 1.8rem; font-weight: 300; }
.exit-band__bg {
  position: absolute; inset: 0; z-index: 0;
}
.exit-band__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85) brightness(.55);
}
.exit-band__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(62,207,192,.22), transparent 55%),
    linear-gradient(180deg, rgba(6,16,24,.72), rgba(6,16,24,.88));
}
.exit-band__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Paint filters */
.paint-crimson { filter: hue-rotate(-12deg) saturate(1.4) contrast(1.06); }
.paint-ocean { filter: hue-rotate(185deg) saturate(1.3) contrast(1.05); }
.paint-amber { filter: hue-rotate(28deg) saturate(1.5) contrast(1.08); }
.paint-forest { filter: hue-rotate(95deg) saturate(1.2) contrast(1.05); }
.paint-violet { filter: hue-rotate(250deg) saturate(1.15) contrast(1.1) brightness(.92); }
.paint-cyan { filter: hue-rotate(160deg) saturate(1.35) contrast(1.06); }
.paint-graphite { filter: saturate(.15) contrast(1.15) brightness(.9); }

.cfg-hero__car.paint-crimson,
.cfg-hero__car.paint-ocean,
.cfg-hero__car.paint-amber,
.cfg-hero__car.paint-forest,
.cfg-hero__car.paint-violet,
.cfg-hero__car.paint-cyan,
.cfg-hero__car.paint-graphite {
  /* keep drop-shadow while paint filter applies */
  filter: drop-shadow(0 28px 40px rgba(0,0,0,.18));
}
.cfg-hero__car.paint-crimson { filter: hue-rotate(-12deg) saturate(1.45) contrast(1.06) drop-shadow(0 28px 40px rgba(0,0,0,.18)); }
.cfg-hero__car.paint-ocean { filter: hue-rotate(185deg) saturate(1.35) contrast(1.05) drop-shadow(0 28px 40px rgba(0,0,0,.18)); }
.cfg-hero__car.paint-amber { filter: hue-rotate(28deg) saturate(1.55) contrast(1.08) drop-shadow(0 28px 40px rgba(0,0,0,.18)); }
.cfg-hero__car.paint-forest { filter: hue-rotate(95deg) saturate(1.25) contrast(1.05) drop-shadow(0 28px 40px rgba(0,0,0,.18)); }
.cfg-hero__car.paint-violet { filter: hue-rotate(250deg) saturate(1.15) contrast(1.1) brightness(.92) drop-shadow(0 28px 40px rgba(0,0,0,.18)); }
.cfg-hero__car.paint-cyan { filter: hue-rotate(160deg) saturate(1.4) contrast(1.06) drop-shadow(0 28px 40px rgba(0,0,0,.18)); }
.cfg-hero__car.paint-graphite { filter: saturate(.2) contrast(1.15) brightness(.88) drop-shadow(0 28px 40px rgba(0,0,0,.18)); }

/* ===== INNER HEROES ===== */
.page-intro {
  position: relative; min-height: 62vh; display: grid; place-items: end;
  color: var(--ice); overflow: hidden;
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
}
.page-intro--tall { min-height: 75vh; }
.page-intro__bg { position: absolute; inset: 0; }
.page-intro__bg img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }
.page-intro__dim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,16,24,.92), rgba(6,16,24,.35) 55%, rgba(6,16,24,.55));
}
.page-intro__content { position: relative; z-index: 2; width: min(100% - 2.4rem, var(--max)); margin-inline: auto; }
.page-intro h1 { font-size: clamp(2.1rem, 5.5vw, 3.8rem); font-weight: 300; margin-bottom: 1rem; }
.page-intro p { max-width: 32rem; color: rgba(244,248,251,.7); font-weight: 300; }

.intro-duo {
  margin-top: var(--header-h); display: grid; grid-template-columns: 1.05fr .95fr; min-height: 560px;
}
.intro-duo__media { overflow: hidden; min-height: 480px; }
.intro-duo__media img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.intro-duo__copy {
  background: var(--deep); color: var(--ice);
  padding: clamp(2.4rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center;
}
.intro-duo__copy h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 300; margin: .5rem 0 1rem; }
.intro-duo__copy p { color: rgba(244,248,251,.62); font-weight: 300; margin-bottom: 1.6rem; }

/* About */
.big-line {
  font-size: clamp(1.35rem, 3vw, 2.2rem); font-weight: 300; line-height: 1.55;
  max-width: 18em; letter-spacing: -.01em;
}
.big-line em { font-style: normal; color: var(--mint-deep); }

.year-rail {
  display: flex; gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: .5rem; scrollbar-width: none;
}
.year-rail::-webkit-scrollbar { display: none; }
.year-card {
  flex: 0 0 min(78vw, 280px); scroll-snap-align: start;
  background: var(--ice); border: 1px solid var(--line);
  overflow: hidden; padding: 0;
}
.year-card__img { aspect-ratio: 16/10; overflow: hidden; }
.year-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.year-card:hover .year-card__img img { transform: scale(1.06); }
.year-card__body { padding: 1.25rem 1.2rem 1.4rem; }
.year-card__y { color: var(--mint-deep); font-size: .85rem; letter-spacing: .14em; margin-bottom: .55rem; display: block; }
.year-card h3 { font-size: 1.05rem; font-weight: 400; margin-bottom: .4rem; }
.year-card p { color: var(--mute); font-weight: 300; font-size: .9rem; }

.tri-stack {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem;
}
.tri-tile { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.tri-tile img { width: 100%; height: 100%; object-fit: cover; }
.tri-tile__body {
  position: absolute; inset: auto 0 0; padding: 1.4rem;
  background: linear-gradient(transparent, rgba(6,16,24,.92));
  color: var(--ice);
}
.tri-tile h3 { font-size: 1.05rem; font-weight: 400; margin-bottom: .35rem; }
.tri-tile p { font-size: .85rem; font-weight: 300; color: rgba(244,248,251,.68); }

.credo-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--deep);
}
.credo {
  position: relative; overflow: hidden; min-height: 240px;
  color: var(--ice); text-align: left;
  display: flex; align-items: flex-end;
  padding: 1.4rem;
  font-size: clamp(.95rem, 1.8vw, 1.15rem); font-weight: 300; letter-spacing: .02em;
}
.credo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .62; transition: opacity .4s, transform .7s var(--ease);
}
.credo:hover img { opacity: .78; transform: scale(1.05); }
.credo span {
  position: relative; z-index: 1;
  background: linear-gradient(transparent, rgba(6,16,24,.9));
  margin: -1.4rem; padding: 3rem 1.4rem 1.4rem; width: calc(100% + 2.8rem);
}

.principle-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .85rem;
}
.principle {
  position: relative; overflow: hidden; min-height: 220px;
  color: var(--ice); background: var(--slate);
  display: flex; align-items: flex-end; padding: 1.3rem;
}
.principle img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .62; transition: opacity .4s, transform .7s var(--ease);
}
.principle:hover img { opacity: .78; transform: scale(1.04); }
.principle__body {
  position: relative; z-index: 1;
  background: linear-gradient(transparent, rgba(6,16,24,.92));
  margin: -1.3rem; padding: 3rem 1.3rem 1.3rem; width: calc(100% + 2.6rem);
}
.principle h3 { font-size: 1rem; font-weight: 400; margin-bottom: .4rem; color: #fff; }
.principle p { color: rgba(244,248,251,.68); font-weight: 300; font-size: .9rem; }

.floor-split {
  display: grid; grid-template-columns: 1.25fr .75fr; min-height: 460px;
}
.floor-split__img { overflow: hidden; }
.floor-split__img img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
.floor-split__copy {
  background: var(--fog); padding: clamp(2rem, 4vw, 3.2rem);
  display: flex; flex-direction: column; justify-content: center;
}

/* Services */
.mosaic-svc {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: .7rem;
}
.mosaic-svc article {
  grid-column: span 4; position: relative; overflow: hidden; min-height: 260px;
  background: var(--slate); color: var(--ice);
}
.mosaic-svc article:nth-child(1),
.mosaic-svc article:nth-child(2) { grid-column: span 6; min-height: 320px; }
.mosaic-svc img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .42; transition: opacity .5s, transform .8s var(--ease);
}
.mosaic-svc article:hover img { opacity: .58; transform: scale(1.05); }
.mosaic-svc__body {
  position: relative; z-index: 1; padding: 1.5rem;
  height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(transparent 25%, rgba(6,16,24,.88));
}
.mosaic-svc h3 { font-size: 1.15rem; font-weight: 400; margin-bottom: .35rem; }
.mosaic-svc p { font-size: .86rem; font-weight: 300; color: rgba(244,248,251,.68); margin-bottom: .6rem; }
.mosaic-svc__price { color: var(--mint); font-size: .8rem; letter-spacing: .1em; }

.plan-band {
  position: relative;
  overflow: hidden;
  background: var(--fog);
}
.plan-band__bg {
  position: absolute; inset: 0; z-index: 0;
}
.plan-band__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(1.5px) saturate(.9) brightness(.95);
  transform: scale(1.06);
}
.plan-band__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(231,238,245,.82) 0%, rgba(244,248,251,.88) 50%, rgba(231,238,245,.9) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(255,255,255,.35), transparent 65%);
}
.plan-band__content { position: relative; z-index: 1; }

.plan-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.plan {
  padding: 2rem 1.4rem;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 36px rgba(0,0,0,.06);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.1);
}
.plan--hot {
  border-color: rgba(62, 207, 192, .45);
  background: rgba(6, 16, 24, .88);
  color: var(--ice);
  backdrop-filter: blur(14px);
}
.plan--hot p { color: rgba(244,248,251,.62); }
.plan__tag {
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--mint); margin-bottom: .9rem; display: block;
}
.plan h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: .7rem; }
.plan p { color: var(--mute); font-weight: 300; font-size: .92rem; }

.flow-sticky {
  display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; align-items: start;
}
.flow-sticky__side { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.flow-list { display: grid; gap: 2rem; }
.flow-item {
  display: grid; grid-template-columns: min(40vw, 180px) 1fr; gap: 1.4rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.flow-item__img { overflow: hidden; aspect-ratio: 1; }
.flow-item__img img { width: 100%; height: 100%; object-fit: cover; }
.flow-item .n { font-size: .72rem; letter-spacing: .2em; color: var(--mint); display: block; margin-bottom: .4rem; }
.flow-item h3 { font-size: 1.2rem; font-weight: 400; margin-bottom: .4rem; }
.flow-item p { color: var(--mute); font-weight: 300; }

.chip-cloud {
  display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center;
}
.chip {
  padding: .8rem 1.25rem; border: 1px solid rgba(255,255,255,.14);
  font-size: .88rem; letter-spacing: .04em; color: rgba(244,248,251,.85);
  transition: .3s;
}
.chip:hover { border-color: var(--mint); background: rgba(62,207,192,.1); }

/* Workshop bay stage — split copy + mosaic */
.bay-stage {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.7fr);
  min-height: min(88vh, 720px);
  background:
    radial-gradient(ellipse 70% 60% at 12% 40%, rgba(62, 207, 192, .07), transparent 55%),
    linear-gradient(165deg, #101c2a 0%, var(--slate) 48%, #0e1a26 100%);
  color: var(--ice);
  overflow: hidden;
}
.bay-stage__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1.6rem, 3.5vw, 3.2rem);
  position: sticky;
  top: var(--header-h);
  align-self: start;
  min-height: min(88vh, 720px);
}
.bay-stage__copy .sec-title {
  font-weight: 300;
  letter-spacing: -.02em;
  max-width: 8em;
}
.bay-stage__copy .sec-lead {
  color: rgba(244, 248, 251, .58);
  max-width: 18rem;
  margin-bottom: 2rem;
}
.bay-stage__index {
  display: grid;
  gap: .55rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(126, 232, 220, .14);
}
.bay-stage__index li {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244, 248, 251, .45);
}
.bay-stage__index span {
  font-variant-numeric: tabular-nums;
  color: var(--mint);
  letter-spacing: .2em;
  font-size: .68rem;
}
.bay-stage__mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .55rem;
  padding: .55rem;
  min-height: min(88vh, 720px);
}
.bay-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: rgba(6, 16, 24, .55);
}
.bay-tile--hero { grid-row: span 2; }
.bay-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  transition: transform 1.1s var(--ease), filter .7s ease;
  filter: saturate(.88) contrast(1.04);
}
.bay-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 16, 24, .78) 100%);
  opacity: .85;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.bay-tile:hover img { transform: scale(1.06); filter: saturate(1) contrast(1.06); }
.bay-tile:hover::after { opacity: 1; }
.bay-tile figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: .65rem;
  color: var(--ice);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: transform .55s var(--ease);
}
.bay-tile:hover figcaption { transform: translateY(0); }
.bay-tile figcaption em {
  font-style: normal;
  color: var(--mint);
  font-size: .68rem;
  letter-spacing: .22em;
}

.faq-list { display: grid; gap: .4rem; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq-list summary {
  cursor: pointer; list-style: none; font-weight: 400;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--mint); font-size: 1.15rem; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { padding-top: .75rem; color: var(--mute); font-weight: 300; font-size: .94rem; }
.section--deep .faq-list details { border-color: rgba(255,255,255,.1); }
.section--deep .faq-list details p { color: rgba(244,248,251,.58); }

.faq-split {
  display: grid;
  grid-template-columns: minmax(200px, 32%) 1fr;
  align-items: stretch;
  background: var(--fog);
}
.faq-split__img {
  overflow: hidden;
  background: var(--slate);
  max-height: 360px;
  align-self: center;
  margin: 1.4rem 0 1.4rem 1.4rem;
  aspect-ratio: 4 / 5;
}
.faq-split__img img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.faq-split__copy {
  background: var(--fog); padding: clamp(1.6rem, 3.5vw, 2.6rem) clamp(1.6rem, 4vw, 3rem);
  display: flex; flex-direction: column; justify-content: center;
}
.faq-split__copy .sec-head { margin-bottom: .4rem; }

/* Blog */
.spread {
  display: grid; grid-template-columns: 1.3fr .7fr; min-height: 540px;
  background: var(--deep); color: var(--ice);
}
.spread__img { overflow: hidden; }
.spread__img img { width: 100%; height: 100%; object-fit: cover; min-height: 540px; }
.spread__body {
  padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center;
}
.spread .meta-row { display: flex; gap: 1rem; font-size: .75rem; color: var(--steel); margin-bottom: 1rem; }
.spread h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 300; margin-bottom: .9rem; }
.spread p { color: rgba(244,248,251,.62); font-weight: 300; margin-bottom: 1.5rem; }

.tag-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .55rem;
}
.tag {
  position: relative; overflow: hidden; min-height: 110px;
  padding: 0; border: 0; font-size: .85rem; letter-spacing: .06em;
  color: var(--ice); display: flex; align-items: flex-end;
}
.tag img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .45;
}
.tag span {
  position: relative; z-index: 1; width: 100%;
  padding: .85rem .9rem;
  background: linear-gradient(transparent, rgba(6,16,24,.88));
}
.tag.is-on span { color: var(--mint); }

.story-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }
.story-list { display: grid; gap: 1.4rem; }
.story-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 1.3rem; align-items: center;
  padding-bottom: 1.4rem; border-bottom: 1px solid var(--line);
}
.story-row__img { overflow: hidden; aspect-ratio: 4/3; }
.story-row__img img { width: 100%; height: 100%; object-fit: cover; }
.story-row .meta-row { display: flex; gap: .7rem; font-size: .72rem; color: var(--mute); margin-bottom: .35rem; }
.story-row h3 { font-size: 1.1rem; font-weight: 400; margin-bottom: .35rem; }
.story-row p { color: var(--mute); font-weight: 300; font-size: .9rem; margin-bottom: .4rem; }
.text-link { color: var(--mint-deep); font-size: .86rem; letter-spacing: .04em; }
.text-link:hover { color: var(--ink); }

.side-box {
  position: sticky; top: calc(var(--header-h) + 1.2rem);
  background: var(--fog); padding: 0; overflow: hidden;
}
.side-box__img { aspect-ratio: 16/10; overflow: hidden; }
.side-box__img img { width: 100%; height: 100%; object-fit: cover; }
.side-box__body { padding: 1.35rem 1.4rem 1.5rem; }
.side-box h3 { font-size: .95rem; font-weight: 400; margin-bottom: .9rem; }
.side-box li {
  padding: .55rem 0; border-bottom: 1px solid var(--line);
  font-size: .88rem; font-weight: 300; color: var(--mute);
}

.shot-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem;
}
.shot {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot span {
  position: absolute; left: .8rem; bottom: .8rem; color: var(--ice);
  font-size: .82rem; letter-spacing: .06em;
}

.mail-split {
  display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); color: var(--ice);
}
.mail-split__img {
  overflow: hidden; min-height: 340px; align-self: stretch;
}
.mail-split__img img {
  display: block; width: 100%; height: 100%; object-fit: cover; min-height: 340px;
}
.mail-split__copy {
  padding: clamp(2rem, 4vw, 3.2rem); display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(62,207,192,.14), transparent 55%),
    var(--navy);
}

.editor-split {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 0;
  border: 1px solid var(--line); background: var(--ice); overflow: hidden;
}
.editor-split__img { min-height: 360px; }
.editor-split__img img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.editor-split__copy { padding: clamp(1.8rem, 4vw, 2.8rem); }
.editor-cols {
  columns: 1; max-width: none;
}
.editor-cols p {
  margin-bottom: 1.15rem; color: var(--mute);
  font-weight: 300; font-size: 1rem;
}
.editor-cols h3 {
  font-size: 1.1rem; font-weight: 400; margin-bottom: .55rem; color: var(--ink);
}

/* Contact */
.gate-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.gate {
  position: relative; overflow: hidden; min-height: 260px;
  padding: 0; text-align: left; background: var(--slate); color: var(--ice);
  border: 0; transition: transform .4s var(--ease);
}
.gate:hover { transform: translateY(-6px); }
.gate__media { position: absolute; inset: 0; }
.gate__media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .42; transition: opacity .4s, transform .7s var(--ease);
}
.gate:hover .gate__media img { opacity: .58; transform: scale(1.05); }
.gate__body {
  position: relative; z-index: 1; height: 100%; min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
  background: linear-gradient(transparent 20%, rgba(6,16,24,.92));
}
.gate__ico {
  width: 40px; height: 40px; margin-bottom: .85rem;
  border: 1px solid var(--mint); border-radius: 50%;
  display: grid; place-items: center; color: var(--mint); font-size: .85rem;
}
.gate h3 { font-size: 1.05rem; font-weight: 400; margin-bottom: .4rem; color: #fff; }
.gate p { color: rgba(244,248,251,.68); font-weight: 300; font-size: .88rem; }

.form-shell {
  display: grid; grid-template-columns: 1.1fr .9fr; border: 1px solid var(--line);
}
.form-panel { padding: clamp(2rem, 4vw, 2.8rem); background: var(--ice); }
.form-panel h2 { font-size: 1.4rem; font-weight: 400; margin-bottom: .4rem; }
.form-panel > p { color: var(--mute); font-weight: 300; margin-bottom: 1.4rem; }
.form-panel form { display: grid; gap: 1rem; }
.form-panel label { display: grid; gap: .35rem; }
.form-panel label span { font-size: .78rem; letter-spacing: .1em; color: var(--mute); }
.form-panel input, .form-panel textarea {
  border: 1px solid var(--line); background: var(--fog); padding: .8rem 1rem;
  outline: none; transition: border-color .3s;
}
.form-panel input:focus, .form-panel textarea:focus { border-color: var(--mint); }
.info-panel {
  background: var(--deep); color: var(--ice);
  padding: clamp(2rem, 4vw, 2.8rem);
  display: flex; flex-direction: column; justify-content: flex-end; position: relative;
  overflow: hidden; min-height: 520px;
}
.info-panel__media {
  position: absolute; inset: 0;
}
.info-panel__media img {
  width: 100%; height: 100%; object-fit: cover; opacity: .35;
}
.info-panel__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,16,24,.35), rgba(6,16,24,.94));
}
.info-panel h2,
.info-panel > p,
.info-list { position: relative; z-index: 1; }
.info-panel h2 { font-size: 1.3rem; font-weight: 400; margin-bottom: .65rem; }
.info-panel > p { color: rgba(244,248,251,.58); font-weight: 300; margin-bottom: 1.5rem; }
.info-list { display: grid; gap: 1.1rem; }
.info-list span {
  display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mint); margin-bottom: .25rem;
}
.info-list p { font-weight: 300; color: rgba(244,248,251,.78); }
.info-list a:hover { color: var(--mint); }

.notice { padding: .95rem 1.1rem; margin-bottom: .9rem; font-size: .9rem; font-weight: 300; }
.notice--success { background: rgba(46, 180, 140, .12); color: #1a7a5c; }
.notice--error { background: rgba(190, 70, 70, .1); color: #a33; }

.section--vow {
  background: #fff;
  padding-top: clamp(2.4rem, 5vw, 3.6rem);
  padding-bottom: clamp(3.2rem, 7vw, 5rem);
}
.vow-head { margin-bottom: 1.35rem; }
.vow-title {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: .02em;
}
.vow-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(18, 32, 51, 0.08);
}
.vow {
  position: relative; overflow: hidden; min-height: 200px;
  background: var(--slate); color: var(--ice);
  padding: 1.4rem;
  display: flex; align-items: flex-end;
  text-align: left;
  font-size: 1rem; font-weight: 400;
}
.vow img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .4; transition: opacity .4s, transform .7s var(--ease);
}
.vow:hover img { opacity: .55; transform: scale(1.04); }
.vow span {
  position: relative; z-index: 1;
  background: linear-gradient(transparent, rgba(6,16,24,.9));
  margin: -1.4rem; padding: 2.8rem 1.4rem 1.4rem; width: calc(100% + 2.8rem);
}

.section--visit { background: #f0f5f9; }
.steps-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
.step-card {
  padding: 0; background: #fff; overflow: hidden;
  border-top: 0;
}
.step-card__img { aspect-ratio: 16/10; overflow: hidden; }
.step-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.step-card:hover .step-card__img img { transform: scale(1.05); }
.step-card__body { padding: 1.35rem 1.25rem 1.4rem; border-top: 2px solid var(--glow); }
.step-card__n {
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(126, 232, 220, .85);
  line-height: 1;
  margin-bottom: .55rem;
  display: block;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: .35rem;
  color: var(--ink);
}
.step-card p {
  color: var(--mute);
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.65;
}

.time-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem;
}
.time-grid article {
  position: relative; overflow: hidden; min-height: 180px;
  padding: 1.2rem; text-align: left;
  border: 0; background: var(--slate); color: var(--ice);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.time-grid article img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .35;
}
.time-grid article > * { position: relative; z-index: 1; }
.time-grid span { display: block; font-size: .7rem; letter-spacing: .16em; color: var(--mint); margin-bottom: .45rem; }
.time-grid p { font-weight: 300; font-size: .88rem; color: rgba(244,248,251,.78); }

.map-full {
  position: relative;
  height: min(58vh, 520px);
  min-height: 380px;
  overflow: hidden;
  background: var(--fog);
}
.map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-full__tag {
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  padding: .7rem .95rem;
  box-shadow: 0 2px 12px rgba(18, 32, 51, .12);
  display: flex;
  flex-direction: column;
  gap: .15rem;
  max-width: min(90vw, 280px);
}
.map-full__tag span {
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--mute);
  font-weight: 300;
}
.map-full__tag strong {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
}

.social-band {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 380px;
  background: var(--deep); color: var(--ice);
}
.social-band__img { overflow: hidden; position: relative; }
.social-band__img img {
  width: 100%; height: 100%; object-fit: cover; min-height: 380px;
  filter: saturate(.92) contrast(1.05);
}
.social-band__copy {
  position: relative;
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.8rem, 4vw, 3.2rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 55% 88%, rgba(62, 207, 192, .16), transparent 70%),
    var(--deep);
  overflow: hidden;
}
.social-band__copy .sec-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 0;
  color: var(--ice);
}
.social-row {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.social-row a {
  padding: .78rem 1.25rem;
  border: 1px solid rgba(244, 248, 251, .28);
  letter-spacing: .06em;
  font-size: .8rem;
  font-weight: 400;
  transition: border-color .3s, color .3s, background .3s;
  color: var(--ice);
  background: transparent;
}
.social-row a:hover {
  border-color: var(--mint);
  color: var(--mint);
  background: rgba(62, 207, 192, .06);
}

/* Footer */
.site-footer {
  background: var(--deep); color: rgba(244,248,251,.65); padding-top: 3.8rem; font-weight: 300;
}
.site-footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.2rem; padding-bottom: 2.8rem;
}
.site-footer__logo {
  display: flex; align-items: center; gap: .55rem; color: var(--ice); margin-bottom: .9rem; font-weight: 500;
}
.site-footer__tagline { color: var(--mint); font-size: .84rem; margin-bottom: .7rem; letter-spacing: .06em; }
.site-footer__desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.15rem; }
.site-footer__social { display: flex; gap: .65rem; }
.social-links__item {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.12); color: rgba(244,248,251,.55); transition: .3s;
}
.social-links__item:hover { border-color: var(--mint); color: var(--mint); }
.site-footer__col h3 {
  color: var(--ice); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 400; margin-bottom: 1rem;
}
.site-footer__col li { margin-bottom: .5rem; }
.site-footer__col a { font-size: .88rem; }
.site-footer__col a:hover { color: var(--mint); }
.site-footer__address p { margin-bottom: .45rem; font-size: .88rem; }
.site-footer__address a:hover { color: var(--mint); }
.site-footer__news-heading { margin-top: 1.5rem; }
.footer-newsletter { display: flex; gap: .45rem; margin-top: .7rem; }
.footer-newsletter input {
  flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05); padding: .65rem .85rem; color: var(--ice); outline: none;
}
.footer-newsletter input:focus { border-color: var(--mint); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.15rem 0; }
.site-footer__bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; font-size: .8rem;
}
.back-to-top {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2);
  background: transparent; color: var(--ice); cursor: pointer; transition: .3s;
}
.back-to-top:hover { border-color: var(--mint); color: var(--mint); }

.video-modal {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.9);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: .35s; padding: 1.5rem;
}
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal__inner { width: min(100%, 960px); aspect-ratio: 16/9; position: relative; }
.video-modal__inner iframe { width: 100%; height: 100%; border: 0; }
.video-modal__close {
  position: absolute; top: -2.4rem; right: 0; border: 0; background: transparent;
  color: var(--ice); font-size: 1.7rem; cursor: pointer;
}

@media (max-width: 980px) {
  .site-nav--desktop { display: none; }
  .menu-toggle { display: block; }

  /* Lighter motion travel on mobile */
  .fx { transform: translateY(22px); }
  .fx-blur { filter: blur(8px); transform: translateY(14px) scale(1.01); }
  .fx-rise { transform: translateY(32px); }
  .fx-tilt { transform: translateY(18px); }
  .fx-scale { transform: scale(.94); }
  .fx, .fx-blur, .fx-wipe, .fx-rise, .fx-tilt, .fx-scale {
    transition-duration: .75s, .75s, .75s, .9s;
  }

  .signal-row, .meter-board, .lane-4, .tri-stack, .credo-row, .plan-row,
  .gate-row, .vow-row, .steps-3, .time-grid, .shot-row, .perk-grid { grid-template-columns: 1fr 1fr; }
  .pin-sticky, .zig, .zig--flip .zig__media, .zig--flip .zig__copy,
  .voice-stage,
  .quote-glide, .duo-notes, .intro-duo, .floor-split, .faq-split, .flow-sticky,
  .spread, .story-layout, .form-shell, .mail-split, .bay-stage,
  .media-quote, .social-band, .editor-split {
    grid-template-columns: 1fr;
  }
  .media-quote__img img,
  .social-band__img img { min-height: 220px; }
  .map-full { height: min(42vh, 360px); min-height: 260px; }

  /* FAQ / mail / social splits — compact image + room for copy */
  .faq-split {
    background: var(--fog);
  }
  .faq-split__img {
    max-height: 200px;
    margin: 0;
    aspect-ratio: 16 / 9;
    width: 100%;
    justify-self: stretch;
    align-self: stretch;
  }
  .faq-split__copy {
    padding: 1.35rem 1.15rem 1.85rem;
  }
  .faq-list details {
    transition: background .35s var(--ease);
  }
  .faq-list summary {
    min-height: 48px;
    padding: .15rem 0;
  }

  .mail-split__img,
  .social-band__img,
  .editor-split__img,
  .media-quote__img {
    min-height: 0;
    max-height: 220px;
    aspect-ratio: 16 / 9;
  }
  .mail-split__img img,
  .social-band__img img,
  .editor-split__img img,
  .media-quote__img img {
    min-height: 0;
    height: 100%;
  }
  .mail-split__copy,
  .social-band__copy {
    padding: 1.45rem 1.15rem 1.9rem;
  }
  .mail-split__copy .btn,
  .social-band__copy .btn,
  .spread__body .btn,
  .floor-split__copy .btn,
  .exit-band .btn,
  .form-panel .btn,
  .page-intro .btn,
  .intro-duo__copy .btn {
    width: 100%;
    min-height: 48px;
  }

  .page-intro {
    min-height: 48vh;
    padding: calc(var(--header-h) + 2.2rem) 0 2.4rem;
  }
  .page-intro--tall { min-height: 56vh; }
  .page-intro h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .exit-band {
    padding: 3rem 1.15rem;
  }
  .exit-band h2 { font-size: clamp(1.45rem, 6.5vw, 2.1rem); }
  .exit-band__bg img {
    transform: scale(1.08);
    transition: transform 1.1s var(--ease);
  }
  .exit-band:has(.is-in) .exit-band__bg img {
    transform: scale(1);
  }

  .bay-stage__copy {
    position: static;
    min-height: 0;
    padding-bottom: 1.5rem;
  }
  .bay-stage__index { display: none; }
  .bay-stage__mosaic {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    padding: 0 .55rem .55rem;
  }
  .bay-tile--hero {
    grid-row: span 1;
    grid-column: span 2;
    min-height: 240px;
  }
  .voice-stage__media { min-height: 280px; }
  .voice-stage__media img { min-height: 280px; }
  .zig--flip .zig__media, .zig--flip .zig__copy { order: unset; }
  .pin-track { height: auto; }
  .pin-sticky {
    position: relative; top: 0; height: auto;
    min-height: 0;
    display: flex; flex-direction: column;
  }
  .pin-sticky__stage {
    position: relative; min-height: 52vw; max-height: 420px; height: 52vw;
  }
  .pin-sticky__veil {
    background: linear-gradient(180deg, rgba(6,16,24,.2) 0%, rgba(6,16,24,.5) 100%);
  }
  .pin-slide { clip-path: none; transform: scale(1.04); }
  .pin-slide.is-active { transform: scale(1); }
  .pin-sticky__panel {
    width: 100%;
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(126, 232, 220, .14);
    background: var(--deep);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .pin-sticky__panel .sec-title,
  .pin-sticky__panel .sec-lead { min-height: 0; }
  .pin-rail {
    position: absolute;
    right: .75rem;
    top: 1rem;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 55%;
    justify-content: flex-end;
    gap: .4rem;
  }
  .pin-rail__item em { display: none; }
  .pin-rail__item.is-active { transform: none; }
  .pin-rail__item.is-active span::before { display: none; }
  .mosaic-svc { grid-template-columns: 1fr 1fr; }
  .mosaic-svc article,
  .mosaic-svc article:nth-child(1),
  .mosaic-svc article:nth-child(2) {
    grid-column: span 1; min-height: 220px;
  }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .editor-cols { columns: 1; }
  .story-row { grid-template-columns: 130px 1fr; }
  .form-shell { gap: 0; }
  .sec-title { font-size: clamp(1.55rem, 6.5vw, 2.2rem); }
  .info-panel { min-height: 360px; }
  .form-panel input,
  .form-panel textarea {
    font-size: 16px; /* prevent iOS zoom on focus */
    min-height: 48px;
  }
  .form-panel textarea { min-height: 140px; }
  .social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }
  .social-row a {
    text-align: center;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s var(--ease), border-color .3s, color .3s, background .3s;
  }
  .social-row a:active {
    transform: scale(.98);
  }
}

@media (max-width: 680px) {
  .signal-row, .meter-board, .lane-4, .tri-stack, .credo-row, .plan-row,
  .gate-row, .vow-row, .steps-3, .time-grid, .shot-row, .principle-grid, .mosaic-svc, .perk-grid, .tag-row {
    grid-template-columns: 1fr;
  }
  .site-footer__top { grid-template-columns: 1fr; }
  .flow-item { grid-template-columns: 1fr; }
  .story-row { grid-template-columns: 1fr; }
  .bay-stage__mosaic { grid-template-columns: 1fr; }
  .bay-tile--hero { grid-column: span 1; min-height: 220px; }
  .footer-newsletter { flex-direction: column; }
  .footer-newsletter .btn { width: 100%; min-height: 48px; }

  .faq-split__img,
  .mail-split__img,
  .social-band__img {
    max-height: 180px;
  }
  .gate {
    min-height: 200px;
  }
  .container { width: min(100% - 1.6rem, var(--max)); }
  .section { padding: clamp(3rem, 12vw, 4.5rem) 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html.js .fx, html.js .fx-blur, html.js .fx-wipe, html.js .fx-rise, html.js .fx-tilt, html.js .fx-scale {
    opacity: 1; transform: none; filter: none; clip-path: none;
  }
  html.js .fx-wipe > * { clip-path: none; }
  .pulse-bar__track { animation: none; }
  .reel-btn__orb { animation: none; }
}
