:root {
  --ink: #071014;
  --ink-soft: #101c22;
  --paper: #eef1ed;
  --white: #fff;
  --water: #f36d13;
  --water-bright: #ff8533;
  --water-dark: #d45a0a;
  --muted: #5f6d73;
  --line: rgba(7, 16, 20, .12);
  --glass: rgba(7, 16, 20, .55);
  --page: min(1140px, calc(100% - 40px));
  --font: "Barlow", "Avenir Next", "Segoe UI", sans-serif;
  --display: "Barlow Condensed", "Barlow", sans-serif;
  --slate: #161b20;
  --slate-image:
    url("images/slate-contours.svg?v=6"),
    linear-gradient(180deg, transparent 0%, rgba(150, 156, 162, .07) 50%, transparent 100%),
    linear-gradient(180deg, #161b20 0%, #22282e 28%, #2a3036 50%, #22282e 72%, #161b20 100%);
  --slate-size: 760px 540px, auto, auto;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: .95;
  text-wrap: balance;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--white);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  width: var(--page);
  margin: auto;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}
.brand {
  width: min(190px, 42vw);
  filter: invert(1) brightness(1.05);
}
.brand img { width: 100%; }
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .95rem;
  font-weight: 500;
}
.site-header nav > a:not(.button) {
  text-decoration: none;
  opacity: .9;
}
.site-header nav > a:not(.button):hover {
  color: var(--water-bright);
  opacity: 1;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: .8rem 1.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--water);
  border-radius: 999px;
  color: var(--ink);
  background: var(--water);
  font-family: var(--font);
  font-weight: 650;
  font-size: .95rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--water-bright);
  box-shadow: 0 12px 28px rgba(243, 109, 19, .32);
}
.button-small { min-height: 2.6rem; padding: .55rem 1rem; font-size: .88rem; }
.button-quiet {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.button-quiet:hover {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: none;
}
.button-light {
  border-color: var(--white);
  background: var(--white);
}
.button-ghost {
  border-color: rgba(255,255,255,.45);
  color: var(--white);
  background: transparent;
}
.button-ghost:hover {
  background: rgba(255,255,255,.12);
  box-shadow: none;
}

.eyebrow {
  margin-bottom: .85rem;
  color: var(--water);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* —— Hero (poster-like) —— */
.hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 7rem max(20px, calc((100% - 1140px) / 2)) 3.25rem;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.03);
  animation: hero-drift 18s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(5, 12, 16, .78) 0%, rgba(5, 12, 16, .28) 52%, rgba(5, 12, 16, .45) 100%),
    linear-gradient(to top, rgba(5, 12, 16, .7) 0%, transparent 42%);
}
.hero-copy {
  max-width: 640px;
  animation: rise .9s ease both;
}
.hero-brand {
  margin: 0 0 .35rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero h1 {
  margin-bottom: .85rem;
  max-width: 16ch;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
}
.hero .lead {
  max-width: 32rem;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 1.5rem;
}
.price-note {
  color: rgba(255,255,255,.78);
  font-size: .95rem;
}
.price-note strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 650;
}
.scroll-cue {
  position: absolute;
  left: max(20px, calc((100% - 1140px) / 2));
  bottom: 1.35rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: pulse 2.4s ease-in-out infinite;
}
.scroll-cue span { color: var(--water-bright); }

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -1%, 0); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

/* —— Sections —— */
.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}
.advisor-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}
.advisor .advisor-heading { margin-bottom: 1.1rem; }
.advisor-heading > div { max-width: 720px; }
.advisor-heading h2 { margin-bottom: .75rem; }
.advisor-share {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: .35rem;
  margin: .15rem 0 0;
  padding: .4rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 550;
  cursor: pointer;
}
.advisor-share svg {
  width: 1.05rem;
  height: 1.05rem;
}
.advisor-share:hover,
.advisor-share.is-copied {
  border-color: var(--water);
  background: rgba(243, 109, 19, .1);
}
.advisor-share:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 2px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.75rem;
}
.section-heading h2 { margin-bottom: .75rem; }
.products .section-heading h2 { margin-bottom: .28rem; }
.products .product-line-next {
  margin-top: 3rem;
}
.products .product-line-next .eyebrow { visibility: hidden; }

