.home-section {
  position: relative;
  padding-block: clamp(5rem, 12vw, 9rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading,
.story-copy,
.pressure-copy,
.reservation-card__copy,
.page-hero__copy,
.content-stack,
.policy-article,
.faq-section {
  display: grid;
  justify-items: start;
  gap: var(--space-3);
}

.section-heading {
  margin-bottom: var(--space-6);
}

.section-heading--compact {
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
}

.section-heading--wide {
  max-width: 66rem;
}

.section-lede {
  color: var(--paper-300);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 5rem);
  align-items: center;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 8rem);
}

.home-hero::before {
  position: absolute;
  width: min(68rem, 126vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 217, 255, 0.16), transparent 67%);
  content: "";
  inset: 10% -30% auto auto;
  pointer-events: none;
}

.home-hero::after {
  position: absolute;
  right: 0;
  bottom: -12rem;
  left: 0;
  height: 26rem;
  background: linear-gradient(180deg, transparent, rgba(2, 3, 6, 0.9));
  content: "";
  pointer-events: none;
}

.home-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  width: min(100% - 2rem, var(--content-wide));
  margin-inline: auto;
  min-width: 0;
}

.home-hero__copy {
  display: grid;
  justify-items: start;
  gap: var(--space-4);
  min-width: 0;
}

.home-hero h1 {
  max-width: 20ch;
  line-height: 1.05;
}

.hero-slogan {
  max-width: 34rem;
  color: var(--paper-100);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 780;
  letter-spacing: -0.02em;
}

.home-hero__lede {
  color: var(--paper-300);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  min-width: 0;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  max-width: 100%;
  min-width: 0;
  padding: 0;
}

.hero-proof li {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--paper-300);
  font-size: 0.84rem;
  font-weight: 750;
}

.home-hero__media {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  background: #050609;
  box-shadow:
    var(--shadow),
    var(--glow-violet);
}

.hero-carousel {
  position: relative;
  min-width: 0;
}

.hero-carousel__slide {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  border-radius: inherit;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
  overflow: hidden;
}

.home-hero__media img {
  width: 100%;
  aspect-ratio: 2200 / 1008;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-carousel__controls {
  position: absolute;
  right: 1rem;
  bottom: 4.15rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.hero-carousel__dot {
  position: relative;
  display: inline-grid;
  width: 2.75rem;
  min-block-size: 2.75rem;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.hero-carousel__dot::before {
  width: 0.46rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(247, 248, 251, 0.46);
  box-shadow: 0 0.65rem 1.4rem rgba(0, 0, 0, 0.35);
  content: "";
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.hero-carousel__dot:hover::before {
  background: rgba(247, 248, 251, 0.82);
}

.hero-carousel__dot.is-active::before {
  background: var(--accent);
  box-shadow:
    0 0.65rem 1.4rem rgba(0, 0, 0, 0.35),
    0 0 1.1rem rgba(122, 217, 255, 0.42);
  transform: scale(1.22);
}

.hero-lightbox {
  width: min(100vw - 1.25rem, 96rem);
  max-width: none;
  max-height: calc(100dvh - 1.25rem);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(2, 4, 10, 0.96);
  color: var(--paper-100);
  overflow: auto;
}

.hero-lightbox::backdrop {
  background: rgba(2, 4, 10, 0.82);
  backdrop-filter: blur(18px);
}

.hero-lightbox__image {
  width: 100%;
  max-height: calc(100dvh - 1.25rem);
  object-fit: contain;
}

.hero-lightbox__close {
  position: fixed;
  z-index: 3;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  display: inline-grid;
  width: 3rem;
  min-block-size: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 8, 16, 0.78);
  color: var(--paper-100);
  font-size: 1.7rem;
  line-height: 1;
  backdrop-filter: blur(18px);
}

.home-hero__media figcaption,
.image-card figcaption,
.page-hero__media figcaption {
  padding: 0.9rem 1rem;
  color: var(--paper-300);
  font-size: 0.82rem;
}

.home-hero__media figcaption,
.page-hero__media figcaption {
  min-height: 3.65rem;
  padding-right: 8.75rem;
  background: rgba(5, 7, 12, 0.92);
}

.batch-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(122, 217, 255, 0.1), transparent 25rem),
    radial-gradient(circle at 86% 8%, rgba(157, 124, 255, 0.1), transparent 30rem),
    rgba(4, 6, 12, 0.72);
}

.batch-layout {
  display: grid;
  gap: var(--space-5);
}

.batch-card {
  display: grid;
  gap: var(--space-4);
}

.batch-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.batch-card__total,
.offer-total {
  display: inline-block;
  padding: 0.04em 0.09em 0.06em 0;
  background: var(--gradient-save);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3.25rem, 10vw, 6rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.batch-terms,
.term-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
}

.batch-terms li,
.term-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--paper-300);
}

