:root {
  color-scheme: light;
  --palette-bg: #ffffff;
  --palette-text-primary: #222222;
  --palette-text-secondary: #6a6a6a;
  --palette-bg-primary-core: #ff385c;
  --palette-bg-tertiary-core: #e00b41;
  --palette-surface: #f2f2f2;
  --palette-elevated: #ffffff;
  --palette-on-accent: #ffffff;
  --palette-rule: #dddddd;
  --shadow-card: rgba(0, 0, 0, 0.02) 0 0 0 1px, rgba(0, 0, 0, 0.04) 0 2px 6px, rgba(0, 0, 0, 0.1) 0 4px 8px;
  --shadow-hover: rgba(0, 0, 0, 0.08) 0 4px 12px;
  --shadow-header: rgba(0, 0, 0, 0.02) 0 0 0 1px, rgba(0, 0, 0, 0.04) 0 1px 4px;
  --radius-btn: 8px;
  --radius-badge: 14px;
  --radius-card: 20px;
  --radius-hero: 32px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --page: 1128px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --palette-bg: #171412;
  --palette-text-primary: #f3ebe4;
  --palette-text-secondary: #b6aba3;
  --palette-bg-primary-core: #ff385c;
  --palette-bg-tertiary-core: #e00b41;
  --palette-surface: #2c2623;
  --palette-elevated: #221e1c;
  --palette-on-accent: #ffffff;
  --palette-rule: #3d3632;
  --shadow-card: 0 0 0 1px rgba(243, 235, 228, 0.08), rgba(12, 8, 6, 0.42) 0 8px 20px;
  --shadow-hover: rgba(12, 8, 6, 0.5) 0 10px 24px;
  --shadow-header: 0 1px 0 rgba(243, 235, 228, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.door-page {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: var(--palette-text-primary);
  background: var(--palette-bg);
  -webkit-font-smoothing: antialiased;
}

body.door-page a {
  color: inherit;
  text-decoration: none;
}

body.door-page img {
  max-width: 100%;
  display: block;
}

body.door-page button,
body.door-page input,
body.door-page textarea {
  font-family: inherit;
}

.door-sheet {
  width: min(var(--page), calc(100% - 48px));
  margin-inline: auto;
}

.door-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--palette-bg);
  box-shadow: var(--shadow-header);
}

.door-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  min-height: 64px;
}

.door-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.door-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--palette-bg-primary-core);
  flex: none;
}

.door-wordmark {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.18px;
  line-height: 1.2;
}

.door-byline {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--palette-text-secondary);
}

.door-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.door-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.door-nav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.door-nav-rule {
  width: 1px;
  height: 18px;
  background: var(--palette-rule);
}

.door-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.door-tools > a {
  padding: 8px 12px;
  border-radius: var(--radius-btn);
}

.door-tools > a:hover {
  background: var(--palette-surface);
}

.door-lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.door-lang a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  background: var(--palette-surface);
}

.door-lang a[aria-current="true"] {
  background: var(--palette-text-primary);
  color: var(--palette-bg);
}

.door-theme {
  display: flex;
  align-items: center;
  gap: 6px;
}

.door-theme button {
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--radius-badge);
  background: var(--palette-surface);
  color: var(--palette-text-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.door-theme button:hover {
  box-shadow: var(--shadow-hover);
}

.door-theme button:active {
  transform: scale(0.98);
}

.door-theme button[aria-pressed="true"] {
  background: var(--palette-text-primary);
  color: var(--palette-bg);
}

.door-theme button:focus-visible {
  outline: 2px solid var(--palette-bg-primary-core);
  outline-offset: 2px;
}

.door-hero {
  padding: 20px 0 32px;
}

.door-hero-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-hero);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 300px;
}

.door-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.door-hero-photo figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--palette-elevated);
  color: var(--palette-text-primary);
  border-radius: var(--radius-badge);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

.door-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  align-items: end;
  padding-top: 20px;
}

.door-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: var(--palette-text-secondary);
}

.door-page h1 {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.44px;
}

.door-lead {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--palette-text-secondary);
  max-width: 38em;
}

.door-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.door-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-btn);
  background: var(--palette-bg-primary-core);
  color: var(--palette-on-accent);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.door-btn:hover {
  background: var(--palette-bg-tertiary-core);
  box-shadow: var(--shadow-hover);
}

.door-btn:active {
  transform: scale(0.98);
}

