/* Vault Lisbon — private automotive concierge
   Zinc neutrals, one desaturated accent (sage), Geist + Geist Mono. */

:root {
  --z950: #09090B;
  --z900: #18181B;
  --z850: #1F1F23;
  --z800: #27272A;
  --z700: #3F3F46;
  --z500: #71717A;
  --z400: #A1A1AA;
  --z300: #D4D4D8;
  --z200: #E4E4E7;
  --z100: #F4F4F5;
  --z50:  #FAFAFA;
  --white: #FFFFFF;
  --accent: #3F7D63;       /* on light */
  --accent-d: #86B69E;     /* on dark */
  --danger: #B4513F;
  --danger-d: #E39A8A;

  --f-sans: "Geist", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --wrap: 1400px;
  --pad: clamp(16px, 4vw, 48px);
  --r-xl: 2.5rem;
  --shadow: 0 20px 40px -15px rgba(24, 24, 27, .08);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--z50); -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--z50);
  color: var(--z900);
  font: 400 16px/1.6 var(--f-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
img, svg { max-width: 100%; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.tone-dark :focus-visible { outline-color: var(--accent-d); }
::selection { background: var(--z900); color: var(--z50); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.num { font-family: var(--f-mono); font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.dim { color: var(--z400); }
.tone-dark .dim { color: var(--z500); }

/* grain: fixed, non-scrolling, pointer-events none */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* type primitives */
.kicker, .mono-label {
  margin: 0;
  font: 500 11px/1.4 var(--f-mono);
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--z500);
}
h1, h2, h3 { margin: 0; font-weight: 500; letter-spacing: -.035em; text-wrap: balance; }
h2 { font-size: clamp(32px, 4.4vw, 60px); line-height: 1.02; }

.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); position: relative; }
.tone-dark .dot { background: var(--accent-d); }
.dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid currentColor; color: var(--accent);
  animation: breathe 2.6s var(--ease) infinite;
}
.tone-dark .dot::after { color: var(--accent-d); }
@keyframes breathe { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.9); opacity: 0; } }

/* buttons */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 500 14.5px/1 var(--f-sans);
  letter-spacing: -.005em;
  text-decoration: none;
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform .5s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { scale: .98; }
.btn-light { background: var(--z50); color: var(--z950); }
.btn-light:hover { background: var(--white); }
.btn-dark { background: var(--z900); color: var(--z50); }
.btn-dark:hover { background: var(--z800); }
.btn-ghost { color: var(--z300); border-color: rgba(255,255,255,.14); background: rgba(9,9,11,.45); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: rgba(255,255,255,.3); color: var(--z50); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 13.5px; }
.btn[disabled] { cursor: default; opacity: .55; }