.batch-terms li::before,
.term-list li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(122, 217, 255, 0.5);
  content: "";
}

.batch-card__note {
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  color: var(--paper-300);
  font-size: 0.92rem;
}

.batch-card__primary-action {
  display: grid;
  gap: var(--space-2);
  padding-block: var(--space-3);
  border-block: 1px solid var(--line);
}

.batch-card__primary-action .button {
  justify-self: stretch;
  text-align: center;
}

.batch-card__primary-action p {
  margin: 0;
  color: var(--paper-300);
  font-size: 0.88rem;
}

.batch-card--snapshot .batch-card__total {
  font-size: clamp(2.35rem, 7vw, 4.6rem);
}

.home-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.home-link-row .button {
  flex: 1 1 13rem;
}

.story-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(4, 6, 12, 0.45);
}

.story-layout,
.pressure-layout,
.story-panel,
.evidence-layout,
.offer-layout,
.policy-layout {
  display: grid;
  gap: var(--space-5);
}

.story-copy,
.pressure-copy {
  align-content: center;
}

.story-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.story-layout--single .story-copy {
  max-width: 70rem;
}

.story-card-grid {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.save-card {
  display: grid;
  gap: var(--space-2);
  border-color: rgba(122, 217, 255, 0.22);
}

.save-card__label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-media {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(8rem, 0.65fr);
  align-items: end;
  gap: var(--space-3);
}

.story-media--single {
  grid-template-columns: minmax(0, 1fr);
}

.image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(12, 17, 29, 0.82);
  box-shadow: var(--shadow-soft);
}

.image-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.image-card--wide img {
  aspect-ratio: 16 / 9;
}

.image-card--tall img {
  aspect-ratio: 3 / 4;
}

.image-card--scene img {
  object-position: center;
}

.image-card--portrait {
  transform: translateY(2rem);
}

.image-card--portrait img {
  aspect-ratio: 3 / 4;
}

.pressure-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(122, 217, 255, 0.2), transparent 25rem),
    var(--warm);
  color: #11141b;
}

.pressure-section .eyebrow,
.pressure-section .gradient-text {
  color: #087da7;
}

.pressure-section .muted {
  color: #515965;
}

.pressure-evidence {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 10, 18, 0.1);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.pressure-evidence img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.image-card--proof img {
  aspect-ratio: auto;
  object-fit: contain;
}

.pressure-evidence .evidence-caption {
  border-left-color: #087da7;
  color: #50545c;
}

.pressure-copy .button {
  margin-top: var(--space-3);
}

.pressure-section .button--secondary {
  border-color: rgba(7, 10, 18, 0.32);
  background: #11141b;
  color: var(--paper-100);
  box-shadow:
    0 18px 42px rgba(7, 10, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.patent-solution-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(122, 217, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 15% 82%, rgba(157, 124, 255, 0.12), transparent 30rem),
    rgba(5, 8, 15, 0.9);
}

.patent-solution-layout {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.patent-solution-copy {
  display: grid;
  justify-items: start;
  gap: var(--space-3);
}

.patent-solution-copy h2 {
  max-width: 12ch;
}

.patent-solution-copy .muted {
  max-width: 38rem;
}

.patent-solution-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(122, 217, 255, 0.2);
  border-radius: var(--radius-xl);
  background: #f7f8fb;
  box-shadow:
    var(--shadow),
    0 0 46px rgba(122, 217, 255, 0.14);
}

.patent-solution-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f7f8fb;
}

