@font-face {
  font-family: 'Vorta Editorial';
  src: url('./media/cormorant-garamond.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: 'Vorta Editorial';
  src: url('./media/cormorant-garamond-italic.woff2') format('woff2');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
:root {
  color-scheme: dark;
  background: #282c24;
  color: #fff;
  --gutter: 5.4vw;
  --serif: 'Vorta Editorial', Didot, 'Bodoni MT', Georgia, serif;
}
* { box-sizing: border-box; }
body { margin: 0; }
h1, h2 { margin: 0; }
html { scrollbar-width: thin; scrollbar-color: #a6a293 #282c24; }
.backdrop, .shade, #film {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.backdrop {
  z-index: 0;
  background: #393e30 url('./media/poster.jpg') center / cover no-repeat;
  background-image: image-set(url('./media/poster.webp') type('image/webp'), url('./media/poster.jpg') type('image/jpeg'));
}
/* When the film cannot draw (no WebGL, failed download), the chapter posters
   stand in so the story still changes scene as the visitor scrolls. */
.backdrop[data-chapter="1"] { background-image: image-set(url('./media/chapter-2.webp') type('image/webp'), url('./media/chapter-2.jpg') type('image/jpeg')); }
.backdrop[data-chapter="2"] { background-image: image-set(url('./media/chapter-3.webp') type('image/webp'), url('./media/chapter-3.jpg') type('image/jpeg')); }
#film { opacity: 0; }
.shade {
  z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(15,22,17,.12) 43%, rgba(15,22,17,.58) 100%);
}
.story {
  position: relative;
  z-index: 2;
  height: calc(4825px + 100svh);
  pointer-events: none;
}
.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 28px);
  position: fixed;
  top: 0;
  left: 0;
  right: var(--menu-scrollbar-gutter, 0px);
  z-index: 10;
  padding: 22px var(--gutter);
  pointer-events: none;
}
/* A soft top scrim keeps the controls readable over bright and dark scenes
   without drawing a bar over the painting. */
.brand-header::before {
  content: '';
  position: absolute;
  inset: 0 0 -70px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15,22,17,.38), rgba(15,22,17,.16) 55%, transparent);
  pointer-events: none;
}
.brand-header > * { pointer-events: auto; }
/* Liquid glass once the story starts: white, translucent, blurred, with a
   specular edge. Ink switches to dark so it reads over any scene. */
