:root {
  --navy-deep: #061425;
  --navy: #0a192f;
  --navy-mid: #102845;
  --copper: #ff7b00;
  --copper-light: #ff9a1f;
  --green: #25d366;
  --green-dark: #062b17;
  --ice: #f4f7fa;
  --white: #ffffff;
  --ink: #071426;
  --muted: #536277;
  --line: #d9e3ec;
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --shadow-soft: 0 14px 36px rgb(6 20 37 / 9%);
  --shadow-premium: 0 30px 80px rgb(6 20 37 / 20%);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6.5rem;
  --container: 73.75rem;
  --container-narrow: 49rem;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.asset-picture {
  display: block;
  width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-3);
  left: 50%;
  transform: translate(-50%, -180%);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow-premium);
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.trust-strip {
  background: var(--navy-deep);
  color: var(--white);
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  padding-block: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-strip span::before {
  color: var(--copper-light);
  content: "✓";
  font-weight: 950;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(10 25 47 / 8%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(16px);
}

.header-layout {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand {
  display: inline-flex;
  width: clamp(9.5rem, 44vw, 13rem);
  flex: 0 1 auto;
  align-items: center;
}

.brand img {
  width: 100%;
}

.header-trust {
  display: none;
}

.header-cta {
  display: none;
  min-height: 2.8rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 10px 24px rgb(37 211 102 / 24%);
  color: var(--green-dark);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgb(37 211 102 / 34%);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 78% 32%, rgb(255 123 0 / 13%), transparent 31rem),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 58%, #0d2340);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -10rem;
  bottom: -14rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgb(255 154 31 / 15%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--copper-light);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  margin-bottom: var(--space-4);
  color: var(--white);
  font-size: clamp(2.55rem, 12vw, 4.8rem);
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: var(--space-3);
  color: var(--ink);
  font-size: clamp(2.1rem, 8vw, 4rem);
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: var(--space-2);
  color: var(--ink);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: var(--space-4);
  color: #c8d4e3;
  font-size: clamp(1rem, 2.2vw, 1.16rem);
}

.hero-points,
.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 var(--space-5);
  padding: 0;
  list-style: none;
}

.hero-points {
  color: #e5edf6;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.7rem;
}

.hero-points li::before,
.check-list li::before {
  position: absolute;
  top: 0.08rem;
  left: 0;
  color: var(--copper-light);
  content: "✓";
  font-weight: 950;
}

.button {
  display: inline-flex;
  width: 100%;
  min-height: 3.65rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button span,
.header-cta span,
.text-cta span {
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover span,
.header-cta:hover span,
.text-cta:hover span {
  transform: translateX(0.2rem);
}

.button-primary {
  background: var(--green);
  box-shadow: 0 14px 32px rgb(37 211 102 / 25%);
  color: var(--green-dark);
}

.button-primary:hover {
  background: #2dde6d;
  box-shadow: 0 18px 38px rgb(37 211 102 / 36%);
}

.button-outline {
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
}

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

.hero-button {
  max-width: 21rem;
}

.trust-cards {
  display: grid;
  gap: 0.65rem;
  margin-top: var(--space-4);
}

.trust-cards span {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 6%);
  color: #c9d5e4;
  font-size: 0.8rem;
}

.trust-cards strong {
  color: var(--white);
}

.hero-visual {
  position: relative;
  order: -1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 154 31 / 22%);
  border-radius: var(--radius-lg);
  background: #07111f;
  box-shadow: 0 35px 90px rgb(0 0 0 / 38%);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgb(6 20 37 / 45%));
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 64% center;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.85rem;
  color: rgb(255 255 255 / 78%);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.video-section {
  padding-block: var(--space-7);
  background: var(--navy-deep);
  color: var(--white);
}

.section {
  padding-block: clamp(4.5rem, 9vw, var(--space-8));
}

.section-intro {
  max-width: 45rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-intro > p:last-child {
  max-width: 40rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-intro--light h2,
.section-intro--light > p:last-child {
  color: var(--white);
}

.section-intro--light > p:last-child {
  color: #c6d3e2;
}

.section-intro--center {
  margin-inline: auto;
  text-align: center;
}

.section-intro--center > p:last-child {
  margin-inline: auto;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 154 31 / 25%);
  border-radius: var(--radius-lg);
  background: #030a13;
  box-shadow: 0 35px 80px rgb(0 0 0 / 36%);
}

.video-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 6%);
  content: "";
  pointer-events: none;
}