.patent-solution-media figcaption {
  padding: 0.95rem 1rem;
  border-top: 1px solid rgba(7, 10, 18, 0.08);
  background: #f7f8fb;
  color: #46515f;
  font-size: 0.84rem;
}

.product-intro-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(122, 217, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 84% 72%, rgba(255, 95, 200, 0.08), transparent 28rem),
    rgba(7, 10, 18, 0.72);
}

.product-intro-layout {
  display: grid;
  align-items: center;
  gap: var(--space-5);
}

.product-intro-copy {
  display: grid;
  justify-items: start;
  gap: var(--space-3);
}

.product-intro-copy h2 {
  max-width: 14ch;
}

.product-intro-copy p {
  max-width: 38rem;
  color: var(--paper-200);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
}

.product-intro-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(122, 217, 255, 0.2);
  border-radius: var(--radius-xl);
  background: rgba(8, 12, 22, 0.92);
  box-shadow:
    var(--shadow),
    var(--glow-cyan);
}

.product-intro-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-intro-media figcaption {
  padding: 0.9rem 1rem;
  background: rgba(5, 7, 12, 0.96);
  color: var(--paper-300);
  font-size: 0.82rem;
}

.ritual-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(157, 124, 255, 0.12), transparent 27rem),
    rgba(5, 8, 15, 0.9);
}

.ritual-grid,
.trust-grid {
  display: grid;
  gap: var(--space-3);
}

.trust-grid a {
  color: var(--accent);
  font-weight: 820;
  text-decoration-color: rgba(122, 217, 255, 0.4);
  text-underline-offset: 0.24em;
}

.technology-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(122, 217, 255, 0.1), transparent 27rem),
    radial-gradient(circle at 85% 75%, rgba(157, 124, 255, 0.12), transparent 30rem),
    rgba(5, 8, 15, 0.78);
}

.technology-grid,
.feature-grid,
.principle-grid,
.policy-summary-grid,
.gallery-grid,
.video-grid {
  display: grid;
  gap: var(--space-3);
}

.technology-card,
.feature-card,
.principle-card {
  display: grid;
  align-content: start;
  gap: var(--space-3);
}

.technology-card__number {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.proof-cue {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(122, 217, 255, 0.22);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  background: rgba(122, 217, 255, 0.065);
  color: var(--paper-200);
  font-size: 0.94rem;
}

.proof-cue a {
  color: var(--accent);
  font-weight: 820;
  text-decoration-color: rgba(122, 217, 255, 0.45);
  text-underline-offset: 0.24em;
}

.technology-card p,
.feature-card p,
.principle-card p,
.policy-article li {
  color: var(--paper-300);
}

.technology-media,
.evidence-gallery {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.gallery-grid {
  align-items: start;
}

.video-grid {
  align-items: start;
}

.product-video-showcase {
  display: grid;
  gap: var(--space-3);
}

.video-card video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #050609;
}

.patent-section {
  background:
    linear-gradient(90deg, rgba(8, 13, 23, 0.98), rgba(16, 24, 38, 0.76)),
    var(--ink-900);
}

.patent-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: var(--space-4);
  overflow: hidden;
  padding-block: var(--space-6);
}

.patent-card__mark {
  width: min(12rem, 42vw);
  opacity: 0.72;
  filter: drop-shadow(0 0 2.1rem rgba(122, 217, 255, 0.42));
}

.patent-statement {
  margin-block: var(--space-3);
  color: var(--paper-100);
  font-size: clamp(1.2rem, 3vw, 1.72rem);
  font-weight: 780;
}

.evidence-section .button {
  margin-top: var(--space-5);
}

.section-action {
  margin-top: var(--space-5);
}

