
:root {
  --paper: #FFFFFF;
  --ink: #111111;
  --ink-muted: #5C5C5C;
  --rule: #111111;
  --rule-soft: #D4D4D4;
  --dot: #A3A3A3;
  --dot-ink: 20%;

  --carta: #F4F2ED;
  --carta-rule: #CFCBC2;

  --green: #014F3C;
  --online: #018867;
  --on-green: #FFFFFF;
  --on-green-soft: #CCDCD8;
  --on-green-rule: rgba(255, 255, 255, .30);
  --on-green-grid: rgba(255, 255, 255, .12);
  --on-green-edge: rgba(255, 255, 255, .14);
  --on-green-fill: rgba(255, 255, 255, .06);

  --oro: #C9A24A;
  --oro-on-green: #F4D170;

  --rosso: #8C1D2F;

  --radius: 0;
  --radius-sm: 0;
  --shadow-lift: 0 22px 40px -26px color-mix(in srgb, var(--green) 55%, transparent);

  --font: "Host Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --t-display: clamp(40px, 5.4vw, 76px);
  --t-h2: clamp(30px, 3.5vw, 50px);
  --t-numeral-lg: clamp(44px, 4.8vw, 68px);
  --t-lead: clamp(19px, 1.6vw, 23px);
  --t-body: 17px;
  --t-small: 15px;
  --t-label: 12px;

  --measure: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --s-section: clamp(64px, 8vw, 112px);
  --nav-h: 64px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}
@media (min-width: 768px) { :root { --nav-h: 72px; } }

@font-face {
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("assets/font/host-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("assets/font/host-grotesk-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                 U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
                 U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
                 U+2C60-2C7F, U+A720-A7FF;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--paper);
  background-image: radial-gradient(circle at 1px 1px,
                                    color-mix(in srgb, var(--dot) var(--dot-ink), transparent) 1px,
                                    transparent 0);
  background-size: 16px 16px;
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.55;
  font-feature-settings: "kern" 1, "tnum" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
html { overflow-x: clip; }

img { max-width: 100%; display: block; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; }

::selection { background: var(--green); color: var(--paper); }
.field ::selection { background: var(--paper); color: var(--green); }
:where(a, button):focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.field :where(a, button):focus-visible { outline-color: var(--paper); }

.label,
.sec__k, .reg__k, .cap, .reg__t, .facts dt, .line__artk, .ctl,
.tile__k, .step__k, .orbit__lbl, .marquee__k,
.nav__links a, .nav__house, .foot__nav a, .foot__k {
  font-size: var(--t-label); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; line-height: 1.3;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 12px 20px; font-weight: 500;
  display: inline-flex; align-items: center; min-height: 44px;
}
.skip:focus { left: 0; }

.ico { display: block; width: 24px; height: 24px; }

.tile-ico {
  display: grid; place-items: center; flex: none;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--green); color: var(--on-green);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.tile-ico .ico { width: 22px; height: 22px; }

.ctl {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 26px;
  border: 1px solid var(--ink); border-radius: var(--radius-sm);
  background: transparent; color: var(--ink);
  text-decoration: none; cursor: pointer; font-family: inherit;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.ctl:hover { background: var(--green); border-color: var(--green); color: var(--on-green); }
.ctl--solid { background: var(--green); border-color: var(--green); color: var(--on-green); }
.ctl--solid:hover { background: transparent; color: var(--green); }
.field .ctl { border-color: var(--on-green); color: var(--on-green); }
.field .ctl:hover { background: var(--on-green); color: var(--green); }
.field .ctl--solid { background: var(--on-green); color: var(--green); }
.field .ctl--solid:hover { background: transparent; color: var(--on-green); }
.ctl__arrow { display: inline-block; margin-left: .9em; transition: transform .3s var(--ease); }
@media (hover: hover) { .ctl:hover .ctl__arrow { transform: translateX(4px); } }

.prose a, .facts a, .foot__co a, .sec__lead a {
  text-decoration: underline; text-underline-offset: .2em; text-decoration-thickness: 1px;
  transition: color .15s var(--ease);
}
.prose a:hover, .facts a:hover, .foot__co a:hover, .sec__lead a:hover { color: var(--green); }
.field .facts a:hover { color: var(--on-green); text-decoration-thickness: 2px; }

.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  height: 100%;
  max-width: var(--measure); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav__home { text-decoration: none; display: flex; align-items: center; gap: 14px; min-height: 44px; }
.nav__mark { width: 28px; height: 28px; flex: none; object-fit: contain; }
.nav__house { color: var(--ink); white-space: nowrap; }
.nav__home { flex: none; }

.nav__links { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 24px); }
.nav__links a {
  text-decoration: none; color: var(--ink-muted); white-space: nowrap;
  display: inline-flex; align-items: center; min-height: 44px;
  border-bottom: 1px solid transparent; padding-top: 1px;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.nav__links a:hover, .nav__links a:focus-visible { color: var(--ink); }
.nav__links a.is-current, .nav__links a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--oro); }
.nav__links .nav__cta { border: 1px solid var(--ink); border-radius: var(--radius-sm); color: var(--ink); padding: 0 18px; min-height: 40px; }
.nav__links .nav__cta:hover, .nav__links .nav__cta.is-current { background: var(--green); border-color: var(--green); color: var(--on-green); }

.nav__toggle { display: none; }

@media (max-width: 1279px) {
  .nav__inner { gap: 12px; }
  .nav__toggle {
    display: inline-flex; align-items: center; gap: 12px;
    min-height: 40px; padding: 0 14px;
    background: transparent; color: var(--ink);
    border: 1px solid var(--ink); border-radius: var(--radius-sm);
    font: inherit; font-size: var(--t-label); font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
    cursor: pointer; flex: none;
  }
  .nav__burger { display: grid; gap: 4px; width: 16px; }
  .nav__burger i { display: block; height: 1px; background: currentColor; transition: transform .2s var(--ease), opacity .2s var(--ease); }
  .nav__toggle[aria-expanded="true"] .nav__burger i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] .nav__burger i:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] .nav__burger i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  .nav__links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    padding: 0 var(--gutter) 8px;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    visibility: hidden; opacity: 0; transform: translateY(-10px);
    transition: opacity .22s var(--ease), transform .28s var(--ease), visibility 0s linear .28s;
  }
  .nav__links.is-open { visibility: visible; opacity: 1; transform: none; transition-delay: 0s, 0s, 0s; }
  .nav__links a {
    min-height: 52px; color: var(--ink);
    border-bottom: 1px solid var(--rule-soft); padding-top: 0;
    opacity: 0; transform: translateY(-6px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), color .15s var(--ease);
  }
  .nav__links.is-open a { opacity: 1; transform: none; }
  .nav__links.is-open a:nth-child(2) { transition-delay: 40ms; }
  .nav__links.is-open a:nth-child(3) { transition-delay: 80ms; }
  .nav__links.is-open a:nth-child(4) { transition-delay: 120ms; }
  .nav__links.is-open a:nth-child(5) { transition-delay: 160ms; }
  .nav__links.is-open a:nth-child(6) { transition-delay: 200ms; }
  .nav__links.is-open a:nth-child(7) { transition-delay: 240ms; }
  .nav__links.is-open a:nth-child(8) { transition-delay: 280ms; }
  .nav__links a.is-current, .nav__links a[aria-current="page"] { border-bottom-color: var(--rule-soft); }
  .nav__links a.is-current::before, .nav__links a[aria-current="page"]::before { content: "—"; margin-right: 10px; color: var(--oro); }
  .nav__links .nav__cta { border: 0; border-radius: 0; border-bottom: 1px solid var(--rule-soft); padding: 0; min-height: 52px; }
  .nav__links .nav__cta:hover, .nav__links .nav__cta.is-current { background: transparent; color: var(--ink); }
  .nav__links .nav__cta:last-child { border-bottom: 0; }
}

.field { background: var(--green); color: var(--on-green); }

.hero { position: relative; isolation: isolate; }

.hero__footage { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero__poster, .hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
}
.hero__video { opacity: 0; transition: opacity .9s var(--ease); }
.hero__video.is-playing { opacity: 1; }
.hero__inner {
  position: relative;
  max-width: var(--measure); margin: 0 auto; padding: 0 var(--gutter);
  min-height: calc(100svh - var(--nav-h));
  display: grid; align-content: center;
}
.hero__grid {
  position: absolute; inset: 0 var(--gutter); z-index: 0; pointer-events: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--on-green-grid);
}
.hero__grid i {
  display: block; border-left: 1px solid var(--on-green-grid);
  transform-origin: top; animation: draw .8s var(--ease) both;
  animation-delay: calc(var(--i) * 45ms);
}
.hero__grid i:nth-child(n + 5) { display: none; }
@keyframes draw { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.settled .hero__grid i { animation: none; }

.hero__cols {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 72px);
  padding: clamp(56px, 8vw, 112px) 0 clamp(56px, 8vw, 104px);
}
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: repeat(12, 1fr); }
  .hero__grid i:nth-child(n + 5) { display: block; }
  .hero__cols { grid-template-columns: repeat(12, 1fr); column-gap: clamp(32px, 4vw, 64px); align-items: center; }
  .hero__type { grid-column: 1 / 8; }
  .hero__reg  { grid-column: 8 / 13; }
}