.benefits {
  background: var(--paper);
}
.benefits.section {
  padding-block: clamp(2.75rem, 5vw, 4.25rem);
}
.benefits .section-heading {
  margin-bottom: 1.6rem;
}
.advisor-section .advisor {
  margin: 0;
}
.advisor-section .legal-more {
  margin-top: 1.25rem;
}
.legal-basics {
  max-width: 720px;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.legal-basics h2 {
  margin-bottom: .85rem;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
}
.legal-basics p:not(.eyebrow) {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.legal-basics h3 {
  margin: 1.15rem 0 .3rem;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.3;
}
.legal-more {
  margin: 1.25rem 0 0;
  font-weight: 600;
}
.legal-more a { text-decoration: none; }
.legal-more a:hover { text-decoration: underline; }
.legal-basics a {
  color: var(--water-dark);
  text-decoration: underline;
  text-underline-offset: .15em;
}
.legal-basics a:hover { color: var(--ink); }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
}
.benefit {
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
}
.benefit-icon {
  width: 38px;
  height: 38px;
  margin-bottom: .7rem;
  color: var(--water-dark);
}
.benefit-icon svg { width: 100%; height: 100%; }
.benefit h3 { margin-bottom: .3rem; }
.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.press.section {
  --press-cols: 3;
  --press-gap: 1.5rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding-block: clamp(2.75rem, 5vw, 4.25rem);
  padding-inline: max(20px, calc((100% - 1140px) / 2));
  color: var(--white);
  background-color: var(--slate);
  background-image: var(--slate-image);
  background-size: var(--slate-size);
  box-shadow: inset 0 1px 0 rgba(150, 156, 162, .14);
}
.press .eyebrow { color: var(--water-bright); }
.press h2 { color: var(--white); }
.press .section-heading {
  max-width: 18em;
  margin-bottom: 1.6rem;
}
.press-viewport {
  container-type: inline-size;
  min-width: 0;
}
.press-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: .35rem;
}
.press-arrow {
  display: none;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--water-bright);
  background: transparent;
  cursor: pointer;
}
.press.is-slider .press-arrow { display: inline-flex; align-items: center; justify-content: center; }
.press-arrow svg { width: 1.35rem; height: 1.35rem; }
.press-arrow:hover { color: var(--white); }
.press-arrow:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 3px;
}
.press-nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
}
.press.is-slider .press-nav { display: flex; }
.press-nav button {
  width: .45rem;
  height: .45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
}
.press-nav button.is-on {
  width: 1.15rem;
  background: var(--water-bright);
}
.press-nav button:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 3px;
}
.press-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--press-gap);
  row-gap: 2.5rem;
  align-items: start;
}
.press.is-slider .press-viewport {
  overflow: hidden;
}
.press.is-slider .press-track {
  display: flex;
  flex-wrap: nowrap;
  column-gap: var(--press-gap);
  row-gap: 0;
  transition: transform .7s ease;
  will-change: transform;
}
.press.is-slider .press-item {
  flex: 0 0 calc((100cqi - (var(--press-cols) - 1) * var(--press-gap)) / var(--press-cols));
  width: calc((100cqi - (var(--press-cols) - 1) * var(--press-gap)) / var(--press-cols));
  min-width: 0;
}
.press-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.press-meta {
  margin: 0 0 .5rem;
  color: var(--water-bright);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.press-item blockquote {
  margin: 0 0 1rem;
  max-width: 28ch;
}
.press-item blockquote p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.45;
}
.press-item blockquote p + p {
  margin-top: .85rem;
}
.press-item blockquote p::before { content: "«"; }
.press-item blockquote p::after { content: "»"; }
.press-item > a {
  position: relative;
  margin-top: auto;
  color: var(--water-bright);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
}
.press-item > a:hover { text-decoration: underline; text-underline-offset: .15em; }
.press-item > a:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 3px;
}
@media (max-width: 720px) {
  .press.section { --press-cols: 2; }
  .press-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .press.section {
    --press-cols: 1;
    padding-block: 2.5rem;
  }
  .press .section-heading { margin-bottom: 1.5rem; }
  .press-track {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .press-item { padding: 1.5rem 0; }
  .press-item:last-child { padding-bottom: 0; }
  .press.is-slider .press-item:last-child { padding-bottom: 1.5rem; }
  .press-item blockquote { max-width: 36ch; }
}

.products.section {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1140px) / 2));
  color: var(--white);
  background-color: var(--slate);
  background-image: var(--slate-image);
  background-size: var(--slate-size);
  box-shadow: inset 0 1px 0 rgba(150, 156, 162, .14);
}
.products .eyebrow { color: var(--water-bright); }
.products h2 { color: var(--white); }
.products .section-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 1.08rem;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.product-card {
  padding: 1.15rem 1.15rem 1.4rem;
  border-radius: 1rem;
  background: #111416;
  border: 1px solid rgba(255,255,255,.1);
}
.product-card img,
.product-card-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 42%;
  border-radius: .75rem;
  margin-bottom: 1.15rem;
  background: #0b0d0e;
}
.product-card-photo {
  border: 1px dashed rgba(255,255,255,.12);
}
.product-status {
  margin: 0 0 .35rem;
  color: var(--water-bright);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-card-soon .product-status { color: rgba(255,255,255,.45); }
.product-card h3 { margin-bottom: .45rem; color: var(--white); }
.product-card .product-mount {
  font-size: .78em;
  font-weight: 550;
  color: rgba(255,255,255,.72);
}
.product-price {
  margin: 0 0 .7rem;
  color: var(--white);
  font-size: 1rem;
}
.product-price del {
  margin-right: .4rem;
  color: rgba(255,255,255,.42);
  font-weight: 500;
  text-decoration: line-through;
}
.product-price strong { font-weight: 700; }
.product-price .product-price-note {
  margin-left: .35rem;
  color: rgba(255,255,255,.42);
  font-weight: 500;
}
.product-card p:not(.product-status):not(.product-price) {
  margin: 0 0 1.15rem;
  color: rgba(255,255,255,.62);
}
.products .button-quiet {
  border-color: rgba(255,255,255,.28);
  color: var(--white);
}
.products .button-quiet:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.product-intro.section {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.25rem);
}
.back-nav {
  margin: 0 0 1.5rem;
}
.back-nav a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
}
.back-nav a:hover { color: var(--ink); }
.product-intro h1 { max-width: 12ch; }
.product-intro .intro {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.15rem;
}
.product-price-note { color: var(--ink); }
.product-price-note strong { color: var(--ink); }
.product-display {
  width: 100%;
  padding: clamp(2rem, 4vw, 3rem) max(20px, calc((100% - 1140px) / 2)) clamp(2.5rem, 5vw, 4rem);
  background: #0b0d0e;
}
.product-display figure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: #111416;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .35);
}
.product-display img {
  width: 100%;
  height: auto;
  display: block;
}
.product-display-portrait figure {
  max-width: 28rem;
  margin-inline: auto;
}
.product-colors.section {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1140px) / 2));
  padding-block: clamp(3rem, 6vw, 5.5rem);
  color: var(--ink);
  background: var(--white);
}
.product-colors .section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.product-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.product-pair img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
}

