@font-face {
  font-family: "DAIVE Inter";
  src: url("assets/inter-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "DAIVE Inter";
  src: url("assets/inter-italic-variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --canvas: #181824;
  --surface: #26253b;
  --surface-deep: #11111a;
  --surface-soft: #302f47;
  --white: #ffffff;
  --body: #aaa8b8;
  --muted: #807f92;
  --faint: #59586a;
  --coral: #ff4a36;
  --coral-hover: #ff6554;
  --radius-card: 20px;
  --radius-pill: 999px;
  --page: min(1200px, calc(100vw - 64px));
  --shadow: 0 28px 70px rgba(4, 4, 10, 0.28);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--body);
  font-family: "DAIVE Inter", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.012em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
strong {
  color: var(--white);
}

h1,
h2,
h3 {
  font-weight: 620;
  letter-spacing: -.04em;
}

::selection {
  color: var(--white);
  background: var(--coral);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  color: var(--canvas);
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.prototype-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 7px max(32px, calc((100vw - 1200px) / 2));
  color: #d3d1dd;
  background: var(--surface-deep);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.prototype-bar span:last-child {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0;
  background: linear-gradient(to bottom, rgba(24, 24, 36, .96), rgba(24, 24, 36, .82));
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  width: var(--page);
  min-height: 64px;
  margin-inline: auto;
  padding: 8px 10px 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .18), inset 0 1px rgba(255, 255, 255, .05);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 106px;
  min-height: 44px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.desktop-nav a,
.bag-link {
  position: relative;
  min-height: 44px;
  padding: 12px 14px;
  border: 0;
  color: #c9c7d4;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-current,
.bag-link:hover {
  color: var(--white);
}

.desktop-nav a.is-current::after {
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 2px;
  border-radius: 4px;
  background: var(--coral);
  content: "";
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bag-link span {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: 4px;
  padding-inline: 5px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--surface-soft);
  font-size: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: -.02em;
  text-align: center;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.button-coral {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 9px 28px rgba(255, 74, 54, .18);
}

.button-coral:hover {
  background: var(--coral-hover);
  box-shadow: 0 12px 34px rgba(255, 74, 54, .25);
}

.button-light {
  color: var(--canvas);
  background: var(--white);
}

.button-light:hover {
  background: #e9e8ef;
}

.button-ghost {
  color: var(--white);
  background: var(--surface-soft);
}

.button-ghost:hover {
  background: #3a3953;
}

.button-small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  color: var(--white);
  font-weight: 550;
  transition: color 180ms ease;
}

.text-link:hover {
  color: #d2cfda;
}

.menu-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--white);
  transition: transform 200ms ease;
}

.menu-button span:first-child { transform: translateY(-4px); }
.menu-button span:last-child { transform: translateY(4px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.mobile-menu {
  width: var(--page);
  margin: 8px auto 0;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mobile-menu a:not(.button),
.mobile-menu button:not(.button) {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 8px 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--white);
  background: none;
  text-align: left;
  cursor: pointer;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 16px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 112px 0 80px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 940px;
  text-align: center;
}

.pill-label,
.section-kicker {
  width: fit-content;
  color: #c9c7d4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pill-label {
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  background: var(--surface);
}

.hero h1 {
  margin-top: 28px;
  color: var(--white);
  font-size: clamp(64px, 8vw, 102px);
  line-height: .89;
  letter-spacing: -.065em;
}

.hero h1 span {
  color: #b8b5c4;
}

.hero-intro {
  max-width: 680px;
  margin-top: 32px;
  color: #aaa8b8;
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.availability-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.product-window {
  width: 100%;
  margin-top: 78px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface-deep);
  box-shadow: var(--shadow);
}

.window-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 10px 22px;
  color: var(--muted);
  background: var(--surface);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.window-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.window-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 74, 54, .12);
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 8.7;
  min-height: 420px;
  overflow: hidden;
  color: var(--canvas);
  background: #f2f1f5;
  cursor: ew-resize;
}

.product-stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scrub-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: rgba(24, 24, 36, .82);
  font-size: 12px;
  line-height: 1;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.window-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #333247;
}

.window-footer div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 20px 24px;
  background: var(--surface);
}