.brand-header.is-glass {
  --header-ink: #1c2118;
  color: var(--header-ink);
  padding-top: 14px;
  padding-bottom: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.58));
  -webkit-backdrop-filter: blur(24px) saturate(1.7);
  backdrop-filter: blur(24px) saturate(1.7);
  border-bottom: 1px solid rgba(255,255,255,.75);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 30px rgba(15,22,17,.14);
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.brand-header.is-glass::before { opacity: 0; }
.brand-header { transition: padding .3s ease; }
.brand-header::before { transition: opacity .3s ease; }
.brand-header.is-glass .header-login { color: rgba(28,33,24,.85); text-shadow: none; }
.brand-header.is-glass .header-login:hover { color: var(--header-ink); }
.brand-header.is-glass .language-toggle,
.brand-header.is-glass .site-menu-toggle,
.brand-header.is-glass .glass-cta.header-start {
  --glass-ink: var(--header-ink);
  --glass-border: rgba(28,33,24,.22);
  --glass-background: linear-gradient(145deg, rgba(255,255,255,.75), rgba(255,255,255,.35));
  --glass-text-shadow: none;
  --glass-shadow: inset 0 1px 1px rgba(255,255,255,.9), 0 4px 14px rgba(15,22,17,.08);
  color: var(--header-ink);
  border-color: rgba(28,33,24,.22);
  background: linear-gradient(145deg, rgba(255,255,255,.75), rgba(255,255,255,.35));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.9), 0 4px 14px rgba(15,22,17,.08);
  text-shadow: none;
}
.brand-header.is-glass .language-toggle:focus-visible,
.brand-header.is-glass .site-menu-toggle:focus-visible,
.brand-header.is-glass .header-login:focus-visible,
.brand-header.is-glass .wordmark:focus-visible { outline-color: var(--header-ink); }
@media (prefers-reduced-motion: reduce) {
  .brand-header, .brand-header::before, .brand-header.is-glass { transition: none; }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-login {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font: 500 14px/1.2 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: .01em;
  text-shadow: 0 1px 6px rgba(15,22,17,.45);
  border-radius: 999px;
}
.header-login:hover { color: #fff; text-decoration: underline; text-underline-offset: 5px; }
.header-login:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.glass-cta.header-start {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 44px;
  padding: 0 20px;
  font: 600 14px/1.2 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: -.01em;
}
.site-menu-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  background: linear-gradient(145deg,rgba(255,255,255,.23),rgba(255,255,255,.055));
  -webkit-backdrop-filter: blur(12px) saturate(1.45);
  backdrop-filter: blur(12px) saturate(1.45);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.55);
  color: #fff;
  cursor: pointer;
}
.site-menu-toggle:hover { background-color: rgba(255,255,255,.12); }
.site-menu-toggle:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.site-menu-lines { display: grid; gap: 4px; width: 18px; }
.site-menu-lines span { display: block; height: 1.5px; border-radius: 2px; background: currentColor; }
.wordmark {
  color: inherit;
  text-decoration: none;
  font: 600 43px/1 Arial, Helvetica, sans-serif;
  letter-spacing: -3.5px;
}
.brand-dot {
  display: inline-block;
  vertical-align: top;
  margin: 6px 0 0 6px;
  font-size: 11px;
  letter-spacing: 0;
}
.wordmark:focus-visible { outline: 2px solid currentColor; outline-offset: 8px; }
.language-toggle {
  min-width: 44px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  background: linear-gradient(145deg,rgba(255,255,255,.23),rgba(255,255,255,.055));
  -webkit-backdrop-filter: blur(12px) saturate(1.45);
  backdrop-filter: blur(12px) saturate(1.45);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.55);
  color: #fff;
  font: 500 12px/1.2 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  cursor: pointer;
}
.language-toggle:hover { background-color: rgba(255,255,255,.12); }
.language-toggle { min-height: 44px; min-width: 48px; }
.headline {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 20%;
  will-change: transform;
}
.headline h1, .headline h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.7vw, 86px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.03;
  text-wrap: balance;
}
.headline h1 span { display: block; }
.headline h1 strong { font-weight: 700; }
.headline h1 span + span { margin-top: 5px; }
.hero-support {
  max-width: 65ch;
  margin-top: 20px;
  font: 400 clamp(18px, 1.5vw, 26px)/1.4 var(--serif);
  text-wrap: pretty;
}
.hero-action {
  position: absolute;
  top: 100%;
  left: -12px;
  padding: 12px;
  margin-top: 18px;
  pointer-events: auto;
  perspective: 600px;
}
.sofia-composer {
  --light-x: 38%;
  --light-y: 0%;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  width: 210px;
  min-height: 64px;
  padding: 18px 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  background: linear-gradient(145deg,rgba(255,255,255,.23),rgba(255,255,255,.055) 48%,rgba(255,255,255,.12));
  color: #fff;
  text-decoration: none;
  font: 500 17px/1.2 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: -.025em;
  text-shadow: 0 1px 4px rgba(15,22,17,.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.45);
  backdrop-filter: blur(12px) saturate(1.45);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.75), inset 0 -1px 2px rgba(255,255,255,.22), inset 1px 0 2px rgba(255,255,255,.28), 0 8px 26px rgba(15,22,17,.15);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transform-style: preserve-3d;
}
.glass-cta {
  display: grid;
  place-items: center;
  width: 210px;
  min-height: 64px;
  padding: 18px 34px;
  font: 500 17px/1.2 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: -.025em;
}
.language-toggle:focus-visible { outline: 2px solid #fff; outline-offset: 6px; }
.headline-two, .headline-three { opacity: 0; visibility: hidden; }
.headline-two h2, .headline-three h2 { font-size: clamp(48px, 6.8vw, 112px); }
.pos-scene {
  position: relative;
  z-index: 2;
  height: 100svh;
  visibility: hidden;
  pointer-events: none;
  background: #393e30;
}
.pos-scene::after, .whatsapp-scene::after, .sofia-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15,22,17,.12) 43%, rgba(15,22,17,.58) 100%);
}
.story.past-film .headline { visibility: hidden !important; }
.pos-scene img, .whatsapp-scene img, .sofia-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pos-copy {
  position: absolute;
  z-index: 1;
  top: 46%;
  left: 57%;
  right: var(--gutter);
  transform: translateY(-50%);
  text-shadow: 0 2px 18px rgba(15,22,17,.22);
}
.pos-copy h2, .whatsapp-copy h2, .sofia-copy h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.pos-copy.is-pinned { position: fixed; }
.pos-copy p {
  max-width: none;
  margin: 22px 0 0;
  font: 400 min(1.48vw, 28px)/1.4 var(--serif);
}
.whatsapp-scene, .sofia-scene {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  overflow: hidden;
  background: #393e30;
}
.whatsapp-copy {
  position: absolute;
  z-index: 1;
  top: 46%;
  left: var(--gutter);
  right: 50%;
  transform: translateY(-50%);
  text-shadow: 0 2px 18px rgba(15,22,17,.22);
}
.whatsapp-copy p {
  max-width: 45ch;
  margin: 22px 0 0;
  font: 400 clamp(20px, 1.48vw, 28px)/1.4 var(--serif);
}
.sofia-copy {
  position: absolute;
  z-index: 1;
  top: 46%;
  left: 52%;
  right: var(--gutter);
  transform: translateY(-50%);
  text-align: center;
  text-shadow: 0 2px 18px rgba(15,22,17,.22);
}
.sofia-composer {
  display: block;
  width: 100%;
  max-width: 640px;
  min-width: 0;
  margin: 34px auto 0;
  min-height: 200px;
  padding: 24px 26px 72px;
  border-radius: 30px;
  cursor: text;
  text-align: left;
}
.sofia-input {
  display: block;
  width: 100%;
  min-height: 104px;
  padding: 0;
  border: 0;
  outline: none;
  resize: none;
  background: transparent;
  color: #fff;
  font: 400 18px/1.5 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}