/* —— Product pages: homepage-style hero + color slider —— */
.product-hero {
  position: relative;
  display: grid;
  color: var(--white);
  background-color: var(--slate);
  background-image: var(--slate-image);
  background-size: var(--slate-size);
  box-shadow: inset 0 1px 0 rgba(150, 156, 162, .14);
}
.product-hero-copy {
  padding: 7rem max(20px, calc((100% - 1140px) / 2)) 1.35rem;
}
.product-hero-copy .back-nav { margin-bottom: .85rem; }
.product-hero-copy .back-nav a {
  color: rgba(255,255,255,.72);
}
.product-hero-copy .back-nav a:hover { color: var(--white); }
.product-hero .eyebrow { color: var(--water-bright); }
.product-hero h1 {
  margin-bottom: .55rem;
  max-width: none;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}
.product-hero .product-mount {
  font-size: .48em;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255,255,255,.82);
}
.product-hero-media {
  padding: 0 max(20px, calc((100% - 1140px) / 2)) clamp(2rem, 4vw, 3.25rem);
}
.product-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  background: #111416;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .35);
}
.color-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: .35rem;
}
.color-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  border-radius: 1rem;
  background: var(--white);
}
.color-track {
  display: flex;
  width: 100%;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.color-slide {
  flex: 0 0 100%;
  width: 100%;
}
.product-colors:not(.is-ready) .color-track { display: block; }
.product-colors:not(.is-ready) .color-slide:not(.is-on) { display: none; }
.color-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1449 / 1086;
  object-fit: contain;
  background: var(--white);
}
.color-arrow {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--water);
  background: transparent;
  cursor: pointer;
}
.color-arrow svg { width: 1.35rem; height: 1.35rem; }
.color-arrow:hover { color: var(--ink); }
.color-arrow:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 3px;
}
.color-name {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin-top: .85rem;
}
.color-swatch {
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 2px solid rgba(7, 16, 20, .12);
  border-radius: 999px;
  background: var(--swatch);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.color-swatch:hover { transform: scale(1.08); }
.color-swatch.is-on {
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--ink);
}
.color-swatch.is-light { border-color: rgba(7, 16, 20, .28); }
.color-swatch:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 3px;
}
.product-usecase {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1140px) / 2));
  color: var(--white);
  background-color: var(--slate);
  background-image: var(--slate-image);
  background-size: var(--slate-size);
  box-shadow: inset 0 1px 0 rgba(150, 156, 162, .14);
}
.product-usecase-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.product-usecase .eyebrow { color: var(--water-bright); }
.product-usecase h2 { color: var(--white); }
.product-usecase .section-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 1.08rem;
}
.product-usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.product-usecase-grid:has(> :nth-child(2)) {
  grid-template-columns: 1fr 1fr;
}
.product-usecase-grid:has(> :nth-child(3)) {
  grid-template-columns: 1.2fr .9fr .9fr;
}
.product-usecase-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 1rem;
}
.product-usecase-poster {
  margin: 0;
}
.product-usecase-poster img {
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  object-fit: contain;
  border-radius: 1rem;
  background: var(--white);
}
.product-usecase + .product-usecase {
  box-shadow: inset 0 1px 0 rgba(150, 156, 162, .18);
}
.product-usecase-grid-tall:not(:has(> :nth-child(2))) img {
  width: min(100%, 28rem);
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.about-copy {
  max-width: 42rem;
}
.about-copy p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}
.about-copy > p:last-child,
.about-copy .about-more p:last-child { margin-bottom: 0; }
.about-more {
  margin: 0;
}
.about-more summary {
  cursor: pointer;
  list-style: none;
  width: fit-content;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 650;
  line-height: 1.4;
}
.about-more summary::-webkit-details-marker { display: none; }
.about-more summary::after {
  content: " +";
  font-weight: 550;
}
.about-more[open] summary {
  margin-bottom: 1.1rem;
}
.about-more[open] summary::after { content: " –"; }