.window-footer span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.window-footer strong {
  font-size: 15px;
  font-weight: 540;
}

.statement {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  padding: 124px 0;
}

.statement .section-kicker {
  padding-top: 12px;
}

.statement h2,
.product-manifesto h2 {
  color: var(--white);
  font-size: clamp(48px, 6.6vw, 84px);
  line-height: .96;
  letter-spacing: -.055em;
}

.statement h2 em,
.product-manifesto h2 em {
  color: #858295;
  font-weight: 560;
}

.statement > p:last-child,
.product-manifesto > p:last-child {
  grid-column: 2;
  max-width: 650px;
  margin-top: 14px;
  color: var(--body);
  font-size: 18px;
}

.feature-workspace {
  padding: 70px 0 120px;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading h2 {
  margin-top: 22px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .96;
}

.section-heading h2 span,
.final-cta h2 span,
.checkout-intro h1 span {
  color: #868395;
}

.hud-workspace {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 280px;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface-deep);
  box-shadow: var(--shadow);
}

.workspace-rail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 18px;
  background: #1d1c2b;
}

.workspace-rail > p {
  margin: 0 12px 22px;
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .07em;
}

.workspace-rail button {
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 10px;
  padding: 9px 12px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.workspace-rail button i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--faint);
}

.workspace-rail button:hover,
.workspace-rail button.is-active {
  color: var(--white);
  background: var(--surface);
}

.workspace-rail button.is-active i {
  background: var(--coral);
}

.rail-note {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 16px;
  border-radius: 12px;
  background: var(--surface);
}

.rail-note span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.rail-note strong {
  margin-top: 2px;
  font-size: 15px;
}

.workspace-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 34px;
  overflow: hidden;
  background: #222135;
}

.screen-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.screen-copy > span,
.detail-card > span,
.detail-card > div > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
}

.screen-copy h3 {
  max-width: 480px;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.02;
}

.screen-copy p {
  max-width: 480px;
  margin-top: 12px;
  color: var(--body);
  font-size: 14px;
}

.workspace-screen video {
  align-self: center;
  width: min(80%, 430px);
  margin: 14px auto -48px;
  border-radius: 16px 16px 0 0;
  background: var(--surface-deep);
}

.workspace-detail {
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
  background: var(--surface);
}

.workspace-detail > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 13px;
  font-weight: 650;
}

.workspace-detail h3 {
  margin-top: 30px;
  font-size: 31px;
  line-height: 1.04;
}

.workspace-detail > p {
  margin-top: 16px;
}

.workspace-detail dl {
  margin-top: auto;
}

.workspace-detail dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.workspace-detail dt {
  color: var(--muted);
  font-size: 13px;
}

.workspace-detail dd {
  color: var(--white);
  font-size: 13px;
  text-align: right;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  padding-bottom: 130px;
}

.editorial-card {
  position: relative;
  min-height: 380px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.editorial-card-large {
  display: flex;
  flex-direction: column;
  grid-row: span 2;
  min-height: 776px;
  background: #efedf1;
}

.card-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--canvas);
  background: var(--white);
  font-size: 12px;
  font-weight: 650;
}

.editorial-card-large .card-index {
  color: var(--white);
  background: var(--coral);
}

.editorial-card h3 {
  margin-top: 30px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .95;
}

.editorial-card-large h3 {
  color: var(--canvas);
}

.editorial-card p {
  max-width: 470px;
  margin-top: 18px;
}

.editorial-card-large p {
  color: #595767;
}

.macro-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  height: 310px;
  margin: auto -60px -40px 25%;
  padding: 30px;
  transform: rotate(-9deg);
}

.macro-lines i {
  display: block;
  height: 28px;
  border-radius: var(--radius-pill);
  background: var(--canvas);
}

.macro-lines i:nth-child(1),
.macro-lines i:nth-child(5) { width: 68%; }
.macro-lines i:nth-child(2),
.macro-lines i:nth-child(4) { width: 86%; }
.macro-lines i:nth-child(3) { width: 100%; }

