/* ==========================================================================
   HORAE · V2 concept
   Brand tokens kept from the current site; everything else pushed further.
   ========================================================================== */

:root {
  --paper: #fafafa;
  --ink: #111315;
  --ink-2: #1a1d20;
  --blue: #3e6d8e;
  --blue-deep: #2a4c64;
  --blue-light: #97b8cf;
  --ice: #eaf0f5;
  --ice-2: #f3f6f9;
  --line: #dfe3e6;
  --muted: #646c72;
  --title-gray: #89949e;
  --sub: #7a93a6;          /* “après l’achat” grey-blue, deepened for light backgrounds */
  --sub-dark: #97b8cf;     /* the exact “après l’achat” tone, on dark backgrounds */
  --white: #fff;
  --champagne: #e9dcc6;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --pad: clamp(20px, 5.2vw, 96px);
  --nav-h: 92px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.77, 0, .18, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
::selection { background: var(--blue); color: #fff; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 1.5px solid var(--blue); outline-offset: 4px; border-radius: 2px; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, p { margin: 0; }
em { font-style: italic; }

@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor summary, body.has-cursor [data-cursor] { cursor: none; }
}

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sub);
  font-weight: 500;
}
.eyebrow--muted { color: var(--muted); }
.eyebrow--light { color: var(--sub-dark); }

h2, h3 { font-family: var(--serif); font-weight: 400; }
h2 em, h3 em, h1 em { color: var(--title-gray); }


/* split helpers */
em .w { padding-right: .09em; margin-right: -.09em; }
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .12em; margin-bottom: -.12em; }
.w > span { display: inline-block; will-change: transform; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 20px 26px 20px 28px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .01em;
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--ease-out), border-color .5s;
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  transform: translateY(101%);
  transition: transform .6s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }
.btn .arrow { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; transition: transform .6s var(--ease-out); }
.btn:hover .arrow { transform: rotate(45deg); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark::before { background: var(--blue); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light::before { background: var(--blue-light); }
.btn--line { border: 1px solid #c6d0d8; color: var(--ink); background: rgba(255,255,255,.4); }
.btn--line::before { background: var(--ink); }
.btn--line:hover { color: #fff; border-color: var(--ink); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 15px;
  padding: 10px 0;
  position: relative;
}
.link-arrow::after {
  content: ""; position: absolute; left: 0; right: 32px; bottom: 4px; height: 1px;
  background: currentColor; transform-origin: right; transform: scaleX(0); transition: transform .6s var(--ease-out);
}
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }
.link-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; transition: transform .6s var(--ease-out); }
.link-arrow:hover svg { transform: translateY(4px); }

/* ---------- Ambient ---------- */
.grain {
  position: fixed; inset: -50%;
  z-index: 9000;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-4%, 3%); } 40% { transform: translate(3%, -5%); }
  60% { transform: translate(-6%, -2%); } 80% { transform: translate(5%, 4%); } 100% { transform: translate(0, 0); }
}

.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 1001; pointer-events: none; }
.progress span { display: block; height: 100%; width: 100%; background: var(--blue); transform-origin: left; transform: scaleX(0); }

/* ---------- Cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 9500; pointer-events: none; display: none; }
body.has-cursor .cursor { display: block; }
.cursor__dot, .cursor__ring { position: fixed; top: 0; left: 0; border-radius: 50%; will-change: transform; }
.cursor__dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--ink); transition: opacity .3s, background .3s; }
.cursor__ring {
  width: 40px; height: 40px; margin: -20px 0 0 -20px;
  border: 1px solid rgba(17,19,21,.28);
  display: grid; place-items: center;
  transition: width .5s var(--ease-out), height .5s var(--ease-out), margin .5s var(--ease-out), background .4s, border-color .4s;
}
.cursor__label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #fff; opacity: 0; transition: opacity .3s; white-space: nowrap; }
.cursor.is-hover .cursor__ring { width: 92px; height: 92px; margin: -46px 0 0 -46px; background: var(--ink); border-color: var(--ink); }
.cursor.is-hover .cursor__label { opacity: 1; }
.cursor.is-hover .cursor__dot { opacity: 0; }
.cursor.is-link .cursor__ring { width: 64px; height: 64px; margin: -32px 0 0 -32px; border-color: rgba(62,109,142,.6); }
body.cursor-light .cursor__dot { background: #fff; }
body.cursor-light .cursor__ring { border-color: rgba(255,255,255,.4); }
body.cursor-light .cursor.is-hover .cursor__ring { background: #fff; border-color: #fff; }
body.cursor-light .cursor__label { color: var(--ink); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--paper);
  display: grid; place-items: center;
  align-content: center;
  gap: 36px;
}
.loader__bezel { position: relative; width: 250px; height: 250px; display: grid; place-items: center; }
.loader__ticks { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.loader__ticks line { stroke: var(--line); stroke-width: 1; stroke-linecap: round; transition: stroke .25s; }
.loader__ticks line.major { stroke-width: 1.6; }
.loader__ticks line.on { stroke: var(--ink); }
.loader__center { display: grid; justify-items: center; gap: 14px; }
.loader__count { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--title-gray); font-variant-numeric: tabular-nums; overflow: hidden; }
.loader__caption { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); opacity: 0; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 40px;
  padding: 0 var(--pad);
  transition: transform .7s var(--ease-out), background .5s, height .5s var(--ease-out), box-shadow .5s;
}
.nav.is-scrolled {
  height: 76px;
  background: rgba(250,250,250,.78);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  backdrop-filter: saturate(1.4) blur(18px);
  box-shadow: 0 1px 0 rgba(17,19,21,.06);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav.is-dark { color: #fff; }
.nav.is-dark.is-scrolled { background: rgba(13,15,17,.72); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.nav__logo { margin-right: auto; display: block; }
.logo { display: block; height: 22px; width: auto; fill: currentColor; overflow: visible; }
.logo--loader { height: 30px; color: var(--ink); }
.logo--loader path { opacity: 0; }
.nav__links { display: flex; gap: 34px; font-size: 15px; }
.nav__links { align-items: center; }
.nav__links > a, .nav__drop-btn { position: relative; padding: 6px 0; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; }
.nav__links > a::after, .nav__drop-btn::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-out);
}
.nav__links > a:hover::after, .nav__links > a[aria-current]::after, .nav__drop:hover .nav__drop-btn::after, .nav__drop.is-current .nav__drop-btn::after { transform: scaleX(1); transform-origin: left; }
.nav__drop { position: relative; }
.nav__drop .chev { transition: transform .5s var(--ease-out); }
.nav__drop.is-open .chev { transform: rotate(180deg); }
.nav__panel {
  position: absolute; top: calc(100% + 16px); left: 50%; width: 360px;
  opacity: 0; visibility: hidden; transform: translate(-50%, 10px);
  transition: opacity .3s, transform .5s var(--ease-out), visibility 0s .3s;
}
.nav__panel::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.nav__drop.is-open .nav__panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition-delay: 0s; }
.nav__panel-in {
  display: grid; padding: 8px; color: var(--ink);
  background: rgba(250,250,250,.97); border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: 0 40px 70px -40px rgba(17,19,21,.35);
}
.nav__panel a { display: grid; grid-template-columns: 1fr auto; column-gap: 14px; padding: 13px 16px; transition: background .3s; }
.nav__panel a:hover { background: var(--ice-2); }
.nav__panel b { font-weight: 500; font-size: 15px; }
.nav__panel small { grid-column: 1; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.nav__panel em { grid-row: 1 / span 2; grid-column: 2; align-self: center; font-style: normal; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--title-gray); border: 1px solid var(--line); padding: 4px 8px; }
.nav__panel a[aria-disabled] { cursor: default; }
.nav__panel a[aria-disabled] b { color: var(--muted); }
.nav__panel a[aria-current] b { color: var(--blue); }
.chev { width: 9px; height: 6px; fill: none; stroke: currentColor; stroke-width: 1.3; margin-top: 3px; }
.nav__cta { padding: 18px 24px 18px 26px; gap: 40px; }
.nav.is-dark .nav__cta { background: #fff; color: var(--ink); }
.nav__burger { display: none; width: 44px; height: 44px; position: relative; }
.nav__cta .sm { display: none; }
.nav__burger span { position: absolute; left: 10px; right: 10px; height: 1px; background: currentColor; transition: transform .6s var(--ease-out), top .6s var(--ease-out); }
.nav__burger span:first-child { top: 18px; }
.nav__burger span:last-child { top: 26px; }
.nav.is-open { color: #fff; background: transparent !important; box-shadow: none !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
.nav.is-open .nav__cta { background: #fff; color: var(--ink); }
.nav.is-open .nav__burger span:first-child { top: 22px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:last-child { top: 22px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 999; visibility: hidden;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  padding: calc(var(--nav-h) + 7vh) var(--pad) 36px;
  background: radial-gradient(120% 80% at 50% 110%, #1d252d 0%, #111418 50%, #0b0c0e 100%); color: #fff;
  clip-path: inset(0% 0% 100% 0%); overflow-y: auto;
}
.menu__links { display: grid; }
.menu__links a { display: flex; align-items: baseline; gap: 18px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-family: var(--serif); font-size: clamp(2rem, 8.5vw, 3.4rem); line-height: 1.15; letter-spacing: -.03em; }
.menu__links a span { font-family: var(--sans); font-size: 11px; letter-spacing: .22em; color: var(--sub-dark); }
.menu__links a[aria-current] { font-style: italic; color: var(--blue-light); }
.menu__foot { display: grid; justify-items: start; gap: 8px; }
.menu__h { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--sub-dark); }
.menu__soon { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 18px; }

/* ---------- Page transition ---------- */
.curtain { position: fixed; inset: 0; z-index: 9800; display: grid; place-items: center; background: var(--paper); clip-path: inset(100% 0% 0% 0%); pointer-events: none; }
.curtain.is-cover { clip-path: inset(0% 0% 0% 0%); }
.curtain .logo { height: 26px; color: var(--ink); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh; height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: var(--paper);
}
.hero__deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__halo {
  position: absolute; z-index: 0;
  width: 70vw; height: 70vw; right: -12vw; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(closest-side, rgba(151,184,207,.35), rgba(220,233,243,.35) 45%, rgba(250,250,250,0) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  align-items: center;
  padding: var(--nav-h) var(--pad) 40px;
  pointer-events: none;
}
.hero__copy { pointer-events: auto; max-width: 760px; }
.hero__copy .eyebrow { margin-bottom: 38px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.3rem, 6.5vw, 7.8rem);
  line-height: .96;
  letter-spacing: -.045em;
}
.hero__title .line { display: block; white-space: nowrap; overflow: hidden; padding: .02em .1em .12em 0; margin-bottom: -.1em; }
.hero__title .line > * { display: inline-block; will-change: transform; }
.hero__title em { color: var(--title-gray); padding-right: .08em; }
.hero__sub { margin-top: 40px; font-size: clamp(1.05rem, 1.35vw, 1.3rem); line-height: 1.65; max-width: 520px; color: #2a2e32; }
.hero__ctas { margin-top: 44px; display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.hero__stage { height: min(64vh, 640px); width: 100%; }
.hero__stage--b { position: absolute; left: 6vw; top: 50%; width: 40vw; height: 66vh; transform: translateY(-46%); pointer-events: none; }

.hero__time {
  position: absolute; z-index: 4; left: var(--pad); bottom: 34px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.hero__time b { font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: .12em; }
.hero__time .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(62,109,142,.45); } 70% { box-shadow: 0 0 0 9px rgba(62,109,142,0); } 100% { box-shadow: 0 0 0 0 rgba(62,109,142,0); } }

.hero__rail {
  position: absolute; z-index: 4; right: var(--pad); bottom: 34px;
  width: min(46vw, 820px);
  display: flex; align-items: center; gap: 22px;
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--title-gray);
}
.hero__rail span { transition: color .5s; }
.hero__rail span.on { color: var(--ink); }
.hero__rail i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), var(--blue-light), var(--line)); }
.hero__rail-dot {
  position: absolute; left: 0; top: 50%; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 0 5px rgba(62,109,142,.14);
}