.evidence-boundary {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.evidence-boundary > div {
  display: grid;
  gap: var(--space-2);
}

.evidence-boundary p {
  color: var(--paper-300);
}

.evidence-boundary a {
  color: var(--accent);
  font-weight: 820;
  text-decoration-color: rgba(122, 217, 255, 0.4);
  text-underline-offset: 0.24em;
}

.evidence-boundary a:hover {
  color: var(--paper-100);
}

.reservation-section {
  padding-bottom: clamp(7rem, 16vw, 12rem);
}

.reservation-card {
  display: grid;
  align-items: center;
  gap: var(--space-5);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 20%, rgba(122, 217, 255, 0.16), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(10, 14, 24, 0.92);
  box-shadow:
    var(--shadow),
    var(--glow-cyan);
}

.reservation-card__copy {
  padding: clamp(1.5rem, 6vw, 4rem);
}

.reservation-card img {
  width: 100%;
  height: 100%;
  max-height: 38rem;
  object-fit: cover;
}

.site-footer__legal {
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

.page-shell {
  overflow: hidden;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 7rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 80% 14%, rgba(157, 124, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 12% 18%, rgba(122, 217, 255, 0.1), transparent 25rem);
}

.about-hero {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.page-hero__layout {
  display: grid;
  align-items: center;
  gap: var(--space-6);
  min-width: 0;
}

.page-hero__copy {
  max-width: 40rem;
  min-width: 0;
}

.page-hero__copy h1 {
  max-width: 12ch;
  font-size: clamp(3.45rem, 6vw, 6.15rem);
}

.about-hero .page-hero__copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-hero__lede {
  max-width: 38rem;
  color: var(--paper-300);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
}

.page-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  background: rgba(10, 14, 24, 0.88);
  box-shadow:
    var(--shadow),
    var(--glow-violet);
}

.page-hero__media .hero-carousel {
  overflow: hidden;
  border-radius: inherit;
}

.page-hero__media .hero-carousel__controls {
  bottom: 4.2rem;
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.page-hero__media--scene img {
  aspect-ratio: 4 / 3;
}

.product-pdp-hero {
  padding-block: clamp(2.4rem, 7vw, 5rem);
}

.product-pdp-hero__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.product-pdp-hero__media {
  display: grid;
  gap: var(--space-3);
  min-width: 0;
}

.product-viewer {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: #050609;
  box-shadow:
    var(--shadow),
    var(--glow-violet);
}

.product-viewer__stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #fff;
}

.product-viewer__stage .hero-carousel__slide {
  aspect-ratio: 1;
  border-radius: 0;
}

.product-viewer__stage img,
.product-viewer__stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.product-viewer__stage video {
  display: block;
  background: #050609;
}

.product-viewer-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: clamp(2.35rem, 7vw, 3rem);
  height: clamp(2.35rem, 7vw, 3rem);
  place-items: center;
  padding: 0;
  border: 1px solid rgba(7, 13, 24, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #07101c;
  font-size: clamp(1.65rem, 5vw, 2rem);
  font-weight: 750;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(0.75rem);
  box-shadow: 0 0.9rem 2.4rem rgba(7, 10, 18, 0.2);
}

.product-viewer-nav--prev {
  left: clamp(0.65rem, 2vw, 1.15rem);
}

.product-viewer-nav--next {
  right: clamp(0.65rem, 2vw, 1.15rem);
}

.product-viewer-nav:hover,
.product-viewer-nav:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(58, 172, 225, 0.42);
}

.product-viewer figcaption {
  padding: 0.9rem 1rem;
  background: rgba(5, 7, 12, 0.96);
  color: var(--paper-300);
  font-size: 0.82rem;
}

.product-thumbs-wrap {
  position: relative;
  min-width: 0;
}

.product-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(4.25rem, 5.35rem);
  gap: var(--space-2);
  min-width: 0;
  overflow-x: auto;
  padding: 0.15rem 3rem 0.25rem;
  scroll-padding-inline: 3rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.product-thumbs::-webkit-scrollbar {
  display: none;
}

.product-thumb {
  display: block;
  min-width: 4.25rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: #050609;
  box-shadow: none;
  scroll-snap-align: center;
}

.product-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}