/* ============ NAV (liquid glass pill) ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding-top: calc(env(safe-area-inset-top, 0px) + 16px);
  pointer-events: none;
}
.nav-inner {
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav a, .nav nav { pointer-events: auto; }
.mark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 500; font-size: 15px; letter-spacing: -.02em; transition: color .5s var(--ease); }
.nav .mark { padding: 5px 16px 5px 5px; border-radius: 999px; border: 1px solid transparent; backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4); transition: color .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease); }
.nav[data-tone="dark"] .mark { background: rgba(24,24,27,.5); border-color: rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.nav[data-tone="light"] .mark { background: rgba(255,255,255,.7); border-color: rgba(24,24,27,.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 30px -12px rgba(24,24,27,.12); }
@media (max-width: 767px) { .nav .mark { padding: 5px; } }
.mark-glyph { width: 28px; height: 28px; flex: none; }
.nav[data-tone="dark"] .mark { color: var(--z50); }
.nav[data-tone="light"] .mark { color: var(--z900); }

.nav-pill {
  display: flex; align-items: center; gap: 4px;
  padding: 5px;
  border-radius: 999px;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: background .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  border: 1px solid transparent;
}
.nav[data-tone="dark"] .nav-pill { background: rgba(24,24,27,.5); border-color: rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.nav[data-tone="light"] .nav-pill { background: rgba(255,255,255,.7); border-color: rgba(24,24,27,.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 30px -12px rgba(24,24,27,.12); }
.nav-pill a {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 450;
  text-decoration: none;
  transition: color .3s, background .3s;
}
.nav[data-tone="dark"] .nav-pill a { color: var(--z400); }
.nav[data-tone="dark"] .nav-pill a:hover { color: var(--z50); }
.nav[data-tone="light"] .nav-pill a { color: var(--z500); }
.nav[data-tone="light"] .nav-pill a:hover { color: var(--z900); }
.nav[data-tone="dark"] .nav-pill .nav-cta { background: var(--z50); color: var(--z950); }
.nav[data-tone="light"] .nav-pill .nav-cta { background: var(--z900); color: var(--z50); }
.nav-pill .nav-cta:active { scale: .98; }

/* ============ HERO ============ */
.tone-dark { background: var(--z950); color: var(--z50); color-scheme: dark; }
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(55% 55% at 72% 66%, rgba(63,63,70,.35) 0%, rgba(9,9,11,0) 70%);
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; height: max(100%, 100lvh); z-index: -2;
  background: #09090b url("vault-showroom.jpg") 38% 50% / cover no-repeat;
  filter: brightness(.5) saturate(.85) contrast(1.08);
}
@media (max-width: 767px) { .hero-bg { background: #09090b url("vault-showroom-sm.jpg") 50% 86% / auto 54% no-repeat; } }
.hero-gl { position: absolute; top: 0; left: 0; width: 100%; height: 100%; height: max(100%, 100lvh); z-index: -2; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero.has-gl .hero-gl { opacity: 1; }
.hero.has-gl .hero-bg { opacity: 0; transition: opacity .6s; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(90deg, rgba(9,9,11,.9) 0%, rgba(9,9,11,.62) 30%, rgba(9,9,11,.12) 52%, rgba(9,9,11,0) 62%), linear-gradient(0deg, rgba(9,9,11,.92) 0%, rgba(9,9,11,0) 24%), linear-gradient(180deg, rgba(9,9,11,.55) 0%, rgba(9,9,11,0) 18%); }
@media (max-width: 767px) { .hero::after { background: linear-gradient(180deg, rgba(9,9,11,.9) 0%, rgba(9,9,11,.7) 36%, rgba(9,9,11,.1) 52%, rgba(9,9,11,0) 58%), linear-gradient(0deg, rgba(9,9,11,.95) 0%, rgba(9,9,11,0) 30%); } }
.hero-grid { align-self: center; width: 100%; padding-top: 120px; padding-bottom: 40px; }
.hero-copy { display: grid; gap: 28px; max-width: 620px; }
.eyebrow { margin: 0; display: inline-flex; align-items: center; gap: 12px; font: 500 11px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--z400); }
.hero h1 { font-size: clamp(44px, 6vw, 88px); line-height: .98; letter-spacing: -.045em; }
.hero h1 span { color: var(--z500); }
.hero-lede { margin: 0; max-width: 34ch; font-size: clamp(17px, 1.4vw, 19px); line-height: 1.55; color: var(--z400); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-foot {
  width: 100%;
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 32px);
}
.hero-facts { margin: 0; display: grid; grid-template-columns: repeat(3, auto); border-top: 1px solid rgba(255,255,255,.08); }
.hero-facts div { padding: 16px 32px 0 0; }
.hero-facts div + div { padding-left: 32px; border-left: 1px solid rgba(255,255,255,.08); }
.hero-facts dt { font: 500 10.5px var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--z500); }
.hero-facts dd { margin: 4px 0 0; font-size: 14px; color: var(--z300); }
.coords { font: 500 11px var(--f-mono); letter-spacing: .14em; color: var(--z700); }

/* load choreography (JS only, content visible without JS) */
.js .hero-copy > * { animation: rise 1.2s var(--ease) both; animation-delay: calc(var(--d, 0) * 110ms + 200ms); }
.js .hero-copy > :nth-child(1) { --d: 0; } .js .hero-copy > :nth-child(2) { --d: 1; }
.js .hero-copy > :nth-child(3) { --d: 2; } .js .hero-copy > :nth-child(4) { --d: 3; }
.js .hero-foot { animation: rise 1.2s var(--ease) .8s both; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }

/* scroll reveal */
.js [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* ============ STATEMENT ============ */
.statement { padding-block: clamp(96px, 14vw, 200px) clamp(48px, 7vw, 96px); }
.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-template-areas: "k k" "lit side";
  gap: 32px clamp(32px, 6vw, 96px);
}
.statement .kicker { grid-area: k; }
.lit {
  grid-area: lit;
  margin: 0;
  font-size: clamp(26px, 3.1vw, 44px);
  line-height: 1.18;
  letter-spacing: -.03em;
  font-weight: 450;
  text-wrap: pretty;
}
.lit .w { color: var(--z900); opacity: var(--o, 1); transition: opacity .25s linear; }
.js .lit .w { --o: .16; }
.statement-side { grid-area: side; align-self: end; display: grid; gap: 16px; max-width: 42ch; color: var(--z500); }
.statement-side p { margin: 0; }
.statement-side .strong { color: var(--z900); font-weight: 500; }

/* ============ BURDEN ============ */
.burden { padding-block: clamp(48px, 7vw, 96px) clamp(96px, 12vw, 170px); }
.burden-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 0 clamp(32px, 6vw, 96px); }
.burden-grid > * { border-top: 1px solid var(--z200); padding-top: 32px; }
.burden-grid > .kicker { margin-bottom: 24px; }
.struck { list-style: none; margin: 0; padding: 0; display: grid; }
.struck li { display: flex; align-items: baseline; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--z200); }
.struck li:first-child { padding-top: 0; }
.struck small { font: 500 11px var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); min-width: 2.2em; }
.struck span { position: relative; font-size: clamp(28px, 3.6vw, 52px); line-height: 1.1; letter-spacing: -.035em; font-weight: 450; color: var(--z900); transition: color 1s var(--ease); }
.struck i { position: absolute; left: -2px; right: -4px; top: 54%; height: 2px; background: var(--z900); transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease); }
.struck li.in span { color: var(--z400); }
.struck li.in i { transform: scaleX(1); background: var(--z400); }
.struck li:nth-child(2) i, .struck li:nth-child(2) span { transition-delay: .25s; }
.struck li:nth-child(3) i, .struck li:nth-child(3) span { transition-delay: .5s; }
.no-js .struck li span { color: var(--z400); } .no-js .struck i { transform: scaleX(1); background: var(--z400); }

