@font-face {
  font-family: "Ogg Medium";
  /* Latin subset of OggText-Medium.woff2 (pyftsubset): 43 KB instead of 69 KB. */
  src: url("assets/fonts/OggText-Medium.subset.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --mx: 0;
  --my: 0;
  --back-opacity: 1;
  --back-x: 0px;
  --back-y: 0px;
  --back-scale: 0.76;
  --four-y: 10vh;
  --four-scale: 0.78;
  --bazaar-y: 20vh;
  --blur-px: 0px;
  --back-brightness: 1;
  --bazaar-blur-px: 0px;
  --bazaar-brightness: 1;
  --bazaar-saturation: 1;
  --shade-z: 2;
  --shade-top-alpha: 0;
  --shade-mid-alpha: 0;
  --shade-bottom-alpha: 0;
  --blur-tint: 74, 181, 224;
  --title-y: 0px;
  --title-scale: 1;
  --title-opacity: 1;
  --bridge-x: -50%;
  --bridge-y: 0px;
  --f2-enter: 0;
  --bridge-scale: 1.02;
  --split-left-x: -50%;
  --split-left-y: 0px;
  --split-left-scale: 1;
  --split-right-x: -50%;
  --split-right-y: 0px;
  --split-right-scale: 1;
  --frame2-opacity: 0;
  --frame2-x: -50%;
  --frame2-y: -50%;
  --frame2-scale: 1.06;
  --intro-copy-y: 0px;
  --intro-copy-opacity: 1;
  --panel2-opacity: 0;
  --panel2-y: calc(-50% + 58px);
  --panel3-opacity: 0;
  --panel3-y: calc(-50% + 58px);
  --sights-opacity: 0;
  --sights-controls-opacity: 0;
  --sights-enter-x: 420vw;
  --sights-visibility: hidden;
  --sights-shift: 0px;
  --sights-lead: calc(19.2vw + 48px);
  --sights-scale: 1;
  --sights-top: clamp(112px, 19vh, 220px);
  --sights-screen-top: clamp(112px, 19vh, 220px);
  --ink: #111411;
  --paper: #fdf1e1;
  --shadow: rgba(0, 0, 0, 0.32);
  --accent: #0d97c8;
  --paper-dim: rgba(253, 241, 225, 0.66);
  --line-soft: rgba(253, 241, 225, 0.16);
  font-family: Inter, Satoshi, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background: #0b1110;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: #0b1110;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
  background: #0b1110;
}

button {
  border: 0;
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

/* Scroll rig */

.cinema-scroll {
  position: relative;
  height: calc(100vh + 3700px);
}

.stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  /* Nothing inside the stage can affect layout or paint outside it. */
  contain: layout paint;
  background: #7fb4d4;
}

/* Outside the blurred segments script.js marks the stage flat: the identity filters
   below (blur(0) brightness(1)) become `none`, so those layers skip the filter pass. */
.stage.is-flat .sky-img,
.stage.is-flat .back-img {
  filter: none;
}

.world,
.back-stack,
.sky-img,
.shade,
.scene-img,
.sights-slider,
.sights-controls,
.hero-title,
.intro-copy,
.story-panel {
  position: absolute;
}

.world {
  inset: 0;
  overflow: hidden;
  background: #79b7dd;
}

/* Header
   Fixed to the viewport, above both the cinema stage and the post-flight sections.
   At the top of the page it reads as a transparent overlay on the sky; as soon as
   you scroll, .is-scrolled (script.js) morphs it into a floating glass pill that
   travels with you. Width/top interpolate between calc() lengths, so the morph is
   one smooth transition rather than a swap. */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(253, 241, 225, 0.86);
  background: rgba(11, 17, 16, 0);
  pointer-events: auto;
  transition:
    top 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  top: 14px;
  width: min(1120px, calc(100% - 32px));
  padding: 10px 16px 10px 28px;
  background: rgba(11, 17, 16, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  border-color: rgba(253, 241, 225, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.site-logo {
  justify-self: start;
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: rgba(253, 241, 225, 0.92);
  text-decoration: none;
  white-space: nowrap;
  transition: font-size 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .site-logo {
  font-size: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.2vw, 44px);
}

.site-nav a,
.language-switcher {
  color: rgba(253, 241, 225, 0.86);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.site-nav a {
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: font-size 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 0.75;
}

.site-header.is-scrolled .site-nav a {
  font-size: 15px;
  text-shadow: none;
}

.language-switcher {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: transparent;
  font-size: 16px;
  cursor: pointer;
}

.language-switcher span {
  display: inline-flex;
  line-height: 1;
}

/* Scene images */

.scene-img {
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  /* `filter` is only promoted on the layers that actually blur (sky, bazaar). */
  will-change: transform, opacity;
  pointer-events: none;
}

.sky-img {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  filter: blur(var(--blur-px)) brightness(var(--back-brightness));
  will-change: transform, opacity, filter;
}

.back-stack {
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -3vw;
  right: -3vw;
  opacity: var(--back-opacity);
  transform: translate3d(var(--back-x), var(--back-y), 0) scale(var(--back-scale));
  transform-origin: 50% 100%;
  will-change: transform, filter, opacity;
}

.back-img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(var(--blur-px)) brightness(var(--back-brightness));
}

.back-bazaar,
.back-four {
  top: auto;
  bottom: 0;
  left: 48%;
  right: auto;
  width: 112%;
  height: auto;
  object-fit: contain;
}

.back-bazaar {
  z-index: 3;
  opacity: 1;
  filter: blur(var(--bazaar-blur-px)) brightness(var(--bazaar-brightness)) saturate(var(--bazaar-saturation));
  transform: translate3d(-50%, var(--bazaar-y), 0) scale(0.86);
  will-change: transform, opacity, filter;
}

.back-four {
  z-index: 1;
  /* No blur on this one. It is a cut-out with transparent sky above the ridgeline, so
     blurring smears its dark mountains up into that empty area as a halo tracing the
     silhouette. mix-blend-mode: screen would have hidden those dark pixels, but
     .back-stack's transform isolates the blend from the sky underneath, so the layer
     fades out as the scene blurs instead. */
  filter: none;
  opacity: calc(0.72 * var(--four-vis, 1));
  mix-blend-mode: screen;
  transform: translate3d(-50%, calc(var(--four-y) - 110px), 0) scale(var(--four-scale));
}

/* Benefits slider */

.sights-slider {
  z-index: 2;
  left: 0;
  right: 0;
  top: var(--sights-top);
  padding: 0;
  /* Fades in as it slides. Without this the row snapped to visible and only moved,
     which read as the cards appearing all at once. */
  opacity: var(--sights-opacity, 1);
  visibility: var(--sights-visibility);
  /* The track keeps the previous cards alive to its left for the infinite loop, and the
     nearest one leaves a sliver poking past the viewport edge. Clip just short of where
     the leading card sits so the row starts cleanly. */
  clip-path: inset(0 -100vw 0 calc(var(--sights-lead) - 3px));
  transform: translate3d(var(--sights-enter-x), 0, 0) scale(var(--sights-scale));
  transform-origin: 0 0;
  pointer-events: auto;
  will-change: transform;
}

.sights-track {
  display: flex;
  gap: clamp(16px, 1.15vw, 24px);
  align-items: stretch;
  transform: translate3d(calc(var(--sights-shift) + var(--sights-lead)), 0, 0);
  transition: transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.sights-track.is-jumping {
  transition: none;
}

.sight-card {
  position: relative;
  flex: 0 0 clamp(360px, 19.4vw, 430px);
  height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(253, 241, 225, 0.42);
  border-radius: 24px;
  color: #000;
  background: #fdf1e1;
  box-shadow: 0 18px 52px rgba(2, 47, 64, 0.12);
  backdrop-filter: none;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
}

.sight-card::before,
.sight-card::after {
  content: none;
}

.sight-card:focus-visible,
.sight-card.is-active {
  outline: none;
}

.sight-kicker,
.sight-card h3,
.sight-card p {
  z-index: 1;
  text-shadow: none;
}

.sight-kicker {
  position: relative;
  display: block;
  margin-bottom: 56px;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.sight-pin {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 67.2px;
  height: 67.2px;
  pointer-events: none;
}

.sight-card h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: calc(24px + (16px * 1.16 * 2) + 12px);
  max-width: calc(100% - 76px);
  margin: 0;
  color: #000;
  font-size: 24px;
  font-weight: 800;
  line-height: 0.95;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sight-card p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 100%;
  margin: 12px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.16;
  display: -webkit-box;
  max-height: calc(2em * 1.16);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sights-controls {
  z-index: 5;
  left: 48px;
  right: auto;
  top: calc(var(--sights-screen-top) + 220px + 16px);
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  opacity: var(--sights-controls-opacity);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  will-change: transform, opacity;
}

.sights-controls.is-ready {
  pointer-events: auto;
}

.sight-nav {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111411;
  background: rgba(253, 241, 225, 0.94);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* Hero */

.hero-title {
  z-index: 3;
  left: 50%;
  top: clamp(122px, 19vh, 205px);
  width: min(94vw, 1780px);
  margin: 0;
  color: #fdf1e1;
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: 14rem;
  font-weight: 500;
  line-height: 0.78;
  text-align: center;
  text-shadow: none;
  transform: translate3d(-50%, var(--title-y), 0) scale(var(--title-scale));
  opacity: var(--title-opacity);
  will-change: transform, opacity;
}

.bridge-img {
  z-index: 4;
  left: 50%;
  bottom: 5vh;
  width: min(67.2vw, 2140px);
  height: auto;
  /* Entering the second scene the bridge used to grow from 67.2vw to 105vw and drop
     13vh by animating width/bottom — a layout + full re-raster of a 1920px layer per
     frame. The same rectangle is now produced by the transform: --bridge-grow scales
     the fixed box, --bridge-shift compensates for the smaller box's lower origin
     (origin is 48% down the box: 0.52 × 0.5625 × width × growth) plus the 13vh drop.
     Both derive from --f2-enter (0→1, script.js); the breakpoints below override them
     where the width rule changes. */
  --bridge-grow: calc(1 + 0.5625 * var(--f2-enter, 0));
  --bridge-shift: calc(var(--f2-enter, 0) * (13vh - 0.1645 * min(67.2vw, 2140px)));
  transform: translate3d(var(--bridge-x), calc(var(--bridge-y) + var(--bridge-shift)), 0)
    scale(calc(var(--bridge-scale) * var(--bridge-grow)));
  transform-origin: 50% 48%;
}

.splitframe-img {
  z-index: 6;
  left: 50%;
  bottom: -2vh;
  width: min(118vw, 2240px);
  height: auto;
  pointer-events: none;
}

.splitframe-left {
  transform: translate3d(var(--split-left-x), var(--split-left-y), 0) scale(var(--split-left-scale));
  transform-origin: 21% 52%;
}

.splitframe-right {
  transform: translate3d(var(--split-right-x), var(--split-right-y), 0) scale(var(--split-right-scale));
  transform-origin: 79% 52%;
}

.frame-two-img {
  z-index: 5;
  filter: none !important;
  backdrop-filter: none;
  left: 50%;
  top: 50%;
  width: min(122vw, 2160px);
  height: auto;
  opacity: var(--frame2-opacity);
  transform: translate3d(var(--frame2-x), var(--frame2-y), 0) scale(var(--frame2-scale));
  transform-origin: 50% 48%;
}

/* Ambient video layers
   Videos are injected by script.js as siblings of their poster <picture>, carrying the
   poster's own classes so every transform/filter/z-index rule above applies unchanged. */

@property --reveal {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

.scene-video {
  --reveal: 0;
  opacity: var(--reveal);
  transition: --reveal 240ms linear;
}

.scene-video.is-live {
  --reveal: 1;
}

/* Layers whose base opacity is not 1 recompose it against the reveal value.
   Must follow .scene-video — equal specificity, source order decides. */

video.back-four {
  /* Screen blending doubles up while both poster and video are visible: reveal fast. */
  opacity: calc(0.72 * var(--four-vis, 1) * var(--reveal));
  filter: none;
  transition-duration: 80ms;
}

video.frame-two-img {
  opacity: calc(var(--frame2-opacity, 0) * var(--reveal));
}

/* Poster is hidden only once its video is playing, and returns if the video ever fails. */
.scene-img.is-replaced {
  visibility: hidden;
}

.shade {
  inset: 0;
  z-index: var(--shade-z);
  pointer-events: none;
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(var(--blur-tint), var(--shade-top-alpha)) 0%,
    rgba(var(--blur-tint), var(--shade-mid-alpha)) 48%,
    rgba(var(--blur-tint), var(--shade-bottom-alpha)) 100%
  );
}

/* Intro copy */

.intro-copy {
  z-index: 9;
  left: 50%;
  bottom: clamp(56px, 28vh, 400px);
  width: min(560px, calc(100vw - 40px));
  text-align: center;
  transform: translate3d(-50%, var(--intro-copy-y), 0);
  opacity: var(--intro-copy-opacity);
  will-change: transform, opacity;
}

.intro-copy p {
  margin: 0 auto;
  max-width: 560px;
  color: #fdf1e1;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.18;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  color: var(--ink);
  border-radius: 999px;
  background: #fdf1e1;
  font-size: 0.98rem;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Story panels */

.story-panel {
  z-index: 10;
  left: 50%;
  top: 45%;
  width: min(760px, calc(100vw - 42px));
  text-align: center;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, opacity;
}

.story-panel h2 {
  margin: 0;
  color: #fdf1e1;
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: 4.75rem;
  font-weight: 500;
  line-height: 0.95;
  text-shadow: 0 16px 38px var(--shadow);
}

.story-panel p {
  width: min(520px, 100%);
  margin: 26px auto 0;
  color: #fdf1e1;
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.18;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.story-panel-bridge {
  top: 60%;
  opacity: var(--panel2-opacity);
  transform: translate3d(-50%, var(--panel2-y), 0);
}

.story-panel-bazaar {
  top: 29%;
  opacity: var(--panel3-opacity);
  transform: translate3d(-50%, var(--panel3-y), 0);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 86px;
  width: min(470px, 100%);
  margin: 72px auto 0;
}

.facts dt {
  color: #fdf1e1;
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 0.9;
  text-shadow: 0 14px 34px var(--shadow);
}

.facts dd {
  margin: 18px 0 0;
  color: #fdf1e1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.14;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.note-button {
  min-height: 50px;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--ink);
  background: #fdf1e1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
}

.note-button span:first-child {
  font-size: 1.25rem;
  line-height: 1;
}

/* ------------------------------------------------------------------ */
/* Post-flight sections (after the cinematic scroll)                   */
/* ------------------------------------------------------------------ */

.pf-section {
  position: relative;
  padding: clamp(72px, 10vh, 128px) clamp(20px, 4vw, 48px);
  background: #0b1110;
  /* Anchor jumps stop short of the fixed header pill. */
  scroll-margin-top: 96px;
  /* Not styled, laid out or painted until it nears the viewport. */
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.pf-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.pf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(17, 20, 17, 0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pf-kicker svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

/* Reveal-on-scroll: script.js adds .is-visible via IntersectionObserver */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.pf-grow-x,
.pf-grow-y {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--grow-delay, 0.25s);
}

.pf-grow-x {
  transform: scaleX(0);
  transform-origin: left center;
}

.pf-grow-y {
  transform: scaleY(0);
  transform-origin: bottom center;
}

.is-visible .pf-grow-x {
  transform: scaleX(1);
}

.is-visible .pf-grow-y {
  transform: scaleY(1);
}

/* Comparison ------------------------------------------------------- */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 5vw, 80px);
  align-items: center;
}

.compare-copy h2 {
  margin: 0 0 24px;
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  font-weight: 500;
  line-height: 0.98;
  color: var(--paper);
}

.compare-copy p {
  max-width: 480px;
  margin: 0 0 32px;
  font-size: 1.14rem;
  line-height: 1.6;
  color: var(--paper-dim);
}

.compare-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--ink);
  background: #fdf1e1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  text-decoration: none;
}

.compare-cta span:first-child {
  font-size: 1.25rem;
  line-height: 1;
}

/* "Revisa el informe con tu IA": the source report, one click away in the reader's
   own assistant. Secondary to the WhatsApp CTA — quiet outlined circles, names
   underneath because the marks alone are not universally recognised yet. */

.ai-review {
  margin-top: 34px;
}

.ai-review-label {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.ai-review-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ai-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 58px;
  color: var(--paper-dim);
  text-decoration: none;
}

.ai-btn-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(253, 241, 225, 0.22);
  border-radius: 50%;
  background: rgba(253, 241, 225, 0.06);
  color: var(--paper);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ai-btn-icon svg {
  width: 22px;
  height: 22px;
}

.ai-btn-name {
  font-size: 0.68rem;
  line-height: 1;
}

.ai-btn:hover .ai-btn-icon,
.ai-btn:focus-visible .ai-btn-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fdf1e1;
  transform: translateY(-2px);
}

.ai-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 10px;
}

.compare-chart {
  position: relative;
  height: clamp(380px, 34vw, 520px);
  padding-top: 32px;
}

.compare-gridlines {
  position: absolute;
  inset: 32px 0 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.compare-gridlines span {
  height: 1px;
  background: var(--line-soft);
}

.compare-bars {
  position: absolute;
  inset: 32px 0 44px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(20px, 2vw, 32px);
}

.compare-bar-slot {
  position: relative;
  width: clamp(140px, 13vw, 180px);
  overflow: hidden;
}

.compare-bar-slot-featured {
  height: 95%;
}

/* Secondary bar height tracks the euro figures (1.400 vs 2.600 net/month at 95%):
   the money gap is the message, so the bars keep the real proportion. */
.compare-bar-slot-secondary {
  height: 51%;
}

.compare-bar {
  position: absolute;
  inset: 0;
  border-radius: 200px 200px 0 0;
  background: rgba(253, 241, 225, 0.14);
  color: var(--paper);
  transform: translate3d(0, 100%, 0);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.compare-bar-slot-secondary .compare-bar {
  transition-delay: 0.5s;
}

.is-visible .compare-bar {
  transform: none;
}

.compare-bar-featured {
  background: #fdf1e1;
  color: var(--ink);
}

.compare-bar-icon {
  position: absolute;
  top: 28px;
  left: 50%;
  width: clamp(64px, 6vw, 88px);
  height: clamp(64px, 6vw, 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(253, 241, 225, 0.16);
  color: var(--paper);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s ease 1s;
}

.compare-bar-featured .compare-bar-icon {
  background: var(--accent);
  color: #fdf1e1;
}

.is-visible .compare-bar-icon {
  opacity: 1;
}

.compare-bar-icon svg {
  width: 46%;
  height: 46%;
}

.compare-bar-score {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease 0.9s;
}

.is-visible .compare-bar-score {
  opacity: 1;
}

.compare-score-value {
  display: block;
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.compare-score-value em {
  margin-left: 0.12em;
  font-family: inherit;
  font-style: normal;
  font-size: 0.55em;
  opacity: 0.75;
}

.compare-score-label {
  display: block;
  margin-top: 8px;
  padding: 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.compare-bar-names {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2vw, 32px);
}

.compare-bar-names span {
  width: clamp(140px, 13vw, 180px);
  font-size: 0.85rem;
  text-align: center;
  color: var(--paper-dim);
}

.compare-footnote {
  max-width: 1400px;
  margin: 56px auto 0;
  font-size: 0.8rem;
  text-align: center;
  color: var(--paper-dim);
}

/* Stats quadrant ---------------------------------------------------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stats-cell {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: clamp(28px, 3.4vw, 48px);
  border-radius: 24px;
  color: var(--ink);
  background: #fdf1e1;
  box-shadow: 0 18px 52px rgba(2, 47, 64, 0.12);
}

.stats-cell:nth-child(2) {
  --reveal-delay: 0.1s;
}

.stats-cell:nth-child(3) {
  --reveal-delay: 0.2s;
}

.stats-cell:nth-child(4) {
  --reveal-delay: 0.3s;
}

.stats-cell h2,
.stats-cell h3 {
  max-width: 26rem;
  margin: 28px 0 0;
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
}

.stats-cell > p {
  max-width: 26rem;
  margin: 24px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(17, 20, 17, 0.72);
}

/* Fees cell: what the 17 % includes as a checklist of cards, then the two things
   that sit outside it (the owner's utilities, Airbnb's own fee) */

.fees-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 34rem;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fees-grid li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 20, 17, 0.08);
  border-radius: 14px;
  background: rgba(17, 20, 17, 0.045);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
}

.fees-check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fdf1e1;
}

.fees-check svg {
  width: 13px;
  height: 13px;
}

.fees-aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 34rem;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(17, 20, 17, 0.1);
  list-style: none;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(17, 20, 17, 0.72);
}

.fees-aside li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fees-aside svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: rgba(17, 20, 17, 0.5);
}

.fees-aside strong {
  font-weight: 600;
  color: var(--ink);
}

/* Ledger cell: the year's money, top to bottom — what guests pay down to what is left */

.stats-cell.stats-cell-ledger {
  gap: 18px;
}

.stats-ledger-title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.stats-rate-sign {
  margin-right: 0.12em;
  font-size: 0.8em;
}

.stats-rate.is-gross .stats-rate-label {
  font-weight: 600;
  color: var(--ink);
}

.stats-rate.is-gross .stats-rate-value {
  font-size: 1.9rem;
  color: var(--ink);
}

.stats-rate.is-gross .pf-grow-x {
  background: rgba(17, 20, 17, 0.55);
}

.stats-cell-rates {
  justify-content: center;
  gap: 30px;
}

.stats-rate-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.stats-rate-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(17, 20, 17, 0.55);
}

