:root {
  --navy: #06283d;
  --navy-soft: #07506e;
  --pool-blue: #00add4;
  --pool-text: #087b98;
  --pool-bright: #13bfe6;
  --light-aqua: #dffaff;
  --sunshine: #ffd43b;
  --sunshine-deep: #edae00;
  --coral: #e95032;
  --coral-dark: #bd3c29;
  --sand: #fff6da;
  --white: #ffffff;
  --text: #112d3a;
  --muted: #405d6c;
  --line: #bce7ef;
  --shadow: 0 22px 60px rgba(6, 40, 61, 0.16);
  --radius-sm: 0.8rem;
  --radius-md: 1.3rem;
  --radius-lg: 2rem;
  --content: 74rem;
  --gutter: clamp(1rem, 4vw, 2rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--text);
  background: #fffdf7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

a {
  color: var(--navy-soft);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--coral-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--coral-dark);
}

::selection {
  color: var(--navy);
  background: var(--sunshine);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - (2 * var(--gutter))), 48rem);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker {
  color: var(--pool-blue);
  font-weight: 800;
}

h1,
h2,
h3 {
  margin-block: 0;
  color: var(--navy);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 10vw, 6.8rem);
}

h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 6vw, 3.7rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
}

p {
  margin-block: 0 1rem;
}

.lede {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.4vw, 1.3rem);
  text-wrap: pretty;
}

.announcement {
  padding: 0.55rem var(--gutter);
  color: var(--white);
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.075em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 253, 247, 0.95);
  border-bottom: 1px solid rgba(6, 40, 61, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  width: min(10.75rem, 52vw);
  flex: 0 0 auto;
  color: var(--navy);
}

.brand img {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-0.4rem);
}

.nav-toggle-lines::after {
  transform: translateY(0.28rem);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(0.1rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(0) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
}

.site-nav a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--coral-dark);
}