/* anchored tags */
.tags-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 4; pointer-events: none; overflow: visible; }
.tags-lines line { stroke: var(--blue); stroke-width: 1; stroke-dasharray: 3 4; opacity: .55; }
.tag {
  position: absolute; left: 0; top: 0; z-index: 5;
  display: grid; grid-template-columns: auto 1fr; column-gap: 12px;
  align-items: center;
  padding: 12px 18px 12px 14px;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 40px -18px rgba(24,45,64,.35), 0 0 0 1px rgba(17,19,21,.04);
  white-space: nowrap;
  opacity: 0;
  will-change: transform;
  pointer-events: none;
}
.tag i { grid-row: span 2; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(62,109,142,.15); }
.tag__k { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--sub); }
.tag__v { font-size: 14px; color: var(--ink); }

/* flip reveal */
.hero__reveal {
  position: absolute; z-index: 5;
  right: var(--pad); top: 50%;
  width: min(470px, 38vw);
  transform: translateY(-50%);
  pointer-events: none;
}
.hero__reveal > * { opacity: 0; }
.hero__reveal .eyebrow { margin-bottom: 22px; }
.hero__reveal-title { font-size: clamp(2.2rem, 3.3vw, 3.4rem); line-height: 1.02; letter-spacing: -.035em; }
.hero__reveal-sub { margin-top: 22px; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 420px; }
/* ==========================================================================
   MAISONS
   ========================================================================== */