.hero__eyebrow {
  color: var(--on-green-soft);
  padding-bottom: 20px; margin-bottom: clamp(20px, 2.4vw, 28px);
  border-bottom: 1px solid var(--on-green-rule);
}
.hero__type { container-type: inline-size; }
.hero__h1 {
  font-size: var(--t-display); font-weight: 300;
  font-size: min(var(--t-display), calc(100cqi / 10.45));
  line-height: 1.02; letter-spacing: -.025em;
  text-wrap: balance;
}
.hero__deck {
  margin-top: clamp(24px, 3vw, 40px);
  font-size: var(--t-lead); font-weight: 400; line-height: 1.4; max-width: 34em;
}
.hero__actions { margin-top: clamp(32px, 4vw, 48px); display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 560px) { .hero__actions { flex-direction: column; } .hero__actions .ctl { width: 100%; } }

.reg__k {
  display: flex; align-items: center; gap: 14px;
  color: var(--on-green-soft); margin-bottom: 16px;
}
.reg__k i { display: block; width: 28px; height: 2px; background: var(--oro); }
.reg { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 439px) {
  .reg { gap: 8px; }
  .reg__card { padding: 14px 14px 16px; gap: 4px; }
  .reg__d { font-size: 14px; }
}
@media (max-width: 379px) {
  .reg { grid-template-columns: 1fr; }
  .reg__t { display: flex; align-items: center; gap: 10px; }
  .reg__card { aspect-ratio: auto; padding-right: 48px; }
}
.reg__card {
  position: relative;
  display: grid; gap: 6px; align-content: start; aspect-ratio: 1;
  padding: 20px 20px 22px;
  border: 1px solid var(--on-green-edge); border-radius: var(--radius);
  background: color-mix(in srgb, var(--green) 72%, transparent);
  color: inherit; text-decoration: none;
  transition: transform .45s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.reg__ico { width: 22px; height: 22px; color: var(--oro); }
.reg__t { display: grid; gap: 10px; justify-items: start; color: var(--on-green-soft); }
.reg__d { font-size: 15px; line-height: 1.45; color: var(--on-green); }
.reg__go {
  position: absolute; right: 18px; bottom: 14px;
  color: var(--oro); font-size: 20px; line-height: 1;
  opacity: .55; transform: translateX(-4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
@media (hover: hover) {
  .reg__card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .38);
    background: color-mix(in srgb, var(--green) 88%, transparent);
  }
  .reg__card:hover .reg__go { opacity: 1; transform: none; }
}
.js .reg__card { animation: rise-in .7s var(--ease) both; animation-delay: calc(220ms + var(--i, 0) * 80ms); }
@keyframes rise-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.js.settled .reg__card { animation: none; }

.sec { position: relative; padding: var(--s-section) 0; scroll-margin-top: var(--nav-h); }

.sec--carta {
  background-color: var(--carta);
  background-image: radial-gradient(circle at 1px 1px,
                                    color-mix(in srgb, var(--dot) var(--dot-ink), transparent) 1px,
                                    transparent 0);
  background-size: 16px 16px;
}
.sec--band { padding: calc(var(--s-section) * .6) 0; }

.sec__inner { max-width: var(--measure); margin-inline: auto; padding-inline: var(--gutter); }
.sec__inner, .evidence { min-width: 0; }

.sec__k { display: flex; align-items: center; gap: 14px; color: var(--green); margin-bottom: clamp(18px, 2.2vw, 26px); }
.sec__k i { display: block; width: 32px; height: 2px; background: var(--oro); transform-origin: left; }
.field .sec__k { color: var(--oro-on-green); }
.sec__k:empty, .sec__k[aria-hidden] { min-height: 1.2em; }
.sec__k .mark { --cap: 17px; }
.js .sec__k i { transform: scaleX(0); }
.js .sec.is-in .sec__k i { transform: scaleX(1); transition: transform .7s var(--ease) .1s; }
.js .settled .sec__k i, .js.settled .sec__k i { transform: none; transition: none; }

.sec__title {
  font-size: var(--t-h2); font-weight: 300; line-height: 1.08; letter-spacing: -.02em;
  max-width: 22ch; text-wrap: balance;
}
.rosso { font-style: normal; color: var(--rosso); }
.rosso--caps { text-transform: uppercase; letter-spacing: .02em; }
.rosso--bold { font-weight: 500; }
.sec__lead { margin-top: clamp(20px, 2.4vw, 28px); max-width: 56ch; color: var(--ink-muted); font-size: var(--t-lead); line-height: 1.45; }
.field .sec__lead { color: var(--on-green-soft); }
.evidence { margin-top: clamp(40px, 5vw, 64px); }

.cap { color: var(--ink-muted); padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
.sec--carta .cap { border-bottom-color: var(--carta-rule); }

.sec__aside {
  margin-top: clamp(20px, 2.4vw, 28px); max-width: 34em;
  font-size: clamp(19px, 1.7vw, 24px); font-weight: 300; line-height: 1.4; letter-spacing: -.01em;
}
@media (min-width: 1000px) {
  .sec--chi .sec__inner { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(24px, 3vw, 48px); align-items: end; }
  .sec--chi .sec__head { grid-column: 1 / 7; }
  .sec--chi .sec__aside { grid-column: 8 / 13; margin-top: 0; padding-bottom: .35em; }
  .sec--chi .evidence { grid-column: 1 / 13; }
}

.sec--centre .sec__head { display: grid; justify-items: center; text-align: center; margin-inline: auto; }
.sec--centre .sec__title { max-width: 20ch; }
#dove-siamo .sec__title { max-width: 24ch; }
.sec--centre .sec__lead { max-width: 52ch; }

@media (min-width: 900px) {
  .sec--split .sec__inner {
    display: grid; align-items: start;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    column-gap: clamp(32px, 4vw, 72px);
  }
  .sec--split .evidence { margin-top: 6px; }
}

.js .rise { opacity: 0; transform: translateY(12px); }
.js .evidence.is-in .rise {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease) calc(var(--i, 0) * 60ms),
              transform .6s var(--ease) calc(var(--i, 0) * 60ms);
}
.js .settled .rise, .js.settled .rise { opacity: 1; transform: none; transition: none; }

.card {
  border: 1px solid var(--rule-soft); border-radius: var(--radius);
  background: var(--paper);
  transition: transform .45s var(--ease), border-color .3s var(--ease),
              background .3s var(--ease), box-shadow .45s var(--ease);
}
.sec--carta .card { border-color: var(--carta-rule); }
@media (hover: hover) {
  .js .evidence.is-in .card:hover, .card:hover {
    transform: translateY(-4px);
    border-color: var(--oro);
    background: color-mix(in srgb, var(--oro) 8%, var(--paper));
    box-shadow: var(--shadow-lift);
    transition: transform .45s var(--ease), border-color .3s var(--ease),
                background .3s var(--ease), box-shadow .45s var(--ease);
  }
  .card:hover .tile-ico, .dir__cell:hover .tile-ico { background: var(--oro); color: var(--ink); }
}

.sec--mercato .sec__title { max-width: 30ch; }
.sec__title-before { color: var(--ink-muted); }
.cmp {
  position: relative; overflow: hidden; isolation: isolate;
  max-width: 1040px; margin-inline: auto;
  height: clamp(300px, 36vw, 440px);
  border: 1px solid var(--rule-soft); border-radius: var(--radius);
  background: var(--paper);
  user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.cmp__side { position: absolute; inset: 0; isolation: isolate; }
.cmp__side--b { clip-path: inset(0 0 0 calc(var(--p, 50) * 1%)); }
.cmp__body {
  position: absolute; top: 0; bottom: 0; width: 50%; transform: translateX(-50%);
  display: grid; gap: 14px; align-content: center; justify-items: center; text-align: center;
  padding: clamp(24px, 3vw, 40px) clamp(36px, 3.4vw, 56px);
}
.cmp__side--a .cmp__body { left: calc(var(--p, 50) * .5%); }
.cmp__side--b .cmp__body { left: calc((var(--p, 50) + 100) * .5%); }
.cmp__k {
  margin-bottom: clamp(10px, 1.6vw, 22px);
  font-size: clamp(14px, 1.4vw, 19px); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; line-height: 1.2;
  color: var(--rosso); background: var(--paper); padding: .6em .95em .5em;
}
.cmp__side--a .cmp__k { box-shadow: inset 0 0 0 1.5px var(--rosso); }
.cmp__v { max-width: 22ch; font-size: clamp(17px, 2vw, 27px); font-weight: 300; line-height: 1.3; letter-spacing: -.01em; }
.cmp__side--b .tile-ico { background: var(--oro); color: var(--ink); }
.cmp__bar {
  position: absolute; top: 0; bottom: 0; z-index: 2;
  left: calc(var(--p, 50) * 1%); width: 2px; margin-left: -1px;
  background: var(--oro);
}
.cmp__handle {
  position: absolute; top: 50%; z-index: 3;
  left: clamp(24px, calc(var(--p, 50) * 1%), calc(100% - 24px)); transform: translate(-50%, -50%);
  cursor: ew-resize; touch-action: none;
}
.cmp__handle .tile-ico {
  width: 48px; height: 48px; font-size: 24px; font-weight: 400; line-height: 1; letter-spacing: .04em;
  box-shadow: var(--shadow-lift);
}
.cmp__handle:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
@media (hover: hover) {
  .cmp:hover .cmp__handle .tile-ico { background: var(--oro); color: var(--ink); }
}
.cmp__handle:focus-visible .tile-ico, .cmp.is-drag .cmp__handle .tile-ico { background: var(--oro); color: var(--ink); }
.cmp.is-drag { cursor: grabbing; }
@media (max-width: 599px) {
  .cmp { height: clamp(300px, 92vw, 380px); }
  .cmp__body { gap: 10px; }
  .cmp__side--a .cmp__body { padding-inline: 10px 30px; }
  .cmp__side--b .cmp__body { padding-inline: 30px 10px; }
  .cmp__body .tile-ico { width: 36px; height: 36px; }
  .cmp__body .tile-ico .ico { width: 20px; height: 20px; }
  .cmp__k { font-size: 12px; letter-spacing: .08em; }
  .cmp__v { min-height: calc(4 * 1.3em); }
  .cmp__handle .tile-ico { width: 42px; height: 42px; font-size: 20px; }
}
.versus__close {
  max-width: 58ch; margin: clamp(32px, 4vw, 48px) auto 0; text-align: center;
  font-size: var(--t-lead); line-height: 1.5; color: var(--ink-muted); text-wrap: pretty;
}
.versus__close strong {
  display: block; margin-top: 12px;
  font-size: clamp(24px, 2.4vw, 32px); font-weight: 400; letter-spacing: -.015em; line-height: 1.2;
  color: var(--ink);
}
.hl {
  background: none; color: var(--ink); font-weight: 500;
  background-image: linear-gradient(color-mix(in srgb, var(--oro) 58%, transparent), color-mix(in srgb, var(--oro) 58%, transparent));
  background-repeat: no-repeat; background-position: 0 90%; background-size: 100% .45em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  padding-inline: .06em;
}
.js .hl { background-size: 0% .45em; }
.js .evidence.is-in .hl, .js .sec.is-in .sec__head .hl { background-size: 100% .45em; transition: background-size .9s var(--ease) .45s; }
.js .settled .hl, .js.settled .hl { background-size: 100% .45em; transition: none; }

.hl--fold {
  color: var(--oro-on-green); font-weight: 600;
  background: none;
}

.prose { display: grid; gap: 22px; max-width: 62ch; font-size: var(--t-body); color: var(--ink-muted); }
.prose__lead { color: var(--ink); }
.prose__toggle, .reel__all {
  display: none; align-items: center; gap: 10px;
  margin-top: 4px; padding: 0; border: 0; background: none; cursor: pointer;
  font: inherit; font-size: var(--t-small); color: var(--ink);
  text-decoration: underline; text-underline-offset: .2em; text-decoration-thickness: 1px;
}
.prose__chev {
  display: block; width: 8px; height: 8px; margin-top: -3px;
  border-right: 1.5px solid var(--oro); border-bottom: 1.5px solid var(--oro);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
@media (max-width: 759px) {
  .js .prose--fold:not(.is-open) .prose__more { display: none; }
  .js .prose__toggle { display: inline-flex; }
  .js .prose--fold.is-open .prose__chev { transform: rotate(-135deg); margin-top: 3px; }
}
.prose__cols { display: grid; gap: 22px; }
.prose__more { display: grid; gap: 22px; }
@media (min-width: 760px) {
  .prose { max-width: none; }
  .prose__cols { display: block; columns: 2; column-gap: clamp(32px, 4vw, 56px); }
  .prose__more { display: block; }
  .prose__cols p { break-inside: avoid; margin-bottom: 22px; }
  .prose__more > p:last-child { margin-bottom: 0; }
}
@media (min-width: 1100px) { .prose__cols { columns: 3; } }

.orbit-wrap { margin-top: clamp(40px, 5vw, 64px); }
.orbit-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 40px);
  margin-top: 16px; align-items: center;
}
@media (min-width: 1000px) {
  .orbit-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); column-gap: clamp(32px, 4vw, 72px); }
}
.orbit {
  --r: clamp(112px, 17vw, 196px);
  --node: 44px;
  position: relative; margin-inline: auto;
  width: calc(var(--r) * 2 + 150px); max-width: 100%; aspect-ratio: 1;
  display: grid; place-items: center;
}
.orbit__ring {
  position: absolute; width: calc(var(--r) * 2); height: calc(var(--r) * 2);
  border: 1px solid var(--carta-rule); border-radius: 50%;
}
.orbit__pulse i {
  position: absolute; left: 50%; top: 50%; width: 120px; height: 120px; margin: -60px 0 0 -60px;
  border: 1px solid var(--oro); border-radius: 50%; opacity: 0;
  animation: pulse 4s var(--ease) infinite;
}
.orbit__pulse i:nth-child(2) { animation-delay: 2s; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
.orbit__core {
  position: absolute; width: 76px; height: 76px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--carta-rule);
  display: grid; place-items: center;
}
.orbit__core img { width: 36px; height: 36px; object-fit: contain; }
.orbit__items { position: absolute; inset: 0; }
.orbit__item {
  position: absolute; left: 50%; top: 50%;
  transform: translate(calc(-50% + var(--x, 0px)), calc(var(--y, 0px) - var(--node) / 2));
  opacity: var(--o, 1); z-index: var(--z, 1);
}
.orbit__node {
  display: grid; justify-items: center; gap: 8px;
  margin: 0; padding: 0; border: 0; background: none; font: inherit; color: var(--ink-muted);
  cursor: pointer;
  transition: color .3s var(--ease);
}
.orbit__node .tile-ico { border-radius: 50%; }
.orbit__lbl { white-space: nowrap; letter-spacing: .12em; }
.orbit__node[aria-pressed="true"] { color: var(--ink); }
.orbit__node[aria-pressed="true"] .tile-ico { background: var(--oro); color: var(--ink); }
@media (hover: hover) {
  .orbit__node:hover { color: var(--ink); }
  .orbit__node:hover .tile-ico { background: var(--oro); color: var(--ink); }
}
.orbit__node:focus-visible { outline: 0; }
.orbit__node:focus-visible .tile-ico { outline: 2px solid var(--ink); outline-offset: 3px; }
@media (max-width: 599px) {
  .orbit { --r: clamp(104px, 30vw, 130px); --node: 40px; width: calc(var(--r) * 2 + 120px); }
  .orbit__node .tile-ico { width: 40px; height: 40px; }
  .orbit__node .tile-ico .ico { width: 20px; height: 20px; }
  .orbit__lbl { font-size: 11px; }
  .orbit__core { width: 64px; height: 64px; }
  .orbit__core img { width: 30px; height: 30px; }
}
html:not(.js) .orbit { width: auto; aspect-ratio: auto; display: block; }
html:not(.js) .orbit__ring, html:not(.js) .orbit__pulse, html:not(.js) .orbit__core { display: none; }
html:not(.js) .orbit__items { position: static; display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
html:not(.js) .orbit__item { position: static; transform: none; }

.orbit__panel { overflow: hidden; }
.opanel { display: none; grid-template-rows: auto 1fr; }
.opanel.is-on { display: grid; animation: rise-in .45s var(--ease) both; }
html:not(.js) .opanel { display: grid; }
html:not(.js) .opanel + .opanel { border-top: 1px solid var(--carta-rule); }
.opanel__pic { aspect-ratio: 3 / 2; overflow: hidden; background: var(--carta); border-bottom: 1px solid var(--rule-soft); }
.sec--carta .opanel__pic { border-bottom-color: var(--carta-rule); }
.opanel__pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.opanel__body { display: grid; gap: 12px; align-content: start; justify-items: start; padding: 20px 22px 24px; }
.opanel__k { display: grid; gap: 5px; font-size: clamp(21px, 1.9vw, 26px); font-weight: 400; letter-spacing: -.015em; line-height: 1.15; }
.opanel__k .label { color: var(--ink-muted); }
.opanel__brand { margin-top: -4px; font-size: var(--t-small); font-weight: 500; color: var(--ink); }
.opanel__brand .mark { --cap: 16px; margin-top: 2px; }
.opanel__marks { display: flex; align-items: center; gap: clamp(12px, 1.4vw, 18px); }
.opanel__marks .mark { --cap: 18px; margin-top: 0; }
.opanel__v { color: var(--ink-muted); font-size: var(--t-small); line-height: 1.5; }
.opanel .line__art { grid-column: auto; margin-top: 4px; padding-top: 14px; justify-self: stretch; }

.dir {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--rule-soft);
  max-width: 1040px; margin-inline: auto;
}
.dir__cell {
  display: flex; align-items: flex-start; gap: 20px;
  padding: clamp(22px, 2.6vw, 32px) clamp(16px, 2vw, 28px);
  border-bottom: 1px solid var(--rule-soft);
  transition: background .3s var(--ease);
}
.dir__txt { display: grid; gap: 6px; }
.dir__k { font-size: clamp(19px, 1.8vw, 23px); font-weight: 400; letter-spacing: -.015em; line-height: 1.2; }
.dir__v { font-size: var(--t-small); color: var(--ink-muted); line-height: 1.5; }
.dir { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dir__cell:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
@media (min-width: 700px) { .dir__v { font-size: var(--t-body); } }
.dir--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dir--3 .dir__cell:nth-child(odd) { border-right: 0; }
.dir--3 .dir__cell:not(:last-child) { border-right: 1px solid var(--rule-soft); }
@media (max-width: 699px) {
  .dir--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dir--3 .dir__cell:nth-child(2) { border-right: 0; }
  .dir--3 .dir__cell:last-child { grid-column: 1 / -1; }
  .dir__cell { flex-direction: column; gap: 12px; padding: 16px 14px 18px; }
  .dir__cell .tile-ico { width: 36px; height: 36px; }
  .dir__cell .tile-ico .ico { width: 20px; height: 20px; }
  .dir__k { font-size: 17px; }
  .dir__v { font-size: 13px; }
}
@media (max-width: 379px) {
  .dir { grid-template-columns: 1fr; }
  .dir__cell { flex-direction: row; }
  .dir__cell:nth-child(odd) { border-right: 0; }
  .dir--3 .dir__cell:not(:last-child) { border-right: 0; }
}
@media (hover: hover) {
  .dir__cell:hover { background: color-mix(in srgb, var(--oro) 8%, var(--paper)); }
}

.facts.facts--tight { margin-top: clamp(28px, 3vw, 40px); max-width: 1040px; margin-inline: auto; border-top: 0; grid-template-columns: 1fr; }
.sec--carta .facts__row { border-bottom-color: var(--carta-rule); }

.sq {
  container-type: inline-size;
  --sq-h: clamp(220px, 32cqi, 400px);
  --sq-gap: 16px; --sq-slat-gap: 8px; --sq-slat: 8px;
  --sq-ms: 1000ms; --sq-ease: cubic-bezier(.16, 1, .3, 1);
  --sq-hero: calc(var(--sq-h) * 16 / 9);
  --sq-room: calc(100cqi - var(--sq-hero) - var(--sq-slats, 1) * (var(--sq-slat-gap) + var(--sq-slat)) - 3 * var(--sq-gap));
  --s0: -.06; --s1: .61; --s2: .3; --s3: .15;
}
.sq[data-hover="0"] { --s0: 0;    --s1: .59; --s2: .28; --s3: .13; }
.sq[data-hover="1"] { --s0: -.12; --s1: .71; --s2: .28; --s3: .13; }
.sq[data-hover="2"] { --s0: -.12; --s1: .59; --s2: .4;  --s3: .13; }
.sq[data-hover="3"] { --s0: -.12; --s1: .59; --s2: .28; --s3: .25; }
@media (max-width: 699px) {
  .sq {
    --sq-h: clamp(200px, 64cqi, 300px);
    --sq-gap: 8px; --sq-slat-gap: 6px; --sq-slat: 6px;
    --sq-hero: min(calc(var(--sq-h) * 16 / 9), calc(100cqi - 88px));
  }
}
.sq__bar { justify-content: flex-end; margin-bottom: 16px; }
.sq__view { height: var(--sq-h); overflow: hidden; }
.sq__row {
  display: flex; width: max-content; height: 100%;
  transform: translateX(calc(var(--d, 0) * (var(--sq-slat) + var(--sq-gap))));
  transition: transform var(--sq-ms) var(--sq-ease);
}
.sq__item {
  position: relative; isolation: isolate; flex: none; height: 100%;
  width: var(--sq-slat); margin: 0 0 0 var(--sq-slat-gap); padding: 0;
  border: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--carta); color: inherit; font: inherit; cursor: pointer;
  transition: width var(--sq-ms) var(--sq-ease), margin-left var(--sq-ms) var(--sq-ease);
}
.sq__item:is([data-o^="-"], [data-o="0"], [data-o="1"], [data-o="2"], [data-o="3"]) { margin-left: var(--sq-gap); }
.sq__item:first-child { margin-left: 0; }
.sq__item[data-o="0"] { width: calc(var(--sq-hero) + var(--sq-room) * var(--s0)); cursor: default; }
.sq__item[data-o="1"] { width: calc(var(--sq-room) * var(--s1)); }
.sq__item[data-o="2"] { width: calc(var(--sq-room) * var(--s2)); }
.sq__item[data-o="3"] { width: calc(var(--sq-room) * var(--s3)); }
.sq__item:focus-visible { outline: 3px solid var(--oro); outline-offset: -3px; }
.sq__item picture { display: contents; }
.sq__item img, .sq__flat {
  position: absolute; top: 0; left: 50%; height: 100%;
  width: var(--sq-hero); min-width: 100%; max-width: none;
  transform: translateX(-50%); object-fit: cover; pointer-events: none;
}
.sq__flat { display: grid; place-items: center; color: var(--oro-on-green); }
.sq__mark {
  position: absolute; z-index: 1; left: clamp(12px, 1.8vw, 22px); bottom: clamp(12px, 1.8vw, 22px);
  opacity: 0; transition: opacity var(--sq-ms) var(--sq-ease);
}
.sq__item[data-o="0"] .sq__mark { opacity: 1; }
.sq.is-instant .sq__row, .sq.is-instant .sq__item, .sq.is-instant .sq__mark { transition: none; }