.product-cutout {
  display: flex;
  flex-direction: column;
  min-height: 460px;
}

.product-cutout img {
  width: calc(100% + 60px);
  max-width: none;
  height: 235px;
  margin: 22px -30px 0;
  object-fit: contain;
  background: #f0eff3;
}

.product-cutout h3 {
  font-size: 37px;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.quote-card blockquote {
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.quote-card p {
  color: var(--muted);
  font-size: 13px;
}

.water-story {
  position: relative;
  display: grid;
  min-height: 860px;
  overflow: hidden;
}

.water-image,
.water-copy {
  grid-area: 1 / 1;
}

.water-image {
  background: linear-gradient(90deg, rgba(20, 19, 30, .86) 0%, rgba(20, 19, 30, .38) 52%, rgba(20, 19, 30, .16) 100%), url("assets/hero-diver.webp") 58% center / cover no-repeat;
}

.water-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.pill-on-image {
  color: var(--white);
  background: rgba(38, 37, 59, .76);
  backdrop-filter: blur(12px);
}

.water-copy h2 {
  max-width: 790px;
  margin-top: 26px;
  font-size: clamp(55px, 7vw, 88px);
  line-height: .92;
  text-wrap: balance;
}

.water-copy > p:not(.pill-label) {
  max-width: 580px;
  margin-top: 26px;
  color: #d0ced8;
  font-size: 18px;
}

.water-copy .button {
  margin-top: 32px;
}

.journey {
  padding: 130px 0;
}

.journey .section-heading {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
}

.journey .section-heading h2 {
  max-width: 800px;
  margin-top: 0;
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.journey-cards article {
  min-height: 300px;
  padding: 26px;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.journey-cards article:nth-child(2) {
  background: #f1eff3;
}

.journey-cards article > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .07em;
}

.journey-cards article:nth-child(2) > span {
  color: #777486;
}

.journey-cards strong {
  display: block;
  margin-top: 74px;
  font-size: 29px;
  line-height: 1;
}

.journey-cards article:nth-child(2) strong {
  color: var(--canvas);
}

.journey-cards p {
  margin-top: 16px;
}

.journey-cards article:nth-child(2) p {
  color: #595767;
}

.support-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  padding-bottom: 130px;
}

.support-visual,
.support-copy {
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.support-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-copy {
  padding: 46px;
  background: var(--surface);
}

.support-copy h2 {
  margin-top: 28px;
  font-size: clamp(43px, 5vw, 65px);
  line-height: .96;
}

.accordion {
  margin-top: 54px;
}

.accordion article {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.accordion button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  gap: 20px;
  padding: 16px 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font-weight: 550;
  text-align: left;
  cursor: pointer;
}

.accordion button i {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.accordion button i::before,
.accordion button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--body);
  transform: translate(-50%, -50%);
  content: "";
}

.accordion button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.accordion button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion .answer {
  padding: 0 40px 22px 0;
  color: var(--body);
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 28px 125px;
  border-radius: var(--radius-card);
  background: var(--surface);
  text-align: center;
}

.final-cta h2 {
  margin-top: 28px;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .93;
}

.final-cta > p:not(.pill-label) {
  max-width: 590px;
  margin-top: 24px;
  font-size: 18px;
}

.final-cta .button {
  margin-top: 32px;
}

.site-footer {
  margin-top: 130px;
  padding: 75px 0 44px;
  background: var(--surface-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 60px;
}

.footer-grid > div img {
  width: 112px;
  height: auto;
}

.footer-grid > div p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #d3d1da;
  font-size: 14px;
}

.footer-grid nav a:hover {
  color: var(--white);
}

.footer-note {
  justify-self: end;
  max-width: 380px;
  color: var(--muted);
  font-size: 12px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(5, 4, 10, .68);
  backdrop-filter: blur(6px);
}

.cart-drawer {
  position: fixed;
  top: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  width: min(480px, calc(100vw - 24px));
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateX(calc(100% + 24px));
  visibility: hidden;
  transition: transform 280ms var(--ease), visibility 280ms;
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cart-head > div > span,
.order-head > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.cart-head h2 {
  margin-top: 5px;
  font-size: 32px;
  line-height: 1;
}

.cart-head > button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  cursor: pointer;
}

.cart-head > button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: var(--white);
}

.cart-head > button span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.cart-head > button span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.cart-empty {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.cart-empty p {
  max-width: 270px;
}

.cart-line {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  margin-top: 36px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.cart-product {
  display: grid;
  place-items: center;
  min-height: 100px;
  overflow: hidden;
  border-radius: 14px;
  background: #f1f0f3;
}

.cart-product img {
  width: 100%;
}

.cart-product-copy {
  min-width: 0;
}

.cart-product-copy strong {
  display: block;
  font-size: 18px;
}

.cart-product-copy p {
  margin-top: 5px;
  overflow-wrap: anywhere;
  color: var(--body);
  font-size: 14px;
}

.cart-product-copy > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.quantity-control {
  display: flex;
  align-items: center;
  width: fit-content;
  height: 44px;
  margin-top: 4px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--surface-soft);
}

.cart-line .quantity-control {
  grid-column: 2;
}

.quantity-control button {
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.quantity-control > span {
  min-width: 30px;
  color: var(--white);
  text-align: center;
}

.cart-summary {
  margin-top: auto;
  padding-top: 24px;
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.cart-summary > p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.cart-summary .button {
  width: 100%;
  margin-top: 22px;
}

/* Product page */

.pdp {
  padding: 44px 0 110px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  align-items: start;
  gap: 24px;
}

.pdp-gallery {
  display: grid;
  gap: 16px;
}

.gallery-main {
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gallery-main .product-stage {
  aspect-ratio: 1.1 / 1;
  min-height: 560px;
}

.gallery-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-support figure {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.gallery-support img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-support figure:first-child img {
  object-fit: contain;
  background: #f1f0f3;
}

.gallery-support figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  width: fit-content;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: rgba(24, 24, 36, .8);
  font-size: 11px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.pdp-buy {
  position: sticky;
  top: 104px;
  padding: 38px;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.pdp-buy h1 {
  margin-top: 24px;
  font-size: clamp(56px, 5.5vw, 78px);
  line-height: .9;
}

.product-lede {
  margin-top: 22px;
  font-size: 17px;
}

.price-status {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  padding: 20px;
  border-radius: 14px;
  background: var(--surface-deep);
}

.price-status > span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.price-status strong {
  margin-top: 4px;
  font-size: 18px;
}

.price-status p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.config-form {
  margin-top: 8px;
}

.config-form fieldset,
.checkout-form-card fieldset {
  min-width: 0;
  margin: 0;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.config-form legend,
.checkout-form-card legend {
  width: 100%;
  padding: 0;
  color: var(--white);
  font-weight: 560;
}

.config-form legend > span,
.checkout-form-card legend > span {
  margin-right: 9px;
  color: var(--muted);
  font-size: 12px;
}

.config-form legend small {
  float: right;
  padding-top: 4px;
  color: var(--body);
  font-size: 12px;
  font-weight: 450;
}

.finish-choice {
  margin-top: 16px;
}

.finish-choice input,
.option-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.finish-choice label {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 48px;
  gap: 11px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--surface-soft);
  cursor: pointer;
}

.finish-choice label i {
  width: 22px;
  height: 22px;
  border: 2px solid #817f91;
  border-radius: 50%;
  background: #161620;
  box-shadow: inset 0 0 0 4px #2a293c;
}

.finish-choice input:focus-visible + label,
.option-card input:focus-visible + label {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.field-label {
  display: block;
  margin-top: 16px;
  color: var(--body);
  font-size: 13px;
}

input[type="text"],
input[type="email"],
input:not([type]),
select {
  width: 100%;
  min-height: 52px;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--white);
  background: var(--surface-soft);
  transition: border-color 180ms ease, background 180ms ease;
}

input:hover,
select:hover {
  background: #393850;
}

input:focus,
select:focus {
  border-color: #a7a4b4;
  outline: 0;
}

input::placeholder {
  color: #767487;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #aaa8b8 50%), linear-gradient(135deg, #aaa8b8 50%, transparent 50%);
  background-position: calc(100% - 19px) 22px, calc(100% - 14px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field-help {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.option-card {
  margin-top: 16px;
}

.option-card label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
  padding: 15px 18px;
  border-radius: 14px;
  background: var(--surface-soft);
  cursor: pointer;
}

.option-card label span {
  display: flex;
  flex-direction: column;
}

.option-card label small {
  margin-top: 3px;
  color: var(--muted);
}

.option-card label > i {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 26px;
  border-radius: var(--radius-pill);
  background: #555367;
  transition: background 180ms ease;
}

.option-card label > i::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  transition: transform 180ms ease;
}

.option-card input:checked + label > i {
  background: var(--coral);
}

.option-card input:checked + label > i::after {
  transform: translateX(20px);
}

.quantity-large {
  margin-top: 16px;
}

.quantity-control input[type="number"] {
  width: 42px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: center;
  appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.product-actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.product-actions .button {
  width: 100%;
}

.form-status {
  min-height: 42px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.product-manifesto {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  padding: 80px 0 140px;
}

.product-manifesto .section-kicker {
  padding-top: 12px;
}

.product-details {
  padding-bottom: 130px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.detail-card {
  position: relative;
  min-height: 510px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.detail-card h3 {
  max-width: 470px;
  margin-top: 20px;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: .96;
}

.detail-card p {
  max-width: 480px;
  margin-top: 16px;
}

.detail-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 20px;
  background: #f1eff3;
}

.detail-media video {
  align-self: end;
  width: 100%;
  border-radius: 16px 16px 0 0;
  background: var(--surface-deep);
}

.detail-media h3,
.detail-media strong {
  color: var(--canvas);
}

.detail-media p {
  color: #5d5a69;
}

.detail-media > div > span {
  color: #777486;
}

.control-glyph {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 68%;
  margin: 70px auto 0;
  transform: rotate(-7deg);
}

.control-glyph i {
  height: 25px;
  border-radius: var(--radius-pill);
  background: #0f0f18;
}

.control-glyph i:nth-child(2),
.control-glyph i:nth-child(4) { width: 72%; }

.image-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.image-card > img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #f1f0f3;
}

.image-card > div {
  padding: 30px;
}

.app-card {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 24px;
  background: #eeedf2;
}

.app-card h3 {
  color: var(--canvas);
}

.app-card p {
  color: #5d5a69;
}

.app-card > div > span {
  color: #777486;
}

.app-card img {
  align-self: end;
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  object-position: bottom;
}

.compatibility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 130px;
}

.compatibility-copy,
.compatibility-list {
  min-height: 610px;
  border-radius: var(--radius-card);
}

.compatibility-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 44px;
  background: var(--surface);
}

.compatibility-copy h2 {
  margin-top: 30px;
  font-size: clamp(46px, 5.5vw, 68px);
  line-height: .95;
}

.compatibility-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin-top: 24px;
}

.compatibility-copy .button {
  margin-top: auto;
}

.compatibility-list {
  padding: 20px 44px;
  background: #efedf2;
}

.compatibility-list > div {
  display: grid;
  grid-template-columns: 48px 120px 1fr;
  align-items: start;
  gap: 18px;
  padding: 36px 0;
  border-bottom: 1px solid #d5d2da;
}

.compatibility-list > div:last-child {
  border-bottom: 0;
}

.compatibility-list span {
  color: #7c7989;
  font-size: 12px;
}

.compatibility-list strong {
  color: var(--canvas);
  font-size: 18px;
}

.compatibility-list p {
  color: #5b5867;
}

.purchase-notes {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  padding: 80px 0 40px;
}

.purchase-notes h2 {
  margin-top: 25px;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: .96;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.notes-grid article {
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.notes-grid article span {
  color: var(--white);
  font-weight: 570;
}

.notes-grid article p {
  margin-top: 18px;
  font-size: 14px;
}

.mobile-buy-bar {
  display: none;
}

/* Checkout */

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
}

.checkout-shell {
  padding: 70px 0 100px;
}

.checkout-intro {
  max-width: 860px;
  margin-bottom: 64px;
}

.checkout-intro h1 {
  margin-top: 26px;
  font-size: clamp(62px, 8vw, 96px);
  line-height: .9;
  letter-spacing: -.06em;
}

.checkout-intro > p:last-child {
  max-width: 590px;
  margin-top: 28px;
  font-size: 18px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: start;
  gap: 20px;
}

.checkout-form-card,
.order-card {
  border-radius: var(--radius-card);
  background: var(--surface);
}

.checkout-form-card {
  padding: 38px 44px;
}

.checkout-form-card > h2,
.order-card h2 {
  font-size: 32px;
  line-height: 1;
}

.checkout-form-card form {
  margin-top: 30px;
}

.form-fields {
  display: grid;
  gap: 14px;
  margin-top: 17px;
}

.form-fields.two-up {
  grid-template-columns: 1fr 1fr;
}

.form-fields .full {
  grid-column: 1 / -1;
}

.form-fields label {
  display: block;
  color: var(--body);
  font-size: 13px;
}

.method-card {
  display: flex;
  gap: 15px;
  margin-top: 17px;
  padding: 18px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.method-card > i {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border: 2px solid var(--muted);
  border-radius: 50%;
}

.method-card strong {
  display: block;
}

.method-card p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.checkout-submit {
  width: 100%;
  margin-top: 10px;
}

.checkout-submit:disabled {
  color: #c0bec9;
  background: #5c5967;
  box-shadow: none;
  cursor: not-allowed;
}

.checkout-status {
  min-height: 44px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.order-card {
  position: sticky;
  top: 24px;
  padding: 30px;
}

.order-head h2 {
  margin-top: 8px;
}

.checkout-empty {
  padding: 80px 0;
  text-align: center;
}

.checkout-empty .button {
  margin-top: 22px;
}

.order-product {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  margin-top: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.order-product > div {
  display: grid;
  place-items: center;
  min-height: 100px;
  overflow: hidden;
  border-radius: 14px;
  background: #f0eff2;
}

.order-product section strong {
  font-size: 18px;
}

.order-product section p {
  margin-top: 6px;
  overflow-wrap: anywhere;
  font-size: 13px;
}

.order-product section span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.order-facts {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.order-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.order-facts dt {
  color: var(--muted);
  font-size: 13px;
}

.order-facts dd {
  color: var(--white);
  font-size: 13px;
  text-align: right;
}

.fit-review {
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.fit-review span {
  color: var(--white);
  font-size: 13px;
  font-weight: 570;
}

.fit-review p {
  margin-top: 7px;
  color: var(--body);
  font-size: 13px;
}

.order-disclaimer {
  margin-top: 24px;
}

.order-disclaimer strong {
  font-size: 13px;
}

.order-disclaimer p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.checkout-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1040px) {
  :root { --page: min(100% - 40px, 900px); }

  .nav-shell { grid-template-columns: 120px 1fr auto; }
  .desktop-nav a { padding-inline: 9px; }
  .desktop-nav a:nth-child(4) { display: none; }

  .hud-workspace { grid-template-columns: 170px 1fr; }
  .workspace-detail { grid-column: 1 / -1; display: grid; grid-template-columns: 50px 1fr 1fr; min-height: 240px; gap: 20px; }
  .workspace-detail h3 { margin-top: 0; }
  .workspace-detail > p { margin-top: 0; }
  .workspace-detail dl { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; margin-top: 0; }
  .workspace-detail dl div { flex-direction: column; }
  .workspace-detail dd { text-align: left; }

  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-buy { position: relative; top: auto; }
  .gallery-main .product-stage { min-height: 520px; aspect-ratio: 1.35 / 1; }

  .checkout-grid { grid-template-columns: minmax(0, 1fr) 360px; }
}

@media (max-width: 820px) {
  :root { --page: calc(100% - 32px); }

  .prototype-bar { justify-content: center; padding-inline: 16px; text-align: center; }
  .prototype-bar span:first-child { display: none; }

  .site-header { padding: 9px 0; }
  .nav-shell { grid-template-columns: 1fr auto; min-height: 58px; padding: 7px 8px 7px 18px; }
  .desktop-nav, .nav-actions { display: none; }
  .menu-button { display: grid; }

  .hero { padding-top: 82px; }
  .hero h1 { font-size: clamp(58px, 15vw, 88px); }
  .hero-intro { max-width: 570px; }
  .product-stage { min-height: 340px; }

  .statement,
  .product-manifesto { grid-template-columns: 1fr; gap: 24px; }
  .statement > p:last-child,
  .product-manifesto > p:last-child { grid-column: 1; }

  .hud-workspace { grid-template-columns: 1fr; }
  .workspace-rail { display: grid; grid-template-columns: 1fr 1fr; padding: 14px; }
  .workspace-rail > p { grid-column: 1 / -1; margin: 0 6px 8px; }
  .rail-note { display: none; }
  .workspace-screen { min-height: 510px; }
  .workspace-detail { grid-column: 1; }

  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card-large { grid-row: auto; min-height: 650px; }

  .water-story { min-height: 760px; }
  .water-image { background-position: 64% center; }

  .journey .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .journey-cards { grid-template-columns: 1fr; }
  .journey-cards article { min-height: 230px; }
  .journey-cards strong { margin-top: 46px; }

  .support-section { grid-template-columns: 1fr; }
  .support-visual { min-height: 460px; }
  .support-copy { min-height: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; justify-self: start; }

  .detail-grid { grid-template-columns: 1fr; }
  .compatibility { grid-template-columns: 1fr; }
  .compatibility-copy, .compatibility-list { min-height: auto; }
  .compatibility-copy .button { margin-top: 36px; }
  .purchase-notes { grid-template-columns: 1fr; gap: 38px; }

  .checkout-grid { grid-template-columns: 1fr; }
  .order-card { position: relative; top: auto; grid-row: 1; }
}

@media (max-width: 600px) {
  :root { --page: calc(100% - 24px); }

  html { scroll-padding-top: 92px; }
  body { font-size: 16px; }

  .prototype-bar { min-height: 31px; font-size: 10px; }
  .brand { width: 94px; }

  .hero { padding: 66px 0 62px; }
  .hero h1 { margin-top: 24px; font-size: clamp(54px, 16vw, 76px); line-height: .91; }
  .hero-intro { margin-top: 24px; font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
  .hero-actions .button { width: 100%; }
  .availability-note { max-width: 320px; }

  .product-window { margin-top: 52px; }
  .window-toolbar { min-height: 52px; padding-inline: 16px; }
  .window-status { font-size: 0; }
  .product-stage { aspect-ratio: 1 / 1; min-height: 0; }
  .scrub-hint { bottom: 12px; white-space: nowrap; }
  .window-footer { grid-template-columns: 1fr; }
  .window-footer div { padding: 14px 17px; }
  .window-footer div:not(:first-child) { display: none; }

  .statement { padding: 90px 0; }
  .statement h2, .product-manifesto h2 { font-size: clamp(43px, 13vw, 61px); }
  .statement > p:last-child, .product-manifesto > p:last-child { font-size: 16px; }

  .feature-workspace { padding: 45px 0 90px; }
  .section-heading h2 { font-size: clamp(43px, 13vw, 62px); }
  .workspace-screen { min-height: 440px; padding: 24px 20px; }
  .screen-copy h3 { font-size: 29px; }
  .workspace-screen video { width: 94%; margin-bottom: -32px; }
  .workspace-detail { display: flex; min-height: 0; padding: 25px 22px; }
  .workspace-detail h3 { margin-top: 20px; font-size: 30px; }
  .workspace-detail > p { margin-top: 14px; }
  .workspace-detail dl { display: block; margin-top: 28px; }

  .editorial-grid { padding-bottom: 90px; }
  .editorial-card { min-height: 360px; padding: 24px; }
  .editorial-card-large { min-height: 580px; }
  .editorial-card h3 { font-size: 46px; }
  .product-cutout img { width: calc(100% + 48px); height: 200px; margin-inline: -24px; }
  .quote-card { min-height: 300px; }

  .water-story { min-height: 690px; }
  .water-image { background: linear-gradient(0deg, rgba(20, 19, 30, .9) 0%, rgba(20, 19, 30, .38) 68%, rgba(20, 19, 30, .16) 100%), url("assets/hero-diver.webp") 63% center / cover no-repeat; }
  .water-copy { justify-content: flex-end; padding-bottom: 46px; }
  .water-copy h2 { font-size: 51px; }
  .water-copy > p:not(.pill-label) { font-size: 16px; }

  .journey { padding: 90px 0; }

  .support-section { padding-bottom: 90px; }
  .support-visual { min-height: 370px; }
  .support-copy { padding: 30px 24px; }
  .support-copy h2 { font-size: 45px; }

  .final-cta { padding: 74px 20px 82px; }
  .final-cta h2 { font-size: 51px; }
  .final-cta > p:not(.pill-label) { font-size: 16px; }
  .final-cta .button { width: 100%; }

  .site-footer { margin-top: 90px; padding-top: 54px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-note { grid-column: 1; }

  .cart-drawer { padding: 22px; }
  .cart-line { grid-template-columns: 100px 1fr; }

  .pdp { padding: 26px 0 82px; }
  .breadcrumbs { margin-bottom: 16px; }
  .gallery-main .product-stage { aspect-ratio: 1 / 1; min-height: 0; }
  .gallery-support { grid-template-columns: 1fr 1fr; }
  .gallery-support figure { min-height: 190px; }
  .pdp-buy { padding: 28px 22px; }
  .pdp-buy h1 { font-size: 60px; }
  .product-lede { font-size: 16px; }
  .config-form legend small { float: none; display: block; padding: 5px 0 0 25px; }

  .product-manifesto { padding: 60px 0 100px; }
  .product-details { padding-bottom: 95px; }
  .detail-card { min-height: 440px; padding: 24px; }
  .detail-card h3 { font-size: 43px; }
  .detail-media { grid-template-columns: 1fr; }
  .detail-media video { max-width: 230px; margin-inline: auto; }
  .image-card { padding: 0; }
  .image-card > div { padding: 24px; }
  .app-card { grid-template-columns: 1fr 130px; }
  .app-card img { max-height: 330px; }

  .compatibility { padding-bottom: 95px; }
  .compatibility-copy { padding: 32px 24px; }
  .compatibility-copy h2 { font-size: 48px; }
  .compatibility-list { padding: 8px 24px; }
  .compatibility-list > div { grid-template-columns: 38px 1fr; gap: 12px; padding: 26px 0; }
  .compatibility-list p { grid-column: 2; }

  .purchase-notes { padding-top: 40px; }
  .notes-grid { grid-template-columns: 1fr; }
  .notes-grid article { min-height: 160px; }

  .product-page .site-footer { padding-bottom: 100px; }
  .mobile-buy-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 35;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 9px 9px 17px;
    border-radius: var(--radius-pill);
    background: rgba(38, 37, 59, .94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }
  .mobile-buy-bar > div { display: flex; flex-direction: column; }
  .mobile-buy-bar span { color: var(--white); font-size: 13px; font-weight: 560; }
  .mobile-buy-bar strong { color: var(--muted); font-size: 11px; font-weight: 450; }

  .checkout-header { min-height: 86px; }
  .checkout-header .text-link { font-size: 13px; }
  .checkout-shell { padding: 48px 0 76px; }
  .checkout-intro { margin-bottom: 42px; }
  .checkout-intro h1 { font-size: clamp(54px, 15vw, 72px); }
  .checkout-intro > p:last-child { font-size: 16px; }
  .checkout-form-card { padding: 30px 22px; }
  .form-fields.two-up { grid-template-columns: 1fr; }
  .form-fields .full { grid-column: 1; }
  .order-card { padding: 24px 20px; }
  .order-product { grid-template-columns: 96px 1fr; }
  .checkout-footer { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