/* ============ APPROACH: sticky stack ============ */
.approach { padding-block: clamp(72px, 10vw, 140px); background: var(--z100); }
.section-head { display: grid; gap: 18px; max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.split { max-width: none; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: end; gap: 24px clamp(32px, 6vw, 96px); }
.section-head.split > div { display: grid; gap: 18px; }
.section-note { margin: 0; max-width: 40ch; color: var(--z500); }

.stack { display: grid; gap: 28px; }
.stack-card {
  position: sticky;
  top: calc(104px + var(--i) * 22px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px clamp(32px, 5vw, 80px);
  min-height: 420px;
  padding: clamp(28px, 4vw, 56px);
  background: var(--white);
  border: 1px solid rgba(228,228,231,.7);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  transform-origin: 50% 0;
  transform: scale(var(--s, 1));
  will-change: transform;
}
.stack-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: var(--z900); opacity: var(--shade, 0); pointer-events: none; }
.card-a { display: grid; align-content: start; gap: 16px; }
.icon { width: 36px; height: 36px; fill: none; stroke: var(--z900); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 20px; }
.stack-card h3 { font-size: clamp(28px, 3vw, 42px); line-height: 1.04; }
.stack-card .lead { margin: 0; font-size: 18px; line-height: 1.5; color: var(--z500); max-width: 34ch; }
.card-b { display: grid; align-content: end; gap: 22px; color: var(--z700); max-width: 52ch; }
.card-b p { margin: 0; }
.card-b .close { padding-top: 20px; border-top: 1px solid var(--z200); color: var(--z900); font-weight: 500; font-size: 17px; }
.scope { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.scope li { padding: 7px 14px; border: 1px solid var(--z200); border-radius: 999px; font-size: 13.5px; color: var(--z700); }

/* ============ PLATFORM: bento ============ */
.platform { padding-block: clamp(96px, 12vw, 170px) clamp(72px, 9vw, 120px); }
.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 24px;
}
.tile { margin: 0; display: grid; grid-template-rows: 1fr auto; gap: 18px; }
.t-status { grid-column: span 2; }
.t-queue { grid-column: span 1; }
.t-ask { grid-column: span 1; }
.t-climate { grid-column: span 2; }
.t-stream { grid-column: 1 / -1; }
.tile figcaption { display: grid; gap: 4px; padding-inline: 8px; font-size: 14.5px; color: var(--z500); max-width: 52ch; }
.tile figcaption b { font-weight: 500; color: var(--z900); }

.card {
  position: relative;
  padding: clamp(24px, 3vw, 40px);
  background: var(--white);
  border: 1px solid rgba(228,228,231,.5);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.live { display: inline-flex; align-items: center; gap: 10px; font: 500 11px var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }

/* status */
#status-card { display: grid; gap: 26px; }
.status-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.status-title { margin: 6px 0 0; font-size: 28px; font-weight: 500; letter-spacing: -.035em; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--z100);
  font: 500 11px/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--z700);
  transition: background .6s var(--ease), color .6s var(--ease);
}
.pill b { font-weight: 500; }
.pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--z400); transition: background .6s; }
.pill[data-state="preparing"] i { background: #B98A3E; animation: blink 1.2s ease-in-out infinite; }
.pill[data-state="ready"] { background: rgba(63,125,99,.1); color: var(--accent); }
.pill[data-state="ready"] i { background: var(--accent); }
@keyframes blink { 50% { opacity: .25; } }

.readings { margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-block: 1px solid var(--z100); }
.readings div { padding: 16px 16px 16px 0; display: grid; gap: 4px; }
.readings div + div { padding-left: 16px; border-left: 1px solid var(--z100); }
.readings dt { font: 500 10.5px var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--z500); }
.readings dd { margin: 0; font-size: 18px; color: var(--z900); }
.readings small { font: 400 13px var(--f-sans); color: var(--z500); }

.request { display: grid; gap: 8px; }
.request-row { display: flex; flex-wrap: wrap; gap: 10px; }
.request-row select {
  flex: 1 1 200px; min-height: 44px;
  appearance: none;
  padding: 0 40px 0 16px;
  border: 1px solid var(--z200);
  border-radius: 999px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%2371717A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  font: 400 14px var(--f-sans); color: var(--z900);
}
.request-row select:disabled { opacity: .6; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
@property --p { syntax: '<percentage>'; inherits: true; initial-value: 0%; }
.steps li { display: grid; gap: 10px; font-size: 13px; color: var(--z400); transition: color .5s var(--ease), --p .9s var(--ease); }
.steps li::before { content: ""; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--z900) 0 var(--p), var(--z200) var(--p)); }
.steps li.done { color: var(--z900); --p: 100%; }
.steps li.done:last-child { color: var(--accent); }
.steps li.done:last-child::before { background: var(--accent); }