.product-thumbs-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.78);
  color: var(--paper-100);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(0.7rem);
  box-shadow: 0 0.85rem 2.2rem rgba(0, 0, 0, 0.28);
}

.product-thumbs-nav--prev {
  left: 0.25rem;
}

.product-thumbs-nav--next {
  right: 0.25rem;
}

.product-thumbs-nav:disabled {
  opacity: 0.34;
  pointer-events: none;
}

.product-thumb:hover,
.product-thumb.is-active {
  border-color: rgba(122, 217, 255, 0.8);
  box-shadow:
    0 0 0 1px rgba(122, 217, 255, 0.34),
    0 0 26px rgba(122, 217, 255, 0.18);
}

.product-buybox {
  display: grid;
  gap: var(--space-3);
  min-width: 0;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(8, 12, 22, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.product-buybox h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: 0.98;
}

.product-subtitle {
  color: var(--paper-200);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 720;
}

.product-subcopy {
  color: var(--paper-300);
  font-size: 0.98rem;
}

.product-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem;
  padding-top: var(--space-2);
}

.product-price {
  display: inline-block;
  background: var(--gradient-save);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.product-price-note {
  color: var(--paper-300);
  font-weight: 800;
}

.product-payment-split {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
}

.product-payment-split div {
  display: grid;
  gap: 0.25rem;
  padding-block: 0.85rem;
}

.product-payment-split div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-payment-split dt,
.product-option__label {
  color: var(--paper-100);
  font-weight: 820;
}

.product-payment-split dd {
  margin: 0;
  color: var(--paper-300);
}

.product-option {
  display: grid;
  gap: 0.65rem;
}

.product-option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.product-option-pill {
  display: flex;
  min-width: 9rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper-100);
  font-weight: 800;
}

.product-option-pill.is-selected {
  border-color: rgba(122, 217, 255, 0.72);
  background: rgba(122, 217, 255, 0.1);
}

.finish-swatch {
  flex: 0 0 auto;
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 0.8rem rgba(122, 217, 255, 0.14);
}

.finish-swatch--black {
  background: linear-gradient(135deg, #050609, #303849);
}

.finish-swatch--white {
  background: linear-gradient(135deg, #f7f8fb, #b9c2ce);
}

.product-option__note,
.product-trust-list li {
  color: var(--paper-300);
}

.product-cta-stack {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.product-cta-stack .button {
  justify-self: stretch;
  text-align: center;
}

.product-trust-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.product-trust-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
}

.product-trust-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.about-hero__media img {
  aspect-ratio: 16 / 10;
}

.page-section {
  padding-block: clamp(4rem, 10vw, 7rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-section--soft {
  background:
    radial-gradient(circle at 80% 20%, rgba(122, 217, 255, 0.08), transparent 28rem),
    rgba(12, 17, 29, 0.58);
}

.offer-card,
.disclosure-card {
  display: grid;
  gap: var(--space-4);
}

.kit-layout {
  display: grid;
  gap: var(--space-5);
}

.kit-layout__figure {
  background: #f7f7f2;
}

.kit-layout__figure img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.kit-layout__figure figcaption {
  background: rgba(8, 12, 20, 0.96);
}

.kit-card {
  display: grid;
  align-content: start;
  gap: var(--space-4);
  border-color: rgba(122, 217, 255, 0.24);
}

.kit-list,
.kit-specs {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.kit-list li {
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 2.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  color: var(--paper-200);
  font-weight: 760;
}

.kit-list li::before {
  position: absolute;
  top: 50%;
  left: 0.95rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--gradient-save);
  box-shadow: 0 0 16px rgba(122, 217, 255, 0.44);
  content: "";
  transform: translateY(-50%);
}

.kit-note {
  margin: 0;
  color: var(--paper-400);
  font-size: 0.9rem;
}

.kit-specs {
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}

.kit-specs div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.55fr) minmax(0, 1fr);
  gap: var(--space-3);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kit-specs div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.kit-specs dt {
  color: var(--paper-400);
  font-weight: 780;
}

.kit-specs dd {
  margin: 0;
  color: var(--paper-100);
  font-weight: 760;
}

.color-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.color-list li {
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 780;
  text-align: center;
}

.disclosure-card {
  border-color: rgba(122, 217, 255, 0.35);
  background: rgba(122, 217, 255, 0.06);
}

.gallery-grid .image-card img {
  aspect-ratio: 1;
}

.gallery-grid .image-card--wide img {
  aspect-ratio: 16 / 9;
}

.product-media-stack {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4.25rem);
}

.product-media-feature {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 15%, rgba(122, 217, 255, 0.14), transparent 22rem),
    rgba(5, 10, 20, 0.55);
}

.product-media-feature__image {
  align-self: stretch;
}

.product-media-feature__image img {
  min-height: clamp(22rem, 42vw, 34rem);
  aspect-ratio: 4 / 4.55;
  object-fit: contain;
}

.product-media-feature__copy {
  display: grid;
  justify-items: start;
  gap: var(--space-3);
}

.product-media-feature__copy h3 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 5vw, 4.15rem);
  line-height: 0.98;
}

