:root {
  --text: #1d1d1f;
  --text-light: #f5f5f7;
  --muted: #86868b;
  --bg: #fff;
  --bg-alt: #f5f5f7;
  --bg-dark: #000;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --pill: rgba(232, 232, 237, 0.72);
  --max: 980px;
  --wide: 1260px;
  --nav-h: 44px;
  --local-h: 52px;
  --font: "SF Pro Text", "SF Pro SC", -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "SF Pro Display", "SF Pro SC", -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Prefer locally installed SF Pro when available (no redistributed font files). */
@font-face {
  font-family: "SF Pro Text";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("SF Pro Text"), local("SFProText-Regular"), local(".SF NS Text");
}
@font-face {
  font-family: "SF Pro Text";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("SF Pro Text"), local("SFProText-Semibold"), local(".SF NS Text");
}
@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("SF Pro Display"), local("SFProDisplay-Semibold"), local(".SF NS Display");
}
@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("SF Pro Display"), local("SFProDisplay-Bold"), local(".SF NS Display");
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  overflow-x: clip;
}
body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: min(100% - 48px, var(--wide));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

/* ========== Global Nav ========== */
.globalnav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 9999;
  height: var(--nav-h);
  background: rgba(22, 22, 23, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: #f5f5f7;
}

.globalnav.is-open {
  background: #161617;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.globalnav-inner {
  position: relative;
  z-index: 2;
  max-width: 1024px;
  height: var(--nav-h);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.globalnav a,
.globalnav .gn-trigger {
  color: #f5f5f7;
  opacity: 0.88;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.globalnav a:hover,
.globalnav .gn-trigger:hover,
.globalnav .gn-trigger[aria-expanded="true"] {
  opacity: 1;
  text-decoration: none;
}

.apple-logo {
  width: 14px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.apple-logo svg { width: 14px; height: 18px; fill: currentColor; }

.gn-links {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  margin: 0;
  list-style: none;
}

.gn-links li { display: flex; align-items: center; height: 44px; }

.gn-icons { display: flex; gap: 18px; align-items: center; flex: 0 0 auto; }
.gn-icons svg { width: 15px; height: 44px; fill: currentColor; opacity: 0.88; }

.gn-flyout {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--nav-h);
  z-index: 2;
  background: #161617;
  color: #f5f5f7;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.36s cubic-bezier(0.4, 0, 0.6, 1);
}

.globalnav.is-open .gn-flyout {
  max-height: min(70vh, 520px);
}

.gn-flyout[hidden] { display: block; }

.gn-flyout-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 28px 22px 40px;
}

.gn-panel {
  display: none;
  grid-template-columns: repeat(3, minmax(140px, 220px));
  gap: 28px 48px;
}

.gn-panel.is-active { display: grid; }

.gn-label {
  margin: 0 0 10px;
  font-size: 12px;
  color: #86868b;
  font-weight: 400;
}

.gn-panel a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  opacity: 0.92;
  color: #f5f5f7;
}

.gn-panel a.gn-emphasized {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 2px 0 10px;
  opacity: 1;
}