.toast {
  position: absolute; top: 20px; left: 50%;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--z900); color: var(--z50);
  font-size: 13px; white-space: nowrap;
  box-shadow: 0 14px 30px -12px rgba(24,24,27,.4);
  transform: translate(-50%, -140%) scale(.9);
  opacity: 0;
  transition: transform .7s var(--spring), opacity .35s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.toast .dot { background: var(--accent-d); }
.toast .dot::after { color: var(--accent-d); }
.toast.show { transform: translate(-50%, 0) scale(1); opacity: 1; }

/* queue */
.queue { list-style: none; margin: 20px 0 0; padding: 0; display: grid; }
.queue li {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto; gap: 2px 12px;
  padding: 14px 0;
  border-top: 1px solid var(--z100);
  background: var(--white);
  will-change: transform;
}
.queue span { font-size: 15px; font-weight: 450; color: var(--z900); }
.queue small { grid-row: 2; font-size: 12.5px; color: var(--z500); }
.queue em { grid-row: 1 / 3; grid-column: 2; align-self: center; font: 500 10.5px var(--f-mono); font-style: normal; letter-spacing: .12em; text-transform: uppercase; color: var(--z500); padding: 6px 10px; border-radius: 999px; background: var(--z100); }
.queue li:first-child em { background: rgba(63,125,99,.1); color: var(--accent); }

/* ask */
.t-ask .card { display: grid; align-content: start; gap: 18px; min-height: 100%; }
.ask-input {
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--z50);
  border: 1px solid var(--z200);
  font-size: 16px; line-height: 1.45; color: var(--z900);
}
.caret { display: inline-block; width: 1.5px; height: 1.1em; margin-left: 2px; vertical-align: -3px; background: var(--z900); animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.ask-out { position: relative; min-height: 84px; }
.shimmer { display: grid; gap: 10px; opacity: 0; transition: opacity .3s; }
.shimmer.on { opacity: 1; }
.shimmer i { display: block; height: 12px; border-radius: 6px; background: linear-gradient(90deg, var(--z100) 0%, var(--z200) 40%, var(--z100) 80%); background-size: 200% 100%; animation: shimmer 1.3s linear infinite; }
.shimmer i:last-child { width: 62%; }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
#ask-reply { position: absolute; inset: 0 0 auto 0; margin: 0; padding-left: 16px; border-left: 2px solid var(--accent); font-size: 15px; color: var(--z700); opacity: 0; transform: translateY(8px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
#ask-reply.on { opacity: 1; transform: none; }

/* climate */
.t-climate .card { display: grid; gap: 18px; }
.climate-now { display: flex; gap: 20px; font-size: 14px; color: var(--z500); }
.climate-now b { font-size: 22px; font-weight: 500; color: var(--z900); }
.spark { width: 100%; height: 170px; display: block; overflow: visible; }
.spark .grid line { stroke: var(--z100); stroke-width: 1; vector-effect: non-scaling-stroke; }
.spark .area { fill: rgba(24,24,27,.04); }
.spark .line-t { fill: none; stroke: var(--z900); stroke-width: 1.6; vector-effect: non-scaling-stroke; }
.spark .line-h { fill: none; stroke: var(--accent); stroke-width: 1.4; stroke-dasharray: 3 4; vector-effect: non-scaling-stroke; }
.spark .end { fill: var(--white); stroke: var(--z900); stroke-width: 1.6; vector-effect: non-scaling-stroke; }
.spark-legend { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 12.5px; color: var(--z500); }
.spark-legend span { display: inline-flex; align-items: center; gap: 8px; }
.spark-legend i { width: 14px; height: 2px; background: var(--z900); }
.spark-legend .k-h { background: repeating-linear-gradient(90deg, var(--accent) 0 3px, transparent 3px 6px); }
.spark-range { margin-left: auto; font-family: var(--f-mono); font-size: 11.5px; }

/* stream */
.card-stream { padding: 26px 0; }
.stream { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.stream-track { display: flex; width: max-content; animation: stream 48s linear infinite; }
.stream:hover .stream-track { animation-play-state: paused; }
.stream-track span {
  display: inline-flex; align-items: center; gap: 18px;
  padding-inline: 18px;
  font-size: clamp(18px, 2vw, 26px); font-weight: 450; letter-spacing: -.03em; color: var(--z900); white-space: nowrap;
}
.stream-track span::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--z300); margin-left: 18px; }
@keyframes stream { to { transform: translateX(-50%); } }

.demo-note { margin: 28px 8px 0; font: 400 11.5px var(--f-mono); color: var(--z400); letter-spacing: .04em; }

/* ============ CONTACT ============ */
.contact { padding-block: clamp(96px, 12vw, 170px); position: relative; isolation: isolate; }
.contact::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, var(--z950) 0%, rgba(9,9,11,.86) 35%, rgba(9,9,11,.94) 70%, var(--z950) 100%),
              url("vault-showroom.jpg") 50% 22% / cover no-repeat;
  filter: saturate(.7); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 48px clamp(32px, 7vw, 120px); }