.product-media-feature__copy p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--paper-300);
  font-size: clamp(1rem, 1.9vw, 1.12rem);
}

.product-media-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-media-checklist li {
  padding: 0.52rem 0.78rem;
  border: 1px solid rgba(122, 217, 255, 0.22);
  border-radius: 999px;
  background: rgba(122, 217, 255, 0.08);
  color: var(--paper-100);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-photo-group {
  display: grid;
  gap: var(--space-3);
}

.product-photo-group__heading {
  display: grid;
  max-width: 48rem;
  gap: 0.45rem;
}

.product-photo-group__heading h3 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.02;
}

.product-photo-group__heading p:not(.eyebrow) {
  color: var(--paper-300);
}

.product-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: var(--space-3);
}

.product-photo-grid--details {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}

.product-photo-grid--real {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.product-gallery .image-card img {
  aspect-ratio: 4 / 5;
}

.product-gallery .image-card--studio,
.product-photo-grid .image-card--studio {
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(7, 10, 18, 0.06),
    0 1.1rem 3rem rgba(0, 0, 0, 0.16);
}

.product-gallery .image-card--studio img,
.product-photo-grid .image-card--studio img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #fff;
}

.product-gallery .image-card--studio figcaption,
.product-photo-grid .image-card--studio figcaption {
  border-top: 1px solid rgba(7, 10, 18, 0.08);
  background: #fff;
  color: #4c5563;
}

.product-photo-grid .image-card--obsidian img {
  aspect-ratio: 1 / 1;
}

.product-photo-grid .image-card--detail img {
  aspect-ratio: 4 / 4.15;
}

.product-photo-grid .image-card--concept img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.technology-detail-grid {
  margin-top: var(--space-5);
}

.detail-boundary-note {
  max-width: 46rem;
  margin-top: var(--space-4);
}

@media (max-width: 69.99rem) {
  .technology-detail-grid .image-card--concept {
    justify-self: center;
    grid-column: 1 / -1;
    width: min(100%, 32rem);
  }
}

.product-gallery .image-card--scene img,
.product-photo-grid .image-card--scene img {
  object-position: 50% 50%;
}

.product-photo-grid--real .image-card--scene img {
  aspect-ratio: 4 / 5;
}

.video-card--wide video {
  aspect-ratio: 16 / 9;
}

.technology-concept {
  display: grid;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3.5rem);
}

.technology-concept .content-stack {
  justify-items: start;
}

.technology-concept h2 {
  max-width: 12ch;
}

.technology-concept .image-card {
  background: #f7f8fb;
}

.technology-concept .image-card img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #f7f8fb;
}

.product-safety-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(122, 217, 255, 0.12), transparent 28rem),
    var(--warm);
  color: #11141b;
}

.product-safety-layout {
  display: grid;
  align-items: center;
  gap: var(--space-5);
}

.product-safety-copy {
  display: grid;
  justify-items: start;
  gap: var(--space-3);
}

.product-safety-copy .eyebrow {
  color: #087da7;
}