.stats-rate.is-featured .stats-rate-label {
  font-weight: 600;
  color: var(--ink);
}

.stats-rate-value {
  flex: 0 0 auto;
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: rgba(17, 20, 17, 0.45);
  font-variant-numeric: tabular-nums;
}

.stats-rate.is-featured .stats-rate-value {
  font-size: clamp(2.4rem, 3.4vw, 3rem);
  color: var(--ink);
}

.stats-rate-value em {
  margin-left: 3px;
  font-family: inherit;
  font-style: normal;
  font-size: 0.62em;
  color: rgba(17, 20, 17, 0.45);
}

.stats-rate-bar {
  display: block;
  width: var(--bar-w, 100%);
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  overflow: hidden;
}

.stats-rate-bar .pf-grow-x {
  background: rgba(17, 20, 17, 0.22);
  border-radius: 999px;
}

.stats-rate.is-featured .pf-grow-x {
  background: var(--accent);
}

.stats-rate:nth-child(2) .pf-grow-x {
  --grow-delay: 0.3s;
}

.stats-rate:nth-child(3) .pf-grow-x {
  --grow-delay: 0.42s;
}

.stats-rate:nth-child(4) .pf-grow-x {
  --grow-delay: 0.54s;
}

.stats-rate:nth-child(5) .pf-grow-x {
  --grow-delay: 0.66s;
}