.product-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #030a13;
  object-fit: cover;
}

.details-section {
  background: var(--ice);
}

.detail-mosaic {
  display: grid;
  gap: var(--space-4);
}

.detail-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.detail-card img {
  width: 100%;
}

.detail-card--macro img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.detail-card--fit img {
  aspect-ratio: 1;
  object-fit: cover;
}

.detail-card figcaption {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.1rem 1.2rem;
  color: var(--ink);
  font-weight: 850;
}

.detail-card figcaption span {
  color: var(--copper);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.feature-grid {
  display: grid;
  gap: var(--space-3);
}

.feature-card {
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--white), #f9fbfd);
  box-shadow: 0 10px 28px rgb(6 20 37 / 5%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgb(255 123 0 / 35%);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: var(--space-3);
  place-items: center;
  border: 1px solid rgb(255 154 31 / 30%);
  border-radius: 1rem;
  background: var(--navy-deep);
  color: var(--copper-light);
  font-size: 0.85rem;
  font-weight: 950;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.technology-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 50%, rgb(255 123 0 / 9%), transparent 28rem),
    var(--navy-deep);
  color: var(--white);
}

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

.technology-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 154 31 / 22%);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgb(0 0 0 / 32%);
}

.technology-visual img {
  width: 100%;
}

.technology-copy h2 {
  color: var(--white);
}

.technology-copy > p:not(.eyebrow) {
  color: #c3d0df;
}

.check-list {
  color: var(--muted);
}

.check-list--dark,
.technology-section .check-list {
  color: #d6e0ec;
}

.text-cta {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--copper);
  font-weight: 900;
  text-underline-offset: 0.25em;
}

.text-cta--light {
  color: var(--copper-light);
}

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

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

.portrait-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ice);
  box-shadow: var(--shadow-premium);
}

.portrait-visual img {
  width: 100%;
}

.portrait-visual--dark {
  background: var(--navy-deep);
}

.split-copy > p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--muted);
}

.split-copy .button {
  max-width: 19rem;
  margin-top: var(--space-3);
}

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

.micro-details span {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
}

.lifestyle-section {
  background: var(--ice);
}

.modalities-section {
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  color: var(--white);
}

.wide-visual,
.size-guide-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

.wide-visual {
  max-width: 70rem;
  margin-inline: auto;
  border: 1px solid rgb(255 154 31 / 20%);
}

.wide-visual img,
.size-guide-visual img {
  width: 100%;
}

.size-guide-section {
  background: var(--white);
}

.size-guide-visual {
  border: 1px solid var(--line);
  background: var(--ice);
}

.size-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.size-notes span {
  display: grid;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ice);
  color: var(--muted);
  font-size: 0.78rem;
}

.size-notes strong {
  color: var(--navy);
  font-size: 1rem;
}

.button-centered {
  max-width: 23rem;
  margin: var(--space-5) auto 0;
}

.bonus-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 22%, rgb(255 123 0 / 18%), transparent 25rem),
    linear-gradient(140deg, #0d223d, var(--navy-deep));
  color: var(--white);
}

.bonus-section::before {
  position: absolute;
  top: -10rem;
  left: -8rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgb(255 154 31 / 16%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.bonus-layout {
  position: relative;
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.bonus-copy h2 {
  color: var(--white);
}

.bonus-copy > p:not(.eyebrow) {
  color: #c7d3e1;
}

.bonus-lead {
  color: var(--white) !important;
  font-size: 1.1rem;
  font-weight: 800;
}

.bonus-visual {
  width: min(100%, 34rem);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgb(255 154 31 / 28%);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 85px rgb(0 0 0 / 38%);
}

.bonus-visual img {
  width: 100%;
}

.reviews-section[hidden] {
  display: none !important;
}

.reviews-grid {
  display: grid;
  gap: var(--space-3);
}

.review-card {
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.review-rating {
  margin-bottom: var(--space-2);
  color: var(--copper);
}

.review-comment {
  margin: 0 0 var(--space-3);
  color: var(--ink);
}

.review-author,
.review-verified {
  color: var(--muted);
  font-size: 0.85rem;
}

.offer-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 10vw, 8rem);
  background:
    radial-gradient(circle at 12% 20%, rgb(255 123 0 / 13%), transparent 28rem),
    var(--navy-deep);
  color: var(--white);
}

.offer-section::after {
  position: absolute;
  right: -18rem;
  bottom: -20rem;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgb(255 154 31 / 16%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.offer-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-6);
  align-items: start;
}

.offer-logo,
.final-logo {
  width: min(100%, 15rem);
}

.offer-product {
  margin: var(--space-4) 0 0;
  overflow: hidden;
  border: 1px solid rgb(255 154 31 / 24%);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgb(0 0 0 / 32%);
}

.offer-product img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 62% center;
}

.offer-bundle {
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr);
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-3);
  padding: var(--space-3);
  border: 1px solid rgb(255 154 31 / 20%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 6%);
}