.sq__panels { display: grid; margin-top: clamp(20px, 2.2vw, 28px); }
.sq__panel {
  grid-area: 1 / 1; display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--sq-ms) var(--sq-ease), visibility var(--sq-ms);
}
.sq__panel.is-on { opacity: 1; visibility: visible; pointer-events: auto; }
@container (min-width: 36rem) { .sq__panel { flex-direction: row; justify-content: space-between; gap: 40px; } }
.sq__txt { max-width: 46rem; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; text-wrap: balance; }
.sq__k { display: inline; font: inherit; font-weight: 500; color: var(--ink); }
.sq__v { display: inline; color: var(--ink-muted); }
.sq__go { flex: none; }
html:not(.js) .sq__bar { display: none; }
html:not(.js) .sq__panels { gap: 14px; }
html:not(.js) .sq__panel { grid-area: auto; opacity: 1; visibility: visible; pointer-events: auto; }

.track__btns { display: flex; gap: 8px; }
.track__btn {
  width: 44px; height: 44px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink); border-radius: var(--radius-sm);
  background: transparent; color: var(--ink);
  font: inherit; font-size: 18px; line-height: 1; cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease), opacity .15s var(--ease);
}
.track__btn:hover:not(:disabled) { background: var(--ink); color: var(--paper); }
.track__btn:disabled { opacity: .28; cursor: default; }