.door-textlink {
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.door-section {
  padding: 16px 0 56px;
}

.door-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.door-section-head h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.43;
}

.door-section-aside {
  margin: 0;
  font-size: 14px;
  color: var(--palette-text-secondary);
}

.door-steps-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.door-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.door-step {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: var(--radius-card);
  background: var(--palette-elevated);
  box-shadow: var(--shadow-card);
}

.door-step-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.door-step-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.18px;
  line-height: 1.25;
}

.door-step-title b {
  color: var(--palette-bg-primary-core);
  font-weight: 700;
  margin-right: 6px;
}

.door-step-note {
  margin: 0;
  font-size: 13px;
  color: var(--palette-text-secondary);
}

.door-step-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--palette-text-secondary);
}

.door-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-badge);
  background: var(--palette-surface);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.door-steps-photo {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.door-steps-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
  object-position: 50% 40%;
}

.door-whom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-card);
  background: var(--palette-elevated);
  box-shadow: var(--shadow-card);
  margin-top: 24px;
}

.door-whom img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.door-whom h2 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.door-whom p {
  margin: 0;
  font-size: 14px;
  color: var(--palette-text-secondary);
}

.door-cities-banner {
  position: relative;
  margin: 0;
  border-radius: var(--radius-hero);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 280px;
}

.door-cities-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.door-city-names {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.door-city-names span {
  background: var(--palette-elevated);
  color: var(--palette-text-primary);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

.door-city-ask {
  margin: 16px 0 0;
  color: var(--palette-text-secondary);
}

.door-ask {
  padding: 8px 0 72px;
}

.door-ask-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  padding: 32px;
  border-radius: var(--radius-hero);
  box-shadow: var(--shadow-card);
  background: var(--palette-elevated);
}

.door-ask h2 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: var(--palette-text-secondary);
}

.door-ask-title {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.44px;
}

.door-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.door-field {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.door-field-wide {
  grid-column: 1 / -1;
}

.door-field label {
  font-size: 12px;
  font-weight: 600;
}

.door-optional {
  font-weight: 400;
  color: var(--palette-text-secondary);
}

.door-form input,
.door-form textarea {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: var(--palette-surface);
  padding: 12px 14px;
  font-size: 16px;
  color: var(--palette-text-primary);
}

.door-form input:focus,
.door-form textarea:focus {
  outline: 2px solid var(--palette-bg-primary-core);
  background: var(--palette-elevated);
}

.door-ask-note {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--palette-text-secondary);
}

.door-email {
  font-weight: 600;
  color: var(--palette-text-primary);
}

.door-ask-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  color: var(--palette-text-secondary);
  font-size: 14px;
}

.door-ask-side p {
  margin: 0;
}

.door-sent {
  padding: 72px 0 96px;
}

.door-sent h1 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.44px;
}

.door-sent p {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--palette-text-secondary);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 950px) {
  .door-page h1,
  .door-sent h1 {
    font-size: 30px;
  }

  .door-hero-copy,
  .door-ask-card,
  .door-steps-layout {
    grid-template-columns: 1fr;
  }

  .door-hero-photo {
    height: 240px;
  }

  .door-steps-photo {
    height: 240px;
  }
}

@media (max-width: 744px) {
  .door-sheet {
    width: calc(100% - 32px);
  }

  .door-nav-links,
  .door-nav-rule {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .door-form {
    grid-template-columns: 1fr;
  }

  .door-ask-card {
    padding: 22px;
  }

  .door-page h1,
  .door-sent h1 {
    font-size: 26px;
  }

  .door-wordmark {
    font-size: 14px;
  }
}

/* Bilingual motion door. The rules above remain in use by confirmation pages. */
html[data-door-motion] {
  color-scheme: dark;
  scroll-behavior: auto;
  --bg: #0f0e0c;
  --surface: #1a1714;
  --elev: #221e1a;
  --ink: #f3ebe4;
  --muted: #a89f93;
  --line: #3a342e;
  --accent: #8faf98;
  --accent-2: #c4b49a;
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --display: "Source Serif 4", Georgia, serif;
  --header-height: 76px;
}

.motion-door {
  margin: 0;
  isolation: isolate;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
}

.motion-door a { color: inherit; text-decoration: none; }
.motion-door button { font: inherit; }
.motion-door :focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.motion-door ::selection { background: var(--accent); color: var(--bg); }
.motion-door h2 {
  margin: 0 0 20px;
  font: 500 clamp(2.1rem, 4vw, 3.6rem)/1.12 var(--display);
  letter-spacing: -.035em;
  text-wrap: balance;
}

.galaxy-backdrop { position: fixed; inset: 0; z-index: -1; opacity: .4; pointer-events: none; }
.galaxy-backdrop img,
.galaxy-backdrop video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.galaxy-backdrop video { opacity: 0; transition: opacity .6s; }
.galaxy-backdrop video.ready { opacity: 1; }
.background-toggle {
  position: fixed;
  right: 20px;
  bottom: 16px;
  z-index: 40;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  font-size: 11px !important;
  cursor: pointer;
}
.background-toggle:hover { color: var(--ink); border-color: var(--muted); }

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 100;
  pointer-events: none;
}