.offer-bundle img {
  width: 100%;
  border-radius: 0.55rem;
}

.offer-bundle p {
  margin: 0;
  color: #cbd6e3;
  font-size: 0.86rem;
}

.offer-bundle strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.offer-trust {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.offer-trust span {
  padding: 0.8rem;
  border-left: 3px solid var(--copper);
  background: rgb(255 255 255 / 5%);
  color: #c7d3e1;
  font-size: 0.83rem;
}

.offer-trust strong {
  color: var(--white);
}

.offer-conversion {
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 6%);
  box-shadow: 0 25px 70px rgb(0 0 0 / 20%);
}

.offer-conversion h2 {
  color: var(--white);
  font-size: clamp(2rem, 7vw, 3.25rem);
}

.offer-price {
  display: grid;
  gap: 0.35rem;
  margin: var(--space-4) 0;
  padding-block: var(--space-3);
  border-block: 1px solid rgb(255 255 255 / 14%);
}

.offer-price-includes,
.offer-price-value,
.offer-price-shipping,
.offer-price-note {
  margin: 0;
}

.offer-price-includes {
  color: #dce6f1;
  font-size: 0.9rem;
  font-weight: 800;
}

.offer-price-value {
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.offer-price-shipping {
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 900;
}

.offer-price-note {
  color: #b9c8d8;
  font-size: 0.82rem;
  line-height: 1.45;
}

.offer-size-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.offer-size-grid span {
  padding: 0.8rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-sm);
  background: rgb(0 0 0 / 12%);
  color: #c8d4e2;
  font-size: 0.76rem;
}

.offer-size-grid strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.purchase-options {
  display: grid;
}

.purchase-options .button {
  min-height: 3.9rem;
  margin-bottom: 15px;
  padding-inline: 0.85rem;
  font-size: clamp(0.8rem, 2.5vw, 0.94rem);
}

.checkout-note {
  margin: 0;
  color: #9eafc2;
  font-size: 0.76rem;
  text-align: center;
}

.faq-section {
  background: var(--ice);
}

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

.faq-list {
  display: grid;
  gap: var(--space-2);
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 24px rgb(6 20 37 / 4%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details:hover {
  border-color: rgb(255 123 0 / 30%);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  position: relative;
  min-height: 3.75rem;
  padding: 1.15rem 3.5rem 1.15rem 1.15rem;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  color: var(--copper);
  content: "+";
  font-size: 1.55rem;
  line-height: 1;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 1rem 1.15rem 1.3rem;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 7rem);
  background:
    linear-gradient(90deg, rgb(6 20 37 / 98%), rgb(6 20 37 / 72%)),
    var(--navy-deep);
  color: var(--white);
}

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

.final-copy {
  position: relative;
  z-index: 2;
}

.final-logo {
  margin-bottom: var(--space-5);
}

.final-copy h2 {
  color: var(--white);
}

.final-copy > p:not(.eyebrow) {
  color: #c7d3e1;
}

.final-trust {
  display: grid;
  gap: 0.6rem;
  margin-block: var(--space-4);
  color: #e1e8f0;
  font-size: 0.88rem;
  font-weight: 750;
}

.final-trust span::before {
  margin-right: 0.5rem;
  color: var(--copper-light);
  content: "✓";
}

.final-button {
  max-width: 21rem;
}

.final-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 154 31 / 23%);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 80px rgb(0 0 0 / 35%);
}

.final-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.site-footer {
  padding-block: 2.5rem calc(6.75rem + env(safe-area-inset-bottom));
  background: #030b14;
  color: #a9b8c9;
}

.footer-layout {
  display: grid;
  gap: var(--space-3);
  justify-items: center;
  text-align: center;
}

.site-footer img {
  width: min(100%, 13rem);
}