.evidence[id] { scroll-margin-top: calc(var(--nav-h) + 24px); }
.stack {
  --card-w: min(600px, 88vw);
  --shot-w: 280px;
  --fan-x: 13%; --fan-rot: 5deg; --fan-z: 70px;
}
@media (hover: hover) { .stack:hover { --fan-x: 30%; --fan-rot: 9deg; --fan-z: 100px; } }
.stack__stage {
  overflow: hidden; padding: clamp(12px, 1.6vw, 20px) 0 clamp(20px, 2.4vw, 32px);
  touch-action: pan-y; cursor: grab;
}
.stack__stage:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.stack.is-drag .stack__stage { cursor: grabbing; }
.stack__cards { display: grid; perspective: 1400px; }
.stack__card {
  --stack-t: translateX(calc(var(--d, 0) * var(--fan-x)))
             translateZ(calc(var(--ad, 0) * -1 * var(--fan-z)))
             rotateY(calc(var(--d, 0) * -1 * var(--fan-rot)))
             translateX(var(--drag, 0px));
  grid-area: 1 / 1; justify-self: center; align-self: start;
  width: var(--card-w);
  display: grid; grid-template-columns: var(--shot-w) 1fr; overflow: hidden;
  transform: var(--stack-t);
  opacity: calc(1 - var(--ad, 0) * .22);
  transition: transform .75s cubic-bezier(.3, 1.12, .4, 1), opacity .5s var(--ease),
              border-color .3s var(--ease), background .3s var(--ease), box-shadow .45s var(--ease);
}
.stack.is-drag .stack__card { transition: transform 0s, opacity .5s var(--ease); }
.stack__card:not(.is-on) { cursor: pointer; }
@media (hover: hover) {
  .js .evidence.is-in .stack__card:hover, .stack__card:hover {
    transform: var(--stack-t) translateY(-4px);
  }
}
.stack__shot {
  position: relative; display: block; width: 100%; aspect-ratio: 1;
  margin: 0; padding: clamp(14px, 2.2vw, 24px);
  border: 0; border-inline-end: 1px solid var(--rule-soft);
  background: var(--paper); cursor: zoom-in;
  -webkit-appearance: none; appearance: none;
}
.stack__card:not(.is-on) .stack__shot { cursor: inherit; }
.stack__shot picture { display: contents; }
.stack__shot img {
  display: block; width: 100%; height: 100%; object-fit: contain;
  pointer-events: none; transition: transform .6s var(--ease);
}
.stack__shot:focus-visible { outline: 2px solid var(--ink); outline-offset: -4px; }
@media (hover: hover) { .stack__card.is-on .stack__shot:hover img { transform: scale(1.03); } }
.stack__mark {
  position: absolute; left: 12px; bottom: 12px; width: 34px; height: 34px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .45s var(--ease), transform .45s var(--ease),
              background .35s var(--ease), color .35s var(--ease);
}
.stack__mark .ico { width: 17px; height: 17px; }
.stack__card.is-on .stack__mark { opacity: 1; transform: none; }
.stack__body {
  display: grid; gap: 10px; align-content: center; justify-items: start;
  padding: clamp(20px, 2.6vw, 30px);
  transition: opacity .5s var(--ease);
}
.js .stack__card:not(.is-on) .stack__body { opacity: 0; }
.stack__k { font-size: clamp(21px, 1.9vw, 26px); font-weight: 400; letter-spacing: -.015em; line-height: 1.2; }
.stack__brand { font-size: var(--t-small); font-weight: 500; color: var(--ink); }
@media (max-width: 759px) {
  .stack { --card-w: min(420px, 86vw); }
  .stack__card { grid-template-columns: 1fr; }
  .stack__shot { border-inline-end: 0; border-bottom: 1px solid var(--rule-soft); }
  .stack__body { align-content: start; }
}
.stack__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 6px 16px;
  padding-top: 14px; border-top: 1px solid var(--rule-soft);
}
.stack__dots { display: flex; flex-wrap: wrap; gap: 2px; flex: 1 1 auto; }
.stack__bar .track__btns { flex: none; }
.stack__dot {
  width: 22px; height: 22px; display: grid; place-items: center;
  padding: 0; border: 0; background: none; cursor: pointer;
}
.stack__dot::before {
  content: ""; display: block; width: 9px; height: 9px;
  border: 1px solid var(--ink); background: transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.stack__dot[aria-current="true"]::before { background: var(--green); border-color: var(--green); transform: scale(1.15); }
@media (hover: hover) { .stack__dot:hover::before { background: var(--oro); border-color: var(--oro); } }
html:not(.js) .stack__cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; perspective: none; }
html:not(.js) .stack__card { grid-area: auto; width: auto; grid-template-columns: 1fr; transform: none; opacity: 1; }
html:not(.js) .stack__shot { border-inline-end: 0; border-bottom: 1px solid var(--rule-soft); cursor: default; }
html:not(.js) .stack__mark { display: none; }
html:not(.js) .stack__bar { display: none; }