.sofia-submit {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.6);
  color: #fff;
  cursor: pointer;
}
.sofia-submit:hover { background: rgba(255,255,255,.4); }
.sofia-submit:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.sofia-input::placeholder { color: rgba(255,255,255,.82); opacity: 1; transition: opacity .18s ease; }
.sofia-input.is-changing::placeholder { opacity: 0; }
.feature-sequence.is-sliding {
  position: relative;
  z-index: 2;
  height: var(--sequence-height);
}
.is-sliding .feature-viewport {
  position: sticky;
  top: 0;
  height: var(--scene-height);
  overflow: hidden;
}
.is-sliding .feature-track {
  display: flex;
  height: 100%;
  transform: translate3d(0, 0, 0);
}
.is-sliding .feature-track > section {
  flex: 0 0 100%;
  height: var(--scene-height);
  min-height: 0;
}
.image-footer {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 100px var(--gutter);
  overflow: hidden;
  isolation: isolate;
  background: #393e30;
}
.image-footer img, .image-footer::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.image-footer img { object-fit: cover; object-position: center; z-index: -2; }
.image-footer::after {
  content: '';
  background: linear-gradient(180deg, transparent 35%, rgba(15,22,17,.12) 43%, rgba(15,22,17,.58) 100%);
  z-index: -1;
}
.image-footer h2 {
  font-family: var(--serif);
  font-size: min(5.9vw, 112px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.035em;
  text-align: center;
  text-wrap: balance;
}
.image-footer h2 span { display: block; white-space: nowrap; }
.image-footer h2 span + span { margin-top: .18em; }
.footer-content {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.footer-action { padding: 12px; perspective: 600px; }
.footer-legal {
  position: absolute;
  bottom: 18px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  overflow-x: auto;
  color: #b8b8b8;
  font: 400 12px/1.5 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}
.footer-legal-row {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-inline: auto;
  padding: 4px;
  white-space: nowrap;
}
.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:focus-visible { outline: 1px solid currentColor; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .sofia-input::placeholder { transition: none; }
  .pos-scene .pos-copy { position: absolute; opacity: 1 !important; visibility: visible !important; }
  .hero-action { position: relative; top: auto; left: -12px; }
  .glass-cta, .glass-cta-label { transform: none !important; }
  .glass-cta::before { transition: none; }
  .glass-cta-ripple { display: none; }
  .story { height: auto !important; }
  .pos-scene {
    position: relative;
    min-height: 100svh;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .headline {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 150px var(--gutter);
    min-height: 100svh;
  }
  .headline h1 span { display: block; }
}
.headline h1, .headline h2, .pos-copy h2, .pos-copy p,
.whatsapp-copy h2, .sofia-copy h2, #footer-headline {
  white-space: nowrap;
  text-wrap: nowrap;
}
.pos-copy .channels-description, .pos-copy .channel-labels {
  white-space: normal;
  text-wrap: pretty;
}
.pos-copy .channel-labels { font-size: clamp(15px, 1.15vw, 20px); }

/* Phones use the full column; landscape artwork keeps its subject in frame. */
@media (max-width: 767px), (max-width: 1023px) and (orientation: portrait) {
  :root {
    --gutter: clamp(20px, 6vw, 40px);
    --pos-focus: .28;
    --scene-size: 100lvh;
  }
  html { overflow-x: clip; }
  .backdrop, .shade, #film { height: var(--scene-size); }
  .brand-header { padding-top: max(16px, env(safe-area-inset-top)); padding-bottom: 12px; }
  .wordmark { font-size: 34px; }
  /* Phones keep the logo, the primary action and the menu; language and
     sign-in move into the panel. */
  .brand-header .language-toggle, .header-login { display: none; }
  .header-actions { gap: 8px; }
  .glass-cta.header-start { padding: 0 16px; }
  .headline { bottom: auto; top: 58svh; }
  .headline-one { top: auto; bottom: calc(100% - 100svh + 44px + env(safe-area-inset-bottom)); }
  .headline h1 {
    font-size: clamp(34px, 8.7vw, 56px);
    white-space: normal;
    text-wrap: balance;
    line-height: 1.04;
  }
  .headline h1 span + span { margin-top: .4em; }
  .headline h2 { font-size: clamp(38px, 10.8vw, 72px); }
  .hero-action { position: relative; top: auto; left: -12px; margin-top: 18px; width: fit-content; }
  .glass-cta { width: 184px; min-height: 58px; font-size: 16px; }
  .pos-scene img { object-position: calc(var(--pos-focus) * 100%) center; }
  .whatsapp-scene img { object-position: 79% center; }
  .sofia-scene img { object-position: 20% center; }
  .pos-copy, .whatsapp-copy, .sofia-copy {
    top: auto;
    bottom: calc(100% - 100svh + 52px + env(safe-area-inset-bottom));
    left: var(--gutter);
    right: var(--gutter);
    transform: none;
  }
  .pos-copy h2, .whatsapp-copy h2, .sofia-copy h2 { font-size: clamp(36px, 10vw, 64px); }
  .pos-copy p, .whatsapp-copy p {
    margin-top: 18px;
    font-size: clamp(20px, 5.3vw, 28px);
    line-height: 1.3;
    white-space: normal;
    text-wrap: pretty;
  }
  .sofia-composer {
    margin-top: 24px;
    min-height: 184px;
    padding: 20px 20px 66px;
    border-radius: 26px;
  }
  .sofia-input { min-height: 96px; font-size: 16px; }
  .sofia-copy.is-keyboard-open {
    top: var(--composer-edge);
    bottom: auto;
    transform: translateY(-100%);
  }
  .sofia-copy.is-keyboard-open h2 { display: none; }
  .sofia-copy.is-keyboard-open .sofia-composer { margin-top: 0; }
  .image-footer { min-height: 100svh; padding-block: 100px; }
  .image-footer img { object-position: 34% center; }
  #footer-headline, .image-footer h2 span {
    white-space: normal;
    text-wrap: balance;
    font-size: clamp(36px, 10vw, 64px);
  }
  .image-footer h2 span + span { margin-top: .5em; }
  .footer-legal { bottom: max(12px, env(safe-area-inset-bottom)); }
  .footer-legal-row { gap: 20px; }
  .footer-legal a { display: inline-flex; align-items: center; min-height: 44px; }
}
/* Keep the short landscape viewport usable, including the composer. */
@media (max-height: 500px) and (orientation: landscape) {
  :root { --gutter: max(24px, env(safe-area-inset-left), env(safe-area-inset-right)); }
  .brand-header { padding-top: 12px; padding-bottom: 8px; }
  .wordmark { font-size: 32px; }
  .headline { top: auto; bottom: 28%; }
  .headline h1 { font-size: 32px; }
  .headline h2 { font-size: 44px; }
  .hero-action { position: relative; top: auto; margin-top: 8px; }
  .headline-one { bottom: 16px; }
  .glass-cta { min-height: 48px; padding-block: 12px; }
  .pos-copy, .whatsapp-copy, .sofia-copy { top: 52%; bottom: auto; transform: translateY(-50%); }
  .pos-copy h2, .whatsapp-copy h2, .sofia-copy h2 { font-size: 36px; }
  .pos-copy p, .whatsapp-copy p { font-size: 18px; white-space: normal; }
  .sofia-composer { margin-top: 16px; min-height: 138px; padding: 14px 18px 58px; border-radius: 22px; }
  .sofia-input { min-height: 60px; height: 60px; font-size: 16px; }
  .image-footer { padding-block: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  .headline { top: auto; bottom: auto; }
  .headline-one { display: flex; flex-direction: column; justify-content: center; }
  .headline-two { background: #393e30 url('./media/chapter-2.jpg') center / cover; background-image: image-set(url('./media/chapter-2.webp') type('image/webp'), url('./media/chapter-2.jpg') type('image/jpeg')); }
  .headline-three { background: #393e30 url('./media/chapter-3.jpg') center / cover; background-image: image-set(url('./media/chapter-3.webp') type('image/webp'), url('./media/chapter-3.jpg') type('image/jpeg')); }
}

/* A full-page website pulls back into an iMac before the normal footer. */
.website-section {
  position: relative;
  z-index: 3;
  background: #26352d;
}
.website-stage {
  position: relative;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #26352d;
}
.website-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.website-section.is-enhanced { height: 280svh; }
.is-enhanced .website-stage { position: sticky; top: 0; }
.website-question, .website-answer {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  right: var(--gutter);
  margin: 0;
  color: #fff;
  font: 300 clamp(40px, 5.9vw, 100px)/1.03 var(--serif);
  letter-spacing: -.035em;
  text-wrap: balance;
  pointer-events: none;
}
.website-question { top: 10%; text-align: center; }
.website-answer { top: 23%; text-align: center; font-size: clamp(32px, 4.7vw, 80px); }
.is-enhanced .website-question { top: auto; bottom: 23%; text-align: left; }
.is-enhanced .website-answer { top: 13%; opacity: 0; }
.website-mac {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(78vw, 1080px, 94svh);
  transform: translateX(-50%);
  transform-origin: 0 0;
  container-type: inline-size;
}
.is-enhanced .website-mac { top: 0; left: 0; will-change: transform; }
.website-section:not(.is-enhanced) .website-mac { top: 40%; width: min(74vw, 900px, 74svh); }
.mac-display {
  position: relative;
  padding: 1.4%;
  border: 1px solid #a4a9a3;
  border-radius: 1.6cqw 1.6cqw 0 0;
  background: linear-gradient(135deg, #282b2b, #080b0b 60%);
}
.mac-camera {
  position: absolute;
  top: .4cqw;
  left: calc(50% - .2cqw);
  width: .4cqw;
  height: .4cqw;
  border-radius: 50%;
  background: #172733;
}
.mac-screen { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #394231; }
.mac-screen > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mac-screen::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 25%, rgba(9,20,13,.48)); }
.mac-page { position: absolute; inset: 0; z-index: 1; color: #fff; padding: 4.5%; }
.is-enhanced .mac-page { opacity: 0; }
.mac-wordmark { font: 600 4cqw/1 Arial, Helvetica, sans-serif; letter-spacing: -.25cqw; }
.mac-wordmark span { vertical-align: top; margin-left: .5cqw; font-size: 1.2cqw; letter-spacing: 0; }
.mac-page-copy { position: absolute; left: 5%; right: 5%; bottom: 12%; }
.mac-page-headline { margin: 0 0 2.5cqw; font: 300 4.4cqw/1.05 var(--serif); letter-spacing: -.1cqw; }
.mac-page-button {
  display: inline-block;
  padding: 1cqw 3cqw;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 9cqw;
  background: rgba(255,255,255,.18);
  font: 500 1.4cqw/1.2 Arial, sans-serif;
}
.mac-chin {
  display: grid;
  place-items: center;
  height: 5.5cqw;
  border-radius: 0 0 1.6cqw 1.6cqw;
  background: linear-gradient(110deg, #c3c8c3, #eff0ec 40%, #adb4af);
  box-shadow: inset 0 -1px 1px rgba(255,255,255,.7), 0 2cqw 5cqw rgba(9,18,12,.18);
}
.mac-chin span { color: #707a73; font: 600 1.8cqw/1 Arial, sans-serif; letter-spacing: -.1cqw; }
.mac-stand {
  width: 16%;
  height: 8cqw;
  margin: 0 auto;
  clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
  background: linear-gradient(#7d8880, #c3c9c3 45%, #cdd2cc 90%);
}
.mac-foot {
  position: relative;
  width: 22%;
  height: 1cqw;
  margin: -.25cqw auto 0;
  border-radius: 45% 45% .35cqw .35cqw;
  background: linear-gradient(#cdd2cc 35%, #b8c0b9 70%, #929d94);
  box-shadow: 0 .7cqw 1.3cqw rgba(9,18,12,.24);
}
@media (max-width: 767px) {
  .website-mac { width: min(88vw, 105svh); }
  .website-question, .website-answer { font-size: clamp(36px, 10vw, 64px); }
  .is-enhanced .website-answer { top: 18%; }
  .website-answer { top: 27%; }
}
@media (max-height: 500px) and (orientation: landscape) {
  .website-question, .website-answer { font-size: 34px; }
  .is-enhanced .website-answer { top: 18%; }
}
@media (prefers-reduced-motion: reduce) {
  .website-section.is-enhanced { height: auto; }
  .is-enhanced .website-stage { position: relative; }
  .is-enhanced .website-question { top: 10%; bottom: auto; text-align: center; opacity: 1 !important; }
  .is-enhanced .website-answer { top: 23%; opacity: 1 !important; }
  .is-enhanced .website-mac {
    top: 40%;
    left: 50%;
    width: min(74vw, 900px, 74svh);
    transform: translateX(-50%) !important;
    will-change: auto;
  }
  .is-enhanced .mac-page { opacity: 1 !important; }
}


/* ── Site menu ─────────────────────────────────────────────────────────── */
html.site-menu-open { overflow: hidden; }
html.site-menu-open body { padding-right: var(--menu-scrollbar-gutter, 0px); }
.site-menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(15,22,17,.42);
  opacity: 0;
  transition: opacity .26s ease;
}
.site-menu-scrim.is-open { opacity: 1; }
.site-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: max(22px, env(safe-area-inset-top)) clamp(24px, 3vw, 40px) max(28px, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #fff;
  background: rgba(36,37,30,.94);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: -24px 0 60px rgba(15,22,17,.35);
  border-left: 1px solid rgba(255,255,255,.12);
  transform: translateX(104%);
  transition: transform .28s cubic-bezier(.22,1,.36,1);
  outline: none;
}
.site-menu.is-open { transform: translateX(0); }
.site-menu-close {
  position: absolute;
  top: max(22px, env(safe-area-inset-top));
  right: clamp(24px, 3vw, 40px);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  background: linear-gradient(145deg,rgba(255,255,255,.2),rgba(255,255,255,.05));
  color: #fff;
  font: 300 30px/1 var(--serif);
  cursor: pointer;
}
.site-menu-close:hover { background-color: rgba(255,255,255,.12); }
.site-menu-close:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.site-menu-title {
  margin: 8px 0 0;
  font: 400 12px/1 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.site-menu-primary ul { list-style: none; margin: 0; padding: 0; }
.site-menu-primary li + li { border-top: 1px solid rgba(255,255,255,.1); }
.site-menu-primary a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 64px;
  padding: 16px 4px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}
.site-menu-primary a:hover .site-menu-label { color: #fff; text-decoration: underline; text-underline-offset: 6px; }
.site-menu-primary a:focus-visible, .site-menu-secondary a:focus-visible, .site-menu-legal a:focus-visible, .site-menu-login:focus-visible {
  outline: 2px solid #fff; outline-offset: 2px;
}
.site-menu-label {
  font: 400 clamp(26px, 2.2vw, 30px)/1.1 var(--serif);
  letter-spacing: -.02em;
}
.site-menu-description {
  font: 400 14px/1.4 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: rgba(255,255,255,.62);
}
.site-menu-secondary { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.site-menu-secondary a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font: 500 15px/1.2 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}
.site-menu-secondary a:hover { color: #fff; text-decoration: underline; text-underline-offset: 5px; }
.site-menu-account {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}
.site-menu-login {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font: 500 15px/1.2 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  border-radius: 999px;
}
.site-menu-login:hover { color: #fff; text-decoration: underline; text-underline-offset: 5px; }
.glass-cta.site-menu-start {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 48px;
  padding: 0 24px;
  font-size: 15px;
}
.site-menu-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.site-menu-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font: 400 13px/1.2 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}
.site-menu-legal a:hover { color: #fff; }
/* Phones: the panel also carries the language switch that leaves the header. */
.site-menu .language-toggle { display: none; }
@media (max-width: 767px) {
  .site-menu { width: 100%; border-left: 0; box-shadow: none; }
  .site-menu .language-toggle { display: inline-flex; align-items: center; justify-content: center; align-self: flex-start; }
  .site-menu-account { flex-wrap: wrap; }
}

/* ── Scroll hint ───────────────────────────────────────────────────────── */
.scroll-hint {
  position: fixed;
  right: var(--gutter);
  bottom: max(26px, env(safe-area-inset-bottom));
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 4px;
  border: 0;
  background: none;
  color: rgba(255,255,255,.92);
  font: italic 400 clamp(15px, 1.1vw, 19px)/1 var(--serif);
  letter-spacing: .01em;
  text-shadow: 0 1px 8px rgba(15,22,17,.5);
  cursor: pointer;
  transition: opacity .35s ease, transform .35s ease;
}
.scroll-hint:hover { color: #fff; }
.scroll-hint:focus-visible { outline: 2px solid #fff; outline-offset: 4px; border-radius: 999px; }
.scroll-hint.is-hidden { opacity: 0; transform: translateY(8px); pointer-events: none; }
.scroll-hint-arrow { animation: scroll-hint-nudge 2.4s ease-in-out infinite; }
@keyframes scroll-hint-nudge {
  0%, 55%, 100% { transform: translateY(0); }
  28% { transform: translateY(5px); }
}
@media (max-width: 767px) {
  .scroll-hint { right: var(--gutter); bottom: calc(100% - 100svh + 52px + env(safe-area-inset-bottom)); font-size: 14px; gap: 6px; }
}
@media (max-height: 500px) and (orientation: landscape) {
  .scroll-hint { bottom: 12px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint-arrow { animation: none; }
  .scroll-hint, .site-menu, .site-menu-scrim { transition: none; }
}