.order-tracking {
  width: min(100%, 30rem);
  padding: 1rem 1.25rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 4%);
}

.site-footer .order-tracking-label {
  color: #a9b8c9;
  font-size: 0.85rem;
  font-weight: 700;
}

.order-tracking-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 850;
  text-underline-offset: 0.25rem;
  transition: color 180ms ease;
}

.order-tracking-link:hover {
  color: var(--copper-light);
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}

.mobile-cta {
  position: fixed;
  z-index: 60;
  right: 0.85rem;
  bottom: calc(0.75rem + env(safe-area-inset-bottom));
  left: 0.85rem;
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgb(6 43 23 / 16%);
  border-radius: var(--radius-sm);
  background: var(--green);
  box-shadow: 0 18px 38px rgb(6 20 37 / 32%);
  color: var(--green-dark);
  font-weight: 950;
  text-decoration: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(calc(100% + 2rem));
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-cta.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 14px 32px rgb(37 211 102 / 25%);
  }
  50% {
    box-shadow: 0 17px 38px rgb(37 211 102 / 38%);
  }
}

.button-pulse {
  animation: pulse 2.8s ease-in-out infinite;
}

@media (min-width: 30rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .trust-cards,
  .offer-trust,
  .final-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 48rem) {
  body {
    padding-bottom: 0;
  }

  .header-layout {
    min-height: 5.5rem;
  }

  .brand {
    width: 15rem;
  }

  .header-cta {
    display: inline-flex;
    min-height: 3rem;
    padding-inline: 1.15rem;
    font-size: 0.8rem;
  }

  .hero-layout {
    gap: var(--space-6);
  }

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

  .hero-points li {
    padding: 0.75rem;
    border-top: 1px solid rgb(255 154 31 / 28%);
  }

  .hero-points li::before {
    display: none;
  }

  .detail-mosaic {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }

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

  .technology-layout,
  .split-layout,
  .bonus-layout,
  .offer-layout,
  .final-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  }

  .split-layout {
    gap: clamp(3rem, 7vw, 6rem);
  }

  .split-layout--reverse .portrait-visual {
    grid-column: 2;
  }

  .split-layout--reverse .split-copy {
    grid-row: 1;
    grid-column: 1;
  }

  .portrait-visual img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

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

  .bonus-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.7fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .offer-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
    gap: clamp(3rem, 6vw, 5rem);
  }

  .faq-layout {
    grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 7vw, 6rem);
    align-items: start;
  }

  .faq-layout .section-intro {
    position: sticky;
    top: 8rem;
    margin-bottom: 0;
  }

  .final-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.6fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 60rem) {
  h2 {
    font-size: clamp(2.25rem, 3vw, 2.875rem);
  }

  .trust-strip {
    display: none;
  }

  .header-layout {
    min-height: 6.5rem;
  }

  .brand {
    width: 18rem;
  }

  .header-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.7rem;
    margin-left: auto;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .header-cta {
    min-height: 3.35rem;
    padding-inline: 1.35rem;
    font-size: 0.88rem;
  }

  .header-trust span::before {
    margin-right: 0.4rem;
    color: var(--copper);
    content: "✓";
  }

  .hero {
    padding-block: 5rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(34rem, 1.05fr);
    gap: clamp(3.25rem, 5vw, 5.5rem);
  }

  .hero-visual {
    order: initial;
    min-height: 39rem;
  }

  .hero h1 {
    max-width: 18ch;
    font-size: clamp(3.6rem, 4.5vw, 4rem);
  }

  .hero-visual img {
    height: 39rem;
    aspect-ratio: auto;
  }

  .hero-lead {
    max-width: 40rem;
    font-size: 1.18rem;
  }

  .hero-button {
    max-width: 25rem;
    min-height: 4rem;
    font-size: 1rem;
  }

  .trust-cards span {
    min-height: 4.75rem;
    padding: 1rem 1.1rem;
    font-size: 0.9rem;
  }

  .video-section {
    padding-block: 7.5rem;
  }

  .video-frame {
    width: min(100%, 60rem);
    border-radius: 2.25rem;
    margin-inline: auto;
  }

  .detail-card {
    border-radius: var(--radius-lg);
  }

  .feature-card {
    min-height: 17.5rem;
    padding: 2.15rem;
  }

  .feature-icon {
    width: 3.75rem;
    height: 3.75rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }

  .feature-card h3 {
    font-size: 1.45rem;
  }

  .feature-card p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .technology-layout {
    width: min(100%, 68rem);
    margin-inline: auto;
    grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
    gap: clamp(3.5rem, 6vw, 6rem);
  }

  .technology-visual {
    transform: translateX(-1.5rem);
  }

  .technology-copy > p:not(.eyebrow),
  .split-copy > p:not(.eyebrow),
  .bonus-copy > p:not(.eyebrow),
  .section-intro > p:last-child {
    font-size: 1.12rem;
    line-height: 1.7;
  }

  .technology-copy .check-list {
    font-size: 1rem;
  }

  .lifestyle-section .split-layout {
    width: min(100%, 68rem);
    margin-inline: auto;
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    gap: clamp(4rem, 7vw, 6.5rem);
  }

  .flexibility-section .split-layout {
    width: min(100%, 68rem);
    margin-inline: auto;
  }

  .modalities-section .wide-visual {
    max-width: 59rem;
  }

  .size-guide-section .container {
    width: min(calc(100% - 2rem), 65rem);
  }

  .size-guide-visual {
    width: min(100%, 54rem);
    margin-inline: auto;
  }

  .size-notes span {
    min-height: 5.25rem;
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
  }

  .size-notes strong {
    font-size: 1.25rem;
  }

  .button-centered {
    max-width: 26rem;
    min-height: 4rem;
    font-size: 1rem;
  }

  .bonus-layout {
    width: min(100%, 68rem);
    margin-inline: auto;
    grid-template-columns: minmax(0, 0.92fr) minmax(26rem, 0.88fr);
    gap: clamp(4rem, 7vw, 7rem);
  }

  .bonus-visual {
    width: min(100%, 36rem);
  }

  .offer-layout {
    grid-template-columns: minmax(0, 1fr) minmax(32rem, 1fr);
    gap: clamp(4rem, 7vw, 6.5rem);
  }

  .offer-product img {
    min-height: 29rem;
  }

  .offer-bundle {
    grid-template-columns: 6.5rem minmax(0, 1fr);
    padding: 1.2rem;
  }

  .offer-bundle p,
  .offer-trust span {
    font-size: 0.95rem;
  }

  .offer-conversion {
    position: sticky;
    top: 8rem;
    padding: 2.75rem;
  }

  .offer-conversion h2 {
    font-size: clamp(2.5rem, 3.8vw, 3.5rem);
  }

  .offer-size-grid span {
    min-height: 5.2rem;
    padding: 1rem;
    font-size: 0.9rem;
  }

  .offer-size-grid strong {
    font-size: 1.2rem;
  }

  .purchase-options .button {
    min-height: 4rem;
    padding-inline: 1.1rem;
    font-size: 1rem;
  }

  .checkout-note {
    font-size: 0.84rem;
  }

  .faq-layout {
    width: min(100%, 68rem);
    margin-inline: auto;
    grid-template-columns: minmax(16rem, 0.62fr) minmax(0, 1.38fr);
    gap: clamp(4rem, 8vw, 7rem);
  }

  .faq-list {
    gap: 1rem;
  }

  .faq-list summary {
    min-height: 4.5rem;
    padding: 1.35rem 4rem 1.35rem 1.4rem;
    font-size: 1.05rem;
  }

  .faq-list details p {
    padding: 1.15rem 1.4rem 1.45rem;
    font-size: 1rem;
  }

  .final-layout {
    width: min(100%, 69rem);
    margin-inline: auto;
    grid-template-columns: minmax(0, 1.02fr) minmax(26rem, 0.98fr);
    gap: clamp(4rem, 8vw, 7rem);
  }

  .final-copy h2 {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
  }

  .final-copy > p:not(.eyebrow) {
    font-size: 1.15rem;
  }

  .final-visual img {
    min-height: 31rem;
    aspect-ratio: 3 / 4;
  }

  .final-button {
    max-width: 25rem;
    min-height: 4rem;
    font-size: 1rem;
  }
}

@media (min-width: 80rem) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  }

  .hero-visual {
    min-height: 42rem;
    margin-right: 0;
  }

  .hero-visual img {
    height: 42rem;
  }

  .detail-mosaic {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.95fr);
    gap: 2rem;
  }

  .detail-card--macro img {
    aspect-ratio: 3 / 4;
  }

  .detail-card--fit img {
    min-height: 28rem;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

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

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