.stack__more { display: flex; justify-content: center; margin-top: clamp(20px, 2.4vw, 32px); }

.zoom {
  width: 100vw; height: 100dvh; max-width: none; max-height: none;
  margin: 0; padding: 16px; border: 0; background: transparent;
  place-items: center; overflow: hidden;
}
.zoom[open] { display: grid; }
.zoom::backdrop {
  background: color-mix(in srgb, var(--carta) 90%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .45s var(--ease);
}
.zoom.is-open::backdrop { opacity: 1; }
.zoom__fig {
  width: min(86vw, 560px, calc(100dvh - 180px));
  background: var(--paper); border: 1px solid var(--rule-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); transform-origin: 0 0; cursor: zoom-out;
}
.zoom__pic { aspect-ratio: 1; background: var(--paper) center / contain no-repeat; }
.zoom__pic picture { display: contents; }
.zoom__pic img { width: 100%; height: 100%; object-fit: contain; }
.zoom__cap {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 16px;
  padding: 16px 20px 18px; border-top: 1px solid var(--rule-soft);
  opacity: 0; transition: opacity .35s var(--ease);
}
.zoom.is-open .zoom__cap { opacity: 1; transition-delay: .3s; }
.zoom__name { font-size: clamp(18px, 1.6vw, 22px); letter-spacing: -.01em; line-height: 1.25; }
.zoom__brand { color: var(--ink-muted); }
.zoom__close { position: fixed; top: 16px; right: 16px; background: var(--paper); }

.offer { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 760px) { .offer { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .offer { gap: 14px; } }
.offer__card {
  display: grid; gap: 12px; align-content: start;
  padding: clamp(24px, 2.6vw, 32px) clamp(20px, 2.2vw, 28px) clamp(26px, 2.8vw, 34px);
}
.offer__k { margin-top: 12px; font-size: clamp(22px, 2vw, 28px); font-weight: 400; letter-spacing: -.015em; line-height: 1.2; }
.offer__v { font-size: var(--t-body); line-height: 1.5; color: var(--ink-muted); }
.offer .slot { white-space: normal; font-size: 16px; }

.tiles { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 380px) { .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.tile {
  display: grid; gap: 12px; align-content: start;
  padding: clamp(22px, 2.6vw, 34px) clamp(16px, 2vw, 26px) clamp(22px, 2.4vw, 30px);
  border: 1px solid var(--green); border-radius: var(--radius);
  background: var(--green); color: var(--on-green);
  transition: transform .45s var(--ease), background .3s var(--ease), box-shadow .45s var(--ease);
}
@media (hover: hover) {
  .js .evidence.is-in .tile:hover, .tile:hover {
    transform: translateY(-4px);
    background: color-mix(in srgb, var(--on-green) 7%, var(--green));
    box-shadow: var(--shadow-lift);
    transition: transform .45s var(--ease), background .3s var(--ease), box-shadow .45s var(--ease);
  }
}
.tile ::selection { background: var(--paper); color: var(--green); }
.tile__n {
  font-size: var(--t-numeral-lg); font-weight: 300; line-height: 1;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums;
  color: var(--oro-on-green);
}
@media (max-width: 519px) { .tile__n { font-size: clamp(34px, 9.6vw, 44px); } }
.tile__plus { font-size: .66em; vertical-align: .14em; margin-right: .04em; }
.tile__k { letter-spacing: .12em; }
.tile__note { color: var(--on-green-soft); font-size: 13px; line-height: 1.4; }
.tile__note--prov::before {
  content: ""; display: inline-block; vertical-align: .18em;
  width: 1.6ch; height: 0; margin-right: .7ch;
  border-bottom: 1px dashed var(--on-green-soft);
}
.tile__n--open { display: flex; align-items: flex-end; height: 1em; }
.tile__n--open i {
  display: block; width: 2.2ch; height: 0;
  border-bottom: 1px dashed var(--on-green-soft);
}

.cap + .marquee { margin-top: 16px; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
@media (hover: hover) { .marquee:hover .marquee__track { animation-play-state: paused; } }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__set { display: flex; gap: 12px; padding-right: 12px; flex: none; }
.marquee__cell {
  display: grid; grid-template-rows: 1fr auto;
  min-width: clamp(200px, 20vw, 250px);
}
.marquee__art { display: grid; place-items: center; min-height: 96px; padding: 18px 24px; }
.marquee__art .mark { --cap: clamp(17px, 1.6vw, 22px); }
.marquee__k { color: var(--ink-muted); text-align: center; white-space: nowrap; padding: 10px 16px 12px; border-top: 1px solid var(--carta-rule); }

.mark { display: flex; align-items: flex-end; height: calc(var(--cap) * 1.3); --cap: clamp(26px, 2.8vw, 38px); }
.mark--menkell { --cap-ratio: .1675; }
.mark--whygo   { --cap-ratio: .2037; }
.mark--workline   { --cap-ratio: .1216; height: auto; }
.mark--bellissime { --cap-ratio: .1652; height: auto; }
.mark--marvel { --cap-ratio: .3277; }
.mark--dc     { --cap-ratio: .664; height: auto; }
.mark__img { width: calc(var(--cap) / var(--cap-ratio)); height: auto; }

.line__art {
  display: grid; justify-items: start; gap: 8px;
  padding-top: 16px; margin-top: 4px; border-top: 1px solid var(--carta-rule);
}
.line__art .mark { --cap: clamp(17px, 1.6vw, 22px); }
.line__artk { color: var(--ink-muted); }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-block; padding: 5px 9px 4px;
  border: 1px solid var(--oro); border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; line-height: 1.2;
  color: var(--ink);
  transition: background .3s var(--ease);
}
.chips .slot { font-size: 14px; }

@media (hover: none) {
  .js .evidence.is-in .card:active, .card:active {
    transform: translateY(-4px); border-color: var(--oro);
    background: color-mix(in srgb, var(--oro) 8%, var(--paper));
    box-shadow: var(--shadow-lift);
  }
  .card:active .tile-ico, .dir__cell:active .tile-ico { background: var(--oro); color: var(--ink); }
  .fan__card[data-fan-front]:active { border-color: var(--oro); background: color-mix(in srgb, var(--oro) 8%, var(--paper)); }
  .dir__cell:active { background: color-mix(in srgb, var(--oro) 8%, var(--paper)); }
  .cmp__handle:active .tile-ico { background: var(--oro); color: var(--ink); }
  .orbit__node:active .tile-ico { background: var(--oro); color: var(--ink); }
  .reg__card:active .reg__go { opacity: 1; transform: none; }
  .reg__card:active {
    transform: translateY(-3px); border-color: rgba(255, 255, 255, .38);
    background: color-mix(in srgb, var(--green) 88%, transparent);
  }
  .js .evidence.is-in .tile:active, .tile:active {
    transform: translateY(-4px);
    background: color-mix(in srgb, var(--on-green) 7%, var(--green));
    box-shadow: var(--shadow-lift);
  }
  .stack__card.is-on .stack__shot:active img { transform: scale(1.03); }
  .js .evidence.is-in .step:active, .step:active {
    transform: translateY(-4px); border-color: var(--oro);
    background: color-mix(in srgb, var(--oro) 8%, var(--paper));
    box-shadow: var(--shadow-lift);
  }
  .step:active .step__n { background: var(--oro); color: var(--ink); }
  .ctl:active .ctl__arrow { transform: translateX(4px); }
}

.facts { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--rule); }
@media (min-width: 640px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(24px, 3vw, 48px); } }
.facts__row { padding: 16px 0 20px; border-bottom: 1px solid var(--rule-soft); display: grid; gap: 8px; }
.facts dt { color: var(--ink-muted); }
.facts dd { font-size: clamp(18px, 1.7vw, 22px); font-weight: 400; letter-spacing: -.01em; line-height: 1.3; }
.field .facts { border-top-color: var(--on-green); }
.field .facts__row { border-bottom-color: var(--on-green-rule); }
.field .facts dt { color: var(--on-green-soft); }
.field .facts a { text-decoration: none; border-bottom: 1px solid var(--on-green-rule); }

.sec--band .sec__title { font-size: clamp(26px, 2.6vw, 36px); max-width: 24ch; }
.sec--band .sec__lead { font-size: var(--t-body); margin-top: clamp(16px, 2vw, 22px); }
@media (min-width: 900px) { .sec--band .evidence { margin-top: 10px; } }
.facts--cards { border-top: 0; gap: 12px; }
.facts--cards .facts__row { gap: 4px; padding: 20px 20px 22px; border-bottom: 1px solid var(--rule-soft); }
.sec--carta .facts--cards .facts__row { border-bottom-color: var(--carta-rule); }
.facts--cards dt { display: flex; align-items: center; gap: 18px; }
.facts--cards dd { font-size: clamp(17px, 1.5vw, 20px); padding-left: calc(44px + 18px); }
.team {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px;
  margin-top: 12px; padding: 20px 20px 22px;
}
.team__faces { display: flex; padding-left: 14px; }
.av {
  position: relative; z-index: var(--z, 1); flex: none; width: 64px; height: 64px; margin-left: -14px;
  border-radius: 50%; box-shadow: 0 0 0 3px var(--paper);
  transition: transform .35s var(--ease);
}
.av picture { display: block; width: 100%; height: 100%; }
.av img { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: var(--carta); }
.av__dot {
  position: absolute; right: 1px; bottom: 2px; width: 15px; height: 15px; border-radius: 50%;
  background: var(--online); box-shadow: 0 0 0 2.5px var(--paper);
}
@media (hover: hover) {
  .av:hover { transform: translateY(-5px); z-index: 9; }
}
.team__txt { display: grid; flex: 1000 1 auto; gap: 4px; }
.team__go { flex: 1 0 auto; }
.team__k { color: var(--ink-muted); font-size: var(--t-label); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.team__v { display: flex; align-items: center; gap: 10px; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.3; }
.team__live { position: relative; flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--online); }
.team__live::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--online);
  animation: pulse 2.4s var(--ease) infinite;
}
.team__note { color: var(--ink-muted); font-size: 13px; line-height: 1.4; }
.team__note::before {
  content: ""; display: inline-block; vertical-align: .18em;
  width: 1.6ch; height: 0; margin-right: .7ch; border-bottom: 1px dashed var(--ink-muted);
}
@media (max-width: 599px) {
  .av { width: 52px; height: 52px; margin-left: -11px; }
  .team__faces { padding-left: 11px; }
  .av__dot { width: 13px; height: 13px; }
}