.stats-rate:nth-child(6) .pf-grow-x {
  --grow-delay: 0.78s;
}

.stats-rates-caption {
  margin: 8px 0 0;
  font-size: 0.76rem;
  color: rgba(17, 20, 17, 0.55);
}

.stats-cell-columns {
  justify-content: space-between;
  gap: 28px;
}

.stats-cols-head h3 {
  margin-top: 20px;
}

.stats-cols {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(32px, 4vw, 56px);
}

.stats-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(176px, 44%);
}

.stats-col-value {
  margin-bottom: 16px;
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  font-weight: 500;
  color: rgba(17, 20, 17, 0.45);
  font-variant-numeric: tabular-nums;
}

.stats-col.is-featured .stats-col-value {
  color: var(--ink);
}

.stats-col-bar {
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.stats-col-bar-tall {
  height: clamp(150px, 16vw, 220px);
}

.stats-col-bar-short {
  height: calc(clamp(150px, 16vw, 220px) * 0.55);
}

.stats-col-bar .pf-grow-y {
  background: rgba(17, 20, 17, 0.22);
  border-radius: 18px;
}

.stats-col.is-featured .pf-grow-y {
  background: var(--accent);
}

.stats-col-label {
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  color: rgba(17, 20, 17, 0.6);
}

.stats-legal {
  max-width: 26rem;
  margin-top: auto;
  padding-top: 36px;
  font-size: 0.76rem;
  line-height: 1.55;
  color: rgba(17, 20, 17, 0.55);
}

/* Reviews ------------------------------------------------------------ */

.reviews-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-title {
  max-width: 760px;
  margin: 0;
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
  color: var(--paper);
}

.reviews-subtitle {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: var(--paper-dim);
}

.reviews-divider {
  width: 1px;
  height: 24px;
  margin: 36px 0;
  background: var(--line-soft);
}

.reviews-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.reviews-trust p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--paper-dim);
}