.motion-skip {
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 101;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--bg) !important;
  transform: translateY(-150%);
}
.motion-skip:focus { transform: none; }
.motion-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.motion-brand { flex: none; font-size: 21px; font-weight: 600; letter-spacing: -.04em; }
.motion-brand span { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 24px; min-width: 0; }
.motion-language { display: flex; flex: none; gap: 10px; font-size: 11px; }
.motion-language a { padding-block: 8px; color: var(--muted); }
.motion-language a[aria-current] { color: var(--accent); text-decoration: underline; text-underline-offset: 5px; }
.motion-language a:hover { color: var(--ink); }
.header-ask { font-size: 13px; font-weight: 500; line-height: 1.4; }
.header-ask span { margin-left: 14px; color: var(--accent); font-size: 18px; }
.header-ask:hover { color: var(--accent); }
.motion-kicker {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Static HTML is the default, including when JavaScript is unavailable. */
.hero-sticky {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: 70px 24px 100px;
}
.hero-stage { width: min(960px, 100%); text-align: center; }
.hero-morph {
  display: grid;
  align-items: center;
  min-height: 2.25em;
  margin: 0 auto 28px;
  font: 500 clamp(2.9rem, 7.5vw, 6rem)/1.06 var(--display);
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-beat { grid-area: 1 / 1; opacity: 0; visibility: hidden; }
.hero-beat.on { opacity: 1; visibility: visible; }
.hero-body { max-width: 640px; margin: 0 auto; color: var(--muted); }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.motion-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.motion-button.primary { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.motion-button.primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.motion-button.ghost:hover { background: var(--surface); border-color: var(--muted); }
.scroll-cue { display: none; }

#story { scroll-margin-top: var(--header-height); border-block: 1px solid var(--line); }
.story-intro { width: min(880px, calc(100% - 48px)); margin-inline: auto; padding-block: 80px 32px; }
.story-intro p { max-width: 42em; margin: 0; color: var(--muted); }
.story-stage { width: min(1180px, calc(100% - 64px)); margin-inline: auto; padding-block: 32px 64px; }
.story-step { width: min(880px, 100%); margin-inline: auto; padding-block: 48px; text-align: center; }
.story-step + .story-step { border-top: 1px solid var(--line); }
.story-step h3 { margin: 0 0 24px; font: 500 clamp(2.4rem, 5.4vw, 4.6rem)/1.1 var(--display); letter-spacing: -.04em; text-wrap: balance; }
.story-body { max-width: 48ch; margin: 0 auto; color: var(--muted); font-size: 19px; line-height: 1.7; }
.motion-chip {
  display: inline-block;
  margin-top: 24px;
  padding: 5px 12px;
  border: 1px solid #8faf9833;
  border-radius: 999px;
  color: var(--accent);
  background: #8faf9810;
  font-size: 12px;
  font-weight: 500;
}
.story-finale { min-width: 0; padding-block: 32px; }
.story-finale > .motion-kicker { text-align: center; }
.story-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 0; padding: 8px; list-style: none; }
.story-summary li { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; min-height: 240px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #1a1714df; }
.summary-number { margin-bottom: 24px; color: var(--accent); font-size: 13px; }
.story-summary h3 { margin: 0 0 24px; font: 500 clamp(1.25rem, 2vw, 1.65rem)/1.2 var(--display); letter-spacing: -.025em; }
.story-summary .motion-chip { margin-top: auto; }
.story-main { display: contents; }
/* Hide chrome when scrub is off — never leave an unconditional display:none on .story-pager */
html:not([data-scrub]) .story-pager,
html:not([data-scrub]) .product-pager,
html:not([data-scrub]) .product-counter { display: none; }

.product-section { border-bottom: 1px solid var(--line); }
.product-heading { width: min(1180px, calc(100% - 48px)); margin-inline: auto; padding-block: 80px 40px; }
.product-heading > p:not(.motion-kicker) { margin: 0; color: var(--muted); font-size: 15px; }
.product-heading .product-note { margin-top: 14px !important; font-size: 12px !important; }
.product-reel { width: min(1180px, calc(100% - 48px)); margin: 0 auto 56px; }
.product-reel-frame { position: relative; aspect-ratio: 16 / 9; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #07070a; }
.product-reel video { display: block; width: 100%; height: 100%; object-fit: contain; background: #07070a; }
.product-reel-play {
  position: absolute; inset: 0; margin: auto; width: 92px; height: 92px; border: 0; border-radius: 999px;
  background: #3dd6c6e6; color: #042926; font: 650 15px/1 var(--font); letter-spacing: .04em; text-transform: uppercase; cursor: pointer;
}
.product-reel-play[hidden] { display: none; }
.product-reel figcaption { margin: 20px 4px 0; color: var(--ink); font: 500 clamp(1.15rem, 2.4vw, 1.85rem)/1.25 var(--display); text-wrap: balance; }
.product-reel-cta {
  display: inline-flex; align-items: center; margin-top: 18px; padding: 12px 18px; border-radius: 999px;
  background: var(--accent); color: var(--bg); font-size: 14px; font-weight: 650;
}
.product-shot { position: relative; margin: 0; background: var(--bg); }
.product-shot figcaption { padding: 32px max(24px, calc((100vw - 1180px) / 2)); color: var(--ink); font: 500 clamp(1.3rem, 3.3vw, 2.8rem)/1.22 var(--display); text-wrap: balance; }
.product-label { display: block; margin-bottom: 16px; color: var(--accent); font: 600 11px/1.6 var(--font); letter-spacing: .1em; text-transform: uppercase; }
.product-description { display: block; max-width: 76ch; margin-top: 12px; color: var(--muted); font: 400 clamp(14px, 1.2vw, 17px)/1.55 var(--font); text-wrap: pretty; }
/* Keep the complete Daybreak interface visible, with a full-size image link. */
.product-visual { display: grid; place-items: center; width: min(1180px, calc(100% - 48px)); margin: 0 auto 16px; min-height: 0; }
.product-visual img { display: block; width: 100%; height: auto; border: 1px solid #d1c7b9; border-radius: 12px; background: #f6f3ed; box-shadow: 0 20px 60px #0003; }
.product-visual:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; border-radius: 12px; }
.product-image-hint { margin: 0 24px 40px; color: var(--muted); text-align: center; font-size: 11px; }

.schema { --draw: 1; display: flex; flex-direction: column; align-items: center; justify-content: safe center; gap: 22px; padding: 48px 24px 72px; overflow-y: auto; background: radial-gradient(ellipse at 50% 48%, #1e282066, transparent 70%), #0f0e0cf5; }
.schema-heading { flex: none; width: min(880px, 100%); text-align: center; }
.schema-heading .motion-kicker { margin-bottom: 12px; }
.schema-heading h3 { max-width: 36ch; margin: 0 auto; font: 500 clamp(1.3rem, 2.4vw, 2rem)/1.3 var(--display); text-wrap: balance; }
.system-map { position: relative; flex: 1 1 auto; width: min(1120px, 100%); height: 480px; min-height: 300px; max-height: 480px; isolation: isolate; }
.system-map::before { content: ""; position: absolute; z-index: -1; inset: 0; border: 1px solid #8faf981a; border-radius: 24px; background: radial-gradient(circle at 50% 12%, #8faf980a, transparent 50%), radial-gradient(#a5bc9e1c .7px, transparent .7px); background-size: auto, 18px 18px; }
.schema-connections { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; color: #a5bfac; pointer-events: none; }
.schema-connections--mobile { display: none; }
.schema-edges { fill: none; stroke: #8faf9880; stroke-width: 1.5; }
.schema-edge, .schema-pulse { vector-effect: non-scaling-stroke; }
.schema-pulse { fill: none; stroke: #c8e6d2; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 12 100; stroke-dashoffset: 12; opacity: 0; }
.schema-node { position: absolute; display: flex; flex-direction: column; justify-content: center; padding: clamp(14px, 1.8vw, 24px); border: 1px solid #465748; border-radius: 16px; background: linear-gradient(145deg, #202821, #171c18); color: #e8eee7; box-shadow: 0 10px 30px #0002; text-align: left; }
.schema-tools span, .schema-tools a { transition: border-color .2s, box-shadow .2s, background .2s; }
.schema-node:focus-visible, .schema-tools a:focus-visible { outline: 2px solid #c8e6d2; outline-offset: 4px; }
.schema-business { left: 35%; top: 4.1667%; width: 30%; height: 47.9167%; border-color: #e6dccb; background: linear-gradient(145deg, #f6f1e6, #e7dfcf); color: #292e29 !important; box-shadow: 0 16px 50px #0004, 0 0 60px #d5d9ac0d; }
.schema-business:hover { border-color: #fff4d9 !important; }
.schema-updates { left: 3%; top: 10%; width: 26%; height: 40%; }
.schema-projects { left: 71%; top: 10%; width: 26%; height: 40%; }
.schema-card-top { display: flex; align-items: center; gap: 10px; min-width: 0; }
.schema-icon { display: inline-flex; flex: none; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid #8faf9840; border-radius: 9px; background: #8faf980a; color: #adccb5; }
.schema-icon svg { width: 21px; height: 21px; }
.schema-business .schema-icon { border-color: #76502e30; background: #76502e09; color: #76502e; }
.schema-eyebrow { display: block; color: #a8bea9; font-size: 9px; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }
.schema-business .schema-eyebrow { color: #70644f; }
.schema-open { margin-left: auto; color: #b5c7b7; font-size: 18px; }
.schema-business .schema-open { color: #76502e; }
.schema-node h4 { margin: 12px 0 0; color: inherit; font: 500 clamp(18px, 2vw, 26px)/1.2 var(--font); letter-spacing: -.025em; }
.schema-description { margin: 9px 0 0; max-width: 25ch; color: #b1beb2; font-size: clamp(12px, 1.1vw, 14px); line-height: 1.5; }
.schema-business .schema-description { color: #5f665c; }
.schema-modules { left: 35%; top: 66%; width: 62%; height: 30%; display: grid; grid-template-columns: 1fr 1.6fr; align-items: center; gap: 20px; border-color: #76634b; background: linear-gradient(140deg, #28251d, #1d1c17); }
.schema-module-heading { display: flex; align-items: center; gap: 12px; }
.schema-module-heading .schema-icon { border-color: #c4b49a40; color: #d9c8a7; background: #c4b49a0a; }
.schema-module-heading .schema-eyebrow { color: #bdaf96; }
.schema-module-heading h4 { margin-top: 4px; }
.schema-tools { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; min-width: 0; }
.schema-tools span, .schema-tools a { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-width: 0; padding: 7px 10px; border: 1px solid #655941; border-radius: 7px; background: #c4b49a09; color: #eee5d2; font-size: 12px; line-height: 1.4; }
.schema-tools a span { color: #c4b49a; }
.schema-context-note { position: absolute; left: 5%; top: 68%; width: 24%; }
.schema-context-note > span { display: block; line-height: 1.4; color: #94ac96; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.schema-context-note p { max-width: 19ch; margin: 12px 0 0; color: #b8bbae; font: 400 clamp(17px, 1.8vw, 23px)/1.4 var(--display); }
.schema-footer { display: flex; flex: none; align-items: center; justify-content: space-between; gap: 20px; width: min(1050px, 100%); }
.schema-footer > p { margin: 0; color: #aab3a5; font-size: 12px; line-height: 1.5; }
.schema-footer > p span { margin-left: 6px; color: var(--accent); }
.schema-toggle { flex: none; min-height: 36px; padding: 7px 14px; border: 1px solid #8faf9840; border-radius: 999px; background: #8faf9808; color: #b7c5b8; font-size: 11px !important; cursor: pointer; }
.schema-toggle:hover { color: #eef5e9; border-color: var(--accent); }
.schema-toggle[hidden] { display: none; }
@media (min-width: 701px) and (max-height: 800px) {
  .schema-node { padding: 14px; }
  .schema-node h4 { margin-top: 8px; font-size: 20px; }
  .schema-description { margin-top: 6px; font-size: 12px; line-height: 1.4; }
  .schema-icon { width: 26px; height: 26px; }
  .schema-icon svg { width: 18px; height: 18px; }
  .schema-tools a { padding: 5px 8px; font-size: 11px; }
  .schema-modules { gap: 12px; }
  .schema-context-note p { max-width: none; margin-top: 8px; font-size: 17px; line-height: 1.35; }
}
@media (max-width: 700px) {
  .schema { gap: 14px; padding: 32px 16px; }
  .schema-heading h3 { font-size: clamp(18px, 4.6vw, 24px); line-height: 1.25; }
  .schema-heading .motion-kicker { margin-bottom: 10px; font-size: 9px; }
  .system-map { height: 400px; max-height: 400px; min-height: 320px; }
  .system-map::before { border-radius: 18px; background-size: auto, 14px 14px; }
  .schema-connections--desktop { display: none; }
  .schema-connections--mobile { display: block; }
  .schema-node { padding: 10px; border-radius: 10px; }
  .schema-business { left: 16%; top: 2%; width: 68%; height: 23%; }
  .schema-updates { left: 5%; top: 35%; width: 41%; height: 25%; }
  .schema-projects { left: 54%; top: 35%; width: 41%; height: 25%; }
  .schema-card-top { position: absolute; top: 10px; right: 10px; }
  .schema-eyebrow, .schema-open, .schema-context-note, .schema-updates .schema-icon, .schema-projects .schema-icon { display: none; }
  .schema-node h4 { margin: 0; font-size: clamp(14px, 3.9vw, 17px); line-height: 1.2; }
  .schema-business h4 { padding-right: 24px; }
  .schema-description { margin-top: 6px; font-size: 11px; line-height: 1.35; }
  .schema-icon { width: 20px; height: 20px; border-radius: 5px; }
  .schema-icon svg { width: 15px; height: 15px; }
  .schema-modules { left: 16%; top: 71%; width: 79%; height: 28%; display: flex; flex-direction: column; align-items: stretch; gap: 6px; }
  .schema-module-heading { gap: 8px; }
  .schema-module-heading h4 { margin: 0; }
  .schema-tools { gap: 4px; }
  .schema-tools a { padding: 3px 5px; gap: 4px; font-size: 10px; line-height: 1.4; border-radius: 4px; }
  .schema-footer { gap: 10px; align-items: center; }
  .schema-footer > p { max-width: 24ch; font-size: 10px; }
  .schema-toggle { min-height: 32px; padding: 6px 9px; font-size: 10px !important; }
}

.motion-section { width: min(880px, calc(100% - 48px)); margin-inline: auto; padding-block: 72px; }
.motion-section + .motion-section { border-top: 1px solid var(--line); }
.motion-section p { max-width: 41em; margin: 0; color: var(--muted); }
.motion-section .motion-kicker { margin-bottom: 16px; color: var(--accent); }
.city-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; padding: 0; list-style: none; }
.city-pills li { padding: 10px 20px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-weight: 500; }
.motion-faq h2 { margin-bottom: 36px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  padding-block: 22px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .25s;
}
.faq-list details[open] summary::after { transform: rotate(225deg); }
.faq-list summary:hover { color: var(--accent); }
.faq-answer { padding: 0 38px 26px 0; }
.faq-answer p { font-size: 16px; }
@supports (interpolate-size: allow-keywords) {
  .faq-list { interpolate-size: allow-keywords; }
  .faq-list details::details-content {
    height: 0;
    overflow: clip;
    transition: height .25s ease, content-visibility .25s allow-discrete;
  }
  .faq-list details[open]::details-content { height: auto; }
}
.final-cta { padding-block: 86px 100px; }
.final-cta h2 { max-width: 16ch; }
#contact { scroll-margin-top: calc(var(--header-height) + 24px); }
.contact-form .door-form { min-width: 0; margin: 28px 0 20px; padding: 0; border: 0; }
.contact-form .door-field label { font-size: 14px; }
.contact-form .door-optional { color: var(--muted); }
.contact-form input,
.contact-form textarea { border: 1px solid var(--line); background: #1a1714df; color: var(--ink); font: 400 16px/1.5 var(--font); }
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 2px; background: var(--surface); }
.contact-form textarea { min-height: 136px; resize: vertical; }
.contact-form [hidden] { display: none; }
.contact-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 24px; }
.contact-actions button { cursor: pointer; }
.contact-actions button:disabled { opacity: .65; cursor: not-allowed; }
.motion-section .contact-privacy { max-width: 34em; font-size: 12px; }
.motion-section .contact-status { margin-top: 20px; color: var(--muted); }
.motion-section .contact-status[data-state="error"] { color: #e2b4a7; }
.motion-section .contact-status[data-state="success"] { color: var(--accent); font-size: 22px; }
.motion-faq a { text-decoration: underline; text-underline-offset: 4px; color: var(--accent); }
.motion-footer { border-top: 1px solid var(--line); padding: 28px 24px; color: var(--muted); font-size: 12px; text-align: center; }

/* One scroll listener schedules work only while the page is moving. */
html[data-scrub] .hero-track { height: 280vh; height: 280svh; }
html[data-scrub] .hero-sticky {
  position: sticky;
  top: var(--header-height);
  height: calc(100svh - var(--header-height));
  min-height: 0;
  padding-block: 24px 64px;
}
html[data-scrub] .hero-beat {
  transform: translateY(28px) scale(.96);
  filter: blur(6px);
  transition: opacity .45s ease, transform .45s ease, filter .45s ease, visibility .45s;
}
html[data-scrub] .hero-beat.on { transform: none; filter: none; }
html[data-scrub] .hero-body,
html[data-scrub] .hero-ctas { opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .4s, transform .4s, visibility .4s; }
html[data-scrub] .hero-body.on,
html[data-scrub] .hero-ctas.on { opacity: 1; visibility: visible; transform: none; }
html[data-scrub] .scroll-cue {
  position: absolute;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
}
.scroll-cue span { width: 1px; height: 28px; background: linear-gradient(var(--line), var(--accent)); }
html[data-scrub] .story-track { height: 500vh; height: 500svh; }
html[data-scrub] .story-stage {
  position: sticky;
  top: var(--header-height);
  height: calc(100svh - var(--header-height));
  width: min(960px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 20px;
  align-content: center;
  align-items: center;
  padding-block: 32px;
  overflow: visible;
}
html[data-scrub] .story-main {
  display: grid;
  position: relative;
  align-content: center;
  min-width: 0;
  min-height: min(420px, 62vh);
  overflow: clip;
}
html[data-scrub] .story-beat {
  grid-area: 1 / 1;
  width: 100%;
  margin-inline: 0;
  padding-block: 0;
  border: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28%);
  transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1), transform .55s cubic-bezier(0.16, 1, 0.3, 1), visibility .55s;
  will-change: transform, opacity;
}
html[data-scrub] .story-beat.before { transform: translateX(-12%); opacity: 0; }
html[data-scrub] .story-beat.on { opacity: 1; visibility: visible; transform: none; }
html[data-scrub] .story-summary li { opacity: 0; transform: translateX(40px); transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1), transform .55s cubic-bezier(0.16, 1, 0.3, 1); }
html[data-scrub] .story-finale.on li { opacity: 1; transform: none; transition-delay: calc(var(--order) * 70ms + 50ms); }
/* Pager: clear right gutter — never over cards / finale cell 04 */
html[data-scrub] .story-stage > .story-pager {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  grid-column: 2;
  grid-row: 1;
  position: static;
  margin: 0;
  padding: 0;
  z-index: 2;
  pointer-events: auto;
}
:is(.story-pager, .product-pager) button { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; background: none; cursor: pointer; }
:is(.story-pager, .product-pager) button span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: background .3s, transform .3s; }
:is(.story-pager, .product-pager) button[aria-current] span { background: var(--accent); transform: scale(1.35); }
:is(.story-pager, .product-pager) button:not([aria-current]):hover span { background: var(--muted); }
:is(.story-pager, .product-pager) button:last-child span { border-radius: 1px; }

html[data-scrub] .schema.looping .schema-pulse { animation: schema-flow 7.2s linear infinite; animation-delay: calc(var(--edge) * 1.2s); }
html[data-scrub] .product-track { height: auto; }
html[data-scrub] .product-stage { position: static; height: auto; overflow: visible; background: transparent; }
html[data-scrub] .product-beat { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateX(8%) scale(.98); transition: opacity .5s ease, transform .5s ease, visibility .5s; pointer-events: none; }
html[data-scrub] .product-beat.before { transform: translateX(-8%) scale(1.04); }
html[data-scrub] .product-beat.on { z-index: 1; opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition-property: opacity, transform; }
html[data-scrub] .product-shot { display: flex; flex-direction: column; padding: 0 0 68px; background: transparent; }
html[data-scrub] .product-shot figcaption { position: static; flex: 0 0 auto; width: min(1180px, calc(100% - 48px)); max-width: none; min-height: 0; margin: 0 auto; padding: 28px 100px 20px 0; background: none; }
html[data-scrub] .product-label { margin-bottom: 10px; }
html[data-scrub] .product-visual { position: relative; flex: 1 1 0; margin-bottom: 0; }
html[data-scrub] .product-visual img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
html[data-scrub] .product-image-hint { flex: 0 0 auto; margin: 10px 24px 0; }
html[data-scrub] .product-counter { position: absolute; top: 30px; right: 24px; z-index: 3; display: block; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg); color: var(--accent); font-size: 11px; }
html[data-scrub] .schema.on ~ .product-counter { display: none; }
html[data-scrub] .product-pager { position: absolute; left: 50%; bottom: 20px; z-index: 3; display: flex; padding: 2px 8px; border: 1px solid var(--line); border-radius: 999px; background: #0f0e0ce8; transform: translateX(-50%); }
.product-pager button { width: clamp(28px, 3vw, 40px); }
html[data-scrub] .schema { padding-block: 24px 90px; }
html[data-scrub] .schema-edge { stroke-dasharray: 100; stroke-dashoffset: calc(100 * (1 - clamp(0, var(--draw, 1) * 6 - var(--edge), 1))); }
html[data-scrub] .schema.looping .schema-pulse { animation: schema-flow 7.2s linear infinite; animation-delay: calc(var(--edge) * 1.2s); }
html[data-scrub] .schema.paused .schema-pulse { animation-play-state: paused; }
@keyframes schema-flow {
  0% { stroke-dashoffset: 12; opacity: 0; }
  1% { opacity: 1; }
  16% { stroke-dashoffset: -100; opacity: 1; }
  17%, 100% { stroke-dashoffset: -100; opacity: 0; }
}
html[data-scrub] .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s, transform .7s; }
html[data-scrub] .reveal.in { opacity: 1; transform: none; }

@media (max-width: 859px) {
  html[data-door-motion] { --header-height: 72px; }
  .motion-header { gap: 16px; padding-block: 10px; }
  .header-actions { gap: 12px; }
  .header-ask { max-width: 210px; font-size: 12px; }
  .header-ask span { margin-left: 4px; }
  .hero-morph { font-size: clamp(2.6rem, 9vw, 4.8rem); }
  .hero-body { font-size: 16px; line-height: 1.6; }
  .scroll-cue { left: 24px; max-width: calc(100% - 180px); }
  .story-stage { width: calc(100% - 40px); }
  .story-step h3 { font-size: clamp(2rem, 6vw, 3.4rem); margin-bottom: 20px; }
  .story-step .motion-kicker { margin-bottom: 16px; }
  .story-body { font-size: 16px; line-height: 1.65; }
  .motion-chip { margin-top: 20px; }
  .story-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-summary li { min-height: 180px; padding: 20px; }
  .summary-number { margin-bottom: 14px; }
  html[data-scrub] .story-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    width: calc(100% - 40px);
  }
  html[data-scrub] .story-main { min-height: auto; }
  html[data-scrub] .story-stage > .story-pager {
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    justify-content: center;
    margin-top: 4px;
  }
  html[data-scrub] .product-shot figcaption { padding: 24px 0 20px; }
  html[data-scrub] .product-shot { padding-bottom: 124px; }
  html[data-scrub] .product-label { padding-right: 76px; }
  html[data-scrub] .product-counter { top: 20px; right: 16px; }
  html[data-scrub] .product-pager { bottom: 68px; }
  html[data-scrub] .schema { padding-block: 20px 128px; }
  .motion-section { padding-block: 56px; }
  .final-cta { padding-block: 64px 80px; }
}

@media (max-width: 599px) {
  .story-summary { grid-template-columns: minmax(0, 1fr); }
  html[data-scrub] .story-summary { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 82%; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x proximity; scrollbar-color: var(--accent) var(--surface); }
  html[data-scrub] .story-summary li { min-height: 220px; scroll-snap-align: center; }
}

@media (max-width: 420px) {
  .hero-sticky { padding-inline: 20px; }
  .hero-stage .motion-kicker { font-size: 10px; margin-bottom: 16px; }
  .hero-morph { margin-bottom: 18px; }
  .hero-ctas { margin-top: 22px; gap: 10px; }
  .motion-button { width: 100%; }
  .motion-brand { font-size: 19px; }
  .header-ask { max-width: 175px; }
  .city-pills li { padding-inline: 15px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .galaxy-backdrop video { display: none; }
  .background-toggle { display: none; }
  .motion-door *, .motion-door *::before, .motion-door *::after, .faq-list details::details-content {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