.sec--cta .sec__title { font-size: var(--t-display); max-width: 19ch; line-height: 1.02; letter-spacing: -.025em; }
.sec--cta .sec__lead { margin-top: clamp(24px, 3vw, 36px); }
.sec--cta .evidence { margin-top: clamp(44px, 5.6vw, 72px); }
.steps { display: grid; grid-template-columns: 1fr; gap: 12px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; align-items: center;
  padding: 20px 20px 22px;
  border: 1px solid var(--rule-soft); border-radius: var(--radius);
  background: var(--paper);
  transition: transform .45s var(--ease), border-color .3s var(--ease),
              background .3s var(--ease), box-shadow .45s var(--ease);
}
.step__n {
  grid-row: 1 / span 2; align-self: start;
  display: grid; place-items: center; width: 40px; height: 40px;
  background: var(--green); color: var(--on-green); border-radius: var(--radius-sm);
  font-size: 17px; font-weight: 500; line-height: 1; font-variant-numeric: tabular-nums;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.step__k { color: var(--ink-muted); }
.step__v { font-size: clamp(18px, 1.7vw, 22px); font-weight: 400; letter-spacing: -.01em; line-height: 1.3; }
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step {
    grid-template-columns: 1fr; grid-template-rows: auto auto 1fr; gap: 0; align-items: start;
    padding: 24px 24px 28px;
  }
  .step__n { grid-row: 1; margin-bottom: 22px; }
  .step__k { margin-bottom: 10px; }
}
@media (hover: hover) {
  .js .evidence.is-in .step:hover, .step:hover {
    transform: translateY(-4px); border-color: var(--oro);
    background: color-mix(in srgb, var(--oro) 8%, var(--paper));
    box-shadow: var(--shadow-lift);
    transition: transform .45s var(--ease), border-color .3s var(--ease),
                background .3s var(--ease), box-shadow .45s var(--ease);
  }
  .step:hover .step__n { background: var(--oro); color: var(--ink); }
}
.cta__actions { margin-top: clamp(32px, 4vw, 48px); display: flex; flex-wrap: wrap; gap: 12px; }
.cta__actions .ctl { min-height: 56px; padding: 0 30px; font-size: 13px; }
@media (max-width: 560px) {
  .cta__actions .ctl {
    width: 100%; justify-content: space-between; text-align: left;
    padding: 12px 18px; font-size: 12px; letter-spacing: .1em;
  }
  .cta__actions .ctl__arrow { flex: none; margin-left: 16px; }
}
.sec--cta .facts { margin-top: clamp(40px, 5vw, 64px); }