.reviews-avatars {
  display: flex;
}

.reviews-avatar {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 2px solid #0b1110;
  background: #fdf1e1;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
}

.reviews-avatars .reviews-avatar + .reviews-avatar {
  margin-left: -8px;
}

img.reviews-avatar {
  object-fit: cover;
  background: #1a2422;
}

.reviews-viewport {
  width: 100%;
  margin-top: 44px;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  transform: translate3d(var(--reviews-x, 0px), 0, 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card {
  flex: 0 0 var(--reviews-card-w, 100%);
  box-sizing: border-box;
  padding: 0 8px;
}

.review-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: rgba(253, 241, 225, 0.05);
  opacity: 0.75;
  transform: scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.review-card.is-active .review-card-body {
  opacity: 1;
  transform: scale(1);
  border-color: var(--accent);
  background: rgba(253, 241, 225, 0.09);
}

.review-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(253, 241, 225, 0.92);
}

.review-meta {
  margin: 20px 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.review-author .reviews-avatar {
  width: 44px;
  height: 44px;
  border-color: transparent;
}

.review-name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--paper);
}

.review-role {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--paper-dim);
}

.review-author > div {
  min-width: 0;
}

.review-text + .review-meta {
  margin-bottom: 24px;
}

.reviews-controls {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.reviews-nav {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: #fdf1e1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  font-size: 1.2rem;
  cursor: pointer;
}

.reviews-nav:disabled {
  opacity: 0.4;
  cursor: default;
}

/* Footer ------------------------------------------------------------- */

.site-footer {
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
  padding: clamp(64px, 8vh, 96px) clamp(20px, 4vw, 48px) 32px;
  background: #0b1110;
  color: var(--paper-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.footer-logo {
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--paper);
  text-decoration: none;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col {
  border-top: 1px solid rgba(253, 241, 225, 0.15);
  padding-top: 20px;
}

.footer-col:nth-child(3) {
  --reveal-delay: 0.05s;
}

.footer-col:nth-child(4) {
  --reveal-delay: 0.1s;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--paper);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-col a {
  font-size: 0.95rem;
  color: var(--paper-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-badge {
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(253, 241, 225, 0.1);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-watermark {
  position: relative;
  height: 0.78em;
  margin-top: clamp(64px, 8vw, 96px);
  font-family: "Ogg Medium", "Prata", Georgia, serif;
  font-size: min(14.2vw, 210px);
  font-weight: 500;
  line-height: 1;
  -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 95%);
  mask-image: linear-gradient(to bottom, #000 50%, transparent 95%);
}

.footer-watermark span {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  white-space: nowrap;
  letter-spacing: 0.08em;
  padding-left: 0.08em;
  color: #0b1110;
  text-shadow:
    0 -1.5px 0 rgba(253, 241, 225, 0.35),
    1.5px 0 0 rgba(253, 241, 225, 0.35),
    0 1.5px 0 rgba(253, 241, 225, 0.35),
    -1.5px 0 0 rgba(253, 241, 225, 0.35),
    1px 1px 0 rgba(253, 241, 225, 0.35),
    -1px -1px 0 rgba(253, 241, 225, 0.35),
    1px -1px 0 rgba(253, 241, 225, 0.35),
    -1px 1px 0 rgba(253, 241, 225, 0.35);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(253, 241, 225, 0.1);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: var(--paper-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--paper);
}

/* Responsive */

@media (max-width: 1500px) {
  .hero-title {
    font-size: 11rem;
  }
  .story-panel h2 {
    font-size: 4.1rem;
  }
}

@media (max-width: 1100px) {
  .hero-title {
    top: 15vh;
    font-size: 7.5rem;
  }
  .bridge-img {
    /* Fixed width at this size: only the 13vh drop remains. */
    width: 138vw;
    --bridge-grow: 1;
    --bridge-shift: calc(var(--f2-enter, 0) * 13vh);
  }
  .frame-two-img {
    width: 132vw;
  }
  .story-panel h2 {
    font-size: 3.2rem;
  }
  .facts {
    gap: 34px;
    margin-top: 44px;
  }
  .facts dt {
    font-size: 3.2rem;
  }
  .sight-card {
    flex-basis: clamp(320px, 40vw, 390px);
    min-height: 178px;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .compare-chart {
    height: min(70vw, 440px);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-col {
    border-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px 18px;
    padding: 24px;
  }
  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar {
    display: none;
  }
  .site-nav a {
    font-size: 17px;
  }
  .site-header.is-scrolled {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 22px;
    padding: 14px 18px;
  }
  .site-header.is-scrolled .site-nav a {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .stage {
    min-height: 640px;
  }
  .hero-title {
    top: 16vh;
    font-size: 4.5rem;
  }
  .bridge-img {
    /* Fixed bottom and width here: no growth, no drop. */
    bottom: 2vh;
    width: 190vw;
    --bridge-grow: 1;
    --bridge-shift: 0px;
  }
  .frame-two-img {
    width: 176vw;
  }
  .intro-copy {
    bottom: 42px;
  }
  .intro-copy p,
  .story-panel p {
    font-size: 1rem;
  }
  .hero-tags {
    gap: 8px;
  }
  .hero-tags span {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.88rem;
  }
  .story-panel {
    top: 42%;
  }
  .story-panel-bazaar {
    top: 26%;
  }
  .story-panel h2 {
    font-size: 2.45rem;
  }
  .facts {
    gap: 18px;
    margin-top: 34px;
  }
  .facts dt {
    font-size: 2.5rem;
  }
  .sights-slider {
    padding: 0;
    --sights-lead: calc(19.2vw + 24px);
  }
  .sights-track {
    gap: 12px;
    transform: translate3d(calc(var(--sights-shift) + var(--sights-lead)), 0, 0);
  }
  .sight-card {
    flex-basis: min(82vw, 330px);
    height: 220px;
    padding: 24px;
    border-radius: 24px;
  }
  .sights-controls {
    top: calc(var(--sights-screen-top) + 236px);
    left: 24px;
  }
  .sight-card h3 {
    max-width: 78%;
  }
  .sight-card p {
    max-width: 100%;
    margin-top: 10px;
  }
  .sight-kicker {
    margin-bottom: 56px;
  }
  .sight-pin {
    top: 24px;
    right: 24px;
    width: 57.6px;
    height: 57.6px;
  }
  .compare-bar-slot,
  .compare-bar-names span {
    width: 38vw;
  }
  .compare-score-value {
    font-size: 1.9rem;
  }
  .compare-bar-icon {
    top: 20px;
    width: 56px;
    height: 56px;
  }
  .compare-chart {
    height: min(96vw, 420px);
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .fees-grid {
    grid-template-columns: 1fr;
  }
  .stats-cell {
    min-height: 0;
  }
  .stats-cell-rates {
    gap: 22px;
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .reviews-viewport {
    margin-top: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-watermark {
    font-size: 15.5vw;
  }
  .footer-watermark span {
    letter-spacing: 0.04em;
    padding-left: 0.04em;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .site-header,
  .site-logo,
  .site-nav a,
  .ai-btn-icon {
    transition: none;
  }
  .scene-img,
  .back-stack,
  .hero-title,
  .intro-copy,
  .story-panel,
  .sights-track,
  .sights-slider {
    transition: none;
  }
  .scene-video {
    display: none !important;
  }
  [data-reveal],
  .pf-grow-x,
  .pf-grow-y,
  .compare-bar,
  .compare-bar-icon,
  .compare-bar-score,
  .review-card-body,
  .reviews-track {
    transition: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .pf-grow-x,
  .pf-grow-y,
  .compare-bar {
    transform: none;
  }
  .compare-bar-icon,
  .compare-bar-score {
    opacity: 1;
  }
}