.site-nav .nav-cta {
  padding: 0.65rem 1rem;
  color: var(--navy);
  background: var(--sunshine);
  border: 2px solid var(--navy);
  border-radius: 999px;
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--coral-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 2.5rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(circle at 94% 4%, rgba(255, 212, 59, 0.5) 0 8rem, transparent 8.2rem),
    radial-gradient(circle at 7% 92%, rgba(40, 215, 237, 0.26) 0 12rem, transparent 12.2rem),
    linear-gradient(135deg, #fffdf7 0%, #e8fbff 52%, #fff3bd 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
}

.hero-copy h1 span {
  display: block;
  color: var(--pool-text);
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
}

.hero-copy .lede {
  margin: 1.35rem 0 1.2rem;
}

.hero-offer {
  display: flex;
  margin-bottom: 1.25rem;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
}

.hero-offer strong {
  color: var(--navy);
  font-size: clamp(3.4rem, 12vw, 4.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero-offer span,
.hero-reassurance {
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 750;
}

.hero-reassurance {
  margin: 1rem 0 0;
}

.hero-feature-line {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.6;
}

.hero-feature-line span {
  margin-inline: 0.25rem;
  color: var(--coral-dark);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  display: grid;
  gap: 0.65rem;
}

.hero-actions .button,
.hero-actions .button-secondary {
  width: 100%;
  min-height: 3.5rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  color: var(--navy);
  background: var(--sunshine);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--navy);
}

.button-light {
  color: var(--navy);
  background: var(--sunshine);
  border-color: var(--sunshine);
}

.button-light:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.hero-feature-media {
  overflow: hidden;
  width: 100%;
  margin: 0;
  background: #81dce9;
  border-radius: clamp(1rem, 3vw, 1.6rem);
  box-shadow: 0 16px 42px rgba(6, 40, 61, 0.14);
}

.hero-feature-media a {
  display: block;
}

.hero-feature-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-product-media,
.product-photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--navy);
  border: 0.45rem solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-product-media img,
.product-photo-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero-product-media figcaption,
.product-photo-card figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: rgba(6, 40, 61, 0.86);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-feature-media > .media-disclosure,
.product-photo-card > .media-disclosure,
.editorial-media > .media-disclosure {
  position: static;
  display: flex;
  margin: 0;
  padding: 0.5rem 0.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--navy);
  background: linear-gradient(90deg, #fff4b8, #e3faff);
  border: 0;
  border-top: 1px solid rgba(6, 40, 61, 0.12);
  border-radius: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-align: center;
}

.media-disclosure::before {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.trust-strip {
  position: relative;
  z-index: 2;
  padding: 1.1rem 0 0.7rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid div {
  min-width: 0;
  padding-left: 0.85rem;
  border-left: 3px solid var(--pool-text);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 0.84rem;
}

.trust-grid span,
.trust-footnote {
  color: var(--muted);
  font-size: 0.74rem;
}

.trust-footnote {
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin: 0.7rem auto 0;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-aqua {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 212, 59, 0.42) 0 7rem, transparent 7.2rem),
    linear-gradient(145deg, var(--light-aqua), #c7f5fb);
}

.section-sand {
  background: linear-gradient(145deg, #fffdf5, var(--sand));
}

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.section-navy h2,
.section-navy h3,
.section-navy .eyebrow {
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 6vw, 3.5rem);
}

.section-heading .lede {
  margin: 0;
}

.overview-grid,
.split-grid,
.order-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.overview-copy {
  align-self: center;
}

.product-photo-card img {
  min-height: 0;
  object-position: center;
}

.value-section {
  background:
    radial-gradient(circle at 3% 95%, rgba(255, 112, 77, 0.14) 0 9rem, transparent 9.2rem),
    #fffdf7;
}

.text-link {
  display: inline-flex;
  margin-top: 1.4rem;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 850;
}

.text-link span {
  color: var(--coral-dark);
  font-size: 1.3em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.product-card::before,
.product-card::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.product-card::before {
  width: 24rem;
  height: 24rem;
  right: -7rem;
  bottom: -9rem;
  background: var(--pool-bright);
}

.product-card::after {
  width: 12rem;
  height: 12rem;
  right: 6rem;
  bottom: -4rem;
  border: 2.5rem solid rgba(255, 255, 255, 0.5);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card .product-code {
  display: inline-flex;
  margin-top: 11rem;
  padding: 0.5rem 0.8rem;
  color: var(--navy);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.fact-list,
.plain-list,
.safety-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.fact-list li,
.plain-list li,
.safety-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.8rem;
  border-bottom: 1px solid var(--line);
}

.fact-list li::before,
.plain-list li::before,
.safety-list li::before {
  position: absolute;
  top: 1.4rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.status-card {
  padding: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.status-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.status-product {
  margin: 1.25rem 0 0.2rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 850;
}

.status-card .price {
  display: block;
  margin: 0.4rem 0 0;
  color: var(--navy);
  font-size: clamp(2.5rem, 7vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
}

.price-meta {
  display: block;
  margin: 0.5rem 0 1.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.status-pill,
.shipping-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  color: var(--navy);
  background: var(--light-aqua);
}

.shipping-pill {
  color: var(--navy);
  background: var(--sand);
  border: 1px solid #ded4c1;
}

.order-copy {
  align-self: center;
}

.order-highlights {
  display: flex;
  margin: 1.4rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
}

.order-highlights li {
  padding: 0.45rem 0.7rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.availability-note {
  margin: 1.2rem 0;
  padding: 1rem 1.1rem;
  color: var(--navy);
  background: var(--sand);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 750;
}

.safety-notice {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.paypal-checkout {
  min-height: 3.2rem;
  margin-top: 1.4rem;
}

.paypal-checkout > div {
  max-width: 31rem;
}

.checkout-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.feature-grid,
.steps-grid,
.policy-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.step-card,
.policy-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-card::before,
.step-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.35rem;
  background: linear-gradient(90deg, var(--pool-bright), var(--sunshine), var(--sunshine-deep), var(--coral));
  content: "";
}

.feature-number,
.step-number {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--navy);
  background: var(--sunshine);
  border-radius: 50%;
  font-size: 0.83rem;
  font-weight: 900;
}

.feature-card p,
.step-card p,
.policy-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.feature-card strong {
  color: var(--navy);
}

.feature-overview {
  overflow: hidden;
  padding-inline: 0;
  text-align: center;
}

.feature-overview-heading {
  width: min(calc(100% - (2 * var(--gutter))), 52rem);
  margin: 0 auto clamp(2rem, 5vw, 3.25rem);
}

.feature-overview-heading h2,
.feature-overview-heading .lede {
  margin-inline: auto;
}

.feature-overview-heading .lede {
  margin-top: 1rem;
}

.feature-overview-figure {
  width: min(calc(100% - (2 * var(--gutter))), 80rem);
  margin: 0 auto;
}

.feature-overview-figure a {
  display: block;
  overflow: hidden;
  border-radius: clamp(0.8rem, 2vw, var(--radius-lg));
  box-shadow: var(--shadow);
}

.feature-overview-figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #81dce9;
}

img[data-cruise-d2-feature-image] {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.feature-overview-figure figcaption {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.editorial-grid,
.specs-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.editorial-copy,
.specs-intro {
  align-self: center;
}

.editorial-media {
  overflow: hidden;
  margin: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.editorial-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.specs-list {
  display: grid;
  margin: 0;
  padding: 0;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.spec-row {
  min-width: 0;
  padding: 1.05rem 1.1rem;
  background: var(--sand);
  border: 1px solid #eadfca;
  border-radius: var(--radius-sm);
}

.spec-row dt,
.spec-row dd {
  margin: 0;
}

.spec-row dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-row dd {
  margin-top: 0.35rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
}

.seller-card {
  display: grid;
  margin-top: 1.5rem;
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.seller-card strong {
  color: var(--navy);
}

.checkout-status {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.checkout-status[data-failed="true"],
.checkout-fallback {
  color: var(--coral-dark);
  font-weight: 750;
}

.final-cta {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta-inner p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  color: #c9eaf2;
}

.final-cta-inner .button {
  flex: 0 0 auto;
}

.gallery-shell {
  display: grid;
  width: min(100%, 62rem);
  margin-inline: auto;
  gap: 1rem;
}

.product-gallery-section {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 212, 59, 0.36) 0 7rem, transparent 7.2rem),
    linear-gradient(145deg, #fff8dd, #e9fbff);
}

.product-gallery-heading {
  width: min(100%, 62rem);
  margin: 0 auto clamp(1.4rem, 4vw, 2rem);
}

.product-gallery-heading h2 {
  max-width: none;
}

.gallery-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-stage {
  overflow: hidden;
  background: var(--sand);
  border: 0.4rem solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  touch-action: pan-y;
}

.gallery-panel {
  position: relative;
}

.gallery-panel[hidden] {
  display: none;
}

.gallery-panel img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  margin: 0;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  background: rgba(6, 40, 61, 0.9);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 750;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-thumb {
  min-height: 4.4rem;
  padding: 0.65rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: left;
}

.gallery-thumb[aria-selected="true"] {
  background: var(--sunshine);
  border-color: var(--navy);
}

.product-media-note,
.section-followup {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-followup {
  margin-top: 1.4rem;
}

.warning-panel {
  padding: clamp(1.5rem, 5vw, 3rem);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.warning-panel h2,
.warning-panel h3 {
  color: var(--white);
}

.warning-panel .eyebrow {
  color: #ffc2b5;
}

.warning-panel .button {
  margin-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.faq-list summary {
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.faq-list details p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.page-hero {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
  background: linear-gradient(135deg, var(--sand), var(--light-aqua));
}

.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
}

.page-hero .lede {
  margin: 1.2rem 0 0;
}

.prose {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.prose h2 {
  margin: 2.8rem 0 1rem;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
}

.prose h3 {
  margin: 2rem 0 0.8rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: #334550;
}

.prose strong {
  color: var(--navy);
}

.legal-note {
  padding: 1.2rem;
  background: var(--sand);
  border: 1px solid #eadfca;
  border-radius: var(--radius-sm);
}

.contact-card {
  margin-bottom: 2rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  background: var(--light-aqua);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-card h2 {
  margin: 0 0 1rem;
}

.contact-card .button {
  word-break: break-word;
}

.alert {
  margin: 1.5rem 0;
  padding: 1.25rem;
  color: var(--navy);
  background: var(--light-aqua);
  border-left: 5px solid var(--pool-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.alert-warning {
  background: #fff0ec;
  border-left-color: var(--coral);
}

.support-band {
  padding: clamp(2.5rem, 7vw, 4rem) 0;
  color: var(--white);
  background: var(--navy);
}

.support-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.support-band h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 5vw, 2.8rem);
}

.support-band p {
  margin: 0.6rem 0 0;
  color: #c9eaf2;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  color: #c9d6dc;
  background: #031b29;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand img {
  width: 11rem;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 31rem;
  font-size: 0.9rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.2rem;
}

.footer-nav a {
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #8ee9f7;
}

.footer-identity {
  display: flex;
  margin-top: 2rem;
  padding-top: 1.25rem;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  color: #c9d6dc;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
}

.footer-identity strong {
  width: 100%;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-identity a {
  color: var(--white);
}

.footer-base {
  display: flex;
  margin-top: 2rem;
  padding-top: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
}

.footer-base p {
  margin: 0;
}

.not-found {
  display: grid;
  min-height: 62vh;
  padding: 4rem 0;
  place-items: center;
  text-align: center;
}

.not-found-code {
  display: block;
  color: var(--pool-blue);
  font-size: clamp(5rem, 25vw, 12rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.not-found h1 {
  max-width: none;
  margin: 1rem auto;
  font-size: clamp(2rem, 6vw, 3.8rem);
}

.not-found p {
  max-width: 36rem;
  margin-inline: auto;
  color: var(--muted);
}

.mobile-buy-bar {
  position: fixed;
  z-index: 150;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: flex;
  min-height: 4.5rem;
  padding: 0.65rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  background: rgba(6, 40, 61, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 0.8rem 2.5rem rgba(6, 40, 61, 0.3);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, visibility 180ms ease, opacity 180ms ease;
}

.mobile-buy-bar[data-hidden="true"] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(calc(100% + 2rem));
}

.mobile-buy-bar div,
.mobile-buy-bar strong,
.mobile-buy-bar span {
  display: block;
  min-width: 0;
}

.mobile-buy-bar div {
  padding-left: 0.55rem;
}

.mobile-buy-bar strong {
  font-size: 1.25rem;
  line-height: 1;
}

.mobile-buy-bar span {
  margin-top: 0.25rem;
  color: #c9eaf2;
  font-size: 0.7rem;
  font-weight: 700;
}

.mobile-buy-bar .button {
  min-height: 3rem;
  padding-inline: 1.15rem;
  white-space: nowrap;
}

@media (min-width: 44rem) {
  .overview-grid,
  .order-grid,
  .split-grid,
  .editorial-grid,
  .specs-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 1fr);
  }

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

  .order-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }
}

@media (min-width: 64rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }

  .header-inner {
    min-height: 5rem;
  }

  .brand {
    width: min(12.5rem, 54vw);
  }

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

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

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

  .section-heading {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
  }

  .section-heading .lede {
    justify-self: end;
  }
}

@media (max-width: 59.99rem) {
  html.js .nav-toggle {
    display: grid;
  }

  html.js .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

  html.js .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem;
  }

  .site-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 43.99rem) {
  body.has-mobile-buy-bar {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-grid {
    gap: 1.75rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 10.75vw, 2.9rem);
  }

  .hero-feature-line {
    font-size: 0.78rem;
    text-align: center;
  }

  .hero-product-media figcaption,
  .product-photo-card figcaption {
    position: static;
    border-radius: 0;
  }

  .feature-overview-figure {
    width: calc(100% - 0.75rem);
  }

  .specs-list {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .support-band-inner,
  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-thumb {
    min-height: 4rem;
    font-size: 0.78rem;
  }

  .gallery-caption {
    position: static;
    border-radius: 0;
  }

  .mobile-buy-bar {
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 4.75rem;
    padding: 0.65rem max(1rem, env(safe-area-inset-left)) max(0.65rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-right));
    gap: 0.8rem;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    box-shadow: 0 -0.5rem 1.5rem rgba(6, 40, 61, 0.22);
  }

  .mobile-buy-bar[data-hidden="true"] {
    opacity: 0;
    transform: translateY(110%);
  }

  .mobile-buy-bar div {
    padding-left: 0;
  }

  .mobile-buy-bar strong {
    font-size: 1.2rem;
    line-height: 1;
  }

  .mobile-buy-bar span {
    margin-top: 0.25rem;
    color: #c9eaf2;
    font-size: 0.7rem;
    font-weight: 700;
  }

  .mobile-buy-bar .button {
    min-height: 2.75rem;
    padding-inline: 1rem;
  }
}

@media (max-width: 22.5rem) {
  .hero-actions .button {
    min-height: 3.25rem;
  }

  .mobile-buy-bar {
    gap: 0.55rem;
  }

  .mobile-buy-bar .button {
    padding-inline: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .announcement,
  .site-header,
  .support-band,
  .site-footer,
  .mobile-buy-bar,
  .hero-art,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
  }
}
