:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1d1d1f;
  background: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.global-nav {
  height: 44px;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.brand {
  display: inline-flex;
  flex: 0 0 112px;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  gap: 6px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
}
.brand-wordmark { display: block; width: 112px; height: auto; filter: brightness(0); }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 58px; white-space: nowrap; }
.global-nav a { transition: opacity .2s ease; }
.global-nav a:hover { opacity: .58; }
.announcement {
  min-height: 52px;
  padding: 12px 20px;
  display: grid;
  place-items: center;
  background: #f5f5f7;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}
.announcement p { margin: 0; }
.announcement a { color: #0066cc; white-space: nowrap; }
.announcement a:hover { text-decoration: underline; }

.hero {
  padding-bottom: 80px;
  background: #fff;
}
.hero-header {
  position: relative;
  z-index: 1;
  padding: 55px 20px 0;
  text-align: center;
}
.hero-intro { margin: 0 auto 8px; font-size: 28px; line-height: 1.14; font-weight: 600; letter-spacing: -.01em; }
.hero-headline, .hero-subtitle { text-align: center; }
.hero-headline {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.055em;
}
.hero-subtitle {
  max-width: 420px;
  margin: 19px auto 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -.005em;
}
.hero-media {
  position: relative;
  width: min(1260px, calc((100dvh - 363px) * 1.6), calc(100vw - 48px));
  min-width: 0;
  aspect-ratio: 1.6;
  margin: 65px auto 0;
  isolation: isolate;
}
.media-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid #e5e5ea;
  border-radius: 24px;
  background: #101018;
  box-shadow: 0 22px 65px rgb(15 20 35 / .12), 0 2px 10px rgb(15 20 35 / .06);
}
.hero-poster, .hero-poster img, .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-poster img, .hero-video { object-fit: cover; object-position: center; }
.hero-video { opacity: 0; transition: opacity .6s ease; }
.hero-media.is-playing .hero-video { opacity: 1; }
.video-controls {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}
.video-toggle, .sound-toggle {
  border: 1px solid rgb(255 255 255 / .55);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgb(29 29 31 / .64);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity .2s ease, background .2s ease, transform .16s ease;
}
.video-toggle:hover, .sound-toggle:hover { background: rgb(29 29 31 / .8); }
.sound-toggle-icon { display: none; }
.media-play-icon { width: 28px; height: 28px; fill: currentColor; stroke: none; }
.media-play-icon > path { display: none; }
[data-state="paused"] .media-play-symbol,
[data-state="playing"] .media-pause-symbol { display: block; }
.sound-toggle[aria-pressed="false"] .sound-icon-playing,
.sound-toggle[aria-pressed="true"] .sound-icon-muted { display: none; }
.video-toggle:active, .sound-toggle:active { transform: scale(.97); }
.video-toggle:focus-visible, .sound-toggle:focus-visible, a:focus-visible { outline: 3px solid #0066cc; outline-offset: 3px; }
.hero-platter {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: min(540px, calc(100% - 40px));
  min-height: 70px;
  padding: 11px 11px 11px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 35px;
  color: #1d1d1f;
  isolation: isolate;
}
.hero-platter::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgb(255 255 255 / .78);
  border-radius: inherit;
  background: linear-gradient(135deg, rgb(255 255 255 / .82), rgb(237 241 255 / .62) 58%, rgb(255 255 255 / .72));
  box-shadow: 0 14px 36px rgb(13 23 51 / .16), inset 0 1px 0 rgb(255 255 255 / .98), inset 0 -1px 0 rgb(255 255 255 / .42);
  backdrop-filter: blur(24px) saturate(170%) brightness(1.06);
  -webkit-backdrop-filter: blur(24px) saturate(170%) brightness(1.06);
}
@supports not (backdrop-filter: blur(1px)) {
  .hero-platter::before { background: #f2f4fa; }
}
.platter-copy { min-width: 0; font-size: 16px; font-weight: 600; line-height: 21px; letter-spacing: -.012em; }
.platter-copy p { margin: 0; }
.platter-cta {
  flex: none;
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0066cc;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}
.platter-cta:hover { background: #005bb5; }
.platter-cta:active { transform: scale(.98); }

.events-section {
  padding: 80px 24px 120px;
  background: #f5f5f7;
  scroll-margin-top: 20px;
}
.events-inner { max-width: 1430px; margin: 0 auto; }
.events-section h2 {
  text-align: left;
  margin: 0 0 48px clamp(16px, 5.6vw, 112px);
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.055em;
}
.events-viewer {
  min-height: 754px;
  display: grid;
  grid-template-columns: minmax(370px, 42%) minmax(0, 1fr);
  align-items: center;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
}
.events-rail {
  position: relative;
  min-width: 0;
  padding: 58px 26px 58px clamp(42px, 7.5vw, 110px);
}
.events-options { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.events-option {
  max-width: 100%;
  border-radius: 34px;
  background: #f5f5f7;
  transition: background .24s ease, border-radius .24s ease;
}
.events-option.is-active { width: min(100%, 438px); border-radius: 32px; }
.events-category {
  width: 100%;
  min-height: 58px;
  padding: 11px 24px 11px 16px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  color: #1d1d1f;
  text-align: left;
  white-space: nowrap;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.025em;
  cursor: pointer;
}
.events-option.is-active .events-category { padding: 25px 28px 8px; min-height: 62px; }
.events-plus {
  width: 27px;
  height: 27px;
  border: 1.5px solid #4d4d52;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.events-option.is-active .events-plus { display: none; }
.events-category:hover { color: #0066cc; }
.events-category:focus-visible, .events-arrow:focus-visible, .events-video-actions button:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 3px;
}
.events-details { display: none; padding: 0 28px 28px; }
.events-option.is-active .events-details { display: block; }
.events-details p { margin: 0; max-width: 370px; font-size: 19px; line-height: 1.42; letter-spacing: -.01em; }
.events-progress { height: 10px; margin-top: 25px; border-radius: 999px; background: #d8d8df; overflow: hidden; }
.events-progress-fill { width: 100%; height: 100%; display: block; border-radius: inherit; background: #0066cc; transform: scaleX(0); transform-origin: left center; }
.events-arrows {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.events-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f5f5f7;
  color: #44444a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.events-arrow:hover:not(:disabled) { background: #e9e9ee; transform: scale(1.05); }
.events-arrow:disabled { color: #aaaab0; background: #f7f7f9; cursor: default; }
.events-display {
  min-width: 0;
  min-height: 754px;
  padding: 22px 40px 22px 0;
  display: grid;
  place-items: center;
}
.events-player {
  width: min(100%, 342px);
  display: grid;
  justify-items: center;
  gap: 22px;
}
.events-device {
  position: relative;
  width: 100%;
  aspect-ratio: 78 / 163.4;
  padding: 7px;
  border: 1px solid #a5a7aa;
  border-radius: 53px;
  background: linear-gradient(110deg, #d1d2d4 0%, #64666b 2.6%, #ecedee 5.2%, #9b9da1 9%, #686a6f 55%, #d9dbdc 95%, #6b6c70 100%);
  box-shadow: 0 31px 62px rgb(18 19 25 / .17), 0 8px 20px rgb(18 19 25 / .12), inset 0 0 0 1px rgb(255 255 255 / .5);
}
.events-device::after {
  position: absolute;
  z-index: 3;
  inset: 4px;
  border: 1px solid rgb(255 255 255 / .32);
  border-radius: 49px;
  content: '';
  pointer-events: none;
}
.events-device-button {
  position: absolute;
  z-index: 0;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #626368, #d8d9da 70%, #737479);
  box-shadow: 0 1px 2px rgb(0 0 0 / .3);
}
.events-device-button--action { top: 17%; left: -3px; height: 4.5%; }
.events-device-button--volume { top: 26%; left: -3px; height: 10.5%; }
.events-device-button--power { top: 25%; right: -3px; height: 10%; }
.events-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid #080809;
  border-radius: 46px;
  background: #080809;
}
.events-video { width: 100%; height: 100%; display: block; object-fit: contain; }
.events-held-frame { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.events-held-frame[hidden] { display: none; }
.result-video-open { overflow: hidden; }
/* Explicit player controls, no native video chrome overlapping the close action. */
.result-dialog { position: fixed; inset: 0; width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: #000; color: #fff; overflow: hidden; }
.result-dialog[open] { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }
.result-dialog::backdrop { background: #000; }
.result-dialog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: calc(12px + env(safe-area-inset-top, 0px)) calc(16px + env(safe-area-inset-right, 0px)) 12px calc(16px + env(safe-area-inset-left, 0px)); }
.result-dialog-video { display: block; width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.result-player-button { flex: 0 0 44px; width: 44px; height: 44px; padding: 0; border: 1px solid rgb(255 255 255 / .25); border-radius: 50%; display: grid; place-items: center; background: rgb(35 35 38 / .65); color: #fff; cursor: pointer; }
.result-player-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.result-dialog-toolbar .result-player-button { position: relative; flex-basis: 32px; width: 32px; height: 32px; margin: 6px; }
.result-dialog-toolbar .result-player-button::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; }
.result-dialog-toolbar .result-player-button svg { width: 16px; height: 16px; }
.result-dialog-controls { display: flex; align-items: center; gap: 14px; padding: 12px calc(16px + env(safe-area-inset-right, 0px)) calc(12px + env(safe-area-inset-bottom, 0px)) calc(16px + env(safe-area-inset-left, 0px)); }
.result-dialog-seek { flex: 1; min-width: 0; height: 44px; margin: 0; accent-color: #f5f5f7; cursor: pointer; }
.result-dialog-time { font-size: 12px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.result-dialog-play .result-play-icon { fill: currentColor; stroke: none; }
.result-dialog-play .result-pause-icon { stroke-width: 4; }
.result-sound-off, .result-pause-icon, .result-replay-icon,
.result-dialog-sound[aria-pressed="false"] .result-sound-on,
.result-dialog-play.is-playing .result-play-icon,
.result-dialog-play.is-ended .result-play-icon { display: none; }
.result-dialog-sound[aria-pressed="false"] .result-sound-off,
.result-dialog-play.is-playing .result-pause-icon,
.result-dialog-play.is-ended .result-replay-icon { display: block; }
.result-reopen { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgb(255 255 255 / .4); border-radius: 50%; background: rgb(0 0 0 / .45); backdrop-filter: blur(12px); color: white; cursor: pointer; }
.result-reopen[hidden] { display: none; }
.result-reopen svg { width: 22px; height: 22px; fill: currentColor; }
.result-player-button:focus-visible, .result-dialog-seek:focus-visible, .result-reopen:focus-visible { outline: 3px solid #0071e3; outline-offset: 4px; }
.events-island {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 27%;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050506;
  box-shadow: 0 1px 2px rgb(255 255 255 / .1);
  pointer-events: none;
}
.events-island::after {
  position: absolute;
  top: 9px;
  right: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #293a54, #0b111c 70%);
  content: '';
}
.events-video-actions {
  position: absolute;
  z-index: 4;
  inset: 18px 18px auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media (min-width: 701px) {
  .video-controls { gap: 12px; }
  .media-icon-button {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #f5f5f7;
    background: rgb(29 29 31 / .52);
    box-shadow: inset 0 0 0 1px rgb(245 245 247 / .18);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    cursor: pointer;
    pointer-events: auto;
    transition: background .2s ease, transform .16s ease;
  }
  /* Compact visible circle, at least 44px of keyboard/touch target area. */
  .media-icon-button::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; }
  .media-icon-button:hover { background: rgb(29 29 31 / .72); }
  .media-icon-button:active { transform: scale(.94); }
  .media-icon-button .sound-toggle-icon { display: block; width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .media-icon-button .sound-toggle-label { display: none; }
  .events-video-actions .media-icon-button { width: 28px; height: 28px; }
  .events-video-actions .media-icon-button::after { inset: -8px; }
  .events-video-actions .sound-toggle-icon { width: 16px; height: 16px; }
}

/* Independent surfaces let menus morph without stretching their typography. */
.events-option-surface, .events-menu-seed { display: none; }
.events-outgoing-content {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 701px) and (prefers-reduced-motion: no-preference) {
  .events-motion-enabled .events-options { position: relative; }
  .events-motion-enabled .events-menu-seed {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e8e8ed;
    opacity: 0;
    pointer-events: none;
  }
  .events-motion-enabled .events-option {
    position: relative;
    isolation: isolate;
    background: transparent;
    transition: none;
  }
  .events-motion-enabled .events-option-surface {
    position: absolute;
    display: block;
    inset: 0;
    z-index: -1;
    background: #e8e8ed;
    border-radius: inherit;
    transform-origin: top left;
    pointer-events: none;
  }
  .events-motion-enabled .events-category > span:last-child { display: inline-block; }
  .events-motion-enabled.events-intro-collapsed .events-option.is-active { width: auto; border-radius: 34px; }
  .events-motion-enabled.events-intro-collapsed .events-option.is-active .events-category { padding: 11px 24px 11px 16px; min-height: 58px; }
  .events-motion-enabled.events-intro-collapsed .events-option.is-active .events-plus { display: grid; }
  .events-motion-enabled.events-intro-collapsed .events-option.is-active .events-details { display: none; }
  .events-motion-enabled .events-device { transform-origin: center center; }
  .events-motion-enabled:not(.events-title-visible) h2 { opacity: 0; }
  .events-motion-enabled:not(.events-viewer-visible) :is(.events-option, .events-device, .events-arrow, .events-video-actions button) { opacity: 0; }
}

/* Geometric strokes stay optically centered, independently of font baselines. */
@media (min-width: 701px) {
  .events-plus { position: relative; font-size: 0; font-weight: 700; }
  .events-plus::before, .events-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
  }
  .events-plus::after { width: 2px; height: 11px; }
}

.customize-section {
  padding: 108px 0 96px;
  overflow: hidden;
  background: #1d1d1f;
  color: #f5f5f7;
  scroll-margin-top: 0;
}
.customize-heading { width: min(1280px, calc(100% - 48px)); margin: 0 auto 46px; }
.customize-heading p { margin: 0 0 12px; color: #a1a1a6; font-size: 17px; font-weight: 600; }
.customize-heading h2 { margin: 0; font-size: clamp(45px, 4.7vw, 72px); line-height: 1.04; letter-spacing: -.055em; font-weight: 600; }
.customize-heading > span { display: block; margin-top: 17px; color: #a1a1a6; font-size: clamp(18px, 1.7vw, 24px); font-weight: 500; letter-spacing: -.02em; }
.customize-viewport { width: min(1360px, calc(100% - 48px)); margin: 0 auto; overflow: hidden; }
.customize-track { display: flex; gap: 18px; transition: transform .72s cubic-bezier(.22, 1, .36, 1); }
.customize-slide {
  flex: 0 0 min(1010px, calc(100vw - 96px));
  min-height: 636px;
  padding: 48px clamp(36px, 5vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(245px, .8fr);
  align-items: center;
  gap: 35px;
  border: 1px solid #313136;
  border-radius: 27px;
  background: #111113;
}
.customize-copy { max-width: 465px; }
.customize-step-label { color: #8cdbd4; font-size: 13px; font-weight: 700; letter-spacing: .075em; }
.customize-copy h3 { margin: 20px 0 18px; font-size: clamp(37px, 3.5vw, 55px); font-weight: 600; line-height: 1.04; letter-spacing: -.052em; }
.customize-copy > p:not(.customize-feedback) { max-width: 37ch; margin: 0 0 27px; color: #b8b8bd; font-size: 18px; line-height: 1.45; letter-spacing: -.012em; }
.customize-copy label { display: block; margin-bottom: 10px; color: #d6d6db; font-size: 14px; font-weight: 600; }
.customize-field { display: flex; gap: 8px; max-width: 440px; }
.customize-field input {
  width: 100%; min-width: 0; height: 46px; padding: 0 15px;
  border: 1px solid #55555a; border-radius: 11px;
  outline: none; background: #28282c; color: #f5f5f7;
  font: inherit; font-size: 16px;
}
.customize-field input::placeholder { color: #8c8c93; }
.customize-field input:focus { border-color: #67d9cf; box-shadow: 0 0 0 3px rgb(103 217 207 / .2); }
.customize-field button, .customize-primary-button {
  min-height: 46px; padding: 0 19px; border: 0; border-radius: 999px;
  background: #f5f5f7; color: #1d1d1f; font: inherit; font-size: 15px; font-weight: 600;
  white-space: nowrap; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.customize-field button:hover, .customize-primary-button:hover { background: #d9f7f3; }
.customize-field button:active, .customize-primary-button:active { transform: scale(.97); }
.customize-feedback { min-height: 21px; margin: 12px 0 0; color: #a1a1a6; font-size: 13px; line-height: 1.5; }
.customize-next { display: inline-flex; align-items: center; gap: 7px; margin-top: 27px; padding: 0; border: 0; background: transparent; color: #7bdcd4; font: inherit; font-size: 16px; font-weight: 600; cursor: pointer; }
.customize-next:hover { text-decoration: underline; }
.customize-next span { font-size: 25px; line-height: .7; }
.customize-visual { display: flex; flex-direction: column; align-items: center; gap: 14px; min-width: 0; }
.customize-layout-art, .customize-result-frame {
  position: relative; width: min(274px, 100%); aspect-ratio: 9 / 16;
  overflow: hidden; border-radius: 18px; background: #f5f5f7;
  box-shadow: 0 24px 50px rgb(0 0 0 / .28);
}
.customize-layout-art > img, .customize-result-frame > img { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.customize-layout-art > img:not([src]), .customize-result-frame > img:not([src]) { display: none; }
.customize-layout-art::before { position: absolute; inset: 0; background: #f9fbfb; content: ''; }
.customize-nameplate {
  position: absolute; z-index: 3; left: 50%; bottom: 14%;
  max-width: 80%; padding: 8px 17px;
  transform: translateX(-50%);
  border: 1px solid rgb(13 164 157 / .22); border-radius: 999px;
  background: rgb(255 255 255 / .92); color: #08736e;
  box-shadow: 0 6px 20px rgb(0 0 0 / .11);
  text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-size: clamp(13px, 1.35vw, 17px); font-weight: 700; letter-spacing: -.02em;
}
.customize-layout-art.is-assembling > img { animation: customize-reveal .9s cubic-bezier(.22, 1, .36, 1) both; }
.customize-layout-art.is-assembling .customize-nameplate { animation: customize-name-in .65s cubic-bezier(.22, 1, .36, 1) .38s both; }
@keyframes customize-reveal { from { opacity: .05; transform: scale(1.05); } to { opacity: 1; transform: scale(1); } }
@keyframes customize-name-in { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }
.customize-visual-caption { color: #8f8f96; font-size: 12px; line-height: 1.4; text-align: center; }
.customize-tracks { display: grid; gap: 8px; max-width: 444px; }
.customize-track-choice {
  width: 100%; min-height: 68px; padding: 9px 14px;
  display: flex; align-items: center; gap: 14px;
  border: 1px solid #3c3c41; border-radius: 14px;
  background: #222226; color: #f5f5f7; text-align: left; font: inherit; cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.customize-track-choice:hover { background: #2b2b30; }
.customize-track-choice.is-selected { border-color: #59c9c0; background: #1e302f; }
.customize-track-choice > span:nth-child(2) { flex: 1; }
.customize-track-choice strong, .customize-track-choice small { display: block; }
.customize-track-choice strong { font-size: 16px; line-height: 1.2; }
.customize-track-choice small { margin-top: 3px; color: #a9a9b0; font-size: 12px; }
.track-play { width: 32px; height: 32px; flex: none; display: grid; place-items: center; border-radius: 50%; background: #e6f9f6; color: #155d59; font-size: 10px; }
.track-state { color: #9dded8; font-size: 12px; }
.customize-music-art { width: min(320px, 100%); min-height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 42px; }
.customize-music-art > span { color: #e3e3e6; font-size: 24px; font-weight: 600; letter-spacing: -.035em; }
.customize-music-bars { width: 100%; height: 165px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.customize-music-bars i { width: 7px; height: calc(24px + (var(--n, 1) * 13px)); border-radius: 999px; background: #53d2c7; animation: customize-wave 1.25s ease-in-out infinite alternate; }
.customize-music-bars i:nth-child(3n) { --n: 7; animation-delay: -.6s; }
.customize-music-bars i:nth-child(4n) { --n: 4; animation-delay: -.35s; }
.customize-music-bars i:nth-child(5n) { --n: 9; animation-delay: -.85s; }
.customize-music-bars i:nth-child(2n) { --n: 5; animation-delay: -.2s; }
@keyframes customize-wave { from { transform: scaleY(.55); opacity: .65; } to { transform: scaleY(1.12); opacity: 1; } }
.customize-result-frame { background: #101018; }
.customize-result-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.customize-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.customize-preview-sound-icon { display: none; }
.customize-outline-button { min-height: 46px; padding: 0 17px; border: 1px solid #727278; border-radius: 999px; background: transparent; color: #f5f5f7; font: inherit; font-size: 15px; font-weight: 600; cursor: pointer; }
.customize-outline-button:hover { background: #2e2e32; }
.customize-outline-button[aria-pressed="true"] { border-color: #59c9c0; color: #8cdbd4; }
.customize-controls { display: flex; justify-content: center; align-items: center; gap: 9px; margin-top: 35px; }
.customize-dot { width: 18px; height: 30px; padding: 0; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.customize-dot span { display: block; width: 7px; height: 7px; border-radius: 999px; background: #8f8f96; transition: width .35s cubic-bezier(.22, 1, .36, 1), background .25s ease; }
.customize-dot.is-current { width: 44px; }
.customize-dot.is-current span { width: 35px; background: #f5f5f7; }
.customize-section button:focus-visible { outline: 3px solid #70e0d5; outline-offset: 3px; }

.pricing-section {
  background: #fff;
  scroll-margin-top: 0;
}
.pricing-mobile-backdrop { display: none; }
.pricing-stage-top {
  position: relative;
  height: 725px;
  background: linear-gradient(180deg, #198e65 0%, #117c59 20%, #076248 45%, #034c39 69%, #002f28 100%);
  color: #fff;
  text-align: center;
}
.pricing-stage-copy { position: relative; z-index: 1; padding: 235px 20px 0; }
.pricing-kicker { margin: 0 0 11px; font-size: 28px; font-weight: 600; line-height: 32px; letter-spacing: .007em; }
.pricing-stage-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 80px;
  font-weight: 600;
  line-height: 84px;
  letter-spacing: -.015em;
}
.pricing-title-echo {
  position: absolute;
  top: 393px;
  left: 50%;
  width: min(100%, 600px);
  height: 210px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 80px;
  font-weight: 600;
  line-height: 84px;
  letter-spacing: -.015em;
  pointer-events: none;
}
.pricing-title-echo span {
  position: absolute;
  left: 50%;
  display: block;
  white-space: nowrap;
  color: #fff;
  transform-origin: top center;
  mask-image: linear-gradient(180deg, transparent 55%, #fff);
  -webkit-mask-image: linear-gradient(180deg, transparent 55%, #fff);
}
.pricing-title-echo span:nth-child(1) { top: 0; opacity: .66; transform: translateX(-50%) scale(.9); }
.pricing-title-echo span:nth-child(2) { top: 34px; opacity: .58; transform: translateX(-50%) scale(.8); }
.pricing-title-echo span:nth-child(3) { top: 62px; opacity: .49; transform: translateX(-50%) scale(.7); }
.pricing-title-echo span:nth-child(4) { top: 92px; opacity: .4; transform: translateX(-50%) scale(.6); }
.pricing-title-echo span:nth-child(5) { top: 119px; opacity: .31; transform: translateX(-50%) scale(.5); }
.pricing-title-echo span:nth-child(6) { top: 145px; opacity: .23; transform: translateX(-50%) scale(.4); }
.pricing-title-echo span:nth-child(7) { top: 162px; opacity: .14; transform: translateX(-50%) scale(.3); }
.pricing-title-echo span:nth-child(8) { top: 180px; opacity: .05; transform: translateX(-50%) scale(.2); }
.pricing-video-stage {
  position: absolute;
  z-index: 2;
  bottom: -130px;
  left: 50%;
  width: min(900px, calc(100% - 48px));
  height: 260px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / .85);
  border-radius: 34px;
  background: linear-gradient(120deg, #fff, #f7f8fb 65%, #f2f3f7);
  box-shadow: 0 24px 70px rgb(0 29 24 / .16), 0 3px 12px rgb(0 29 24 / .06);
  transform: translateX(-50%);
  pointer-events: none;
}
.pricing-video-stage::before {
  position: absolute;
  inset: 18px;
  border: 1px solid #ecedf2;
  border-radius: 22px;
  content: '';
}
.pricing-waveform {
  position: absolute;
  top: 50%;
  left: 7%;
  width: 38%;
  height: 108px;
  display: flex;
  align-items: center;
  gap: clamp(2px, .42vw, 6px);
  transform: translateY(-50%);
}
.pricing-waveform span {
  flex: 1 1 0;
  min-width: 0;
  height: var(--h);
  border-radius: 999px;
  background: linear-gradient(180deg, #df2fa8, #8737d4);
  transform-origin: center;
  animation: waveform-pulse 1.9s ease-in-out infinite;
  animation-delay: calc(var(--i) * -75ms);
}
@keyframes waveform-pulse { 0%, 100% { transform: scaleY(.78); } 50% { transform: scaleY(1.08); } }
.pricing-phrase {
  position: absolute;
  color: #1d1d1f;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.045em;
  white-space: nowrap;
  opacity: 0;
  animation: phrase-loop 15s ease-in-out infinite;
}
.pricing-phrase--one { top: 22%; left: 52%; }
.pricing-phrase--two { top: 45%; left: 66%; animation-delay: 3s; }
.pricing-phrase--three { top: 69%; left: 50%; animation-delay: 6s; }
.pricing-phrase--four { top: 28%; left: 54%; animation-delay: 9s; }
.pricing-phrase--five { top: 57%; left: 52%; animation-delay: 12s; }
@keyframes phrase-loop {
  0%, 2% { opacity: 0; transform: translateY(10px); }
  4%, 16% { opacity: 1; transform: translateY(0); }
  20%, 100% { opacity: 0; transform: translateY(-9px); }
}
.pricing-stage-bottom { padding: 170px 24px 112px; }
.pricing-summary { max-width: 653px; margin: 0 auto; text-align: center; }
.pricing-summary h3 { margin: 0; font-size: 24px; font-weight: 600; line-height: 28px; letter-spacing: -.012em; }
.pricing-summary p { margin: 0; color: #6e6e73; font-size: 24px; font-weight: 600; line-height: 28px; letter-spacing: -.012em; }
.pricing-inner { max-width: 1000px; margin: 108px auto 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px; }
.pricing-plan { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.pricing-plan h4 { margin: 0; font-size: 20px; font-weight: 600; line-height: 29px; letter-spacing: -.012em; }
.pricing-plan h4 span { display: block; }
.pricing-plan h4 strong {
  display: block;
  margin: 1px 0 0;
  color: #168456;
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.pricing-estimate { min-height: 55px; margin: 7px 0 0; font-size: 20px; font-weight: 600; line-height: 1.25; letter-spacing: -.018em; }
.pricing-estimate strong { font-weight: 600; }
.pricing-amount { margin: 19px 0 12px; font-size: 23px; font-weight: 600; line-height: 1.18; letter-spacing: -.035em; }
.pricing-amount--custom { font-size: 21px; }
.pricing-cta { margin-top: auto; color: #087a53; font-size: 16px; font-weight: 500; line-height: 1.35; }
.pricing-cta::after { content: ' ›'; }
.pricing-cta:hover { text-decoration: underline; }
.pricing-includes { margin-top: 104px; }
.pricing-includes h3 { margin: 0 0 28px; font-size: 28px; font-weight: 600; line-height: 1.18; letter-spacing: -.018em; }
.pricing-includes ul { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; margin: 0; padding: 0; list-style: none; }
.pricing-includes li { padding: 17px 8px 0 0; border-top: 1px solid #d2d2d7; font-size: 17px; font-weight: 600; line-height: 1.35; }
.pricing-note { max-width: 1032px; margin: 37px 0 0; color: #6e6e73; font-size: 12px; line-height: 1.45; }

/* A single glass CTA: floating over the plans, then resting beneath the inclusions. */
.reservation-dock { position: relative; z-index: 5; width: max-content; max-width: 100%; min-height: 56px; margin: 56px auto 0; }
.reservation-cta {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 56px;
  padding: 10px 10px 10px 24px;
  border-radius: 40px;
  color: #1d1d1f;
  font-size: 17px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: -.016em;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: transform 160ms cubic-bezier(.25, 1, .5, 1);
}
.reservation-cta::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: inherit;
  background: rgba(232, 232, 237, .72);
  -webkit-backdrop-filter: blur(7px) saturate(160%);
  backdrop-filter: blur(7px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .7), 0 2px 8px rgba(29, 29, 31, .045);
  transition: background-color 180ms ease;
}
.reservation-arrow {
  display: grid;
  flex: none;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0071e3;
  color: #fff;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .25);
  transition: background-color 180ms ease;
}
.reservation-arrow svg { width: 21px; height: 21px; }
.reservation-cta:active { transform: scale(.97); }
.reservation-cta:focus-visible { outline: 3px solid #0071e3; outline-offset: 5px; }
.reservation-cta-on-screen .atlas-widget:not(.atlas-widget--open) { visibility: hidden; pointer-events: none; }
@media (hover: hover) and (pointer: fine) {
  .reservation-cta:hover::before { background-color: rgba(232, 232, 237, .9); }
  .reservation-cta:hover .reservation-arrow { background: #0077ed; }
}
@supports not ((backdrop-filter: blur(7px)) or (-webkit-backdrop-filter: blur(7px))) {
  .reservation-cta::before { background: #e8e8ed; }
}
@media (min-width: 701px) and (min-height: 640px) and (prefers-reduced-motion: no-preference) {
  .reservation-dock.has-reservation-motion { position: sticky; bottom: 32px; }
  .is-reservation-early .reservation-travel {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: max-content;
    max-width: calc(100% - 32px);
    margin-inline: auto;
  }
  .has-reservation-motion .reservation-arrival { visibility: hidden; }
  .has-reservation-motion.is-reservation-visible .reservation-arrival {
    visibility: visible;
    animation: reservation-enter 750ms cubic-bezier(.22, 1, .36, 1) both;
  }
  .has-reservation-motion.is-reservation-visible .reservation-cta::before {
    animation: reservation-unfold 680ms cubic-bezier(.22, 1, .36, 1) 160ms both;
  }
  .has-reservation-motion.is-reservation-visible .reservation-label {
    animation: reservation-copy-in 400ms cubic-bezier(.22, 1, .36, 1) 420ms both;
  }
  .has-reservation-motion.is-reservation-visible .reservation-arrow {
    animation: reservation-copy-in 400ms cubic-bezier(.22, 1, .36, 1) 490ms both;
  }
  .reservation-dock:focus-within .reservation-arrival,
  .reservation-dock:focus-within .reservation-cta::before,
  .reservation-dock:focus-within .reservation-label,
  .reservation-dock:focus-within .reservation-arrow { animation: none; visibility: visible; }
}
@keyframes reservation-enter {
  from { opacity: 0; transform: translateY(-16px); }
  20% { opacity: 1; }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes reservation-unfold {
  from { clip-path: inset(0 calc(50% - 28px) round 28px); }
  to { clip-path: inset(0 0 round 28px); }
}
@keyframes reservation-copy-in {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reservation-cta, .reservation-cta::before, .reservation-arrow { transition: none; }
}

.site-footer { border-top: 1px solid #e5e5ea; background: #f5f5f7; color: #1d1d1f; }
.footer-inner { max-width: 1170px; margin: 0 auto; padding: 92px 24px 36px; }
.footer-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 46px; text-align: center; }
.footer-card { display: flex; flex-direction: column; align-items: center; }
.footer-card-icon { width: 62px; height: 62px; object-fit: contain; filter: brightness(0); opacity: .72; }
.footer-card h2 { margin: 24px 0 11px; color: #1d1d1f; font-size: 20px; font-weight: 600; line-height: 1.25; }
.footer-card p { max-width: 290px; min-height: 66px; margin: 0; color: #6e6e73; font-size: 15px; line-height: 1.5; }
.footer-card a { margin-top: 12px; color: #0066cc; font-size: 15px; font-weight: 500; }
.footer-card a:hover, .footer-links a:hover { text-decoration: underline; }
.footer-bottom { margin-top: 114px; text-align: center; }
.footer-breadcrumb { display: block; width: min(433px, 100%); height: auto; margin: 0 auto 42px; filter: brightness(0); opacity: .78; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 37px; }
.footer-links a { color: #424245; font-size: 13px; line-height: 1.5; }
.footer-links a span { display: none; }
.footer-copyright { margin: 37px 0 0; color: #6e6e73; font-size: 12px; line-height: 1.6; }

@media (prefers-reduced-motion: no-preference) {
  .hero-intro, .hero-headline, .hero-subtitle { animation: rise-in .8s cubic-bezier(.23, 1, .32, 1) both; }
  .hero-headline { animation-delay: .08s; }
  .hero-subtitle { animation-delay: .16s; }
  .hero-media { animation: hero-media-in 1s cubic-bezier(.23, 1, .32, 1) .22s both; }
  /* The shell opens independently, so the copy and CTA never stretch. */
  .hero-platter.has-platter-intro::before {
    opacity: 0;
    clip-path: inset(calc(50% - 28px) calc(50% - 28px) round 28px);
    transform: translateY(16px) scale(.92);
  }
  .hero-platter.has-platter-intro > * { opacity: 0; }
  .hero-platter.has-platter-intro.is-platter-visible::before {
    animation: platter-shell-in .9s cubic-bezier(.22, 1, .36, 1) .1s both;
  }
  .hero-platter.has-platter-intro.is-platter-visible .platter-copy {
    animation: platter-content-in .42s cubic-bezier(.22, 1, .36, 1) .48s both;
  }
  .hero-platter.has-platter-intro.is-platter-visible .platter-cta {
    animation: platter-content-in .42s cubic-bezier(.22, 1, .36, 1) .55s both;
  }
  .hero-platter.has-platter-intro:focus-within::before,
  .hero-platter.has-platter-intro:focus-within > * {
    animation: none; opacity: 1; clip-path: none; transform: none; translate: none;
  }
}
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes platter-shell-in {
  0% {
    opacity: 0;
    clip-path: inset(calc(50% - 28px) calc(50% - 28px) round 28px);
    transform: translateY(16px) scale(.92);
  }
  22% {
    opacity: 1;
    clip-path: inset(calc(50% - 28px) calc(50% - 28px) round 28px);
    transform: translateY(0) scale(1);
  }
  100% { opacity: 1; clip-path: inset(-40px -40px round 35px); transform: translateY(0) scale(1); }
}
@keyframes platter-content-in {
  from { opacity: 0; translate: 0 6px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes hero-media-in {
  from { clip-path: inset(0 8% round 36px); scale: .965; }
  to { clip-path: inset(-70px -70px round 24px); scale: 1; }
}
@media (min-width: 701px) and (max-height: 800px) {
  .hero-header { padding-top: 26px; }
  .hero-headline { font-size: 60px; }
  .hero-subtitle { margin-top: 12px; }
  .hero-media { width: min(1100px, calc((100dvh - 290px) * 1.6), calc(100vw - 48px)); margin-top: 30px; }
}

@media (min-width: 701px) and (max-width: 1050px) {
  .pricing-inner { max-width: 750px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 52px 70px; }
  .pricing-includes ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .global-nav { height: 44px; padding: 0 20px; }
  .nav-links { display: none; }
  .announcement { min-height: 90px; padding: 14px 22px; font-size: 14px; line-height: 20px; }
  .announcement p { max-width: 340px; }
  .hero { padding-bottom: 42px; }
  .hero-header { padding: 43px 16px 0; }
  .hero-headline { font-size: 43px; line-height: 46px; letter-spacing: -.052em; }
  .hero-subtitle { max-width: 310px; margin-top: 18px; font-size: 16px; line-height: 21px; }
  .hero-media { width: calc(100% - 20px); height: 420px; aspect-ratio: auto; margin-top: 52px; }
  .media-frame { border-radius: 20px; }
  .hero-poster img, .hero-video { object-position: center; }
  .video-controls { top: 10px; right: 10px; gap: 6px; }
  .video-toggle, .sound-toggle { font-size: 11px; padding: 7px 10px; }
  .hero-platter {
    bottom: 12px;
    width: calc(100% - 24px);
    min-height: 104px;
    padding: 13px 16px;
    border-radius: 24px;
    display: grid;
    justify-content: stretch;
    gap: 10px;
  }
  .platter-copy { font-size: 15px; line-height: 19px; }
  .platter-cta { width: 100%; min-height: 42px; padding: 0 18px; font-size: 15px; }
  .events-section { padding: 60px 12px 88px; }
  .events-section h2 { margin: 0 12px 30px; font-size: clamp(38px, 9vw, 52px); }
  .events-viewer { min-height: 0; grid-template-columns: 1fr; border-radius: 24px; }
  .events-display { grid-row: 1; min-height: 0; padding: 32px 20px 8px; }
  .events-player { width: min(100%, 264px); gap: 16px; }
  .events-device { border-radius: 44px; padding: 6px; }
  .events-device::after { border-radius: 40px; }
  .events-screen { border-radius: 38px; }
  .events-island { top: 8px; height: 19px; }
  .events-island::after { top: 7px; right: 9px; width: 5px; height: 5px; }
  .events-video-actions button { min-width: 102px; font-size: 12px; }
  .events-rail { grid-row: 2; padding: 26px 22px 34px; }
  .events-arrows { display: none; }
  .events-options { gap: 9px; }
  .events-option.is-active { width: 100%; }
  .events-category { min-height: 51px; font-size: 18px; }
  .events-option.is-active .events-category { padding: 20px 23px 6px; }
  .events-details { padding: 0 23px 22px; }
  .events-details p { font-size: 16px; line-height: 1.4; }
  .events-progress { margin-top: 17px; }
  .customize-section { padding: 73px 0 69px; }
  .customize-heading { width: calc(100% - 36px); margin-bottom: 33px; }
  .customize-heading p { font-size: 14px; }
  .customize-heading h2 { font-size: clamp(39px, 10vw, 54px); }
  .customize-heading > span { margin-top: 13px; font-size: 17px; line-height: 1.35; }
  .customize-viewport { width: calc(100% - 24px); }
  .customize-slide { flex-basis: calc(100vw - 34px); min-height: 825px; padding: 33px 22px 35px; display: flex; flex-direction: column; align-items: stretch; justify-content: space-between; gap: 25px; border-radius: 23px; }
  .customize-copy h3 { margin: 15px 0 14px; font-size: clamp(35px, 9vw, 45px); }
  .customize-copy > p:not(.customize-feedback) { margin-bottom: 20px; font-size: 16px; }
  .customize-field input { font-size: 15px; }
  .customize-field button { padding-inline: 13px; font-size: 13px; }
  .customize-next { margin-top: 18px; }
  .customize-layout-art, .customize-result-frame { width: min(220px, 100%); }
  .customize-nameplate { font-size: 14px; }
  .customize-music-art { min-height: 240px; gap: 20px; }
  .customize-music-art > span { font-size: 21px; }
  .customize-controls { margin-top: 23px; }
  .pricing-stage-top { height: 420px; }
  .pricing-stage-copy { padding: 109px 20px 0; }
  .pricing-kicker { margin-bottom: 9px; font-size: 19px; line-height: 23px; }
  .pricing-stage-copy h2 { font-size: 40px; line-height: 44px; }
  .pricing-title-echo { top: 203px; font-size: 40px; line-height: 44px; }
  .pricing-title-echo span:nth-child(1) { top: 0; }
  .pricing-title-echo span:nth-child(2) { top: 18px; }
  .pricing-title-echo span:nth-child(3) { top: 33px; }
  .pricing-title-echo span:nth-child(4) { top: 48px; }
  .pricing-title-echo span:nth-child(5) { top: 63px; }
  .pricing-title-echo span:nth-child(6) { top: 77px; }
  .pricing-title-echo span:nth-child(7) { top: 85px; }
  .pricing-title-echo span:nth-child(8) { top: 95px; }
  .pricing-video-stage { width: calc(100% - 24px); height: 190px; bottom: -95px; border-radius: 25px; }
  .pricing-video-stage::before { inset: 10px; border-radius: 17px; }
  .pricing-waveform { left: 6%; width: 31%; height: 78px; gap: 2px; }
  .pricing-phrase { font-size: clamp(19px, 5vw, 26px); }
  .pricing-phrase--one { top: 13%; left: 41%; }
  .pricing-phrase--two { top: 40%; left: 52%; }
  .pricing-phrase--three { top: 69%; left: 40%; }
  .pricing-phrase--four { top: 18%; left: 40%; font-size: clamp(16px, 4.4vw, 23px); }
  .pricing-phrase--five { top: 69%; left: 40%; font-size: clamp(16px, 4.2vw, 22px); }
  .pricing-stage-bottom { padding: 131px 23px 88px; }
  .pricing-summary h3 { font-size: 19px; line-height: 23px; }
  .pricing-summary p { margin-top: 0; font-size: 19px; line-height: 23px; }
  .pricing-inner { max-width: 460px; margin-top: 108px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 0; }
  .pricing-plan { padding: 28px 0; border-top: 1px solid #d2d2d7; display: grid; grid-template-columns: 1fr auto; gap: 7px 10px; }
  .pricing-plan h4 { grid-column: 1; grid-row: 1; }
  .pricing-plan h4 strong { font-size: 39px; }
  .pricing-estimate { grid-column: 1 / -1; grid-row: 2; min-height: 0; margin: 0; font-size: 17px; }
  .pricing-amount { grid-column: 2; grid-row: 1; align-self: end; margin: 0 0 3px; font-size: 21px; }
  .pricing-amount--custom { font-size: 17px; }
  .pricing-cta { grid-column: 1 / -1; grid-row: 3; margin-top: 9px; font-size: 15px; }
  .pricing-includes { margin-top: 64px; }
  .pricing-includes h3 { margin-bottom: 22px; font-size: 23px; }
  .pricing-includes ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 23px 17px; }
  .pricing-includes li { padding-top: 13px; font-size: 15px; }
  .pricing-note { margin-top: 23px; }
  .footer-inner { padding: 73px 36px 35px; }
  .footer-cards { grid-template-columns: 1fr; gap: 63px; }
  .footer-card-icon { width: 60px; height: 60px; }
  .footer-card h2 { margin: 17px 0 8px; font-size: 19px; }
  .footer-card p { min-height: 0; max-width: 320px; font-size: 15px; }
  .footer-card a { margin-top: 11px; }
  .footer-bottom { margin-top: 62px; text-align: left; }
  .footer-breadcrumb { width: min(300px, 100%); margin: 0 auto 33px; }
  .footer-links { display: block; }
  .footer-links a { min-height: 48px; border-top: 1px solid #d2d2d7; display: flex; align-items: center; justify-content: space-between; color: #424245; font-size: 13px; }
  .footer-links a:last-child { border-bottom: 1px solid #d2d2d7; }
  .footer-links a span { display: inline; color: #6e6e73; font-size: 18px; font-weight: 300; }
  .footer-copyright { margin-top: 48px; text-align: left; font-size: 11px; }
}

@media (max-width: 375px) {
  .hero-headline { font-size: 38px; line-height: 41px; }
  .hero-media { margin-top: 55px; }
  .hero-platter { padding-inline: 14px; }
  .customize-slide { padding-inline: 18px; }
  .customize-field { flex-direction: column; }
  .customize-field button { align-self: flex-start; }
  .pricing-stage-copy h2 { font-size: 40px; }
  .pricing-plan h4 strong { font-size: 35px; }
}

/* Occasion-based personalization preview, September 2026. */
.customize-section { background: #1d1d1f; }
.customize-viewport {
  width: 100%;
  margin: 0;
  overflow: clip;
  scroll-margin-top: 24px;
}
.customize-track { gap: 18px; }
.customize-slide {
  flex: 0 0 min(1260px, max(760px, 62vw), calc(100vw - 72px));
  min-width: 0;
  min-height: 716px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .84fr);
  grid-template-rows: 1fr auto;
  padding: 48px clamp(36px, 5vw, 76px) 28px;
  column-gap: 48px;
  row-gap: 28px;
  border: 1px solid #28282d;
  background: #151518;
}
.customize-slide[data-customize-step="1"] .customize-visual,
.customize-slide[data-customize-step="2"] .customize-visual { grid-column: 1; grid-row: 1; }
.customize-slide[data-customize-step="1"] .customize-copy,
.customize-slide[data-customize-step="2"] .customize-copy { grid-column: 2; grid-row: 1; }
.customize-copy { max-width: 510px; min-width: 0; grid-row: 1; }
.customize-visual { grid-row: 1; }
.customize-copy label { display: flex; justify-content: space-between; margin-bottom: 9px; }
.customize-copy label:not(:first-of-type) { margin-top: 19px; }
#customize-count { color: #86868b; font-size: 12px; font-weight: 500; }
#customize-occasion {
  width: min(440px, 100%); height: 48px; padding: 0 46px 0 16px;
  border: 1px solid #55555a; border-radius: 11px;
  background: #28282c url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' fill='none' stroke='%23d6d6db' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 17px center / 16px; color: #f5f5f7;
  appearance: none; -webkit-appearance: none;
  font: inherit; font-size: 15px; cursor: pointer;
}
#customize-occasion:focus-visible { outline: 3px solid #70e0d5; outline-offset: 3px; }
#customize-detail-field { max-width: 440px; margin-top: 20px; }
#customize-detail-field label { margin-top: 0; }
.customize-detail-control { position: relative; }
.customize-detail-control:has(.customize-calendar:not([hidden])) > input { padding-right: 59px !important; }
.customize-calendar { position: absolute; right: 9px; top: 3px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 8px; color: #d6d6db; }
.customize-calendar:hover { background: #3c3c41; }
.customize-calendar svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
#customize-detail-field .customize-calendar input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; padding: 0; cursor: pointer; color-scheme: dark; }
.customize-calendar input::-webkit-calendar-picker-indicator { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; cursor: pointer; }
.customize-calendar:focus-within { outline: 2px solid #79d8cc; outline-offset: 2px; }
.customize-date-help { display: block; margin-top: 8px; color: #a1a1a6; font-size: 12px; line-height: 1.4; }
#customize-detail-field[hidden] { display: none; }
#customize-detail-field input {
  width: 100%; height: 46px; padding: 0 15px; border: 1px solid #55555a;
  border-radius: 11px; outline: none; background: #28282c; color: #f5f5f7;
  font: inherit; font-size: 16px;
}
#customize-detail-field input::placeholder { color: #8c8c93; }
#customize-detail-field input:focus { border-color: #67d9cf; box-shadow: 0 0 0 3px rgb(103 217 207 / .2); }
.customize-layout-art { background-color: #25252a; background-size: cover; background-position: center; }
.customize-layout-art::before { display: none; }
.customize-section:not(.has-customize-art) .customize-layout-art::after {
  position: absolute; inset: auto 10% 8%; padding: 12px 16px;
  border-radius: 12px; background: rgb(0 0 0 / .60); color: #fff;
  font-size: 13px; font-weight: 600; text-align: center;
  content: 'Sua arte aparece depois de preencher';
}
.customize-layout-art > img, .customize-result-frame > img { object-fit: contain; }
.customize-download {
  margin-top: 8px; padding: 0; border: 0; background: none;
  color: #8cdbd4; font: inherit; font-size: 14px; cursor: pointer;
}
.customize-download:hover { text-decoration: underline; }
.customize-download[hidden] { display: none; }
.customize-layout-art.is-assembling > img { animation: customize-reveal .75s cubic-bezier(.22,1,.36,1) both; }
.customize-controls { margin-top: 27px; }
.customize-controls { width: max-content; margin-inline: auto; padding: 5px 13px; border-radius: 999px; background: #323236; }
.customize-step-footer {
  grid-column: 1 / -1; grid-row: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 52px; padding-top: 20px; border-top: 1px solid #303035;
  align-self: end;
}
.customize-footer-info { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; min-width: 0; }
.customize-step-footer .customize-next { margin: 0 0 0 auto; min-height: 44px; white-space: nowrap; }
.customize-step-footer .customize-next span { font-size: 21px; line-height: 1; }
.customize-step-footer .customize-build-button { min-height: 46px; padding: 0 21px; border-radius: 999px; background: #f5f5f7; color: #1d1d1f; text-decoration: none; }
.customize-step-footer .customize-build-button:hover { background: #d9f7f3; }
.customize-step-footer .customize-download { margin: 0; min-height: 36px; }
.customize-auto-note { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 10px; color: #a1a1a6; font-size: 12px; }
.customize-auto-note button { border: 0; background: none; color: #c8c8cd; padding: 5px 0; font: inherit; text-decoration: underline; cursor: pointer; }
.customize-section [hidden] { display: none !important; }
.customize-section button:disabled { opacity: .4; cursor: default; text-decoration: none; }
.customize-track-choice { display: grid; grid-template-columns: 1fr auto; min-height: 108px; gap: 10px 12px; padding: 13px 15px; cursor: default; }
.track-title { grid-column: 1 / -1; min-width: 0; }
.customize-track-choice .track-select { display: inline-flex; align-items: center; justify-content: flex-end; gap: 8px; min-width: 0; min-height: 36px; margin: 0; cursor: pointer; font-size: 13px; font-weight: 500; }
.customize-track-choice strong { font-size: 16px; line-height: 1.3; font-weight: 600; }
.customize-track-choice small { font-weight: 400; font-size: 13px; line-height: 1.3; }
.customize-track-choice input { flex: none; width: 20px; height: 20px; margin: 0; accent-color: #79d8cc; cursor: pointer; }
.customize-track-choice input:focus-visible { outline: 3px solid #70e0d5; outline-offset: 4px; }
.track-play { display: inline-flex; justify-content: center; align-items: center; gap: 7px; width: max-content; height: 36px; border: 1px solid #505055; padding: 0 11px; border-radius: 999px; background: transparent; color: #e1e1e6; font: inherit; font-size: 12px; font-weight: 500; cursor: pointer; }
.track-play-icon { width: 10px; font-size: 10px; }
.track-play:hover { background: #38383e; }
.track-play[aria-pressed="true"] { background: #d9f7f3; border-color: transparent; color: #155d59; }
.track-play:focus-visible, .customize-section button:focus-visible { outline: 3px solid #70e0d5; outline-offset: 3px; }
.customize-export-note { color: #a1a1a6; font-size: 13px; line-height: 1.4; }
.customize-share-options { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 9px; margin-left: auto; }
.customize-share-options > * { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; padding-inline: 15px; text-decoration: none; }
.customize-share-options svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.customize-share-message { margin: 24px 0 0; color: #d6d6db; font-size: 17px; line-height: 1.5; letter-spacing: -.01em; }
.customize-share-message span { display: block; margin-top: 9px; color: #7bdcd4; font-size: 14px; }
.customize-section.is-exporting .customize-next { color: #b8b8bd; }

@media (max-width: 700px) {
  .customize-slide {
    flex-basis: calc(100% - 64px); min-height: 0; padding: 30px 22px 20px;
    display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: 1fr auto auto;
    gap: 25px; align-items: start;
  }
  .customize-copy { grid-column: 1 !important; grid-row: 1 !important; }
  .customize-visual { grid-column: 1 !important; grid-row: 2 !important; }
  .customize-step-footer { grid-column: 1; grid-row: 3; flex-wrap: wrap; gap: 6px 12px; padding-top: 14px; }
  .customize-footer-info { flex: 1 1 100%; }
  .customize-step-footer .customize-next { font-size: 15px; }
  .customize-step-footer--result { justify-content: flex-end; }
  .customize-export-note { flex-basis: 100%; font-size: 12px; }
  .customize-share-options { justify-content: flex-start; width: 100%; }
  .customize-share-options > * { flex: 1 1 auto; min-height: 42px; padding-inline: 10px; font-size: 12px; }
  .customize-auto-note { font-size: 11px; }
  .customize-track-choice { padding: 10px; gap: 9px; }
  .customize-track-choice strong { font-size: 14px; }
  .customize-track-choice small { font-size: 12px; }
  .track-play { min-height: 38px; padding-inline: 10px; }
  .customize-slide[data-customize-step="1"] .customize-visual,
  .customize-slide[data-customize-step="2"] .customize-visual { order: 2; }
  .customize-slide[data-customize-step="1"] .customize-copy,
  .customize-slide[data-customize-step="2"] .customize-copy { order: 1; }
  .customize-copy h3 { font-size: clamp(36px, 9vw, 48px); }
  .customize-copy > p:not(.customize-feedback) { max-width: 42ch; }
  .customize-layout-art, .customize-result-frame { width: min(224px, 100%); }
  .customize-music-art { min-height: 220px; }
  .customize-field { flex-direction: row; }
  .customize-field button { padding-inline: 12px; font-size: 13px; }
}

@media (max-width: 390px) {
  .customize-slide { min-height: 855px; padding-inline: 19px; }
  .customize-field { flex-direction: column; }
  .customize-field button { align-self: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .customize-track, .customize-layout-art.is-assembling > img { transition: none; animation: none; }
}

@media (max-width: 700px) and (max-height: 740px) {
  .hero-header { padding-top: 30px; }
  .hero-media { height: 350px; margin-top: 40px; }
  .hero-platter { min-height: 100px; padding-block: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .pricing-waveform span { animation: none; transform: none; }
  .pricing-phrase { opacity: 1; transform: none; }
}

/* Scroll choreography. The carousel owns its horizontal transform independently. */
@media (prefers-reduced-motion: no-preference) {
  .motion-enabled .motion-reveal {
    opacity: 0;
    transition: opacity .8s cubic-bezier(.23, 1, .32, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }
  .motion-enabled .motion-reveal--fade { translate: none; }
  .motion-enabled .motion-reveal.is-revealed,
  .motion-enabled .motion-reveal:focus-within { opacity: 1; translate: 0 0; }
  .motion-enabled .motion-reveal--title {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
    translate: 0 12px;
    transition: clip-path .85s cubic-bezier(.23, 1, .32, 1), translate .85s cubic-bezier(.23, 1, .32, 1);
  }
  .motion-enabled .motion-reveal--title.is-revealed { clip-path: inset(-4px -4px -4px -4px); }
  .motion-enabled .motion-reveal--plans { opacity: 1; }
  .pricing-plan:nth-child(2) { --motion-order: 1; }
  .pricing-plan:nth-child(3) { --motion-order: 2; }
  .pricing-plan:nth-child(4) { --motion-order: 3; }
  .motion-reveal--plans .pricing-plan h4 strong {
    clip-path: inset(0 0 100% 0);
    transition: clip-path .65s cubic-bezier(.23, 1, .32, 1);
    transition-delay: calc(var(--motion-order, 0) * 85ms);
  }
  .motion-reveal--plans.is-revealed .pricing-plan h4 strong,
  .motion-reveal--plans:focus-within .pricing-plan h4 strong { clip-path: inset(-3px); }
  .motion-enabled .motion-depth {
    transform: translate3d(0, var(--depth-y, 0px), 0) scale(var(--depth-scale, 1));
  }
  .motion-depth.is-depth-active { will-change: transform; }
  .pricing-video-stage:not(.is-motion-running) .pricing-waveform span,
  .pricing-video-stage:not(.is-motion-running) .pricing-phrase,
  .customize-music-art:not(.is-motion-running) .customize-music-bars i { animation-play-state: paused; }
}

/* Personalization owns its entrance, gallery travel and active-card animation.
   The existing first / center / last alignment remains unchanged. */
.customize-music-art:not(.is-motion-running) .customize-music-bars i {
  animation: none;
  transform: none;
  opacity: 1;
}
.customize-control-shell { display: none; }
@media (min-width: 701px) and (prefers-reduced-motion: no-preference) {
  .customize-motion .customize-track {
    transition: transform 1s cubic-bezier(.65, 0, .35, 1);
  }
  .customize-motion:not(.customize-heading-entered) .customize-heading > *,
  .customize-motion:not(.customize-gallery-entered) .customize-viewport,
  .customize-motion:not(.customize-controls-entered) .customize-controls { opacity: 0; }
  .customize-motion .customize-slide:not(.is-current) .customize-copy { opacity: 0; }
  .customize-motion .customize-controls {
    position: relative;
    isolation: isolate;
    min-height: 56px;
    padding: 8px 17px;
    background: transparent;
  }
  .customize-motion .customize-control-shell {
    display: block;
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 999px;
    background: #323236;
    pointer-events: none;
  }
  .customize-motion .customize-dot {
    width: 30px;
    height: 40px;
  }
  .customize-motion .customize-dot span {
    width: 7px;
    height: 7px;
    transition: width .45s cubic-bezier(.65, 0, .35, 1), background .25s;
  }
  .customize-motion .customize-dot.is-current span { width: 26px; }
  .customize-motion.is-keyboard-navigation .customize-track { transition: none; }
}

/* Pricing: an inset green chapter opens to full bleed, then settles above the plans. */
@media (min-width: 701px) {
  .customize-section { padding-bottom: 48px; }
  .pricing-section { padding-top: 32px; }
  .pricing-stage-top { height: 620px; }
  .pricing-stage-copy { padding-top: 130px; }
  .pricing-title-echo { top: 288px; }
}
@media (min-width: 701px) and (min-height: 640px) and (prefers-reduced-motion: no-preference) {
  .pricing-scroll-motion .pricing-scene {
    position: relative;
    height: calc(100svh + clamp(420px, 70svh, 720px));
  }
  .pricing-scroll-motion .pricing-stage-top {
    position: sticky; z-index: 1; top: 0; height: 100svh;
    background: transparent; isolation: isolate; pointer-events: none;
  }
  .pricing-scroll-motion .pricing-stage-top::before {
    position: absolute; z-index: -1; inset: 0; content: '';
    background: linear-gradient(180deg, #198e65 0%, #117c59 20%, #076248 45%, #034c39 69%, #002f28 100%);
    clip-path: inset(0 var(--pricing-inset, 12%) 0 round var(--pricing-radius, 36px));
    transform-origin: top center;
    transform: translateY(calc(-1 * var(--pricing-top-lift, 0px))) scaleY(var(--pricing-background-scale, 1));
  }
  .pricing-scroll-motion .pricing-stage-copy {
    max-width: 680px; margin-inline: auto; padding-top: 0;
    transform-origin: center top;
    transform: translateY(var(--pricing-copy-y, 130px)) scale(var(--pricing-copy-scale, 1.12));
  }
  .pricing-scroll-motion .pricing-title-echo {
    top: 127px; height: 84px;
    perspective: 1000px; perspective-origin: center bottom;
  }
  .pricing-scroll-motion .pricing-title-echo span {
    top: 0; left: 0; width: 100%; opacity: 0;
    transform: translate3d(0, var(--echo-y), var(--echo-z));
    transform-origin: center bottom;
  }
  .pricing-scroll-motion.is-echo-visible .pricing-title-echo span {
    animation: pricing-echo-recede .9s cubic-bezier(.25, .1, .25, 1) both;
    animation-delay: var(--echo-delay);
  }
  .pricing-scroll-motion .pricing-video-stage {
    top: 0; bottom: auto; width: min(900px, calc(100% - 120px));
    transform: translate(-50%, calc(var(--pricing-wave-y, 620px) - 50%)) scale(var(--pricing-wave-scale, 1.16));
    opacity: var(--pricing-wave-opacity, 0);
  }
  .pricing-scroll-motion .pricing-stage-bottom { margin-top: calc(620px - 100svh); }
}
@keyframes pricing-echo-recede {
  from { opacity: 0; transform: translate3d(0, var(--echo-from-y), var(--echo-from-z)); }
  to { opacity: var(--echo-opacity); transform: translate3d(0, var(--echo-y), var(--echo-z)); }
}

@media (max-width: 700px) and (prefers-reduced-motion: no-preference) {
  .motion-enabled .motion-reveal { transition-duration: .6s; }
  .motion-enabled .motion-reveal--fade { translate: none; }
  .motion-enabled .motion-reveal.is-revealed { translate: 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-reveal { opacity: 1; translate: none; }
  .motion-depth { transform: none; }
  .pricing-phrase { animation: none; opacity: 0; }
  .pricing-phrase--one { top: 25%; opacity: 1; }
  .pricing-phrase--three { top: 50%; left: 52%; opacity: 1; }
  .pricing-phrase--five { top: 75%; opacity: 1; }
}

/* Choose first; only the completed export reveals the assembled design. */
.customize-options-only .customize-visual--layout,
.customize-options-only .customize-mobile-edit,
.customize-options-only .customize-copy > .customize-actions,
.customize-options-only #customize-preview-sound,
.customize-options-only .customize-playback,
.customize-options-only:not(.has-generated-video) .customize-visual--result { display: none; }
.customize-options-only [data-customize-step="0"] .customize-copy,
.customize-options-only:not(.has-generated-video) [data-customize-step="2"] .customize-copy { grid-column: 1 / -1; justify-self: center; width: 100%; }
.customize-summary { margin: 26px 0 0; display: grid; gap: 18px; }
.customize-summary[hidden] { display: none; }
.customize-summary dt { color: #a1a1a6; font-size: 13px; line-height: 1.4; margin-bottom: 4px; }
.customize-summary dd { margin: 0; font-size: 17px; line-height: 1.35; overflow-wrap: anywhere; }