.contact-copy { display: grid; gap: 22px; align-content: start; }
.contact-copy .kicker { color: var(--z500); }
.contact-copy > p:not(.kicker) { margin: 0; color: var(--z400); max-width: 36ch; }
.contact-list { margin: 16px 0 0; display: grid; gap: 18px; }
.contact-list div { display: grid; gap: 4px; }
.contact-list dt { font: 500 10.5px var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--z500); }
.contact-list dd { margin: 0; font-size: 16px; color: var(--z200); user-select: all; }

.form-shell {
  padding: clamp(24px, 3.4vw, 48px);
  border-radius: var(--r-xl);
  background: var(--z900);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.form { display: grid; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 8px; align-content: start; }
.field label { font-size: 13.5px; font-weight: 450; color: var(--z300); }
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid var(--z800);
  background: var(--z950);
  color: var(--z50);
  font: 400 16px/1.4 var(--f-sans);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 116px; }
.field input::placeholder, .field textarea::placeholder { color: var(--z700); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--z500); background: #0C0C0E; }
.field [aria-invalid="true"] { border-color: var(--danger-d); }
.help { margin: 0; font-size: 12.5px; color: var(--z500); }
.err { margin: 0; min-height: 0; font-size: 12.5px; color: var(--danger-d); }
.err:empty { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 20px; padding-top: 6px; }
.form-error { margin: 0; font-size: 14px; color: var(--danger-d); max-width: 44ch; }
.form-error:empty { display: none; }
#submit.is-loading { color: transparent; pointer-events: none; }
#submit.is-loading::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(90deg, var(--z300) 0%, var(--z50) 45%, var(--z300) 90%);
  background-size: 200% 100%;
  animation: shimmer 1.1s linear infinite;
}
#submit.is-loading .btn-label { visibility: hidden; }

.sent { display: grid; justify-items: start; gap: 14px; padding-block: 24px; outline: none; }
.sent svg { width: 48px; height: 48px; fill: none; stroke: var(--accent-d); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sent svg path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .9s var(--ease) .2s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.sent h3 { font-size: 30px; }
.sent p { margin: 0; color: var(--z400); max-width: 40ch; }

/* footer */
.foot { border-top: 1px solid rgba(255,255,255,.06); }
.foot-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 32px; padding-block: 36px calc(env(safe-area-inset-bottom, 0px) + 36px); font: 500 11px var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--z500); }
.foot .mark { color: var(--z200); font: 500 14px var(--f-sans); letter-spacing: -.02em; text-transform: none; }

/* ============ RESPONSIVE ============ */

/* ============ SERVICES ============ */
.services { padding-block: clamp(96px, 12vw, 170px); position: relative; isolation: isolate; }
.services::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 50% at 85% 20%, rgba(212,168,106,.05), transparent 70%); }
.services h2 { color: var(--z50); }
.services .section-note { color: var(--z400); }

.svc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.svc-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.09); }
.svc-item { border-bottom: 1px solid rgba(255,255,255,.09); }
.svc-h { margin: 0; font: inherit; letter-spacing: normal; }
.svc-head {
  appearance: none; border: 0; background: none; color: inherit; font: inherit; text-align: left; cursor: pointer;
  width: 100%; display: grid; grid-template-columns: 52px minmax(0, 1fr) 20px; align-items: center; gap: 12px;
  padding: clamp(20px, 2.2vw, 28px) 0;
}
.svc-head:focus-visible { outline-offset: -2px; }
.svc-no { font-size: 12px; color: var(--z500); letter-spacing: .06em; transition: color .5s var(--ease); }
.svc-title { font-size: clamp(22px, 2.3vw, 32px); line-height: 1.12; letter-spacing: -.03em; font-weight: 450; color: var(--z500); transition: color .5s var(--ease), transform .6s var(--ease); }
.svc-head:hover .svc-title { color: var(--z300); }
.svc-item.is-open .svc-title { color: var(--z50); }
.svc-item.is-open .svc-no { color: #D4A86A; }
.svc-plus { position: relative; width: 14px; height: 14px; justify-self: end; }
.svc-plus::before, .svc-plus::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1.5px; margin-top: -.75px; background: var(--z500); border-radius: 2px; transition: transform .5s var(--ease), background .5s var(--ease); }
.svc-plus::after { transform: rotate(90deg); }
.svc-item.is-open .svc-plus::after { transform: rotate(0deg); }
.svc-item.is-open .svc-plus::before, .svc-item.is-open .svc-plus::after { background: var(--z200); }