.gn-curtain {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.globalnav.is-open .gn-curtain {
  opacity: 1;
  pointer-events: auto;
}

.gn-curtain[hidden] { display: block; }

body.gn-open { overflow: hidden; }

sup {
  font-size: 0.65em;
  line-height: 0;
  vertical-align: super;
  color: inherit;
  opacity: 0.85;
}

/* ========== Local Nav ========== */
.localnav {
  position: sticky;
  top: 0;
  z-index: 9997;
  height: var(--local-h);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.localnav.is-ready {
  color: var(--text);
  background: rgba(255,255,255,0.86);
  border-bottom-color: rgba(0,0,0,0.16);
  /* lighter blur to reduce sticky compositing cost while scrolling */
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.localnav.is-dark {
  color: var(--text-light);
  background: rgba(22,22,23,0.86);
  border-bottom-color: rgba(255,255,255,0.18);
}

.localnav.is-over-hero {
  opacity: 0;
  pointer-events: none;
  color: transparent;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 900px;
  margin-top: calc(var(--local-h) * -1);
  padding-top: var(--local-h);
  background: #2a2a2c;
  color: var(--text-light);
  overflow: hidden;
}

.localnav-inner {
  max-width: 980px;
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.localnav-title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.011em;
}

.localnav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
}

.localnav-menu a { color: inherit; opacity: 0.8; text-decoration: none; }
.localnav-menu a:hover { opacity: 1; }
.localnav-menu a.is-current { opacity: 0.48; pointer-events: none; }

.btn-buy-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 4px 11px;
  border-radius: 980px;
  background: var(--blue);
  color: #fff !important;
  opacity: 1 !important;
  font-size: 12px;
  line-height: 1.33337;
}
.btn-buy-sm:hover { background: var(--blue-hover); text-decoration: none !important; }

/* ========== Hero ========== */
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero-media video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero-media video.is-ready {
  opacity: 1;
}
.hero-media img {
  z-index: 0;
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 81px;
  z-index: 2;
}

.hero-copy {
  width: min(100% - 48px, var(--wide));
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.hero-eyebrow {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.21875;
  letter-spacing: 0.004em;
  color: var(--text-light);
}

.hero-headline {
  margin: 9px 0 0;
  max-width: 10em;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.0875;
  letter-spacing: -0.015em;
  color: var(--text-light);
}

.pricing-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 12px 12px 25px;
  border-radius: 32px;
  color: var(--text);
  flex-shrink: 0;
  isolation: isolate;
  animation: pill-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.pricing-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 1440px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(20px) saturate(1);
  -webkit-backdrop-filter: blur(20px) saturate(1);
}

.detail-pricing { position: relative; z-index: 1; }
.pricing-pill .btn-buy { position: relative; z-index: 1; }

@keyframes pill-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.hero-eyebrow,
.hero-headline {
  animation: copy-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-eyebrow { animation-delay: 0.45s; }
.hero-headline { animation-delay: 0.55s; }

@keyframes copy-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

.s-p { font-weight: 600; }

.pricing-product {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  white-space: nowrap;
}
.pricing-product strong { font-weight: 600; }
.pricing-product span { font-weight: 400; }

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 21px;
  border-radius: 980px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  line-height: 1.76;
  text-decoration: none;
  white-space: nowrap;
}
.btn-buy:hover { background: var(--blue-hover); text-decoration: none; }

/* ========== Sections common ========== */
.section {
  padding: 87px 0;
  position: relative;
}

.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-eyebrow {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0.007em;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.015em;
}

.section-lead {
  margin: 20px 0 0;
  max-width: 640px;
  font-size: 21px;
  line-height: 1.381;
  font-weight: 600;
  letter-spacing: 0.011em;
}

.section-body {
  margin: 14px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.47;
}

.section-dark .section-body { color: #a1a1a6; }
.section-dark .section-eyebrow { color: var(--text-light); }

/* ========== Media gallery carousel ========== */
.media-section {
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: clip;
}

.media-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 40px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 400;
}

.media-gallery {
  width: 100%;
  overflow: hidden;
  --card-w: min(1245px, calc(100vw - 180px));
}

.media-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-left: max(90px, calc((100vw - var(--card-w)) / 2));
  padding-right: 90px;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-card {
  position: relative;
  flex: 0 0 var(--card-w);
  width: var(--card-w);
  height: 680px;
  border-radius: 28px;
  overflow: hidden;
  background: #f5f5f7;
  opacity: 0.55;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.gallery-card.is-current {
  opacity: 1;
  transform: none;
}

.gallery-card.theme-dark { background: #1d1d1f; }

.gallery-card img,
.gallery-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-video {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery-card.is-current .gallery-video.is-on { opacity: 1; }

.gallery-caption {
  position: absolute;
  left: 48px;
  bottom: 48px;
  max-width: 510px;
  margin: 0;
  z-index: 2;
  color: rgba(255,255,255,0.92);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}

.gallery-caption-dark { color: var(--text); }

.media-aap {
  position: sticky;
  bottom: 30px;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: -28px;
  pointer-events: none;
}

.aap-play,
.aap-dots {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-radius: 32px;
  background: rgba(232, 232, 237, 0.72);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
}

.aap-play {
  width: 56px;
  color: var(--text);
}
.aap-play svg { fill: currentColor; }

.aap-dots {
  gap: 10px;
  padding: 0 18px;
}

.dotnav {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 8px;
  background: rgba(0,0,0,0.22);
  overflow: hidden;
  transition: width 0.25s ease;
}

.dotnav.is-current {
  width: 48px;
  background: rgba(0,0,0,0.18);
}

.dotnav-progress {
  position: absolute;
  inset: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: rgba(0,0,0,0.55);
  border-radius: inherit;
  will-change: transform;
}

/* ========== Bento paddle gallery ========== */
.bento-section { padding-bottom: 40px; overflow: clip; }
.bento-title { text-align: center; margin-bottom: 40px; }

.bento-gallery {
  position: relative;
  width: 100%;
  --bento-w: min(1245px, calc(100vw - 180px));
}

.bento-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-left: max(90px, calc((100vw - var(--bento-w)) / 2));
  padding-right: 90px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.bento-slide {
  flex: 0 0 var(--bento-w);
  width: var(--bento-w);
  height: 680px;
  opacity: 0.5;
  transform: scale(0.985);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.bento-slide.is-current {
  opacity: 1;
  transform: none;
}

.bento-frame {
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-alt);
}
.bento-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

.bento-paddles {
  position: absolute;
  inset: auto 24px 28px auto;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.bento-paddle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(210, 210, 215, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.bento-paddle:hover:not(:disabled) { background: rgba(190, 190, 195, 0.9); }
.bento-paddle:disabled { opacity: 0.35; cursor: default; }

/* ========== Story blocks ========== */
.story {
  padding: 100px 0;
}

.section-title-center,
.section-lead-center,
.section-body-center { text-align: center; margin-left: auto; margin-right: auto; }

.audio-section { padding: 0; overflow: clip; background: #000; }

.audio-intro {
  --y-translate: 0px;
  --x-offset: 0px;
  --y-offset: 0px;
  position: relative;
  min-height: 200vh;
  padding: 88px 0 64px;
  background: #100322;
  overflow: clip;
}

.audio-dancer-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, #100322 0%, rgba(16, 3, 34, 0) 16%),
    url("../assets/images/audio_noise__cl8hn4zjvf2a_large.png") center 12% / min(980px, 96vw) no-repeat,
    linear-gradient(
      rgba(16, 3, 34, 0) calc(58vh + var(--y-translate)),
      #100322 calc(96vh + var(--y-translate))
    ),
    linear-gradient(rgba(166, 64, 213, 0.55), rgba(166, 64, 213, 0) 62vh),
    radial-gradient(
      circle at calc(50% + var(--x-offset) * 0.25) calc(40vh + var(--y-offset) + var(--y-translate)),
      rgba(238, 127, 250, 0.95) 0,
      rgba(245, 154, 255, 0.85) 18vh,
      rgba(240, 162, 248, 0.55) 28vh,
      rgba(243, 191, 252, 0) 30vh
    ),
    linear-gradient(rgba(234, 106, 254, 0.45) 22vh, rgba(234, 106, 254, 0) 64vh),
    radial-gradient(
      circle at calc(50% + var(--x-offset) * 0.5) calc(32vh + var(--y-offset) + var(--y-translate)),
      transparent 28vh,
      rgba(213, 95, 231, 0.9) 30vh,
      rgba(183, 68, 233, 0.75) 36vh,
      rgba(171, 56, 224, 0.45) 42vh,
      rgba(184, 57, 223, 0) 46vh
    ),
    radial-gradient(
      circle at calc(50% + var(--x-offset) * 0.75) calc(24vh + var(--y-offset) + var(--y-translate)),
      transparent 42vh,
      rgba(134, 16, 207, 0.85) 44vh,
      rgba(127, 16, 196, 0.55) 52vh,
      rgba(165, 21, 231, 0) 58vh
    ),
    radial-gradient(
      circle at calc(50% + var(--x-offset)) calc(16vh + var(--y-offset) + var(--y-translate)),
      transparent 54vh,
      rgba(99, 18, 166, 0.8) 56vh,
      rgba(116, 27, 188, 0.45) 68vh,
      rgba(116, 27, 188, 0) 72vh
    );
}

.audio-intro-copy,
.audio-intro-desc,
.audio-dancer-image {
  position: relative;
  z-index: 1;
}

.audio-intro-copy {
  padding-top: 2vh;
  margin-bottom: 4vh;
}

.audio-intro-copy .section-eyebrow,
.audio-intro-copy .section-title {
  color: #f5f5f7;
}

.audio-dancer-image {
  display: grid;
  place-items: center;
  margin: 0 auto;
  width: min(1078px, 94vw);
}

.audio-hero-img {
  width: 100%;
  max-width: 100%;
  display: block;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}

.audio-intro-desc {
  margin-top: 4vh;
  padding-bottom: 8vh;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  will-change: opacity, transform;
}

.audio-intro-desc .section-lead {
  color: #f5f5f7;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.audio-intro-desc .section-body {
  color: #a1a1a6;
  max-width: 52ch;
}

.audio-gallery {
  --audio-card-w: min(372px, 78vw);
  --audio-gap: 20px;
  height: 280vh;
  position: relative;
  background: #000;
}

.audio-gallery-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  align-items: center;
  padding: 72px 0 40px;
}

.audio-gallery-viewport {
  overflow: hidden;
  width: 100%;
  padding-left: max(24px, calc((100vw - 1260px) / 2));
}

.audio-gallery-track {
  display: flex;
  gap: var(--audio-gap);
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.audio-gallery-item {
  width: var(--audio-card-w);
  flex: 0 0 var(--audio-card-w);
  opacity: 0.42;
  transition: opacity 0.25s ease;
}

.audio-gallery-item.is-active {
  opacity: 1;
}

.audio-gallery-card {
  margin: 0;
  height: min(520px, 58vh);
  border-radius: 28px;
  overflow: hidden;
  background: #1d1d1f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.audio-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}

.audio-gallery-copy {
  margin: 18px 4px 0;
  color: #a1a1a6;
  font-size: 15px;
  line-height: 1.4;
  min-height: 6.5em;
}

.audio-gallery-copy strong {
  color: var(--text-light);
  font-weight: 600;
}

.audio-gallery-paddles {
  position: absolute;
  right: max(24px, calc((100vw - 1260px) / 2));
  bottom: 36px;
  display: flex;
  gap: 12px;
  z-index: 2;
}

.audio-paddle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(210, 210, 215, 0.22);
  color: #f5f5f7;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.audio-paddle:hover:not(:disabled) {
  background: rgba(210, 210, 215, 0.36);
}

.audio-paddle:disabled {
  opacity: 0.35;
  cursor: default;
}

/* ANC */
.anc-section { overflow: clip; }

.anc-hero {
  position: relative;
  margin-top: 48px;
  border-radius: 28px;
  overflow: hidden;
  min-height: 560px;
  background: #111;
  transform: translateZ(0);
}

.anc-hero-img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
  transition: transform 0.1s linear;
}

.anc-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.anc-hero-copy {
  position: absolute;
  left: 48px;
  bottom: 48px;
  max-width: 520px;
  z-index: 2;
}

.anc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.anc-feature {
  transition-delay: calc(var(--d, 0) * 80ms);
}

.anc-feature img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
}

.anc-feature h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
}

.anc-feature p {
  margin: 0;
  color: #a1a1a6;
  font-size: 17px;
  line-height: 1.47;
}

/* Battery echo tunnel */
.battery-section {
  padding: 0;
  overflow: clip;
}

.battery-intro {
  position: relative;
  height: 220vh;
}

.battery-intro-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}

.battery-intro-sticky .section-eyebrow {
  margin-bottom: 12px;
  position: relative;
  z-index: 3;
}

.battery-headline {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(40px, 5.5vw, 64px);
}

.battery-echoes {
  position: absolute;
  left: 0;
  right: 0;
  top: 58%;
  height: 40%;
  pointer-events: none;
  z-index: 1;
}

.battery-echo {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  opacity: 0;
  will-change: transform, opacity;
  white-space: nowrap;
}

.battery-body {
  padding: 40px 0 100px;
}

.battery-case-media {
  background: transparent;
  display: grid;
  place-items: center;
}

.battery-case-media img {
  max-width: 420px;
  margin: 0 auto;
  will-change: transform;
}

.stat-kicker {
  color: #86868b;
  font-size: 14px;
  margin-bottom: 6px;
}

.stat-value span {
  font-size: 0.5em;
  margin-inline-start: 2px;
}

.stat-value {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #30d158;
}

/* Design — sticky video scrub */
.design-section {
  padding-bottom: 40px;
  background: #fff;
}

.design-intro {
  padding-bottom: 48px;
}

.design-intro .section-body {
  max-width: 52ch;
  margin-inline: auto;
  text-align: center;
}

.design-scrub {
  height: 360vh;
  position: relative;
}

.design-sticky {
  position: sticky;
  top: 52px;
  height: calc(100vh - 52px);
  display: grid;
  place-items: center;
  overflow: visible;
}

.design-stage {
  position: relative;
  width: min(738px, 92vw);
  height: min(680px, 74vh);
}

.design-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(568px, 62vh);
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.design-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.design-feature {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(568px, 62vh);
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

.design-feature-water {
  top: min(568px, 62vh);
  height: auto;
  bottom: auto;
  padding-top: 20px;
}

.design-feature-copy {
  color: var(--text);
}

.design-feature-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--text);
}

.design-feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  max-width: 34ch;
}