.product-safety-copy h2 {
  max-width: 12ch;
}

.product-safety-copy .muted {
  color: #505965;
}

.product-safety-copy .proof-cue {
  border-color: rgba(8, 125, 167, 0.2);
  border-left-color: #087da7;
  background: rgba(8, 125, 167, 0.08);
  color: #34404d;
}

.evidence-layout figure {
  margin: 0;
}

.evidence-layout img {
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
}

.status-note {
  padding: var(--space-4);
  border: 1px solid rgba(122, 217, 255, 0.22);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  background: rgba(122, 217, 255, 0.065);
  color: var(--paper-200);
}

.faq-section {
  width: min(100%, 58rem);
}

.faq-section .faq {
  width: 100%;
}

.policy-hero {
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.policy-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 8vw, 5rem);
}

.policy-version {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 780;
}

.policy-layout {
  width: min(100% - 2rem, 60rem);
  margin-inline: auto;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.policy-article {
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}

.policy-article h2 {
  font-size: clamp(1.65rem, 5vw, 2.5rem);
}

.policy-article ul {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding-left: 1.25rem;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.section-narrow {
  width: min(100% - 2rem, 52rem);
  margin-inline: auto;
}

@media (min-width: 40rem) {
  .story-card-grid,
  .technology-grid,
  .gallery-grid,
  .video-grid,
  .trust-grid,
  .principle-grid,
  .policy-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-media,
  .evidence-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .technology-media--two,
  .evidence-gallery--two,
  .gallery-grid--two,
  .video-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-boundary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .video-grid--two {
    max-width: min(100%, 76rem);
    margin-inline: auto;
  }

  .video-grid--two .video-card {
    width: 100%;
    justify-self: stretch;
  }

  .video-grid--two .video-card video {
    height: clamp(34rem, 42vw, 44rem);
    aspect-ratio: 4 / 5;
  }
}

@media (min-width: 48rem) {
  .home-hero {
    align-items: start;
    padding-block: clamp(1.25rem, 3vh, 2.25rem) clamp(2.75rem, 5.5vh, 4.5rem);
  }

  .home-hero__layout {
    grid-template-columns: minmax(0, 0.58fr) minmax(26rem, 1.42fr);
    grid-template-areas:
      "copy media"
      "actions media";
  }

  .home-hero__copy {
    grid-area: copy;
    gap: 0.85rem;
  }

  .home-hero__actions {
    grid-area: actions;
    align-self: start;
  }

  .home-hero h1 {
    max-width: 20ch;
    font-size: clamp(2.95rem, 3.95vw, 4.45rem);
  }

  .hero-slogan {
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
    line-height: 1.3;
  }

  .home-hero__lede {
    font-size: clamp(0.98rem, 1.35vw, 1.12rem);
    line-height: 1.58;
  }

  .home-hero__media {
    grid-area: media;
    justify-self: end;
    width: min(100%, 68rem);
  }

  .home-hero__media img {
    min-height: 0;
    aspect-ratio: 2200 / 1008;
  }

  .page-hero .home-hero__actions,
  .page-hero .hero-proof {
    grid-area: auto;
  }

  .page-hero .home-hero__actions {
    align-self: auto;
  }

  .page-hero .hero-proof {
    margin-top: 0;
  }

  #reserve-flow .offer-layout {
    align-items: start;
  }

  .batch-layout,
  .story-layout,
  .pressure-layout,
  .patent-solution-layout,
  .product-intro-layout,
  .product-safety-layout,
  .offer-layout,
  .story-panel,
  .evidence-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .page-hero__layout {
    gap: clamp(3rem, 5vw, 5.5rem);
  }

  .product-pdp-hero__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.72fr);
  }

  .product-buybox {
    position: sticky;
    top: 6.25rem;
  }

  .kit-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
    align-items: start;
  }

  .batch-layout {
    gap: var(--space-7);
  }

  .story-layout--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .technology-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ritual-grid,
  [data-section="product-fit"] .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-media-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  }

  .product-photo-grid--studio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-photo-grid--details {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .product-photo-grid--details .image-card {
    grid-column: span 2;
  }

  .product-photo-grid--real {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-concept {
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  }

  .policy-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .patent-card {
    grid-template-columns: minmax(10rem, 0.32fr) minmax(0, 1fr);
  }

  .reservation-card {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr);
  }
}