.faq-list {
  max-width: 760px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--water);
  font-weight: 500;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  margin: 0 0 .75rem;
  color: var(--muted);
  max-width: 42rem;
}
.faq-list details p:last-child { margin-bottom: 1.25rem; }

.details {
  display: flex;
  flex-direction: column;
}
.details-heading {
  max-width: none;
}
.details-heading h2 { margin-bottom: 0; }
.details-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  margin-top: 1.35rem;
}
.details-specs {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.details-specs div {
  display: grid;
  grid-template-columns: minmax(7.5rem, .9fr) minmax(0, 1.2fr);
  gap: .5rem 1.25rem;
  align-items: baseline;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
}
.details dt {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.details dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
}
.details-figure {
  margin: 0;
  padding: 0;
  background: transparent;
}
.details-figure img {
  width: auto;
  height: 15.4rem;
  max-width: 100%;
  object-fit: contain;
  object-position: left top;
  display: block;
}

.pilot {
  width: var(--page);
  margin: 0 auto 3rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  border-radius: 1.15rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(243,109,19,.4), transparent 42%),
    linear-gradient(135deg, #e05f0c, #9a3f08 72%);
  overflow: hidden;
}
.pilot h2 { max-width: 18ch; margin-bottom: .75rem; }
.pilot > div > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 0;
  color: rgba(255,255,255,.86);
}
.pilot .eyebrow { color: rgba(255,255,255,.7); }
.pilot-buy {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 1.6rem;
  border-radius: 1rem;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.pilot-buy > span {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .8;
}
.pilot-buy strong {
  margin: .2rem 0 .15rem;
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 650;
  line-height: 1;
}
.pilot-buy small {
  margin-bottom: 1.15rem;
  opacity: .75;
}
.swiss-note {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.25rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
}
.swiss-flag {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background:
    linear-gradient(#fff 0 0) center / 10px 2.5px no-repeat,
    linear-gradient(#fff 0 0) center / 2.5px 10px no-repeat,
    #d52b1e;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}

footer {
  width: 100%;
  margin: 0;
  padding: 2.25rem max(20px, calc((100% - 1140px) / 2)) 1.5rem;
  color: rgba(255, 255, 255, .72);
  background-color: var(--slate);
  background-image: var(--slate-image);
  background-size: var(--slate-size);
  box-shadow: inset 0 1px 0 rgba(150, 156, 162, .14);
}
#top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 1rem;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
}
.to-top svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
.to-top:hover {
  color: var(--water);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-brand img {
  width: 132px;
  filter: invert(1) brightness(1.05);
}
.made-in-ch {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
  line-height: 1.25;
}
.made-in-ch > span:last-child {
  display: flex;
  flex-direction: column;
}
.made-in-ch .swiss-flag {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 2px;
  background:
    linear-gradient(#fff 0 0) center / .65rem .18rem no-repeat,
    linear-gradient(#fff 0 0) center / .18rem .65rem no-repeat,
    #d52b1e;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .28rem;
  font-size: .92rem;
  line-height: 1.35;
}
.footer-contact h2 {
  margin: 0 0 .2rem;
  color: var(--white);
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
}
.footer-contact p { margin: 0; }
.footer-contact a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}
.footer-contact a:hover { color: var(--water-bright); text-decoration: underline; text-underline-offset: .15em; }
.footer-links a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}
.footer-links a:hover { color: var(--water-bright); }
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .4rem;
  font-size: .92rem;
}
.copyright {
  margin: 1.35rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .42);
  font-size: .8rem;
}

/* —— Subpages —— */
.subpage { min-height: 100svh; background: var(--paper); }
.subpage .site-header {
  position: relative;
  color: var(--ink);
}
.subpage .brand { filter: none; }
.subpage-main {
  width: min(760px, calc(100% - 40px));
  margin: auto;
  padding: 4rem 0 7rem;
}
.subpage-main h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
}
.subpage-main .intro {
  color: var(--muted);
  font-size: 1.15rem;
}
.legal-page {
  width: min(820px, calc(100% - 40px));
}
.legal-page h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.legal-page .intro { margin-bottom: 2rem; }
.legal-page h2 {
  margin: 2.25rem 0 .75rem;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}
.legal-page p {
  color: var(--muted);
  font-size: 1.05rem;
}
.legal-page a {
  color: var(--water-dark);
  text-underline-offset: .15em;
}
.legal-page em { font-style: italic; }
.legal-note {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}
.legal-page .button { margin-top: .5rem; }

.advisor {
  margin: 2.5rem 0 3rem;
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.advisor h2 { margin-top: 0; }
.advisor > p { margin: 0 0 1.25rem; }
.advisor-intro {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
  font-weight: 400;
}
.advisor-intro-note {
  display: block;
  margin-top: .35rem;
  font-size: .88rem;
}
.advisor-q {
  margin: 0 0 .65rem;
  color: var(--ink);
  font-weight: 650;
  font-size: .95rem;
}
.advisor-craft {
  display: grid;
  gap: .9rem;
}
.advisor-craft-label {
  margin: 0 0 .4rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.advisor-craft-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.advisor-craft-tiles button {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 3.35rem;
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  border-radius: .85rem;
  background: transparent;
  color: var(--ink);
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 550;
  text-align: left;
  line-height: 1.25;
  cursor: pointer;
}
.advisor-craft-tiles button svg {
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  color: var(--water);
}
.advisor-craft-tiles button:hover,
.advisor-craft-tiles button.is-on {
  border-color: var(--water);
  background: rgba(243, 109, 19, .1);
}
.advisor-craft-tiles button:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 2px;
}
@media (max-width: 520px) {
  .advisor-craft-tiles { grid-template-columns: 1fr; }
}
.term-tip {
  position: relative;
  border-bottom: 1px dotted var(--muted);
  cursor: help;
}
.term-tip-box {
  position: absolute;
  left: 50%;
  bottom: calc(100% + .45rem);
  z-index: 6;
  width: max-content;
  max-width: min(340px, 78vw);
  padding: .5rem .65rem;
  border-radius: .5rem;
  background: var(--ink);
  color: var(--white);
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0;
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity .12s;
}
.term-tip:hover .term-tip-box,
.term-tip:focus .term-tip-box,
.term-tip:focus-visible .term-tip-box {
  opacity: 1;
}
.advisor-step { margin-bottom: 1.15rem; }
.advisor-step.is-hidden { display: none; }
.advisor-choices {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.advisor-choices button {
  min-height: 2.6rem;
  padding: .45rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 550;
  cursor: pointer;
}
.advisor-choices button:hover,
.advisor-choices button.is-on {
  border-color: var(--water);
  background: rgba(243, 109, 19, .1);
}
.legal-readmore {
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}
.legal-readmore summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 650;
}
.legal-readmore summary::-webkit-details-marker { display: none; }
.legal-readmore[open] summary { margin-bottom: 1.5rem; }
.advisor-result {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}
.advisor-result-title {
  margin: 0 0 .3rem;
  color: var(--ink);
  font-weight: 650;
  font-size: 1.05rem;
}
.advisor-catline,
.advisor-practice {
  display: grid;
  grid-template-columns: 10.6rem minmax(0, 1fr);
  column-gap: .4rem;
  align-items: baseline;
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}
.advisor-catline { margin-bottom: 1rem; }
.advisor-catline:has(+ .advisor-practice) { margin-bottom: .05rem; }
.advisor-practice { margin-bottom: 1rem; }
.advisor-catline strong,
.advisor-practice strong {
  color: var(--ink);
  font-weight: 650;
}
.advisor-catline-label { min-width: 0; }
.advisor-catline-sep { margin: 0 .15rem; }
.advisor-catline a {
  color: var(--water-dark);
  text-decoration: none;
  font-weight: 550;
}
.advisor-catline a:hover { text-decoration: underline; }
.advisor-choice-lead {
  margin: 0 0 .55rem;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.35;
}
.advisor-variant {
  margin: 0 0 1.25rem;
}
.advisor-variant:last-of-type { margin-bottom: 0; }
.advisor-variant-title {
  margin: 0 0 .55rem;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 650;
  line-height: 1.35;
}
.advisor-norms {
  margin: .45rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}
.advisor-norms a {
  color: var(--water-dark);
  text-decoration: none;
  font-weight: 550;
}
.advisor-norms a:hover { text-decoration: underline; }
.advisor-panel a {
  color: var(--water-dark);
  font-weight: 550;
  text-decoration: none;
}
.advisor-panel a:hover { text-decoration: underline; }
.advisor-stack {
  --advisor-gap: .55rem;
  display: grid;
  gap: var(--advisor-gap);
}
.advisor-facts {
  display: grid;
  gap: .55rem;
  align-items: stretch;
}
@media (min-width: 800px) {
  .advisor-facts { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 799px) {
  .advisor-facts { display: contents; }
  .advisor-stack:has(.advisor-fact:nth-child(1).is-on) .advisor-fact:nth-child(1) { order: 1; }
  .advisor-stack:has(.advisor-fact:nth-child(1).is-on) .advisor-panel { order: 2; }
  .advisor-stack:has(.advisor-fact:nth-child(1).is-on) .advisor-fact:nth-child(2) { order: 3; }
  .advisor-stack:has(.advisor-fact:nth-child(1).is-on) .advisor-fact:nth-child(3) { order: 4; }
  .advisor-stack:has(.advisor-fact:nth-child(2).is-on) .advisor-fact:nth-child(1) { order: 1; }
  .advisor-stack:has(.advisor-fact:nth-child(2).is-on) .advisor-fact:nth-child(2) { order: 2; }
  .advisor-stack:has(.advisor-fact:nth-child(2).is-on) .advisor-panel { order: 3; }
  .advisor-stack:has(.advisor-fact:nth-child(2).is-on) .advisor-fact:nth-child(3) { order: 4; }
  .advisor-stack:has(.advisor-fact:nth-child(3).is-on) .advisor-fact:nth-child(1) { order: 1; }
  .advisor-stack:has(.advisor-fact:nth-child(3).is-on) .advisor-fact:nth-child(2) { order: 2; }
  .advisor-stack:has(.advisor-fact:nth-child(3).is-on) .advisor-fact:nth-child(3) { order: 3; }
  .advisor-stack:has(.advisor-fact:nth-child(3).is-on) .advisor-panel { order: 4; }
}
.advisor-fact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: .5rem;
  width: 100%;
  margin: 0;
  padding: .7rem .85rem .75rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  background: var(--paper);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.advisor-fact:hover:not(.is-on):not(.is-static) {
  border-color: var(--water);
  background: #e4e8e3;
}
.advisor-fact:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 2px;
}
.advisor-fact::after {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  content: "+";
  color: var(--water);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
}
.advisor-fact.is-on {
  z-index: 1;
  border-color: var(--water);
  background: rgba(243, 109, 19, .1);
}
.advisor-fact.is-on::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 1px);
  width: 1px;
  height: var(--advisor-gap);
  background: var(--water);
  border-radius: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.advisor-fact.is-on::after { content: "–"; }
.advisor-fact.is-static {
  cursor: default;
}
.advisor-fact.is-static::after { content: none; }
.advisor-fact.has-map {
  grid-template-columns: 1fr auto auto;
}
.advisor-fact.has-map h3,
.advisor-fact.has-map .advisor-verdict,
.advisor-fact.has-map .advisor-teaser-fine { grid-column: 1; }
.advisor-fact.has-map .advisor-map {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: center;
}
.advisor-fact.has-map::after { grid-column: 3; }
.advisor-map {
  --map-line: rgba(7, 16, 20, .55);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  margin: 0 .2rem 0 .55rem;
  color: var(--water);
  box-sizing: border-box;
}
.advisor-map svg {
  display: block;
  width: 100%;
  height: auto;
}
.advisor-map .map-fill { fill: currentColor; }
.advisor-map .map-zone {
  fill: none;
  stroke: var(--map-line);
  stroke-width: 1.4;
}
.advisor-map.is-lake {
  width: 2.75rem;
}
.advisor-map.is-lake svg {
  height: 1.8rem;
}
.advisor-map-label {
  margin-top: .15rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
}
.advisor-map.is-river {
  width: 2.5rem;
  height: .55rem;
  border: 0;
  border-top: 1.5px solid var(--map-line);
  border-bottom: 1.5px solid var(--map-line);
  border-radius: 0;
}
.advisor-map.is-river.is-full {
  background: currentColor;
}
.advisor-map.is-river.is-outline {
  height: auto;
  min-height: .55rem;
  background: transparent;
}
.advisor-map.is-river.is-outline .advisor-map-label {
  margin-top: .35rem;
}
.advisor-fact h3 {
  grid-column: 1;
  margin: 0;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.advisor-verdict {
  grid-column: 1;
  margin: .2rem 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.2;
}
.advisor-fact .advisor-verdict {
  white-space: pre-line;
}
.advisor-teaser-fine {
  grid-column: 1;
  margin: .2rem 0 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 550;
}
.advisor-panel {
  padding: .85rem 1rem 1rem;
  border: 1px solid var(--water);
  border-radius: .75rem;
  background: rgba(243, 109, 19, .05);
}
.advisor-panel[hidden] { display: none; }
.advisor-panel-kicker {
  margin: 0 0 .45rem;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--water-dark);
}
.advisor-panel .advisor-panel-lead {
  margin: 0 0 .5rem;
  color: var(--ink);
  font-weight: 650;
}
.advisor-panel-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: .95rem;
}
.advisor-panel-list li + li { margin-top: .4rem; }
.advisor-panel-list strong {
  color: var(--ink);
  font-weight: 650;
}
.advisor-panel p {
  margin: 0 0 .45rem;
  color: var(--muted);
  font-size: .95rem;
}
.advisor-panel p:last-child { margin-bottom: 0; }
.advisor-panel .advisor-fine {
  margin-top: .55rem;
  color: var(--ink);
  font-weight: 400;
}
.advisor-panel .advisor-fine strong {
  color: var(--ink);
  font-weight: 650;
}
.advisor-panel .advisor-norms {
  margin-top: .65rem;
  text-align: right;
}
.advisor-result .advisor-caveat {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}
.advisor-result .button { margin-top: .25rem; }
.content-card {
  margin-top: 2.5rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.content-card h2 {
  margin-top: 2rem;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.content-card h2:first-child { margin-top: 0; }
.content-card > .intro {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.order-summary {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1.75rem 0;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
}
.order-summary span {
  color: var(--muted);
  font-size: .9rem;
}
.order-summary strong { font-size: 1.3rem; }
[data-tally-container] iframe {
  width: 100%;
  min-height: 700px;
  border: 0;
}
.legal-meta {
  margin-bottom: 2rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header nav {
    gap: .75rem;
    font-size: .82rem;
  }
  .hero {
    align-items: end;
    min-height: 64svh;
    padding-top: 6.5rem;
    padding-bottom: 2.75rem;
  }
  .hero-media img { object-position: center 40%; }
  .scroll-cue { display: none; }
  .product-hero-copy { padding-top: 6.5rem; }
  .color-stage {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
  }
  .color-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    color: var(--white);
    background: rgba(7, 11, 13, .45);
  }
  .color-arrow[data-color-prev] { left: .45rem; }
  .color-arrow[data-color-next] { right: .45rem; }
  .benefit-grid,
  .product-grid,
  .product-pair,
  .product-usecase-grid,
  .product-usecase-grid:has(> :nth-child(2)),
  .product-usecase-grid:has(> :nth-child(3)),
  .pilot,
  .details-body {
    grid-template-columns: 1fr;
  }
  .details-figure img {
    height: auto;
    max-height: 12rem;
    width: min(100%, 22rem);
  }
  .details-specs { grid-template-columns: 1fr; }
  .details-specs div { grid-template-columns: minmax(7rem, .85fr) minmax(0, 1.2fr); }
  .pilot-buy { width: 100%; }
  .footer-top { gap: 1rem 1.5rem; }
}

@media (max-width: 520px) {
  :root { --page: min(100% - 28px, 1140px); }
  .hero { padding-inline: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .price-note { text-align: center; }
  .product-hero-copy { padding-inline: 14px; }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Lightbox —— */
[data-lightbox] {
  cursor: zoom-in;
}
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  background: rgba(5, 12, 16, .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}
.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: .5rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .5);
  cursor: zoom-out;
}
.lightbox-close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
body.lightbox-locked { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .hero-copy,
  .scroll-cue {
    animation: none !important;
  }
  *, *::before, *::after { transition: none !important; }
}