.sec--intro .sec__title { font-size: clamp(36px, 4.4vw, 62px); max-width: 20ch; }

.sec--intro { padding-top: clamp(32px, 3.4vw, 48px); }

@media (min-width: 1000px) {
  .sec--intro .sec__inner {
    display: grid; align-items: center;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    column-gap: clamp(32px, 4vw, 64px);
  }
  .sec--intro .sec__title { font-size: clamp(34px, 3.4vw, 50px); max-width: 16ch; }
  .sec--intro .evidence { margin-top: 0; }
}

.sec--intro:has(.fan) { padding-bottom: 0; overflow: hidden; }

.fan {
  --fan-w: min(255px, 56vw);
  --fan-pivot: 235%;
  --fan-rot: 9.5deg;
  --fan-shrink: .055;
  --fan-fade: .085;
  margin-top: 16px;
}
@media (hover: hover) { .fan:hover { --fan-rot: 11deg; } }
.fan__stage {
  overflow: visible; overflow-x: clip;
  padding: clamp(10px, 1.4vw, 18px) 0 calc(var(--fan-w) * .44);
  touch-action: pan-y; cursor: grab;
}
.fan__stage:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.fan.is-drag .fan__stage { cursor: grabbing; }
.fan__cards { display: grid; }
.fan__card {
  --fan-t: rotate(calc(var(--d, 0) * var(--fan-rot)))
           scale(calc(1 - var(--ad, 0) * var(--fan-shrink)));
  grid-area: 1 / 1; justify-self: center; align-self: stretch;
  width: var(--fan-w);
  transform-origin: 50% var(--fan-pivot);
  transform: var(--fan-t);
  opacity: calc(1 - var(--ad, 0) * var(--fan-fade));
  background: var(--paper); border: 1px solid var(--rule-soft);
  box-shadow: 0 calc(6px + var(--ad, 0) * 6px) calc(18px + var(--ad, 0) * 10px)
              calc(-12px - var(--ad, 0) * 2px)
              color-mix(in srgb, var(--green) 55%, transparent);
  transition: transform .75s cubic-bezier(.3, 1.12, .4, 1), opacity .5s var(--ease),
              border-color .3s var(--ease), background .3s var(--ease),
              box-shadow .5s var(--ease);
}
.sec--carta .fan__card { border-color: var(--carta-rule); }
.fan__card.is-out { visibility: hidden; opacity: 0; pointer-events: none; }
.fan.is-drag .fan__card { transition: transform 0s, opacity .5s var(--ease); }
.fan__card:not([data-fan-front]) { cursor: pointer; }
.fan__fig { display: grid; grid-template-rows: auto 1fr; height: 100%; }
.fan__card .range__cap { align-content: center; transition: opacity .45s var(--ease); }
.fan__card:not([data-fan-front]) .range__cap { opacity: 0; }
.fan__card[data-fan-front] { transform: var(--fan-t) translateX(var(--drag, 0px)); }
@media (hover: hover) {
  .fan__card[data-fan-front]:hover {
    border-color: var(--oro);
    background: color-mix(in srgb, var(--oro) 8%, var(--paper));
  }
  .fan__card[data-fan-front]:hover .range__pic { background: transparent; }
  .fan__card[data-fan-front]:hover .range__pic img { transform: scale(1.04); }
}

.sec--reel .sec__go { margin-top: clamp(28px, 3.2vw, 40px); }
.sec--reel .sec__head .slot { display: block; width: fit-content; max-width: 40ch; white-space: normal; margin-top: clamp(20px, 2.4vw, 28px); }
@media (min-width: 1000px) {
  .sec--reel .sec__inner {
    display: grid; align-items: center;
    grid-template-columns: fit-content(41.6%) minmax(0, 1fr);
    column-gap: clamp(32px, 4vw, 64px);
  }
  .sec--reel .evidence { margin-top: 0; }
}

.reel {
  --reel-w: clamp(170px, 17vw, 240px);
  --reel-gap: clamp(8px, 1vw, 14px);
  display: grid; gap: var(--reel-gap);
  overflow: hidden;
  margin-inline: calc(-1 * var(--gutter));
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
@media (min-width: 1000px) {
  .reel {
    margin-left: 0;
    margin-right: calc(-1 * (max((100vw - var(--measure)) / 2, 0px) + var(--gutter)));
    -webkit-mask-image: linear-gradient(to right, transparent, #000 48px);
            mask-image: linear-gradient(to right, transparent, #000 48px);
  }
}
.reel__row { display: flex; width: max-content; }
.reel__set {
  display: flex; align-items: stretch; gap: var(--reel-gap); padding-right: var(--reel-gap); flex: none;
  animation: reel calc(var(--reel-n, 6) * 4.6s) linear infinite;
}
@keyframes reel { to { transform: translateX(-100%); } }
@media (hover: hover) { .reel:hover .reel__set { animation-play-state: paused; } }
.reel.is-off .reel__set { animation-play-state: paused; }

.reel.is-live { touch-action: pan-y; cursor: grab; -webkit-user-select: none; user-select: none; }
.reel.is-live .reel__set { animation: none; }
.reel.is-live .reel__row { will-change: transform; }
.reel.is-drag { cursor: grabbing; }
.reel.is-live img { -webkit-user-drag: none; }

.reel__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: clamp(16px, 2vw, 24px);
}
.reel__bar[hidden] { display: none; }
.reel__all { display: inline-flex; min-height: 44px; }
.reel__all[aria-expanded="true"] .prose__chev { transform: rotate(-135deg); margin-top: 3px; }

.sec--reel.is-all .reel {
  overflow: visible; margin-inline: 0; cursor: auto; touch-action: auto;
  -webkit-user-select: auto; user-select: auto;
  -webkit-mask-image: none; mask-image: none;
}
.sec--reel.is-all .reel__row { display: block; width: auto; overflow: visible; }
.sec--reel.is-all .reel__set[data-copy] { display: none; }
.sec--reel.is-all .reel__set {
  display: grid; padding-right: 0; animation: none;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, max(128px, 30%)), 1fr));
}
.sec--reel.is-all .reel__cell {
  width: auto;
  animation: reel-in .55s var(--ease) both;
  animation-delay: calc(min(var(--i, 0), 12) * 35ms);
}
@keyframes reel-in { from { opacity: 0; transform: translateY(14px); } }
.sec--reel.is-all .reel__bar .track__btns { display: none; }
@media (min-width: 1000px) {
  .sec--reel.is-all .sec__inner { align-items: start; }
  .sec--reel.is-all .sec__head { position: sticky; top: calc(var(--nav-h) + clamp(24px, 3vw, 40px)); }
}

.reel__cell {
  width: var(--reel-w); flex: none;
  background: var(--paper); border: 1px solid var(--rule-soft);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.sec--carta .reel__cell { border-color: var(--carta-rule); }
.range__fig { display: grid; grid-template-rows: auto 1fr; height: 100%; }
.range__pic { aspect-ratio: 1; padding: 10px; background: var(--paper); }
.range__pic picture { display: contents; }
.range__pic img { width: 100%; height: 100%; object-fit: contain; transition: transform .6s var(--ease); }
.range__cap {
  display: grid; gap: 5px; align-content: start;
  padding: 12px 14px 14px; border-top: 1px solid var(--rule-soft);
}
.reel__cell .range__cap { grid-template-rows: 1fr auto; }
.sec--carta .range__cap { border-top-color: var(--carta-rule); }
.range__name { font-size: var(--t-small); line-height: 1.35; text-wrap: pretty; }
.range__brand { color: var(--ink-muted); }
@media (max-width: 379px) {
  .range__cap { padding: 10px 12px 12px; }
  .range__name { font-size: 14px; }
}
@media (hover: hover) {
  .reel__cell:hover {
    border-color: var(--oro);
    background: color-mix(in srgb, var(--oro) 8%, var(--paper));
  }
  .reel__cell:hover .range__pic { background: transparent; }
  .reel__cell:hover .range__pic img { transform: scale(1.04); }
}

.reel__blank { position: relative; display: grid; place-items: center; }
.reel__blank::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px dashed var(--rule-soft);
}
.sec--carta .reel__blank::before { border-color: var(--carta-rule); }
.reel__blank-cap { gap: 12px; padding-top: 18px; padding-bottom: 18px; }
.reel__blank-cap i { display: block; height: 0; border-bottom: 1px dashed var(--ink-muted); opacity: .55; }
.reel__blank-cap i:first-child { width: 72%; }
.reel__blank-cap i:last-child { width: 38%; }