@media (min-width: 70rem) {
  .home-hero__copy {
    padding-left: max(0rem, calc((100vw - var(--content)) / 8));
  }

  .page-hero__layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(24rem, 1.14fr);
  }

  .page-hero__media {
    justify-self: end;
    width: min(100%, 44rem);
  }

  .product-pdp-hero__media {
    justify-self: stretch;
  }

  .product-viewer__stage .hero-carousel__slide {
    aspect-ratio: 4 / 3.55;
  }

  .product-buybox h1 {
    font-size: clamp(4rem, 5vw, 5.8rem);
  }
}

@media (max-width: 47.98rem) {
  .home-hero {
    min-height: auto;
    padding-block: clamp(2.6rem, 8vw, 4.2rem);
  }

  .page-hero {
    padding-block: clamp(2.25rem, 7vw, 3.35rem);
  }

  .page-hero__layout {
    gap: clamp(1rem, 4vw, 1.45rem);
  }

  .page-hero__copy {
    gap: 0.82rem;
  }

  .home-hero h1,
  .page-hero__copy h1 {
    max-width: 100%;
  }

  .home-hero h1 {
    font-size: clamp(2.65rem, 12.5vw, 3.55rem);
    line-height: 1.02;
  }

  .home-hero__copy {
    gap: var(--space-3);
  }

  .hero-slogan,
  .home-hero__lede,
  .page-hero__lede {
    max-width: 100%;
  }

  .home-hero__actions {
    width: 100%;
    gap: 0.62rem;
  }

  .home-hero__actions .button:not(.button--text) {
    width: 100%;
    max-width: 24rem;
  }

  .home-hero__actions .button--text {
    min-height: auto;
    padding-block: 0.35rem;
  }

  .home-hero__media {
    border-radius: var(--radius-lg);
  }

  .home-hero__media img {
    min-height: 13.6rem;
    aspect-ratio: 16 / 9.5;
    object-position: 50% 50%;
  }

  .home-hero__media figcaption,
  .page-hero__media figcaption {
    min-height: auto;
    padding: 0.72rem 1rem 0.9rem;
    padding-right: 1rem;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .home-hero__media .hero-carousel__controls,
  .page-hero__media .hero-carousel__controls {
    right: 0.35rem;
    bottom: 3.55rem;
  }

  .page-hero .hero-proof {
    gap: 0.45rem;
  }

  .page-hero .hero-proof li {
    padding: 0.38rem 0.62rem;
    font-size: 0.78rem;
  }

  .page-hero .home-hero__actions {
    gap: 0.58rem;
  }

  .page-hero__copy h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .product-pdp-hero {
    padding-block: clamp(1.75rem, 6vw, 2.8rem);
  }

  .product-pdp-hero__layout {
    gap: var(--space-4);
  }

  .product-viewer,
  .product-viewer__stage {
    border-radius: var(--radius-lg);
  }

  .product-viewer__stage .hero-carousel__slide {
    aspect-ratio: 4 / 3.7;
  }

  .product-viewer__stage img,
  .product-viewer__stage video {
    object-fit: contain;
  }

  .product-viewer figcaption {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .product-thumbs {
    grid-auto-columns: 4.6rem;
  }

  .product-buybox {
    border-radius: var(--radius-lg);
  }

  .product-buybox h1 {
    font-size: clamp(3.15rem, 14vw, 4.2rem);
  }

  .product-option-grid {
    grid-template-columns: 1fr;
  }

  .patent-solution-copy h2,
  .product-intro-copy h2,
  .product-safety-copy h2 {
    max-width: 100%;
  }

  .image-card--portrait {
    transform: none;
  }

  .kit-specs div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .story-media {
    grid-template-columns: 1fr;
  }
}