.design-feature-copy-right {
  position: absolute;
  top: 4%;
  right: 0;
  width: min(50%, 360px);
  text-align: left;
}

.design-feature-copy-center {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: min(62%, 430px);
  text-align: left;
}

.design-feature-copy-below {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: min(72%, 420px);
  margin: 12px auto 0;
  text-align: center;
}

.design-feature-copy-below p {
  margin-inline: auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-grid.reverse > :first-child { order: 2; }
.story-grid.reverse > .story-media { order: 1; }

.story-media {
  border-radius: 28px;
  overflow: hidden;
  background: #111;
}
.story-media img,
.story-media video {
  width: 100%;
  border-radius: 28px;
  display: block;
}

.connect-media {
  background: #f5f5f7;
}

.connect-media video {
  aspect-ratio: 948 / 1352;
  object-fit: cover;
  max-height: 680px;
  margin: 0 auto;
}

.siri-demo-title {
  font-size: clamp(28px, 3.2vw, 44px) !important;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.feature-list {
  display: grid;
  gap: 36px;
  margin-top: 56px;
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.14;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.section-dark .feature-item p { color: #a1a1a6; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.stat {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
}

.stat-label {
  margin-top: 10px;
  color: #a1a1a6;
  font-size: 17px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.mini-card {
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}
.mini-card img { width: 100%; }

/* ========== Icon cards ========== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.icon-card {
  appearance: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: #fff;
  border-radius: 28px;
  padding: 36px 28px 32px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.icon-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.icon-card h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.28;
}

.icon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.43;
  flex: 1;
}

.icon-card-more {
  color: var(--blue);
  font-size: 14px;
  margin-top: auto;
}

/* ========== Contrast ========== */
.contrast-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-card img.product-shot {
  width: min(100%, 280px);
  margin: 12px auto;
}

.product-card h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
}

.product-card .price {
  font-size: 21px;
  font-weight: 600;
}

.product-card .badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 980px;
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 12px;
}

.feature-rows {
  display: grid;
  gap: 18px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.feature-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-row img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-row p {
  margin: 0;
  font-size: 14px;
  line-height: 1.43;
  color: var(--muted);
}

.feature-row strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  margin-bottom: 4px;
}

.compare-link {
  display: inline-flex;
  margin-top: 36px;
  font-size: 21px;
  font-weight: 600;
}

/* ========== Index ========== */
.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.index-col h3 {
  margin: 0 0 16px;
  font-size: 21px;
  font-weight: 600;
}

.index-col a {
  display: block;
  padding: 6px 0;
  color: var(--blue);
  font-size: 17px;
}

/* ========== Footer ========== */
.legal {
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.333;
  padding: 20px 0 40px;
  border-top: 1px solid #d2d2d7;
}

.legal ol {
  margin: 0;
  padding-left: 18px;
}
.legal li { margin-bottom: 8px; }

.site-footer {
  background: var(--bg-alt);
  padding: 0 0 32px;
  font-size: 12px;
  color: var(--muted);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #d2d2d7;
}

.footer-cols h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.footer-subhead {
  margin-top: 18px !important;
}

.footer-cols a {
  display: block;
  color: var(--muted);
  padding: 3px 0;
  text-decoration: none;
}
.footer-cols a:hover { text-decoration: underline; }

.footer-locale {
  padding-top: 16px;
  margin: 0;
  border-bottom: 1px solid #d2d2d7;
  padding-bottom: 14px;
}

.footer-copy {
  padding-top: 14px;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 10px;
}

.footer-legal-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-legal-links a:hover { text-decoration: underline; }

/* ========== Reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ========== Modal ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  background: rgba(0,0,0,0.72);
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal.is-open {
  display: grid;
  opacity: 1;
  animation: modal-in 0.28s ease;
}
@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-panel {
  width: min(960px, 100%);
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transform: scale(0.98);
  animation: panel-in 0.28s ease forwards;
}
@keyframes panel-in {
  to { transform: none; }
}
.modal video { width: 100%; aspect-ratio: 16/9; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  z-index: 2;
}

.modal-panel.info-panel {
  width: min(720px, 100%);
  background: #fff;
  color: var(--text);
  padding: 48px 40px 40px;
}
.modal-panel.info-panel .modal-close {
  background: rgba(0,0,0,0.08);
  color: var(--text);
}
.info-modal-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 20px;
}
.info-modal-title {
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.125;
}
.info-modal-body {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.47;
}

/* ========== Responsive ========== */
@media (max-width: 1068px) {
  .gn-links { display: none; }
  .globalnav.is-open .gn-flyout,
  .gn-curtain { display: none !important; }
  .media-gallery { --card-w: min(860px, calc(100vw - 64px)); }
  .gallery-card { height: 520px; }
  .gallery-caption { left: 28px; bottom: 28px; font-size: 22px; }
  .bento-gallery { --bento-w: min(860px, calc(100vw - 64px)); }
  .bento-slide { height: 520px; }
  .story-grid,
  .story-grid.reverse { grid-template-columns: 1fr; }
  .story-grid.reverse > :first-child,
  .story-grid.reverse > .story-media { order: initial; }
  .design-scrub { height: 300vh; }
  .design-sticky { top: 48px; height: calc(100vh - 48px); }
  .design-stage { height: min(560px, 78vh); }
  .design-feature-copy h3 { font-size: 21px; }
  .design-feature-copy p { font-size: 13px; }
  .design-feature-water { top: min(420px, 52vh); padding-top: 12px; }
  .audio-gallery { height: 240vh; --audio-card-w: min(320px, 82vw); }
  .audio-gallery-card { height: min(440px, 52vh); }
  .audio-intro { min-height: 190vh; }
  .icon-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .anc-features { grid-template-columns: 1fr; }
}

@media (max-width: 734px) {
  .hero { min-height: 700px; }
  .hero-copy { flex-direction: column; align-items: flex-start; }
  .pricing-pill { width: 100%; justify-content: space-between; padding: 12px 12px 12px 18px; }
  .pricing-product { white-space: normal; font-size: 14px; }
  .media-track { padding-left: 22px; padding-right: 22px; }
  .media-gallery { --card-w: calc(100vw - 44px); }
  .gallery-card { height: 420px; }
  .bento-gallery { --bento-w: calc(100vw - 32px); }
  .bento-slide { height: 360px; }
  .bento-split { grid-template-columns: 1fr; gap: 12px; }
  .bento-paddles { inset: auto 12px 12px auto; }
  .contrast-grid,
  .stats,
  .mini-grid,
  .index-grid,
  .icon-grid { grid-template-columns: 1fr; }
  .localnav-menu a:not(.btn-buy-sm) { display: none; }
  .contrast-head { flex-direction: column; }
  .audio-intro { min-height: 120vh; }
  .siri-demo-title { font-size: 28px !important; }
}