.svc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .7s var(--ease); }
.svc-item.is-open .svc-body { grid-template-rows: 1fr; }
.svc-inner { min-height: 0; overflow: hidden; }
.svc-copy { padding: 0 0 30px 64px; opacity: 0; transform: translateY(-6px); transition: opacity .5s var(--ease), transform .6s var(--ease); }
.svc-item.is-open .svc-copy { opacity: 1; transform: none; transition-delay: .12s; }
.svc-copy p { margin: 0 0 14px; max-width: 52ch; font-size: 15.5px; line-height: 1.65; color: var(--z400); }
.svc-copy .svc-lead { font-size: 18px; line-height: 1.5; color: var(--z200); max-width: 44ch; }
.svc-close { font: 500 11px/1.6 var(--f-mono) !important; letter-spacing: .14em; text-transform: uppercase; color: #D4A86A !important; margin-top: 18px !important; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 14px; color: var(--z200); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 2px; transition: border-color .4s var(--ease), color .4s var(--ease); }
.svc-link svg { width: 14px; height: 14px; transition: transform .5s var(--ease); }
.svc-link:hover { color: var(--z50); border-color: rgba(255,255,255,.6); }
.svc-link:hover svg { transform: translateX(3px); }

/* the photograph, one crop per service */
.svc-shot, .svc-thumb { background: #111 url("vault-showroom.jpg") no-repeat; }
.shot-0 { background-size: auto 100%; background-position: 50% 50%; }   /* storage: the vault */
.shot-1 { background-size: auto 175%; background-position: 7% 69%; }    /* maintenance */
.shot-2 { background-size: auto 240%; background-position: 50% 67%; }   /* concierge: ready to drive */
.shot-3 { background-size: auto 180%; background-position: 85% 61%; }   /* transport */
.shot-4 { background-size: auto 185%; background-position: 90% 74%; }   /* importation */
.shot-5 { background-size: auto 250%; background-position: 27% 60%; }   /* detailing: glossy paint */

.svc-stage {
  position: sticky; top: 104px;
  aspect-ratio: 4 / 5; max-height: calc(100vh - 136px); width: 100%;
  border-radius: var(--r-xl); overflow: hidden; isolation: isolate; background: #0c0c0e;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 40px 80px -30px rgba(0,0,0,.8);
}
.svc-shot { position: absolute; inset: 0; opacity: 0; transform: scale(1.08);
  filter: brightness(.66) saturate(.85) contrast(1.06);
  transition: opacity 1.1s var(--ease), transform 7s var(--ease); }
.svc-shot.is-on { opacity: 1; transform: scale(1); }
.svc-stage::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(9,9,11,.92) 0%, rgba(9,9,11,.35) 38%, rgba(9,9,11,0) 60%),
              radial-gradient(120% 80% at 50% 0%, rgba(9,9,11,0) 50%, rgba(9,9,11,.5) 100%); }
.svc-cap { position: absolute; left: clamp(22px, 2.4vw, 36px); right: clamp(22px, 2.4vw, 36px); bottom: clamp(22px, 2.4vw, 36px); z-index: 2; display: grid; gap: 14px; }
.svc-count { margin: 0; display: flex; gap: 8px; align-items: baseline; font: 500 11px var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--z400); }
.svc-count #svc-count { color: #D4A86A; }
.svc-count #svc-name { margin-left: auto; color: var(--z300); }
.svc-tag { margin: 0; display: grid; font-size: clamp(22px, 2.1vw, 30px); line-height: 1.16; letter-spacing: -.03em; font-weight: 450; color: var(--z50); }
.svc-tag span { display: block; animation: tagIn .9s var(--ease) both; animation-delay: calc(var(--k, 0) * 90ms + 120ms); }
@keyframes tagIn { from { opacity: 0; transform: translateY(12px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
.svc-thumb { display: none; }

@media (min-width: 901px) { .svc-close { display: none; } }
@media (max-width: 900px) {
  .svc { grid-template-columns: 1fr; }
  .svc-stage { display: none; }
  .svc-copy { padding-left: 0; }
  .svc-thumb { display: block; aspect-ratio: 16 / 10; border-radius: 18px; margin-bottom: 20px; background-image: url("vault-showroom-sm.jpg");
    filter: brightness(.72) saturate(.85); box-shadow: 0 0 0 1px rgba(255,255,255,.06); }
  .svc-thumb.shot-0 { background-size: auto 150%; background-position: 50% 45%; }
  .svc-head { grid-template-columns: 40px minmax(0, 1fr) 20px; }
}


/* ============ LANGUAGE TOGGLE ============ */
.nav-inner > .nav-pill { margin-left: auto; }
.lang { pointer-events: auto; display: flex; gap: 2px; padding: 4px; border-radius: 999px; border: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: background .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease); margin-left: -8px; }
.lang button { appearance: none; border: 0; cursor: pointer; min-width: 38px; height: 38px; padding: 0 10px; border-radius: 999px;
  font: 500 11.5px var(--f-mono); letter-spacing: .1em; background: transparent; transition: background .35s var(--ease), color .35s var(--ease); }
.nav[data-tone="dark"] .lang { background: rgba(24,24,27,.5); border-color: rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.nav[data-tone="light"] .lang { background: rgba(255,255,255,.7); border-color: rgba(24,24,27,.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 30px -12px rgba(24,24,27,.12); }
.nav[data-tone="dark"] .lang button { color: var(--z500); }
.nav[data-tone="dark"] .lang button:hover { color: var(--z200); }
.nav[data-tone="dark"] .lang button[aria-pressed="true"] { background: rgba(255,255,255,.1); color: var(--z50); }
.nav[data-tone="light"] .lang button { color: var(--z500); }
.nav[data-tone="light"] .lang button:hover { color: var(--z900); }
.nav[data-tone="light"] .lang button[aria-pressed="true"] { background: var(--z900); color: var(--z50); }

/* ============ MEMBERSHIP ============ */
.membership { padding-block: clamp(96px, 12vw, 170px) clamp(72px, 9vw, 120px); position: relative; isolation: isolate; border-top: 1px solid rgba(255,255,255,.04); }
.membership::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(50% 40% at 80% 10%, rgba(212,168,106,.07), transparent 70%), radial-gradient(40% 30% at 10% 60%, rgba(212,168,106,.03), transparent 70%); }
.membership h2 { color: var(--z50); }
.membership .section-note { color: var(--z400); }

.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; gap: 26px; padding: clamp(26px, 2.6vw, 38px);
  border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); transition: box-shadow .6s var(--ease), transform .6s var(--ease); }
.plan:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); }
.plan-prime { background: linear-gradient(180deg, rgba(212,168,106,.10), rgba(212,168,106,.02) 60%);
  box-shadow: inset 0 0 0 1px rgba(212,168,106,.4), 0 40px 80px -40px rgba(212,168,106,.25); }