.range__fig { position: relative; }
.range__open {
  position: absolute; inset: 0; z-index: 1;
  padding: 0; border: 0; background: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.range__open:focus-visible { outline: 2px solid var(--ink); outline-offset: -4px; }
.range__open::after {
  content: "+"; position: absolute; top: 10px; right: 10px;
  display: grid; place-items: center; width: 28px; height: 28px;
  border: 1px solid var(--rule-soft); background: var(--paper); color: var(--ink);
  font-family: inherit; font-size: 18px; font-weight: 400; line-height: 1;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.reel.is-drag .range__open { cursor: grabbing; }
@media (hover: hover) {
  .reel__cell.has-sheet:hover .range__open::after { background: var(--oro); border-color: var(--oro); }
}
.fan__card[data-fan-front][data-sheet] .fan__fig { cursor: pointer; }

.sheet {
  position: fixed; inset: 0; margin: auto;
  width: min(1000px, calc(100vw - 32px)); height: fit-content; max-height: calc(100dvh - 32px);
  padding: 0; border: 1px solid var(--rule-soft); border-radius: var(--radius);
  background: var(--paper); color: var(--ink); box-shadow: var(--shadow-lift);
  overflow: hidden;
  opacity: 0; transform: translateY(18px);
  transition: opacity .35s var(--ease), transform .45s var(--ease),
              overlay .45s allow-discrete, display .45s allow-discrete;
}
.sheet:popover-open { display: block; opacity: 1; transform: none; }
@starting-style { .sheet:popover-open { opacity: 0; transform: translateY(18px); } }
.sheet::backdrop {
  background: color-mix(in srgb, var(--carta) 90%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .35s var(--ease), overlay .45s allow-discrete, display .45s allow-discrete;
}
.sheet:popover-open::backdrop { opacity: 1; }
@starting-style { .sheet:popover-open::backdrop { opacity: 0; } }
html:has(.sheet:popover-open) { overflow: hidden; }

.sheet__in { display: grid; max-height: calc(100dvh - 34px); overflow-y: auto; overscroll-behavior: contain; }
.sheet__pic { padding: 16px; border-bottom: 1px solid var(--rule-soft); background: var(--paper); }
.sheet__pic picture { display: contents; }
.sheet__pic img { display: block; width: 100%; height: auto; max-height: 42dvh; object-fit: contain; }
.sheet__body { padding: clamp(22px, 3vw, 40px); padding-top: clamp(20px, 2.6vw, 36px); }
.sheet__brand { color: var(--ink-muted); }
.sheet__name {
  margin-top: 10px; padding-right: 40px;
  font-size: clamp(24px, 2.4vw, 32px); line-height: 1.15; letter-spacing: -.015em; text-wrap: balance;
}
.sheet__lede { margin-top: 18px; font-size: var(--t-body); line-height: 1.55; max-width: 60ch; text-wrap: pretty; }
.sheet__points { list-style: none; margin: 22px 0 0; padding: 0; border-top: 1px solid var(--rule-soft); }
.sheet__points li {
  padding: 12px 0; border-bottom: 1px solid var(--rule-soft);
  font-size: var(--t-small); line-height: 1.55; max-width: 64ch; text-wrap: pretty;
}
.sheet__points strong { font-weight: 600; }
.sheet__vars { margin: 22px 0 0; display: grid; gap: 14px; }
.sheet__vars dt { color: var(--ink-muted); }
.sheet__vars dd { margin: 8px 0 0; }
.sheet__chips { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.sheet__chips li {
  padding: 5px 10px; border: 1px solid var(--rule-soft);
  font-size: 13px; line-height: 1.3;
}
.sheet__go { margin-top: clamp(24px, 3vw, 32px); }
.sheet__close { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--paper); }
@media (min-width: 860px) {
  .sheet__in { grid-template-columns: minmax(0, 420px) minmax(0, 1fr); overflow: hidden; }
  .sheet__pic {
    align-self: start; position: sticky; top: 0;
    padding: 24px; border-bottom: 0;
  }
  .sheet__pic img { max-height: none; aspect-ratio: 1; }
  .sheet__body {
    max-height: calc(100dvh - 34px); overflow-y: auto; overscroll-behavior: contain;
    border-left: 1px solid var(--rule-soft);
  }
}

.slot {
  display: inline; color: var(--ink-muted); font-size: .92em; font-weight: 400;
  border-bottom: 1px dashed currentColor; padding-bottom: 3px; white-space: nowrap;
}
.slot__note { font-weight: 300; }
.prose .slot, .step .slot { white-space: normal; }
.step .slot { font-size: 16px; }
.field .slot { color: var(--on-green); }
.facts dd .slot { font-size: 16px; white-space: normal; }

.sec--legal { padding-top: clamp(32px, 3.4vw, 48px); }
.sec--legal .sec__title { font-size: clamp(36px, 4.4vw, 62px); max-width: 20ch; }
.legal { display: grid; gap: clamp(36px, 4vw, 52px); max-width: 68ch; margin-top: clamp(40px, 5vw, 64px); }
.legal__title { font-size: clamp(20px, 1.7vw, 24px); font-weight: 500; line-height: 1.25; letter-spacing: -.01em; margin-bottom: 16px; }
.legal .prose { gap: 14px; max-width: none; line-height: 1.6; }
.legal .prose strong { color: var(--ink); font-weight: 500; }
.legal .prose ul { display: grid; gap: 10px; padding-left: 1.2em; }
.legal .prose li { list-style: disc; }
.legal .prose li::marker { color: var(--oro); }
.legal__date { padding-top: 24px; border-top: 1px solid var(--rule-soft); color: var(--ink-muted); font-size: var(--t-small); }

.foot { border-top: 1px solid var(--rule); padding: clamp(40px, 5vw, 64px) 0 clamp(32px, 4vw, 48px); font-size: var(--t-small); }
.foot__inner { max-width: var(--measure); margin-inline: auto; padding-inline: var(--gutter); display: grid; gap: clamp(28px, 4vw, 48px); }
@media (min-width: 800px) {
  .foot__inner { grid-template-columns: repeat(12, 1fr); }
  .foot__co { grid-column: 1 / 8; }
  .foot__nav { grid-column: 9 / 13; }
  .foot__ph { grid-column: 1 / 13; }
}
.foot__co { display: grid; gap: 4px; justify-items: start; }
.foot__mark { width: 32px; height: 32px; margin-bottom: 16px; }
.foot__name { font-weight: 500; margin-bottom: 4px; }
.foot__line { color: var(--ink-muted); line-height: 1.7; }
.foot__nav { display: grid; gap: 0; align-content: start; }
.foot__nav a { color: var(--ink-muted); text-decoration: none; display: inline-flex; align-items: center; min-height: 40px; transition: color .15s var(--ease); }
.foot__nav a:hover { color: var(--ink); }
.foot__ph { font-size: 13px; color: var(--ink-muted); max-width: 60ch; padding-top: 20px; border-top: 1px solid var(--rule-soft); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__grid i { animation: none; }
  .hero__video { display: none; }
  .js .reg__card { animation: none; }
  .js .sec__k i, .js .sec.is-in .sec__k i { transform: none; transition: none; }
  .js .rise, .js .evidence.is-in .rise { opacity: 1; transform: none; transition: none; }
  .js .hl, .js .evidence.is-in .hl { background-size: 100% .45em; transition: none; }
  .js .hl--fold { background-size: 100% .45em; animation: none; }
  .ctl, .ctl__arrow, .nav__links a, .foot__nav a, .prose a, .facts a,
  .track__btn, .sq__row, .sq__item, .sq__mark, .sq__panel, .range__pic img,
  .zoom::backdrop, .zoom__cap,
  .card, .tile-ico, .reg__card, .reg__go, .dir__cell, .tile, .step, .step__n,
  .orbit__node, .stack__card, .stack__shot img, .stack__mark, .stack__body, .stack__dot::before,
  .fan__card,
  .reel__cell, .range__open::after, .sheet, .sheet::backdrop { transition: none; }
  .sheet { transform: none; }
  .stack__card.is-on .stack__shot:hover img, .reel__cell:hover .range__pic img,
  .fan__card[data-fan-front]:hover .range__pic img { transform: none; }
  .reel { overflow: visible; -webkit-mask-image: none; mask-image: none; }
  .reel__set { animation: none; }
  .reel__set[data-copy] { display: none; }
  .reel__row { width: auto; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
  .sec--reel.is-all .reel__cell { animation: none; }
  .prose__chev { transition: none; }
  .card:hover, .reg__card:hover, .tile:hover, .step:hover { transform: none; }
  .stack__card:hover { transform: var(--stack-t); }
  .fan:hover { --fan-rot: 8.5deg; }
  .marquee__track { animation: none; }
  .orbit__pulse { display: none; }
  .team__live::after { display: none; }
  .av { transition: none; }
  .opanel.is-on { animation: none; }
  .nav__links, .nav__links a { transition: none; }
}