.maisons {
  position: relative; z-index: 2;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 0 58px;
  text-align: center;
}
.marquee {
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: clamp(60px, 8vw, 140px); padding-right: clamp(60px, 8vw, 140px); }
.marquee__group > span { color: #5d6368; transition: color .4s, opacity .4s; white-space: nowrap; line-height: 1; }
.marquee:hover .marquee__group > span { opacity: .45; }
.marquee:hover .marquee__group > span:hover { opacity: 1; color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }
.m-pragma { font-family: var(--sans); font-weight: 600; font-size: 38px; letter-spacing: -.035em; }
.m-strehler { font-family: var(--serif); font-size: 34px; display: grid; line-height: .95 !important; }
.m-strehler small { font-size: 22px; }
.m-jenkell { font-family: var(--sans); font-weight: 400; font-size: 27px; letter-spacing: .2em; }
.m-triton { font-family: var(--serif); font-size: 31px; letter-spacing: .16em; }
.m-ange { font-family: var(--serif); font-size: 23px; letter-spacing: .14em; }
.m-lederer { font-family: var(--serif); font-size: 38px; letter-spacing: .02em; }

/* ==========================================================================
   01 · MANIFESTO
   ========================================================================== */
.manifesto {
  position: relative;
  height: 100vh; height: 100svh;
  min-height: 640px;
  display: grid; place-items: center;
  overflow: hidden;
  text-align: center;
}
.manifesto__field { position: absolute; inset: 0; width: 100%; height: 100%; }
.manifesto__inner { position: relative; z-index: 1; padding: 0 var(--pad); display: grid; justify-items: center; }
.manifesto .eyebrow { color: var(--muted); margin-bottom: 64px; }
.manifesto__title {
  font-size: clamp(2.4rem, 5.5vw, 6.2rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.manifesto__title .sw { display: inline-block; will-change: filter, opacity; }
.manifesto__rule { display: block; width: 1px; height: 70px; margin: 56px auto 34px; background: var(--blue); transform-origin: top; }
.manifesto__sub { color: #50575c; font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.7; }
.manifesto__legend { display: flex; gap: 28px; margin-top: 44px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--title-gray); }
.manifesto__legend span { display: inline-flex; align-items: center; gap: 10px; }
.manifesto__legend i { width: 8px; height: 8px; border-radius: 50%; }
.manifesto__legend .o { border: 1px solid #b5bec5; }
.manifesto__legend .k { background: var(--title-gray); box-shadow: 0 0 0 4px rgba(137,148,158,.16); }

/* ==========================================================================
   02 · JOURNEY
   ========================================================================== */
.journey { position: relative; height: 100vh; height: 100svh; min-height: 700px; padding: 0 clamp(12px, 2.6vw, 48px); }
.journey__frame {
  position: relative;
  height: calc(100% - 100px);
  margin-top: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  background:
    radial-gradient(900px 700px at 78% 50%, rgba(151,184,207,.28), rgba(151,184,207,0) 70%),
    linear-gradient(180deg, #f6f8fa, #eef3f7);
  overflow: hidden;
}
.journey__left { position: relative; padding: clamp(40px, 6vh, 90px) clamp(28px, 5vw, 90px) clamp(30px, 5vh, 60px); display: flex; flex-direction: column; }
.journey__count { margin-top: clamp(30px, 6vh, 80px); font-size: 14px; letter-spacing: .22em; color: var(--sub); font-variant-numeric: tabular-nums; }
.journey__texts { position: relative; margin-top: 22px; flex: 1; }
.jtext { position: absolute; inset: 0 0 auto 0; }
.jtext h3 { font-size: clamp(2.6rem, 5vw, 5.4rem); line-height: 1; letter-spacing: -.04em; }
.jtext p { margin-top: 34px; max-width: 480px; font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.75; color: var(--muted); }
.jtext p { opacity: 0; transform: translateY(16px); }

.journey__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.jstep { text-align: left; font-size: 15px; color: var(--muted); padding-top: 22px; position: relative; transition: color .4s; }
.jstep i { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: #d3dde5; overflow: hidden; }
.jstep i b { position: absolute; inset: 0; background: var(--blue); transform-origin: left; transform: scaleX(0); }
.jstep span { display: block; font-size: 13px; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.jstep.is-active { color: var(--ink); }

.journey__right { position: relative; display: grid; place-items: center; perspective: 1600px; }
.journey__num {
  position: absolute; left: 6%; top: 7%;
  font-family: var(--serif);
  font-size: clamp(7rem, 14vw, 14rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(62,109,142,.35);
  pointer-events: none;
}
.journey__num span { position: absolute; left: 0; top: 0; opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.journey__num span.on { opacity: 1; transform: none; }
.journey__orbits i {
  position: absolute; left: 50%; top: 50%; border-radius: 50%;
  border: 1px solid rgba(62,109,142,.16);
  transform: translate(-50%, -50%);
}
.journey__orbits i:nth-child(1) { width: 480px; height: 480px; }
.journey__orbits i:nth-child(2) { width: 640px; height: 640px; border-style: dashed; animation: spin 90s linear infinite; }
.journey__orbits i:nth-child(3) { width: 820px; height: 820px; opacity: .6; }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* phone */
.phone { position: relative; z-index: 2; transform-style: preserve-3d; will-change: transform; margin-left: 16%; }
.phone__body {
  width: 292px; height: 600px;
  border-radius: 50px;
  background: linear-gradient(145deg, #2a2d31, #0b0c0e 40%, #1b1d20);
  padding: 11px;
  box-shadow:
    inset 0 0 0 1.5px #4a4f56,
    inset 0 0 0 3px #0d0e10,
    inset 1px 1px 0 3.5px rgba(255,255,255,.06);
  position: relative;
  transform-style: preserve-3d;
}
/* the thickness: 20 stacked rims, lit like brushed titanium */
.phone__layer { position: absolute; inset: 0; border-radius: 50px; pointer-events: none;
  background: linear-gradient(100deg, #111214 0%, #5a5f66 5%, #2a2d31 14%, #1b1d20 50%, #2a2d31 86%, #5a5f66 95%, #111214 100%); }
.phone__layer--back { background: #0e0f11; box-shadow: 0 70px 90px -30px rgba(24,45,64,.55), 0 30px 40px -24px rgba(24,45,64,.5); }
.phone__key { position: absolute; width: 4px; border-radius: 2px; pointer-events: none; transform: translateZ(-10px);
  background: linear-gradient(90deg, #15171a, #5a5f66 50%, #15171a); }
.phone__key--l { left: -3px; }
.phone__key--r { right: -3px; }
.phone__island { position: absolute; z-index: 5; top: 22px; left: 50%; width: 92px; height: 26px; border-radius: 20px; background: #050505; transform: translateX(-50%); }
.phone__screen { position: relative; height: 100%; border-radius: 40px; overflow: hidden; background: #fff; font-size: 12px; color: var(--ink); }
.sbar { position: absolute; z-index: 4; top: 0; left: 0; right: 0; height: 50px; display: flex; justify-content: space-between; align-items: center; padding: 6px 30px 0 34px; font-weight: 600; font-size: 13px; }
.sbar__r { display: flex; align-items: center; gap: 3px; }
.sbar__r i { width: 3px; background: var(--ink); border-radius: 1px; }
.sbar__r i:nth-child(1) { height: 5px; } .sbar__r i:nth-child(2) { height: 7px; } .sbar__r i:nth-child(3) { height: 9px; }
.sbar__r b { width: 22px; height: 10px; border-radius: 3px; border: 1px solid var(--ink); margin-left: 6px; position: relative; }
.sbar__r b::after { content: ""; position: absolute; inset: 1.5px 5px 1.5px 1.5px; background: var(--ink); border-radius: 1px; }
.home-ind { position: absolute; z-index: 4; bottom: 8px; left: 50%; width: 110px; height: 4px; border-radius: 3px; background: var(--ink); transform: translateX(-50%); }

.screen {
  position: absolute; inset: 0;
  padding: 58px 20px 26px;
  opacity: 0; visibility: hidden;
  transition: opacity .6s var(--ease-out), transform .8s var(--ease-out), visibility 0s .6s;
  transform: translateY(18px) scale(.985);
}
.screen.is-active { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.screen > * { transition: opacity .6s var(--ease-out), transform .7s var(--ease-out); }
.screen:not(.is-active) > * { opacity: 0; transform: translateY(10px); }
.screen.is-active > *:nth-child(2) { transition-delay: .06s; } .screen.is-active > *:nth-child(3) { transition-delay: .12s; }
.screen.is-active > *:nth-child(4) { transition-delay: .18s; } .screen.is-active > *:nth-child(5) { transition-delay: .24s; }
.screen.is-active > *:nth-child(6) { transition-delay: .3s; } .screen.is-active > *:nth-child(7) { transition-delay: .36s; }

.s-brand { text-align: center; font-family: var(--sans); font-weight: 600; font-size: 25px; letter-spacing: -.035em; color: var(--ink); }
.s-hero { position: relative; margin: 6px auto 0; width: 190px; height: 210px; display: grid; place-items: center; }
.s-hero img { position: relative; height: 210px; width: auto; filter: drop-shadow(0 14px 18px rgba(20,35,50,.25)); }
.s-name { text-align: center; font-size: 14px; font-weight: 500; margin-top: 8px; }
.s-ref { text-align: center; font-size: 11px; color: var(--muted); margin-top: 2px; }
.s-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-top: 14px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; text-align: center; }
.s-tabs span { padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.s-tabs .on { background: var(--ink); color: #fff; border-color: var(--ink); }
.s-list { list-style: none; margin: 4px 0 0; padding: 0; }
.s-list li { display: flex; align-items: center; gap: 10px; padding: 11px 2px; border-bottom: 1px solid #eef0f2; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; }
.s-list .chev-r { margin-left: auto; width: 6px; height: 6px; border-right: 1px solid var(--muted); border-bottom: 1px solid var(--muted); transform: rotate(45deg); }
.s-list .s-auth em { margin-left: auto; font-style: normal; font-size: 9px; letter-spacing: .12em; color: #2f7d58; background: #e7f4ed; padding: 4px 8px; border-radius: 20px; }
.ic { width: 14px; height: 14px; border: 1.3px solid var(--ink); border-radius: 3px; flex: none; position: relative; }
.ic-info, .ic-print { border-radius: 50%; }
.ic-shield { border-radius: 3px 3px 7px 7px; }
.ic-star { border-radius: 50%; border-style: dotted; }
.ic-play { border-radius: 50%; }
.ic-play::after { content: ""; position: absolute; left: 4.5px; top: 3px; border: 3.5px solid transparent; border-left: 5px solid var(--ink); }

.s-title { font-family: var(--serif); font-size: 26px; letter-spacing: -.02em; margin-top: 8px; }
.s-owner { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 14px; background: var(--ice-2); border: 1px solid #e3e9ee; }
.s-owner b { display: block; font-size: 14px; font-weight: 500; }
.s-owner small { color: var(--muted); font-size: 10.5px; }
.s-badge { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 11px; }
.s-avatar { width: 38px; height: 38px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--blue-light), var(--blue)); color: #fff; display: grid; place-items: center; font-size: 12px; letter-spacing: .06em; }
.s-avatar--new { background: linear-gradient(135deg, #cfd6dc, #8b979f); }
.s-steps { list-style: none; margin: 20px 0 0; padding: 0 0 0 18px; position: relative; }
.s-steps::before { content: ""; position: absolute; left: 4px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.s-steps li { position: relative; font-size: 11.5px; color: var(--muted); padding-bottom: 14px; line-height: 1.45; }
.s-steps li b { display: block; color: var(--ink); font-weight: 500; font-size: 12px; }
.s-steps li::before { content: ""; position: absolute; left: -18px; top: 4px; width: 9px; height: 9px; border-radius: 50%; background: #fff; border: 1px solid var(--blue); }
.s-steps li.done::before { background: var(--blue); }
.s-steps li.live::before { animation: pulse 1.6s infinite; background: var(--blue-light); }
.s-transfer { display: flex; align-items: center; gap: 10px; margin-top: 4px; padding: 14px; border: 1px dashed #c9d5de; }
.s-flow { flex: 1; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.s-flow i { position: absolute; top: -1px; left: -30%; width: 30%; height: 3px; background: linear-gradient(90deg, transparent, var(--blue), transparent); animation: flow 1.8s var(--ease-io) infinite; }
@keyframes flow { to { left: 100%; } }
.s-ok { margin-top: 14px; text-align: center; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #2f7d58; }

.s-check { width: 86px; height: 86px; margin: 30px auto 0; }
.s-check svg { width: 100%; height: 100%; fill: none; stroke: var(--blue); stroke-width: 1.6; }
.s-check circle { stroke-dasharray: 151; stroke-dashoffset: 151; }
.s-check path { stroke-dasharray: 36; stroke-dashoffset: 36; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.screen.is-active .s-check circle { animation: draw 1s .2s var(--ease-out) forwards; }
.screen.is-active .s-check path { animation: draw .6s .9s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.s-big { text-align: center; font-family: var(--serif); font-size: 24px; margin-top: 18px; letter-spacing: -.02em; }
.s-muted { text-align: center; color: var(--muted); font-size: 11.5px; margin: 6px 16px 0; line-height: 1.5; }
.s-meta { margin-top: 22px; border-top: 1px solid var(--line); }
.s-meta div { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eef0f2; font-size: 11px; }
.s-meta span { color: var(--muted); }
.s-meta b { font-weight: 500; }
.s-wallet { margin-top: 18px; background: var(--ink); color: #fff; text-align: center; padding: 12px; font-size: 11.5px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 8px; }
.s-wallet span { width: 18px; height: 13px; border-radius: 3px; background: linear-gradient(180deg, #5aa0e0 0 33%, #f0b24a 33% 66%, #e8606a 66%); }

.s-notes { margin-top: 18px; display: grid; gap: 10px; }
.s-note { display: flex; gap: 12px; padding: 13px 14px; background: #fff; border: 1px solid #e6ebef; box-shadow: 0 10px 20px -16px rgba(24,45,64,.4); border-radius: 12px; }
.s-note .ic { margin-top: 2px; border-color: var(--sub); }
.s-note b { display: block; font-size: 12.5px; font-weight: 500; }
.s-note small { display: block; color: var(--muted); font-size: 10.5px; line-height: 1.45; margin-top: 2px; }
.screen[data-screen="3"] .s-note { transition: opacity .6s var(--ease-out), transform .7s var(--ease-out); }
.screen[data-screen="3"]:not(.is-active) .s-note { opacity: 0; transform: translateY(-14px) scale(.96); }
.screen[data-screen="3"].is-active .s-note:nth-child(2) { transition-delay: .25s; }
.screen[data-screen="3"].is-active .s-note:nth-child(3) { transition-delay: .5s; }
.screen[data-screen="3"].is-active .s-note:nth-child(4) { transition-delay: .75s; }

/* brand-side insight cards */
.insight {
  position: absolute; z-index: 3;
  display: flex; gap: 14px; align-items: center;
  padding: 16px 20px 16px 16px;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px -30px rgba(24,45,64,.45), 0 0 0 1px rgba(17,19,21,.05);
  opacity: 0;
  transform: translateY(20px) scale(.96);
  transition: opacity .7s var(--ease-out), transform .9s var(--ease-out);
  pointer-events: none;
}
.insight.on { opacity: 1; transform: none; transition-delay: .25s; }
.insight i { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(62,109,142,.14); flex: none; }
.insight b { display: block; font-size: 14px; font-weight: 500; }
.insight small { display: block; font-size: 12px; color: var(--muted); }
[data-insight="0"], [data-insight="1"], [data-insight="3"] { left: 3%; top: 60%; }
.insight--chart { left: 2%; top: 44%; display: block; width: 250px; padding: 18px 20px; }
.insight--chart ul { list-style: none; padding: 0; margin: 14px 0 10px; display: grid; gap: 9px; }
.insight--chart li { display: grid; grid-template-columns: 70px 1fr; align-items: center; font-size: 12px; color: var(--muted); }
.insight--chart li i { height: 6px; border-radius: 0; background: linear-gradient(90deg, var(--blue), var(--blue-light)); box-shadow: none; width: auto; transform-origin: left; transform: scaleX(0); transition: transform 1.1s var(--ease-out); }
.insight--chart.on li i { transform: scaleX(var(--v)); }
.insight--chart.on li:nth-child(2) i { transition-delay: .4s; } .insight--chart.on li:nth-child(3) i { transition-delay: .5s; }
.insight--chart.on li:nth-child(4) i { transition-delay: .6s; } .insight--chart.on li:nth-child(5) i { transition-delay: .7s; }
.insight--chart.on li:nth-child(1) i { transition-delay: .3s; }
.insight--chart small { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--title-gray); }

.journey__caption { position: absolute; z-index: 4; bottom: 9%; right: 7%; width: min(360px, 80%); height: 96px; }
.jcap {
  position: absolute; inset: 0;
  background: #fff;
  padding: 22px 28px;
  box-shadow: 0 30px 60px -30px rgba(24,45,64,.4);
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s var(--ease-out), transform .7s var(--ease-out);
}
.jcap.is-active { opacity: 1; transform: none; }
.jcap b { display: block; font-size: 18px; font-weight: 400; }
.jcap span { display: block; margin-top: 4px; font-size: 14px; color: var(--muted); }

/* ==========================================================================
   WALLET
   ========================================================================== */
.wallet {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: grid; align-items: center;
  padding: 96px var(--pad) 56px;
  background: linear-gradient(180deg, var(--paper), #edf2f7 30%, #eaf0f6 70%, var(--paper));
  overflow: hidden;
}
.wallet__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 6vw; align-items: center; max-width: 1500px; margin: 0 auto; }
.wallet__copy .eyebrow { margin-bottom: 30px; }
.wallet__title { font-size: clamp(2.6rem, 4.7vw, 5.4rem); line-height: 1; letter-spacing: -.045em; margin-bottom: 34px; }
.wallet__copy > p:not(.eyebrow) { max-width: 560px; font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.8; color: var(--muted); margin-bottom: 22px; }
.wallet__steps { list-style: none; margin: 30px 0 30px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 600px; }
.wallet__steps li { border-top: 1px solid #c9d5de; padding-top: 16px; font-size: 14px; line-height: 1.4; }
.wallet__steps span { display: block; font-size: 12px; color: var(--sub); letter-spacing: .12em; margin-bottom: 6px; }
.wallet__chips { display: flex; gap: 14px; margin-bottom: 32px; }
.chip { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border: 1px solid #cdd8e0; background: rgba(255,255,255,.7); font-size: 14px; color: var(--sub); }
.chip svg { width: 15px; height: 15px; fill: currentColor; }

.wallet__stage { position: relative; display: grid; place-items: center; min-height: min(760px, calc(100svh - 150px)); perspective: 1400px; }
.wallet__stage > .wphone, .wallet__stage > .pass-dock, .wallet__stack { grid-area: 1 / 1; }
.pass-dock { position: relative; z-index: 2; will-change: transform; transform-style: preserve-3d; }

/* the Wallet, on the phone */
.wphone { position: relative; }
.wphone__body {
  position: relative; height: min(700px, calc(100svh - 180px)); aspect-ratio: 393 / 852;
  border-radius: 54px; padding: 11px; opacity: 0;
  background: linear-gradient(145deg, #2a2d31, #0b0c0e 40%, #1b1d20);
  box-shadow: inset 0 0 0 1.5px #3a3e43, inset 0 0 0 3px #0d0e10, 0 70px 100px -40px rgba(24,45,64,.5), 0 30px 40px -30px rgba(24,45,64,.45);
}
.wphone__island { position: absolute; z-index: 5; top: 22px; left: 50%; width: 30%; height: 27px; border-radius: 20px; background: #050505; transform: translateX(-50%); }
.wphone__screen { position: relative; height: 100%; border-radius: 44px; overflow: hidden; background: linear-gradient(180deg, #f4f5f7, #eceef1); color: var(--ink); }
.wphone__bar { position: absolute; top: 54px; left: 18px; right: 18px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 500; }
.wphone__dots { width: 28px; height: 28px; border-radius: 50%; background: rgba(17,19,21,.07); display: flex; align-items: center; justify-content: center; gap: 2.5px; }
.wphone__dots i { width: 3px; height: 3px; border-radius: 50%; background: var(--ink); }
.wphone__slot { position: absolute; top: 94px; left: 14px; right: 14px; aspect-ratio: 360 / 560; }
.wphone__others { position: absolute; left: 14px; right: 14px; bottom: 30px; height: 58px; }
.wphone__others i { position: absolute; left: 0; right: 0; height: 58px; border-radius: 16px 16px 0 0; }
.wphone__others i:nth-child(1) { bottom: 16px; background: linear-gradient(160deg, #c7d7e4, #97b8cf); }
.wphone__others i:nth-child(2) { bottom: 0; background: linear-gradient(160deg, #efe5d4, #d8c7a6); box-shadow: 0 -6px 14px -8px rgba(0,0,0,.25); }
.wphone__notif {
  position: absolute; z-index: 5; top: 60px; left: 17px; right: 17px;
  display: flex; gap: 11px; align-items: flex-start; padding: 12px 14px;
  border-radius: 22px; background: rgba(246,246,248,.84);
  -webkit-backdrop-filter: blur(22px) saturate(1.6); backdrop-filter: blur(22px) saturate(1.6);
  box-shadow: 0 18px 40px -18px rgba(14,28,40,.45), inset 0 0 0 1px rgba(255,255,255,.6);
  font-size: 12.5px; line-height: 1.35; color: var(--ink); opacity: 0;
}
.wphone__app { flex: none; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(160deg, #2a2e33, #0c0d0f); color: #fff; font-weight: 600; font-size: 16px; letter-spacing: -.03em; }
.wphone__notif p:first-child { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 2px; }
.wphone__notif b { font-weight: 600; }
.wphone__notif small { font-size: 11px; color: rgba(17,19,21,.45); }
.wphone__notif > div { flex: 1; min-width: 0; }
.wallet__stack i {
  position: absolute; left: 50%; top: 50%;
  width: 360px; height: 560px; border-radius: 22px;
  transform-origin: center;
}
.wallet__stack i:nth-child(1) { background: linear-gradient(160deg, #c7d7e4, #97b8cf); opacity: .55; }
.wallet__stack i:nth-child(2) { background: linear-gradient(160deg, #e9dcc6, #cdb994); opacity: .5; }
.pass { position: relative; width: 360px; height: 560px; transform-style: preserve-3d; will-change: transform; }
.pass__inner {
  position: absolute; inset: 0;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, #2a2e33 0%, #16181b 45%, #0c0d0f 100%);
  color: #fff;
  padding: 26px 26px 22px;
  box-shadow: 0 80px 120px -50px rgba(14,28,40,.65), 0 30px 50px -30px rgba(14,28,40,.5), inset 0 0 0 1px rgba(255,255,255,.08);
  display: flex; flex-direction: column;
}
.pass__sheen {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at var(--mx, 30%) var(--my, 10%), rgba(255,255,255,.09), rgba(255,255,255,0) 45%);
  transition: opacity .4s;
}
.pass__top, .pass__model, .pass__grid, .pass__qr, .pass__top { display: flex; justify-content: space-between; align-items: flex-start; }
.pass__brand { display: flex; gap: 12px; align-items: center; }
.pass__brand { display: grid !important; gap: 4px; }
.pass__logo { font-family: var(--sans); font-weight: 600; font-size: 26px; letter-spacing: -.035em; line-height: 1; }
.pass__brand small { display: block; font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.pass__field span { display: block; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.pass__field b { display: block; font-weight: 400; font-size: 17px; margin-top: 3px; }
.pass__field--r { text-align: right; }
.pass__model { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; height: 110px; }
.pass__model span { display: block; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.pass__model b { display: block; font-weight: 400; font-family: var(--serif); font-size: 24px; margin-top: 6px; line-height: 1.1; max-width: 170px; }
.pass__model img { height: 128px; width: auto; margin-right: 4px; filter: drop-shadow(0 10px 14px rgba(0,0,0,.5)); }
.pass__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 10px; margin-top: 16px; }
.pass__live { display: inline-flex !important; align-items: center; gap: 8px; justify-content: flex-end; }
.pass__live i { width: 7px; height: 7px; border-radius: 50%; background: #62c795; box-shadow: 0 0 0 0 rgba(98,199,149,.5); animation: pulseG 2s infinite; }
@keyframes pulseG { 70% { box-shadow: 0 0 0 8px rgba(98,199,149,0); } 100% { box-shadow: 0 0 0 0 rgba(98,199,149,0); } }
.pass__qr { margin: auto auto 0; background: #fff; padding: 10px; border-radius: 10px; width: 136px; height: 136px; }
.pass__qr canvas { width: 116px; height: 116px; display: block; image-rendering: pixelated; }
.wallet__hint { position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--title-gray); }

/* ==========================================================================
   03 · LIFECYCLE
   ========================================================================== */
.life { position: relative; height: 100vh; height: 100svh; min-height: 680px; overflow: hidden; background: var(--paper); }
.life__head { position: absolute; z-index: 3; top: calc(var(--nav-h) + 3vh); left: var(--pad); }
.life__head .eyebrow { margin-bottom: 22px; }
.life__title { font-size: clamp(2.4rem, 4.4vw, 4.6rem); line-height: 1.02; letter-spacing: -.04em; }
.life__viewport { position: absolute; inset: 0; }
.life__track {
  position: absolute; left: 0; top: 0; bottom: 0;
  display: flex; align-items: flex-end;
  gap: clamp(60px, 7vw, 140px);
  padding: 0 30vw 9vh 44vw;
  will-change: transform;
}
.life__rail { position: absolute; left: 0; right: 0; bottom: calc(9vh + 290px); height: 1px; background: var(--line); }
.life__rail span { position: absolute; inset: 0; background: var(--blue); transform-origin: left; transform: scaleX(0); }
.chapter { position: relative; flex: none; width: clamp(290px, 25vw, 400px); height: 290px; padding-top: 52px; }
.chapter__year {
  position: absolute; left: -.04em; bottom: calc(100% + 26px);
  font-family: var(--serif);
  font-size: clamp(6rem, 10vw, 10.5rem);
  line-height: .8;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1px #c3ced7;
  pointer-events: none;
  transition: -webkit-text-stroke-color .6s;
}
.chapter.on .chapter__year { -webkit-text-stroke-color: var(--sub); }
.chapter__node { position: absolute; left: 0; top: -6px; width: 13px; height: 13px; border-radius: 50%; background: var(--paper); border: 1px solid #b7c3cc; transition: background .5s, border-color .5s, box-shadow .5s; }
.chapter.on .chapter__node { background: var(--blue); border-color: var(--sub); box-shadow: 0 0 0 7px rgba(62,109,142,.14); }
.chapter { transform: translateY(0); }
.chapter__where { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--sub); }
.chapter h3 { font-size: clamp(1.9rem, 2.6vw, 2.6rem); line-height: 1.05; letter-spacing: -.03em; margin-top: 14px; }
.chapter > p:not(.chapter__where) { margin-top: 16px; color: var(--muted); line-height: 1.75; font-size: 15.5px; }
.chapter__event { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 9px 14px; border: 1px solid #cbd6de; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--sub); background: #fff; }
.chapter__event::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.chapter > *:not(.chapter__year):not(.chapter__node) { opacity: .25; transition: opacity .7s var(--ease-out); }
.chapter.on > *:not(.chapter__year):not(.chapter__node) { opacity: 1; }
.life__end { flex: none; width: 360px; display: grid; justify-items: center; align-self: flex-end; margin-bottom: 40px; }
.life__end img { width: auto; height: 300px; filter: drop-shadow(0 30px 40px rgba(20,35,50,.3)); }
.life__end p { margin-top: 18px; font-family: var(--serif); font-size: 28px; letter-spacing: -.02em; }
.life__end em { color: var(--title-gray); }

.ledger {
  position: absolute; z-index: 4; right: var(--pad); top: calc(var(--nav-h) + 3vh);
  width: 300px;
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px -34px rgba(24,45,64,.4), 0 0 0 1px rgba(17,19,21,.05);
  padding: 18px 20px 12px;
  font-size: 12.5px;
}
.ledger header { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--title-gray); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.ledger header b { font-weight: 500; color: var(--sub); }
.ledger__list { list-style: none; margin: 0; padding: 0; min-height: 36px; }
.ledger__list li { display: grid; grid-template-columns: 44px 1fr auto; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid #eef0f2; animation: ledgerIn .6s var(--ease-out); font-variant-numeric: tabular-nums; }
.ledger__list li:last-child { border-bottom: 0; }
.ledger__list li:nth-child(n+5) { display: none; }
.ledger__list li span { color: var(--title-gray); }
.ledger__list li em { font-style: normal; font-size: 10px; color: #2f7d58; letter-spacing: .1em; }
.ledger__list li.empty { display: block; color: var(--title-gray); font-style: italic; font-family: var(--serif); animation: none; }
@keyframes ledgerIn { from { opacity: 0; transform: translateY(-8px); } }

/* ==========================================================================
   04 · PLATFORM
   ========================================================================== */
.platform { position: relative; padding: clamp(110px, 16vh, 180px) var(--pad) clamp(90px, 12vh, 150px); max-width: 1600px; margin: 0 auto; }
.platform__head { display: grid; justify-items: center; text-align: center; margin-bottom: 70px; }
.platform__head .eyebrow { margin-bottom: 30px; }
.platform__title { font-size: clamp(2.4rem, 5vw, 5.8rem); line-height: 1.04; letter-spacing: -.045em; }

.console { background: #fff; box-shadow: 0 60px 120px -60px rgba(24,45,64,.35), 0 0 0 1px rgba(17,19,21,.06); }
.console__bar { display: flex; align-items: center; gap: 18px; padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: 12px; color: var(--muted); }
.console__dots { display: flex; gap: 6px; }
.console__dots i { width: 9px; height: 9px; border-radius: 50%; background: #e1e5e8; }
.console__title { letter-spacing: .06em; }
.console__live { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: #2f7d58; }
.console__live i { width: 7px; height: 7px; border-radius: 50%; background: #3f9a6e; animation: pulseG 1.8s infinite; }
.console__body { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); min-height: 600px; }
.globe { position: relative; display: grid; place-items: center; background: radial-gradient(closest-side, #f0f5f9, #fff); border-right: 1px solid var(--line); overflow: hidden; touch-action: pan-y; }
.globe__canvas { width: 100%; height: 100%; min-height: 560px; display: block; }
.console__side { display: flex; flex-direction: column; min-width: 0; }
.kpis { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.kpi { padding: 26px 26px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kpi:nth-child(2n) { border-right: 0; }
.kpi:nth-child(n+3) { border-bottom: 0; }
.kpi span { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.kpi b { display: block; margin-top: 10px; font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 2.8vw, 2.8rem); letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.kpi b.bump { animation: bump .7s var(--ease-out); }
@keyframes bump { 30% { color: var(--sub); } }
.console__note { padding: 12px 20px; font-size: 11px; letter-spacing: .1em; color: var(--title-gray); border-top: 1px solid var(--line); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 90px; }
.pillar {
  position: relative;
  padding: 36px 34px 34px;
  min-height: 420px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .8s var(--ease-out), box-shadow .8s var(--ease-out);
}
.pillar::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .5s;
  background: radial-gradient(420px circle at var(--x, 50%) var(--y, 50%), rgba(151,184,207,.28), transparent 60%);
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -40px rgba(24,45,64,.35); }
.pillar:hover::before { opacity: 1; }
.pillar__n { font-size: 13px; color: var(--sub); letter-spacing: .12em; }
.pillar h3 { margin-top: 26px; font-size: clamp(2rem, 2.6vw, 2.7rem); line-height: 1.05; letter-spacing: -.03em; }
.pillar p { margin-top: 16px; color: var(--muted); line-height: 1.7; max-width: 300px; }
.pillar__tag { margin-top: auto; padding-top: 30px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--sub); }
.pillar__viz { position: absolute; right: 26px; bottom: 26px; }
.pillar__viz--nodes { width: 150px; height: 110px; }
.pillar__viz--nodes i { position: absolute; font-style: normal; font-size: 10px; letter-spacing: .12em; padding: 6px 9px; background: var(--ice-2); border: 1px solid #dde5eb; color: var(--muted); }
.pillar__viz--nodes i:nth-child(1) { left: 0; top: 0; } .pillar__viz--nodes i:nth-child(2) { right: 0; top: 18px; } .pillar__viz--nodes i:nth-child(3) { left: 24px; bottom: 0; }
.pillar__viz--nodes b { position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; margin: -7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 8px rgba(62,109,142,.12); animation: pulse 2.4s infinite; }
.pillar__viz--url span { display: inline-block; font-size: 12px; padding: 9px 14px; border: 1px solid #dde5eb; background: var(--ice-2); color: var(--muted); }
.pillar__viz--url b { font-weight: 500; color: var(--sub); }
.pillar__viz--seg { display: grid; grid-template-columns: repeat(6, 14px); gap: 7px; }
.pillar__viz--seg i { width: 14px; height: 14px; border-radius: 50%; border: 1px solid #c3ced7; transition: background .5s, border-color .5s; }
.pillar:hover .pillar__viz--seg i:nth-child(3n+1), .pillar:hover .pillar__viz--seg i:nth-child(5) { background: var(--blue); border-color: var(--sub); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 6vw; padding: clamp(60px, 10vh, 120px) var(--pad) clamp(100px, 14vh, 170px); max-width: 1600px; margin: 0 auto; align-items: start; }
.faq__title { font-size: clamp(2.6rem, 4.8vw, 5.2rem); line-height: 1; letter-spacing: -.04em; position: sticky; top: 120px; }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 30px 0; font-size: clamp(1.1rem, 1.5vw, 1.4rem); cursor: pointer; transition: color .3s; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--sub); }
.qa summary i { position: relative; width: 16px; height: 16px; flex: none; }
.qa summary i::before, .qa summary i::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: currentColor; transition: transform .5s var(--ease-out); }
.qa summary i::after { transform: rotate(90deg); }
.qa[open] summary i::after { transform: rotate(0); }
.qa__a { overflow: hidden; }
.qa__a p { padding: 0 60px 32px 0; color: var(--muted); line-height: 1.8; font-size: 16px; max-width: 700px; }

/* ==========================================================================
   CTA + FOOTER
   ========================================================================== */
.cta {
  position: relative;
  min-height: 78vh; min-height: 78svh;
  display: grid; place-items: center;
  padding: 16vh 0 14vh;
  background:
    radial-gradient(60% 70% at 50% 62%, rgba(214,228,240,.75) 0%, rgba(235,242,247,.5) 45%, rgba(250,250,250,0) 80%),
    linear-gradient(180deg, var(--paper) 0%, #f3f6f9 100%);
  color: var(--ink);
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid #d9e3ea;
}
.cta__inner { position: relative; z-index: 1; padding: 0 var(--pad); display: grid; justify-items: center; }
.cta .eyebrow { margin-bottom: 38px; }
.cta__title { font-size: clamp(3rem, 8vw, 9rem); line-height: .96; letter-spacing: -.05em; }
.cta__title em { color: var(--title-gray); }
.cta__actions { margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta__mail { font-size: 14px; letter-spacing: .12em; color: var(--muted); transition: color .3s; }
.cta__mail:hover { color: var(--ink); }

.footer { position: relative; background: #0d0f11; color: rgba(255,255,255,.7); padding: 90px var(--pad) 28px; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr) 1.2fr; gap: 40px; }
.footer__cols a { display: block; width: fit-content; padding: 5px 0; font-size: 15px; transition: color .3s, transform .4s var(--ease-out); }
.footer__cols a:hover { color: #fff; transform: translateX(4px); }
.footer :focus-visible { outline-color: var(--sub-dark); }
.footer__cols a em { font-style: normal; font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-left: 6px; }
.footer__cols a[aria-disabled] { cursor: default; }
.footer__cols a[aria-disabled]:hover { color: inherit; transform: none; }
.footer__h { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 18px; }
.footer__time { font-family: var(--serif); font-size: clamp(3rem, 5vw, 5rem); line-height: 1; color: #fff; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.footer__small { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.45); }
.footer__base { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: rgba(255,255,255,.45); }
.footer__base span a { margin-left: 22px; }
.footer__base a:hover { color: #fff; }

/* reveal helpers */
[data-reveal] { opacity: 0; transform: translateY(26px); }


/* ==========================================================================
   HERO · the photographed watch (front + caseback), live small seconds
   ========================================================================== */
.pw {
  position: absolute; left: 0; top: 0; z-index: 2;
  height: 640px; aspect-ratio: 480 / 838;
  transform-origin: 50.667% 40.871%;
  perspective: 2200px;
  pointer-events: none;
  will-change: transform;
  opacity: 0;
}
.pw__tilt, .pw__flip { position: absolute; inset: 0; transform-style: preserve-3d; will-change: transform; transform-origin: 50.667% 40.871%; }
.pw__face { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.pw__face--back { transform: rotateY(180deg); }
.pw__img { position: absolute; inset: 0; width: 100%; height: 100%; filter: drop-shadow(0 34px 34px rgba(20,35,50,.2)) drop-shadow(0 8px 10px rgba(20,35,50,.12)); }
.pw__sec { position: absolute; left: 47.5%; top: 43.795%; width: 6.042%; height: auto; transform-origin: 51.2% 88.86%; will-change: transform; filter: drop-shadow(1px 1.5px 1px rgba(0,0,0,.28)); }
.pw__pin { position: absolute; left: 48.958%; top: 49.881%; width: 3.125%; height: auto; }
.pw__glare {
  position: absolute; left: 19%; top: 22.73%; width: 63.33%; height: 36.28%; border-radius: 50%;
  background: linear-gradient(115deg, rgba(255,255,255,0) 32%, rgba(255,255,255,.22) 46%, rgba(255,255,255,.05) 54%, rgba(255,255,255,0) 64%);
  background-size: 220% 220%;
  background-position: var(--gx, 60%) var(--gy, 40%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.pw__a { position: absolute; width: 1px; height: 1px; }
.pw__serial { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.pw__serial text { font-family: var(--serif); font-size: 12.5px; font-weight: 500; letter-spacing: 1.6px; dominant-baseline: central; text-anchor: middle; }
.pw__serial .cut { fill: rgba(70,70,68,.9); }
.pw__serial .lip { fill: rgba(255,255,255,.65); transform: translateY(.5px); }

/* ==========================================================================
   HERO · serial scan + activation form
   ========================================================================== */
.hero__stage--c { position: absolute; left: 12vw; top: 50%; width: 30vw; height: 10vh; transform: translateY(-50%); pointer-events: none; }
.spot {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0;
  background: radial-gradient(ellipse calc(var(--sr, 200px) * 1.5) var(--sr, 200px) at var(--sx, 30%) var(--sy, 50%),
    rgba(250,250,250,0) 0%, rgba(250,250,250,0) 42%, rgba(250,250,250,.94) 100%);
}
.scan { position: absolute; left: 0; top: 0; z-index: 4; pointer-events: none; opacity: 0; will-change: transform; }
.scan i { position: absolute; width: 18px; height: 18px; border: 0 solid var(--blue); transition: transform .6s var(--ease-out); }
.scan i:nth-child(1) { left: 0; top: 0; border-left-width: 1.5px; border-top-width: 1.5px; transform: translate(-10px, -10px); }
.scan i:nth-child(2) { right: 0; top: 0; border-right-width: 1.5px; border-top-width: 1.5px; transform: translate(10px, -10px); }
.scan i:nth-child(3) { left: 0; bottom: 0; border-left-width: 1.5px; border-bottom-width: 1.5px; transform: translate(-10px, 10px); }
.scan i:nth-child(4) { right: 0; bottom: 0; border-right-width: 1.5px; border-bottom-width: 1.5px; transform: translate(10px, 10px); }
.scan.is-on i { transform: none; }
.scan::after {
  content: ""; position: absolute; left: 6px; right: 6px; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(62,109,142,.9), transparent);
  box-shadow: 0 0 12px rgba(62,109,142,.6);
  animation: scanline 1.6s var(--ease-io) infinite;
}
@keyframes scanline { 0%, 100% { top: 8%; opacity: 0; } 20% { opacity: 1; } 50% { top: 88%; opacity: 1; } 70% { opacity: 0; } }
.scan__label {
  position: absolute; left: 50%; top: calc(100% + 18px); transform: translateX(-50%);
  white-space: nowrap; padding: 9px 14px; background: #fff;
  box-shadow: 0 16px 34px -18px rgba(24,45,64,.5), 0 0 0 1px rgba(17,19,21,.05);
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted);
}
.scan__label b { margin-left: 10px; font-size: 14px; letter-spacing: .06em; color: var(--sub); font-weight: 500; }
.serial-token {
  position: absolute; left: 0; top: 0; z-index: 7; pointer-events: none; opacity: 0;
  padding: 7px 12px; background: var(--ice); border: 1px solid #c9d8e4; color: var(--sub);
  font-size: 15px; font-weight: 500; letter-spacing: .06em; box-shadow: 0 14px 30px -14px rgba(24,45,64,.5);
  will-change: transform;
}

.activate {
  position: relative; margin-top: 30px; background: #fff; opacity: 0;
  box-shadow: 0 50px 90px -46px rgba(24,45,64,.5), 0 0 0 1px rgba(17,19,21,.05);
  pointer-events: auto;
}
.activate header { display: flex; justify-content: space-between; align-items: center; padding: 18px 26px; border-bottom: 1px solid var(--line); }
.activate__brand { font-weight: 600; font-size: 24px; letter-spacing: -.035em; }
.activate__kicker { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--sub); }
.activate__body { padding: 22px 26px 26px; transition: opacity .5s var(--ease-out), transform .6s var(--ease-out); }
.activate__title { font-family: var(--serif); font-size: 24px; letter-spacing: -.02em; margin-bottom: 16px; }
.fld { display: grid; gap: 7px; margin-bottom: 14px; }
.fld__label { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.fld__in { position: relative; height: 48px; display: flex; align-items: center; padding: 0 14px; border: 1px solid #d6dde3; background: #fbfcfd; transition: border-color .4s, background .4s, box-shadow .4s; font-size: 15px; }
.fld.is-typing .fld__in { border-color: var(--sub); box-shadow: 0 0 0 3px rgba(62,109,142,.12); }
.fld.is-filled .fld__in { border-color: #c9d6e0; background: #fff; }
.fld--serial.is-filled .fld__in { border-color: var(--sub); background: var(--ice-2); animation: fieldFlash .9s var(--ease-out); }
@keyframes fieldFlash { 0% { box-shadow: 0 0 0 0 rgba(62,109,142,.35); } 100% { box-shadow: 0 0 0 10px rgba(62,109,142,0); } }
.fld__txt { font-variant-numeric: tabular-nums; }
.fld--serial .fld__txt { letter-spacing: .08em; font-weight: 500; color: var(--sub); }
.caret { width: 1px; height: 20px; margin-left: 2px; background: var(--ink); opacity: 0; }
.fld.is-typing .caret { opacity: 1; animation: blink .9s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.fld__hint { position: absolute; left: 14px; font-style: italic; font-size: 13.5px; color: var(--title-gray); transition: opacity .3s; }
.fld.is-filled .fld__hint { opacity: 0; }
.activate__btn {
  position: relative; margin-top: 8px; height: 52px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; background: var(--ink); color: #fff; font-size: 15px; overflow: hidden;
  transition: background .4s, transform .3s var(--ease-out);
}
.activate__btn .arrow { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; transition: opacity .3s; }
.activate__btn.is-pressed { background: var(--blue); transform: scale(.985); }
.activate__btn.is-loading span, .activate__btn.is-loading .arrow { opacity: .35; }
.spin { position: absolute; right: 18px; top: 50%; width: 18px; height: 18px; margin-top: -9px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.3); border-top-color: #fff; opacity: 0; }
.activate__btn.is-loading .spin { opacity: 1; animation: spin .8s linear infinite; }
.activate__btn.is-loading .arrow { opacity: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.activate__done {
  position: absolute; left: 0; right: 0; bottom: 0; top: 63px; padding: 22px 26px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .6s var(--ease-out), transform .7s var(--ease-out), visibility 0s .6s;
}
.activate.is-done .activate__body { opacity: 0; transform: translateY(-10px); }
.activate.is-done .activate__done { opacity: 1; visibility: visible; transform: none; transition-delay: .1s, .1s, 0s; }
.activate__check { width: 52px; height: 52px; }
.activate__check svg { width: 100%; height: 100%; fill: none; stroke: #2f7d58; stroke-width: 1.6; }
.activate__check circle { stroke-dasharray: 151; stroke-dashoffset: 151; }
.activate__check path { stroke-dasharray: 36; stroke-dashoffset: 36; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.activate.is-done .activate__check circle { animation: draw .9s .15s var(--ease-out) forwards; }
.activate.is-done .activate__check path { animation: draw .5s .8s var(--ease-out) forwards; }
.activate__ok { margin-top: 12px; font-family: var(--serif); font-size: 26px; letter-spacing: -.02em; }
.activate__sub { margin-top: 4px; font-size: 14px; color: var(--muted); }
.activate__done dl { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); text-align: left; }
.activate__done dt { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--title-gray); }
.activate__done dd { margin: 3px 0 0; font-size: 14px; }

/* ==========================================================================
   04 · REACH (scroll-driven map)
   ========================================================================== */
.reach { height: 100vh; height: 100svh; min-height: 640px; display: flex; align-items: center; padding: 88px 0 24px; }
.reach .console { width: 100%; height: 100%; display: flex; flex-direction: column; }
.reach .console__body { flex: 1; min-height: 0; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
.reach .globe__canvas { min-height: 0; height: 100%; }
.globe__caption { position: absolute; left: 24px; bottom: 22px; display: grid; gap: 2px; pointer-events: none; }
.globe__phase { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--sub); }
.globe__count { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 3.6vw, 3.6rem); line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.globe__caption small { font-size: 12px; color: var(--muted); }
.reach .kpis { grid-template-columns: 1fr 1fr; }
.reach .kpi { border-bottom: 0; }
.regions { list-style: none; margin: 0; padding: 8px 26px 18px; flex: 1; overflow: hidden; }
.regions li {
  position: relative; display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; gap: 4px 12px; align-items: baseline;
  padding: 16px 0 18px; border-bottom: 1px solid #eef0f2; opacity: .32; transition: opacity .6s var(--ease-out);
}
.regions li.is-on { opacity: .8; }
.regions li.is-current { opacity: 1; }
.regions__n { font-size: 12px; color: var(--sub); letter-spacing: .1em; }
.regions b { display: block; font-family: var(--serif); font-weight: 400; font-size: 21px; letter-spacing: -.02em; }
.regions small { display: block; margin-top: 3px; font-size: 12px; line-height: 1.5; color: var(--muted); }
.regions em { font-style: normal; font-family: var(--serif); font-size: 21px; font-variant-numeric: tabular-nums; }
.regions__bar { position: absolute; left: 46px; right: 0; bottom: -1px; height: 1px; overflow: hidden; }
.regions__bar b { position: absolute; inset: 0; background: var(--blue); transform-origin: left; transform: scaleX(0); }

/* ==========================================================================
   05 · USAGES (problem → Horae → outcome)
   ========================================================================== */
.usages { padding: clamp(90px, 13vh, 150px) var(--pad); max-width: 1600px; margin: 0 auto; }
.usages__more { display: flex; justify-content: center; margin-top: 52px; }
.usages__head { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 40px; align-items: end; margin-bottom: 56px; }
.usages__head .eyebrow { margin-bottom: 26px; }
.usages__head h2 { font-size: clamp(2.4rem, 4.6vw, 5rem); line-height: 1.02; letter-spacing: -.04em; }
.usages__lead { font-size: clamp(1.05rem, 1.3vw, 1.2rem); line-height: 1.7; color: var(--muted); max-width: 420px; justify-self: end; }
.uc { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 2.2fr); border: 1px solid var(--line); background: #fff; }
.uc__tabs { display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.uc__tab {
  position: relative; flex: 1; display: grid; grid-template-columns: 34px 1fr; align-content: center; gap: 4px 10px;
  padding: 24px 28px; text-align: left; border-bottom: 1px solid var(--line); transition: background .4s, color .4s;
}
.uc__tab:last-child { border-bottom: 0; }
.uc__n { grid-row: span 2; font-size: 12px; letter-spacing: .1em; color: var(--sub); padding-top: 6px; }
.uc__t { font-family: var(--serif); font-size: 23px; letter-spacing: -.02em; color: var(--title-gray); transition: color .4s; }
.uc__q { font-size: 13.5px; color: var(--title-gray); }
.uc__tab:hover .uc__t { color: var(--ink); }
.uc__tab.is-active { background: var(--ice-2); }
.uc__tab.is-active .uc__t { color: var(--ink); }
.uc__tab.is-active .uc__q { color: var(--muted); }
.uc__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: transparent; overflow: hidden; }
.uc__bar b { position: absolute; inset: 0; background: var(--blue); transform-origin: top; transform: scaleY(0); }
.uc__tab.is-active .uc__bar b { transform-origin: top; }
.uc__panels { position: relative; min-height: 520px; }
.uc__panel {
  position: absolute; inset: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 40px; align-items: center;
  padding: 44px 48px; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease-out), visibility 0s .5s;
}
.uc__panel.is-active { opacity: 1; visibility: visible; transition-delay: 0s; }
.uc__panel .uc__text > *, .uc__panel .uc__mock { transition: opacity .7s var(--ease-out), transform .8s var(--ease-out); }
.uc__panel:not(.is-active) .uc__text > *, .uc__panel:not(.is-active) .uc__mock { opacity: 0; transform: translateY(16px); }
.uc__panel.is-active .uc__text > *:nth-child(2) { transition-delay: .05s; } .uc__panel.is-active .uc__text > *:nth-child(3) { transition-delay: .12s; }
.uc__panel.is-active .uc__text > *:nth-child(4) { transition-delay: .18s; } .uc__panel.is-active .uc__text > *:nth-child(5) { transition-delay: .24s; }
.uc__panel.is-active .uc__mock { transition-delay: .15s; }
.uc__label { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--sub); margin-bottom: 10px; }
.uc__text blockquote { margin: 0 0 28px; font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 1.8vw, 1.75rem); line-height: 1.3; letter-spacing: -.015em; color: var(--ink); }
.uc__how { color: var(--muted); line-height: 1.75; font-size: 15.5px; }
.uc__gains { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.uc__gains li { position: relative; padding-left: 28px; font-size: 15px; }
.uc__gains li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--ice); box-shadow: inset 0 0 0 1px #c3d3df; }
.uc__gains li::after { content: ""; position: absolute; left: 5px; top: 8px; width: 6px; height: 3px; border-left: 1.5px solid var(--blue); border-bottom: 1.5px solid var(--blue); transform: rotate(-45deg); }

.mock { background: #fff; box-shadow: 0 40px 80px -46px rgba(24,45,64,.45), 0 0 0 1px rgba(17,19,21,.06); font-size: 13px; }
.mock header { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.mock header b { font-weight: 500; font-size: 14px; }
.mock header span { font-size: 11px; color: var(--title-gray); letter-spacing: .06em; }
.mock footer { padding: 10px 20px; font-size: 10.5px; letter-spacing: .1em; color: var(--title-gray); border-top: 1px solid var(--line); }
.av { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex: none; font-size: 11px; letter-spacing: .06em; color: #fff; background: linear-gradient(135deg, var(--blue-light), var(--blue)); }
.av--new { background: linear-gradient(135deg, #cfd6dc, #8b979f); }
.mrow { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto auto; gap: 12px; align-items: center; padding: 13px 20px; border-bottom: 1px solid #f0f2f4; }
.mrow b { display: block; font-weight: 500; font-size: 13.5px; }
.mrow small { display: block; color: var(--muted); font-size: 12px; }
.mrow em { font-style: normal; font-size: 12px; color: var(--muted); white-space: nowrap; }
.pill { font-size: 10px; letter-spacing: .08em; padding: 4px 9px; border-radius: 20px; background: #f1f3f5; color: var(--muted); }
.pill--new { background: #e7f4ed; color: #2f7d58; }
.pill--tr { background: #f5eee3; color: #8a6a3a; }
.uc__panel.is-active .mrow { animation: rowIn .7s var(--ease-out) both; }
.uc__panel.is-active .mrow:nth-of-type(2) { animation-delay: .25s; } .uc__panel.is-active .mrow:nth-of-type(3) { animation-delay: .35s; }
.uc__panel.is-active .mrow:nth-of-type(4) { animation-delay: .45s; } .uc__panel.is-active .mrow:nth-of-type(5) { animation-delay: .55s; }
@keyframes rowIn { from { opacity: 0; transform: translateX(-12px); } }
.bars { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; height: 210px; padding: 26px 24px 0; }
.grp { position: relative; flex: 1; height: 100%; display: flex; align-items: flex-end; justify-content: center; gap: 5px; padding-bottom: 26px; }
.grp span { position: absolute; bottom: 4px; left: 0; right: 0; text-align: center; font-size: 11.5px; color: var(--muted); }
.grp em { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-style: normal; font-size: 10px; letter-spacing: .06em; padding: 4px 8px; background: #fbeee9; color: #b04a2a; border-radius: 20px; }
.b { width: 16px; height: calc(var(--h) * 100%); transform-origin: bottom; }
.b--in { background: #d5dfe7; }
.b--out { background: var(--blue); }
.uc__panel .b { transform: scaleY(0); transition: transform 1s var(--ease-out); }
.uc__panel.is-active .b { transform: scaleY(1); transition-delay: .3s; }
.uc__panel.is-active .b--out { transition-delay: .45s; }
.legend { display: flex; gap: 18px; padding: 14px 24px 16px; font-size: 11.5px; color: var(--muted); }
.legend i { display: inline-block; width: 10px; height: 10px; margin-right: 8px; vertical-align: -1px; }
.warranty { display: flex; justify-content: space-between; align-items: center; margin: 16px 20px 6px; padding: 12px 14px; background: #e7f4ed; color: #2f7d58; font-size: 12.5px; }
.warranty span { letter-spacing: .14em; text-transform: uppercase; font-size: 10px; }
.msteps { list-style: none; margin: 10px 20px 20px; padding: 0 0 0 22px; position: relative; }
.msteps::before { content: ""; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.msteps li { position: relative; padding: 9px 0; }
.msteps li::before { content: ""; position: absolute; left: -22px; top: 13px; width: 11px; height: 11px; border-radius: 50%; background: #fff; border: 1px solid #b9c6d0; }
.msteps li.done::before { background: var(--blue); border-color: var(--sub); }
.msteps li.live::before { background: var(--blue-light); border-color: var(--sub); animation: pulse 1.6s infinite; }
.msteps b { display: block; font-weight: 500; font-size: 13.5px; }
.msteps small { font-size: 12px; color: var(--muted); }
.msteps li:not(.done):not(.live) b { color: var(--title-gray); }
.handover { display: flex; align-items: center; gap: 14px; padding: 26px 24px 18px; }
.handover > div { display: grid; justify-items: center; gap: 6px; }
.handover .av { width: 48px; height: 48px; font-size: 13px; }
.handover small { font-size: 11px; color: var(--muted); }
.handover__line { flex: 1; height: 1px; background: var(--line); position: relative; overflow: hidden; margin-top: -20px; }
.handover__line i { position: absolute; top: -1px; left: -30%; width: 30%; height: 3px; background: linear-gradient(90deg, transparent, var(--blue), transparent); animation: flow 1.8s var(--ease-io) infinite; }
.checks { list-style: none; margin: 0 24px; padding: 12px 0; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.checks li { position: relative; padding-left: 24px; font-size: 13px; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 16px; height: 16px; border-radius: 50%; background: #e7f4ed; color: #2f7d58; font-size: 10px; display: grid; place-items: center; }
.mock__cta { display: block; margin: 8px 24px 24px; padding: 13px; text-align: center; background: var(--ink); color: #fff; font-size: 13px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .uc { grid-template-columns: 1fr; }
  .uc__tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .uc__tab { flex: 1 0 220px; border-bottom: 0; border-right: 1px solid var(--line); }
  .uc__bar { top: auto; right: 0; bottom: 0; width: auto; height: 2px; }
  .uc__bar b { transform-origin: left; }
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav { gap: 16px; }
  .journey__num { font-size: 9rem; }
  .insight { display: none !important; }
}

@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  .nav__cta { padding: 13px 16px; gap: 16px; font-size: 13px; }
  .nav__cta .lg { display: none; }
  .nav__cta .sm { display: inline; }
  .nav__logo .logo { height: 18px; }

  .hero { min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; grid-template-rows: auto 1fr; align-items: start; padding-top: calc(var(--nav-h) + 4vh); }
  .hero__copy .eyebrow { margin-bottom: 20px; font-size: 10px; }
  .hero__title { font-size: clamp(2.9rem, 13vw, 4.6rem); }
  .hero__sub { margin-top: 20px; font-size: 1rem; }
  .hero__ctas { margin-top: 24px; gap: 18px; }
  .hero__ctas .btn { padding: 16px 20px; gap: 20px; font-size: 14px; }
  .hero__stage { height: 100%; min-height: 240px; }
  .hero__stage--b { left: 10vw; width: 80vw; top: 7vh; height: 30vh; transform: none; }
  .hero__reveal { left: var(--pad); right: var(--pad); width: auto; top: 40svh; bottom: auto; transform: none; }
  .hero__reveal .activate { position: absolute; left: 0; right: 0; top: 0; margin-top: 0 !important; }
  .hero__reveal-title { font-size: 2.3rem; }
  .hero__reveal-sub { display: none; }
  .hero__rail { display: none; }
  .hero__time { bottom: 22px; }
  .tag { display: none; }
  .tags-lines { display: none; }
  .hero__halo { width: 130vw; height: 130vw; right: -40vw; top: 70%; }

  .maisons { padding: 44px 0; }
  .m-pragma, .m-lederer { font-size: 28px; } .m-strehler { font-size: 26px; } .m-jenkell, .m-triton { font-size: 22px; } .m-ange { font-size: 18px; }

  .manifesto .eyebrow { margin-bottom: 36px; }
  .manifesto__legend { flex-direction: column; gap: 10px; align-items: center; }

  .journey { padding: 0 10px; }
  .journey__frame { grid-template-columns: 1fr; grid-template-rows: auto 1fr; margin-top: calc(var(--nav-h) + 6px); height: calc(100% - var(--nav-h) - 16px); }
  .journey__left { padding: 22px 20px 12px; }
  .journey__count { margin-top: 12px; font-size: 12px; }
  .journey__texts { flex: none; height: 150px; margin-top: 10px; }
  .jtext h3 { font-size: 2.2rem; }
  .jtext p { margin-top: 12px; font-size: 14px; line-height: 1.55; }
  .journey__steps { gap: 10px; margin-top: 8px; }
  .jstep { font-size: 11px; padding-top: 12px; }
  .jstep span { font-size: 11px; margin-bottom: 2px; }
  .journey__right { overflow: hidden; }
  .phone { transform: scale(.62); transform-origin: center 40%; margin-left: 0; }
  .journey__num { font-size: 6rem; top: 4%; left: 5%; }
  .journey__caption { display: none; }
  .journey__orbits i:nth-child(1) { width: 320px; height: 320px; }
  .journey__orbits i:nth-child(2) { width: 440px; height: 440px; }

  .wallet__inner { grid-template-columns: 1fr; gap: 40px; }
  .wallet__stage { min-height: 0; padding: 20px 0; }
  .wphone__body { height: min(600px, 78svh); border-radius: 46px; }
  .wphone__screen { border-radius: 36px; }
  .pass, .wallet__stack i { width: 300px; height: 470px; }
  .pass__model img { height: 100px; }
  .pass__qr { width: 116px; height: 116px; }
  .pass__qr canvas { width: 96px; height: 96px; }
  .wallet__steps { grid-template-columns: 1fr; gap: 10px; }

  .life { min-height: 560px; }
  .life__head { top: calc(var(--nav-h) + 2vh); right: var(--pad); }
  .life__title { font-size: clamp(2rem, 8.4vw, 2.6rem); }
  .life__track { gap: 44px; padding: 0 18vw 7vh 13vw; }
  .life__rail { bottom: calc(7vh + 300px); }
  .chapter { width: 76vw; height: 300px; padding-top: 44px; }
  .chapter__year { font-size: 4.4rem; bottom: calc(100% + 18px); }
  .chapter > p:not(.chapter__where) { font-size: 14.5px; line-height: 1.65; margin-top: 12px; }
  .chapter h3 { font-size: 1.8rem; margin-top: 10px; }
  .chapter__event { margin-top: 16px; }
  .life__end { width: 70vw; margin-bottom: 20px; }
  .life__end img { height: 200px; }
  .ledger { display: none; }


  .pillars { grid-template-columns: 1fr; margin-top: 50px; }
  .pillar { min-height: 0; }
  .pillar__viz { position: relative; right: auto; bottom: auto; margin-top: 26px; align-self: flex-start; }


  .faq { grid-template-columns: 1fr; gap: 30px; }
  .faq__title { position: static; }
  .qa__a p { padding-right: 0; }


  .hero__stage--c { left: 25vw; width: 50vw; top: 15vh; height: 8vh; transform: none; }
  .hero__stage--b { top: 4vh; height: 26vh; }
    .activate { margin-top: 16px; }
  .activate header { padding: 12px 18px; }
  .activate__brand { font-size: 20px; }
  .activate__body { padding: 14px 18px 18px; }
  .activate__title { font-size: 19px; margin-bottom: 10px; }
  .fld { margin-bottom: 9px; }
  .fld__in { height: 42px; font-size: 14px; }
  .activate__btn { height: 46px; font-size: 14px; }
  .activate__done { top: 52px; padding: 14px 18px; }
  .activate__done dl { margin-top: 10px; padding-top: 10px; gap: 8px 14px; }
  .scan__label { top: auto; bottom: calc(100% + 10px); }
  .console__bar { font-size: 11px; gap: 10px; }
  .console__live { display: none; }

  .reach { padding: 78px 0 12px; }
  .reach .console__body { grid-template-columns: 1fr; grid-template-rows: minmax(0, 1.25fr) auto; }
  .reach .globe { border-right: 0; border-bottom: 1px solid var(--line); }
  .reach .console__side { overflow: hidden; }
  .reach .kpi { padding: 12px 16px; }
  .reach .kpi b { font-size: 1.7rem; margin-top: 4px; }
  .regions { padding: 0 16px 6px; }
  .regions li { display: none; padding: 10px 0; }
  .regions li.is-current { display: grid; }
  .regions b, .regions em { font-size: 18px; }
  .globe__caption { left: 14px; bottom: 12px; }
  .globe__count { font-size: 2rem; }
  .console__note { padding: 8px 14px; }

  .usages__head { grid-template-columns: 1fr; margin-bottom: 36px; }
  .usages__lead { justify-self: start; }
  .uc__panels { min-height: 0; display: none; }
  .uc { display: block; }
  .uc__tabs { display: block; overflow: visible; border: 0; }
  .uc__tab { display: grid; width: 100%; flex: none; border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 48px 18px 18px !important; }
  .uc__tab::after { content: ""; position: absolute; right: 22px; top: 50%; width: 9px; height: 9px; border-right: 1.5px solid var(--sub); border-bottom: 1.5px solid var(--sub); transform: translateY(-75%) rotate(45deg); transition: transform .45s var(--ease-out); }
  .uc__tab.is-active::after { transform: translateY(-25%) rotate(-135deg); }
  .uc__bar { display: none; }
  .uc__tabs > .uc__panel { border-bottom: 1px solid var(--line); background: #fff; }
  .uc__panel { position: relative; inset: auto; display: none; grid-template-columns: 1fr; gap: 26px; padding: 26px 20px 30px; }
  .uc__panel.is-active { display: grid; }
  .uc__tab { flex: 1 0 200px; padding: 16px 18px; }
  .uc__t { font-size: 19px; }
  .uc__q { font-size: 12px; }
  .mrow { grid-template-columns: 34px minmax(0, 1fr) auto; }
  .mrow em { display: none; }

  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__base { flex-direction: column; align-items: flex-start; }
  .footer__base span a { margin: 0 18px 0 0; }
}

@media (hover: none) {
  .wallet__hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .marquee__track, .journey__orbits i, .s-flow i { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   HERO · ecosystem (home): the product, its passport, the maison's platform
   ========================================================================== */
.hero--eco .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); column-gap: 3vw; }
.hero--eco .hero__halo { right: -18vw; width: 80vw; height: 80vw; }
.hero__rail button { font: inherit; letter-spacing: inherit; text-transform: inherit; color: inherit; padding: 6px 0; transition: color .5s; }
.hero__rail button.on { color: var(--ink); }
.arrow--down { transform: none !important; }
.btn:hover .arrow--down { transform: translateY(3px) !important; }

.eco { position: relative; height: min(640px, calc(100svh - var(--nav-h) - 120px)); pointer-events: auto; margin-top: 2vh; }
.eco__links { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.eco__link { fill: none; stroke: var(--blue-light); stroke-width: 1.2; stroke-dasharray: 3 5; opacity: .9; }
.eco__pulse { fill: var(--blue); opacity: 0; filter: drop-shadow(0 0 4px rgba(62,109,142,.5)); }

.eco__console {
  position: absolute; z-index: 1; right: -1.5vw; top: 6%; width: 84%;
  display: block; padding: 14px 14px 10px; border-radius: 22px;
  background: #fff; border: 1px solid rgba(17,19,21,.07);
  box-shadow: 0 60px 90px -50px rgba(24,45,64,.4), 0 20px 40px -30px rgba(24,45,64,.22);
  transform-origin: 70% 50%;
  transition: box-shadow .8s var(--ease-out), border-color .8s, scale .9s var(--ease-out);
  will-change: transform;
}
.eco__head { display: flex; align-items: center; gap: 14px; padding: 6px 8px 14px; border-bottom: 1px solid var(--line); }
.eco__mark { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #e3e7ea; font-family: var(--serif); font-size: 19px; color: var(--blue); }
.eco__head small { display: block; font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--sub); }
.eco__head b { display: block; font-weight: 400; font-size: 16px; color: var(--ink); }
.eco__screen { margin-top: 10px; margin-bottom: 4px; border-radius: 10px; overflow: hidden; background: #f7f8fa; aspect-ratio: 1600 / 860; }
.eco__screen img { width: 100%; height: auto; }

.eco__watch {
  position: absolute; z-index: 2; left: -3%; top: 16%; height: 80%; aspect-ratio: 800 / 894; margin: 0;
  transition: scale .9s var(--ease-out), filter .9s;
  filter: drop-shadow(0 40px 36px rgba(20,35,50,.28)) drop-shadow(0 10px 12px rgba(20,35,50,.16));
  will-change: transform;
}
.eco__watch img { width: 100%; height: 100%; object-fit: contain; }

.eco__pass {
  position: absolute; z-index: 4; right: 1%; bottom: 0; width: 48%;
  display: block; padding: 24px 26px 20px;
  background: #fff; border: 1px solid rgba(17,19,21,.08);
  box-shadow: 0 50px 70px -40px rgba(24,45,64,.45), 0 12px 24px -18px rgba(24,45,64,.25);
  transition: box-shadow .8s var(--ease-out), scale .9s var(--ease-out), border-color .8s;
  will-change: transform;
}
.eco__brand { display: block; font-weight: 600; font-size: clamp(1.5rem, 2.1vw, 2rem); letter-spacing: -.035em; color: var(--blue-deep); line-height: 1; margin-bottom: 18px; }
.eco__pass small { display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--sub); }
.eco__pass b { display: block; margin: 6px 0 16px; font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2vw, 1.9rem); letter-spacing: -.02em; color: var(--ink); }
.eco__pass p { display: flex; flex-wrap: wrap; gap: 6px 16px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--sub); }

/* the layer the rail points to */
.eco__console.is-focus { border-color: rgba(17,19,21,.1); box-shadow: 0 70px 100px -50px rgba(24,45,64,.5), 0 0 0 6px rgba(17,19,21,.025); scale: 1.015; }
.eco__watch.is-focus { scale: 1.035; filter: drop-shadow(0 50px 44px rgba(20,35,50,.34)) drop-shadow(0 12px 14px rgba(20,35,50,.18)); }
.eco__pass.is-focus { border-color: rgba(17,19,21,.1); box-shadow: 0 60px 80px -40px rgba(24,45,64,.5), 0 0 0 6px rgba(17,19,21,.025); scale: 1.03; }

@media (max-width: 1180px) {
  .hero--eco .hero__inner { grid-template-columns: 1fr; grid-template-rows: auto 1fr; align-items: start; padding-top: calc(var(--nav-h) + 5vh); row-gap: 4vh; }
  .hero--eco { height: auto; min-height: 100svh; padding-bottom: 90px; }
  .eco { height: min(560px, 62vw); max-width: 820px; width: 100%; justify-self: center; }
}
@media (max-width: 900px) {
  .hero--eco { padding-bottom: 40px; }
  .hero--eco .hero__inner { padding-top: calc(var(--nav-h) + 4vh); }
  .eco { height: 118vw; max-height: 560px; margin-top: 10px; }
  .eco__console { right: 0; top: 0; width: 90%; padding: 9px 9px 6px; border-radius: 16px; }
  .eco__head { padding: 4px 6px 9px; gap: 10px; }
  .eco__mark { width: 26px; height: 26px; font-size: 15px; }
  .eco__head b { font-size: 13px; }
  .eco__watch { left: -3%; top: 24%; height: 64%; }
  .eco__pass { width: 60%; right: 0; padding: 16px 16px 12px; }
  .eco__brand { font-size: 1.3rem; margin-bottom: 10px; }
  .eco__pass b { font-size: 1.2rem; margin-bottom: 10px; }
  .eco__pass p { font-size: 11.5px; gap: 4px 10px; padding: 8px 0; }
}