.plan-prime:hover { box-shadow: inset 0 0 0 1px rgba(212,168,106,.7), 0 40px 80px -40px rgba(212,168,106,.35); }
.plan-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan h3 { font-size: 15px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--z200); }
.plan-prime h3 { color: #E7C58F; }
.plan-chip { font: 500 10.5px var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: #0C0C0E; background: #D4A86A; padding: 5px 10px; border-radius: 999px; }
.plan-price { margin: 0; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; color: var(--z50); }
.plan-price .cur { font-size: 26px; font-weight: 400; color: var(--z400); align-self: flex-start; margin-top: 10px; }
.plan-price b { font-family: var(--f-sans); font-size: clamp(56px, 5.4vw, 76px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.plan-price .per { font-size: 15px; color: var(--z400); margin-left: 6px; }
.plan-price .vat { flex-basis: 100%; font: 500 10.5px var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--z500); margin-top: 6px; }
.plan-for { display: grid; gap: 8px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }
.plan-for p:last-child { margin: 0; color: var(--z300); font-size: 15px; line-height: 1.55; }
.plan-keys { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; flex: 1; }
.plan-keys li { position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.45; color: var(--z300); }
.plan-keys li::before { content: ""; position: absolute; left: 2px; top: .38em; width: 12px; height: 7px; border-left: 1.5px solid #D4A86A; border-bottom: 1.5px solid #D4A86A; transform: rotate(-45deg); }
.plan-cta { width: 100%; justify-content: space-between; }
.btn-line { color: var(--z100); border-color: rgba(255,255,255,.18); }
.btn-line:hover { border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-gold { background: #D4A86A; color: #0C0C0E; }
.btn-gold:hover { background: #E2BA80; }

.cmp-wrap { margin-top: clamp(64px, 8vw, 110px); }
.cmp-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.cmp-head h3 { font-size: clamp(22px, 2.2vw, 30px); color: var(--z50); }
.cmp-tabs { display: none; }
.cmp-scroll { border-radius: 24px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); overflow: hidden; }
.cmp { width: 100%; border-collapse: collapse; table-layout: fixed; font-size: 14px; }
.cmp col:first-child { width: 40%; }
.cmp thead th { background: #111113; padding: 22px 18px; text-align: left; vertical-align: bottom;
  font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--z200); border-bottom: 1px solid rgba(255,255,255,.08); }
.cmp thead th:first-child { width: 40%; }
.cmp thead th small { display: block; margin-top: 6px; font: 400 13px var(--f-sans); letter-spacing: 0; text-transform: none; color: var(--z500); }
.cmp thead th.is-prime { color: #E7C58F; background: linear-gradient(180deg, rgba(212,168,106,.12), rgba(212,168,106,.04)), #111113; }
.cmp tbody th, .cmp td { padding: 15px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid rgba(255,255,255,.055); }
.cmp tbody tr:last-child > * { border-bottom: 0; }
.cmp tbody th { font-weight: 400; color: var(--z200); }
.cmp tbody th small, .cmp td small { display: block; margin-top: 4px; font-size: 12.5px; line-height: 1.45; color: var(--z500); }
.cmp td:last-child { background: rgba(212,168,106,.035); }
.cmp tr:not(.cmp-group):hover > * { background-color: rgba(255,255,255,.02); }
.cmp .cmp-group th { padding: 26px 18px 10px; font: 500 10.5px var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--z500); background: none; }
.cmp td span { display: inline-flex; align-items: center; gap: 8px; }
.cmp .c-inc span { color: #E7C58F; }
.cmp .c-inc span::before { content: ""; width: 10px; height: 6px; margin-top: -3px; border-left: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(-45deg); }
.cmp .c-time span { color: #E7C58F; }
.cmp .c-av span { color: var(--z300); }
.cmp .c-no span { color: var(--z700); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.vat-note { display: flex; align-items: center; gap: 10px; margin: 20px 4px 0; font-size: 13.5px; color: var(--z400); }
.vat-note svg { width: 16px; height: 16px; flex: none; color: #D4A86A; }

/* form select */
.select { position: relative; }
.select::after { content: ""; position: absolute; right: 18px; top: 50%; width: 7px; height: 7px; margin-top: -6px; border-right: 1.5px solid var(--z400); border-bottom: 1.5px solid var(--z400); transform: rotate(45deg); pointer-events: none; }
.field select { appearance: none; -webkit-appearance: none; width: 100%; padding: 13px 44px 13px 16px; border-radius: 14px; border: 1px solid var(--z800);
  background: var(--z950); color: var(--z50); font: 400 16px/1.4 var(--f-sans); cursor: pointer; transition: border-color .3s var(--ease); }
.field select:focus { outline: none; border-color: var(--z500); }
.field select.flash { border-color: #D4A86A; }

/* ============ WHATSAPP ============ */
.wa-float { position: fixed; z-index: 95; right: calc(env(safe-area-inset-right, 0px) + 20px); bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
  display: inline-flex; align-items: center; gap: 10px; height: 54px; padding: 0 20px 0 16px; border-radius: 999px; text-decoration: none;
  color: var(--z50); background: rgba(16,16,18,.82); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: inset 0 0 0 1px rgba(212,168,106,.35), 0 18px 40px -14px rgba(0,0,0,.55);
  font-size: 14px; font-weight: 500; transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .5s var(--ease), opacity .5s var(--ease); }
.wa-float svg { width: 22px; height: 22px; color: #D4A86A; transition: color .4s var(--ease); }
.wa-float:hover { background: #D4A86A; color: #0C0C0E; box-shadow: inset 0 0 0 1px #D4A86A, 0 18px 40px -14px rgba(212,168,106,.5); }
.wa-float:hover svg { color: #0C0C0E; }
.js .wa-float { opacity: 0; transform: translateY(12px); }
.js .wa-float.on { opacity: 1; transform: none; }
.wa-inline { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.2); transition: border-color .3s; }
.wa-inline:hover { border-color: rgba(255,255,255,.6); }

@media (max-width: 1024px) {
  .plans { grid-template-columns: 1fr; max-width: 560px; }
  .nav-pill a[href="#approach"], .nav-pill a[href="#platform"] { display: none; }
}
@media (max-width: 767px) {
  .lang button { min-width: 34px; height: 36px; padding: 0 8px; }
  .wa-float { width: 56px; height: 56px; padding: 0; justify-content: center; right: calc(env(safe-area-inset-right, 0px) + 16px); bottom: calc(env(safe-area-inset-bottom, 0px) + 16px); }
  .wa-float span { display: none; }
  .wa-float svg { width: 26px; height: 26px; }
  .cmp-head { flex-direction: column; align-items: stretch; }
  .cmp-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 4px; border-radius: 999px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
  .cmp-tabs button { appearance: none; border: 0; background: none; color: var(--z400); height: 40px; border-radius: 999px; font: 500 13.5px var(--f-sans); cursor: pointer; transition: background .35s var(--ease), color .35s var(--ease); }
  .cmp-tabs button[aria-selected="true"] { background: var(--z50); color: var(--z950); }
  .cmp { table-layout: auto; }
  .cmp thead th:first-child, .cmp tbody th { width: 56%; }
  .cmp[data-show="1"] tr > :nth-child(3), .cmp[data-show="1"] tr > :nth-child(4),
  .cmp[data-show="2"] tr > :nth-child(2), .cmp[data-show="2"] tr > :nth-child(4),
  .cmp[data-show="3"] tr > :nth-child(2), .cmp[data-show="3"] tr > :nth-child(3) { display: none; }
  .cmp .cmp-group th { display: table-cell !important; }
  .cmp tbody th, .cmp td { padding: 13px 14px; }
  .cmp thead th { padding: 16px 14px; }
  .cmp td:last-child { background: none; }
}

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .t-status, .t-climate, .t-stream { grid-column: 1 / -1; }
  .readings { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .readings div:nth-child(3) { padding-left: 0; border-left: 0; }
  .readings div:nth-child(n+3) { border-top: 1px solid var(--z100); }
}
@media (max-width: 767px) {
  .nav-pill a:not(.nav-cta) { display: none; }
  .mark span { display: none; }
  .hero-grid { align-self: start; padding-top: 112px; }
  .hero-foot { flex-direction: column; align-items: stretch; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div, .hero-facts div + div { padding: 12px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; gap: 12px; }
  .hero-facts dd { margin: 0; }
  .coords { display: none; }
  .statement-grid, .burden-grid, .section-head.split, .contact-grid { grid-template-columns: 1fr; }
  .statement-grid { grid-template-areas: "k" "lit" "side"; }
  .struck li { gap: 12px; }
  .stack-card { grid-template-columns: 1fr; min-height: 0; top: calc(84px + var(--i) * 14px); border-radius: 28px; }
  .icon { margin-bottom: 8px; }
  .bento { grid-template-columns: 1fr; }
  .t-status, .t-queue, .t-ask, .t-climate, .t-stream { grid-column: 1 / -1; }
  .card { border-radius: 28px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 14px; }
  .field-row { grid-template-columns: 1fr; }
  .spark-range { margin-left: 0; }
  .form-shell { border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  html { scroll-behavior: auto; }
  .stream-track { animation: none; }
}
