:root {
  --ink: #0b1014;
  --muted: #68737a;
  --paper: #f4f7f8;
  --white: #ffffff;
  --line: rgba(11, 16, 20, 0.12);
  --cyan: #65cce6;
  --cyan-deep: #1895b5;
  --orange: #f28b4a;
  --lime: #c8e86b;
  --shadow: 0 22px 60px rgba(27, 54, 65, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --page-pad: clamp(1.1rem, 4vw, 4.8rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

section[id] {
  scroll-margin-top: 5.4rem;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 3%, rgba(101, 204, 230, 0.12), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--cyan);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 18rem;
  height: 18rem;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(101, 204, 230, 0.14), rgba(101, 204, 230, 0) 68%);
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.7rem;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  background: rgba(244, 247, 248, 0.72);
  backdrop-filter: blur(18px);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(244, 247, 248, 0.9);
  box-shadow: 0 10px 28px rgba(30, 48, 57, 0.05);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.brand-wordmark {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
}

.brand-wordmark span {
  color: var(--cyan-deep);
}

.brand-wordmark em {
  margin-left: 0.13rem;
  font-size: 0.62em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-icon {
  position: relative;
  display: inline-grid;
  width: 1.42rem;
  height: 1.42rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.35rem;
  background: var(--ink);
  transform: rotate(45deg);
}

.brand-icon::before,
.brand-icon::after,
.brand-icon span,
.brand-icon i {
  position: absolute;
  content: "";
  display: block;
  width: 0.86rem;
  height: 0.2rem;
  border-radius: 99px;
  background: var(--white);
}

.brand-icon::before {
  transform: translateY(-0.22rem) rotate(45deg);
}

.brand-icon::after {
  transform: translateY(0.22rem) rotate(45deg);
}

.brand-icon span {
  width: 0.2rem;
  height: 0.86rem;
  transform: translateX(-0.22rem) rotate(45deg);
}

.brand-icon i {
  width: 0.2rem;
  height: 0.86rem;
  transform: translateX(0.22rem) rotate(45deg);
  background: var(--cyan);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.7vw, 3rem);
  margin-left: auto;
  margin-right: clamp(1.2rem, 4vw, 4rem);
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1.5px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-bag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.66rem 0.88rem 0.66rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  font-weight: 750;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.header-bag:hover {
  border-color: rgba(11, 16, 20, 0.3);
  background: var(--white);
  transform: translateY(-2px);
}

.header-bag svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.menu-toggle {
  display: none;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 0.29rem 0;
  background: var(--ink);
  transition: transform 240ms var(--ease), opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  transform: translateY(0.22rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(-0.22rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 4.7rem;
  right: 0;
  left: 0;
  display: grid;
  gap: 0;
  padding: 0 var(--page-pad) 1.3rem;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 247, 248, 0.97);
  box-shadow: 0 24px 36px rgba(15, 38, 45, 0.1);
  transform: translateY(-120%);
  transition: transform 420ms var(--ease);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 700;
}

.mobile-menu a span {
  color: var(--cyan-deep);
}

.mobile-menu .mobile-menu-cta {
  margin-top: 1.1rem;
  padding: 0.95rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

main {
  position: relative;
  z-index: 1;
  min-height: 70vh;
}

.section {
  width: min(100%, 92rem);
  margin: 0 auto;
  padding: clamp(4.4rem, 9vw, 9rem) var(--page-pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  color: var(--cyan-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.6rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.display-title {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.25rem, 11vw, 8.6rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.display-title .accent {
  color: var(--cyan-deep);
}

.accent {
  color: var(--cyan-deep);
}

.display-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  padding-top: 7.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #dbeaed;
}

.hero-background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.96) contrast(0.98) brightness(1.05);
}

.hero-video-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 247, 248, 0.92) 0%, rgba(244, 247, 248, 0.66) 42%, rgba(244, 247, 248, 0.2) 100%),
    linear-gradient(180deg, rgba(244, 247, 248, 0.72) 0%, rgba(244, 247, 248, 0.08) 37%, rgba(11, 16, 20, 0.12) 100%);
}

.hero.is-fallback .hero-background-video {
  opacity: 0.24;
  filter: saturate(0.7) contrast(0.9);
}

.hero::before {
  position: absolute;
  z-index: 1;
  top: 5rem;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(101, 204, 230, 0.2);
  border-radius: 50%;
  content: "";
  transform: rotate(22deg) skewY(-12deg);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: 7%;
  bottom: 5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(101, 204, 230, 0.18));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 25px 40px rgba(57, 142, 159, 0.08);
  transform: rotate(28deg) perspective(400px) rotateX(50deg) rotateY(-32deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 92rem);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
}

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

.hero-copy .lede {
  max-width: 27rem;
  margin: 1.75rem 0 2rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.13rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.28rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  transition: transform 250ms var(--ease), box-shadow 250ms ease, background 250ms ease, border-color 250ms ease;
}

.button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(11, 16, 20, 0.14);
}

.button-dark:hover,
.button-dark:focus-visible {
  box-shadow: 0 15px 28px rgba(11, 16, 20, 0.2);
  transform: translateY(-3px);
}

.button-light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: rgba(11, 16, 20, 0.28);
  background: var(--white);
  transform: translateY(-3px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2.2rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
}

.hero-note .pulse {
  position: relative;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(242, 139, 74, 0.13);
}

.hero-visual {
  position: relative;
  min-height: clamp(27rem, 65vw, 41rem);
  perspective: 1200px;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(87%, 35rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 42%, rgba(255, 255, 255, 0.94), rgba(101, 204, 230, 0.42) 36%, rgba(101, 204, 230, 0) 69%);
  filter: blur(2px);
  transform: translate(-50%, -50%);
}

.hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92%;
  max-width: 40rem;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 150, 181, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(-15deg);
  animation: orbit-drift 18s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(101, 204, 230, 0.14), 0 0 22px rgba(101, 204, 230, 0.6);
}

.hero-orbit::before {
  top: 7%;
  left: 14%;
}

.hero-orbit::after {
  right: 11%;
  bottom: 17%;
  width: 0.52rem;
  height: 0.52rem;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(242, 139, 74, 0.13), 0 0 18px rgba(242, 139, 74, 0.42);
}

.hero-orbit.orbit-two {
  width: 71%;
  opacity: 0.42;
  transform: translate(-50%, -50%) rotateX(66deg) rotateZ(47deg);
  animation-duration: 24s;
  animation-direction: reverse;
}

.hero-product-card {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(72%, 22rem);
  aspect-ratio: 0.78;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: clamp(1.4rem, 3vw, 2.2rem);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(224, 241, 245, 0.52));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%) rotateY(-11deg) rotateX(5deg) rotateZ(3deg);
  transition: transform 500ms var(--ease);
}

.hero-visual:hover .hero-product-card {
  transform: translate(-50%, -52%) rotateY(-4deg) rotateX(2deg) rotateZ(-1deg);
}

.hero-product-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.38), transparent 28%, transparent 68%, rgba(255, 255, 255, 0.2));
  pointer-events: none;
}

.hero-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: saturate(1.05) contrast(1.04);
}

.hero-product-meta {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-product-meta p {
  margin: 0;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-product-meta strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.hero-product-tag {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.hero-bottom-item {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 1.1rem;
  display: flex;
  align-items: flex-end;
  width: clamp(9.5rem, 29%, 14rem);
  min-height: 7.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 1.15rem;
  background: rgba(11, 16, 20, 0.54);
  box-shadow: 0 18px 34px rgba(11, 16, 20, 0.22);
  transform: rotate(7deg);
  transition: transform 350ms var(--ease), box-shadow 350ms ease;
}

.hero-bottom-item:hover {
  box-shadow: 0 24px 42px rgba(11, 16, 20, 0.28);
  transform: translateY(-4px) rotate(3deg);
}

.hero-bottom-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(11, 16, 20, 0.02) 35%, rgba(11, 16, 20, 0.72) 100%);
  pointer-events: none;
}

.hero-bottom-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  mix-blend-mode: screen;
}

.hero-bottom-item-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem 0.75rem;
  color: var(--white);
}

.hero-bottom-item-meta span {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-bottom-item-meta strong {
  font-size: 0.85rem;
  letter-spacing: -0.04em;
}

.video-panel {
  position: absolute;
  right: 2%;
  bottom: 8%;
  z-index: 3;
  width: clamp(8rem, 28%, 13rem);
  aspect-ratio: 1.16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 1.2rem;
  background: #dbe8eb;
  box-shadow: 0 18px 35px rgba(27, 68, 78, 0.16);
  transform: rotate(8deg);
}

.video-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.video-panel.is-fallback video {
  opacity: 0.48;
  filter: saturate(0.82);
}

.video-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(150deg, rgba(11, 16, 20, 0.05), rgba(11, 16, 20, 0.34));
}

.video-panel-label {
  position: absolute;
  z-index: 1;
  right: 0.65rem;
  bottom: 0.55rem;
  left: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-play {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.video-play svg {
  width: 0.67rem;
  height: 0.67rem;
  fill: currentColor;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: var(--page-pad);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll::before {
  width: 2.2rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.95rem 1.2rem;
  font-size: clamp(0.63rem, 1vw, 0.76rem);
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marquee span::after {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.section-heading h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.9rem);
  font-weight: 770;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.section-heading h2 em {
  color: var(--cyan-deep);
  font-style: normal;
}

.section-heading p {
  max-width: 19rem;
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.6;
}

.products-section {
  padding-top: clamp(5.5rem, 11vw, 10rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.6vw, 1.4rem);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 16, 20, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(27, 54, 65, 0.05);
  transition: transform 350ms var(--ease), box-shadow 350ms ease, border-color 350ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(11, 16, 20, 0.19);
  box-shadow: 0 22px 42px rgba(27, 54, 65, 0.13);
  transform: translateY(-8px);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 0.93;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.95), rgba(224, 240, 243, 0.75)),
    #e8edef;
}

.product-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.22), transparent 40%);
  pointer-events: none;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 550ms var(--ease);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 0.82rem;
  left: 0.82rem;
  padding: 0.4rem 0.56rem;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--ink);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1rem 1.1rem;
}

.product-kicker {
  margin: 0 0 0.42rem;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.product-card .product-copy {
  min-height: 2.95rem;
  margin: 0.62rem 0 1.05rem;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 780;
}

.product-link span:last-child {
  color: var(--cyan-deep);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 250ms var(--ease);
}

.product-card:hover .product-link span:last-child {
  transform: translateX(4px);
}

.reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.products-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.3rem;
}

.micro-note {
  margin: 0.95rem 0 0;
  color: var(--muted);
  font-size: 0.67rem;
  text-align: center;
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
  overflow: hidden;
}

.story-section::before {
  position: absolute;
  z-index: -1;
  top: 4rem;
  left: -8rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(101, 204, 230, 0.25);
  border-radius: 50%;
  content: "";
  transform: rotateX(65deg) rotateZ(20deg);
}

.story-visual {
  position: relative;
  min-height: 30rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #dff4f7 0%, #eef5f5 53%, #fff 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.story-visual::before {
  position: absolute;
  top: 10%;
  left: 13%;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(24, 149, 181, 0.27);
  border-radius: 50%;
  content: "";
  transform: rotateX(63deg) rotateZ(-20deg);
  animation: orbit-drift 22s linear infinite reverse;
}

.story-visual::after {
  position: absolute;
  right: 9%;
  bottom: 7%;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  content: "";
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(242, 139, 74, 0.28);
  transform: rotate(23deg) skewY(-13deg);
}

.story-product-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.story-product-orbit {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(24, 149, 181, 0.22);
  border-radius: 50%;
  transform-style: preserve-3d;
  pointer-events: none;
}

.story-product-orbit::after {
  position: absolute;
  top: 9%;
  right: 9%;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(101, 204, 230, 0.15), 0 0 18px rgba(101, 204, 230, 0.45);
}

.story-product-orbit-a {
  transform: rotateX(68deg) rotateZ(-21deg);
  animation: story-orbit-turn 13s linear infinite;
}

.story-product-orbit-b {
  width: 57%;
  opacity: 0.55;
  transform: rotateX(68deg) rotateZ(43deg);
  animation: story-orbit-turn 17s linear infinite reverse;
}

.story-product-orbit-b::after {
  top: auto;
  right: auto;
  bottom: 10%;
  left: 7%;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(242, 139, 74, 0.14), 0 0 16px rgba(242, 139, 74, 0.4);
}

.story-product-shadow {
  position: absolute;
  bottom: 17%;
  left: 50%;
  width: 48%;
  height: 9%;
  border-radius: 50%;
  background: rgba(17, 82, 97, 0.2);
  filter: blur(18px);
  transform: translateX(-50%);
  animation: story-shadow-pulse 5.5s ease-in-out infinite;
}

.story-product {
  position: relative;
  z-index: 2;
  width: 52%;
  aspect-ratio: 0.76;
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-14deg) rotateZ(-7deg);
  animation: story-product-float 5.5s ease-in-out infinite, story-product-tilt 11s ease-in-out infinite;
}

.story-product::before {
  position: absolute;
  z-index: -1;
  top: 5%;
  right: -7%;
  width: 13%;
  height: 88%;
  border-radius: 12% 45% 45% 12%;
  content: "";
  background: linear-gradient(90deg, rgba(163, 205, 213, 0.86), rgba(255, 255, 255, 0.5));
  box-shadow: inset -6px 0 8px rgba(24, 149, 181, 0.12);
  transform: translateZ(-0.7rem) rotateY(18deg);
}

.story-product::after {
  position: absolute;
  z-index: -1;
  top: -3%;
  left: 3%;
  width: 87%;
  height: 12%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  content: "";
  background: linear-gradient(145deg, #fff, #bce7ef);
  box-shadow: 0 7px 12px rgba(17, 82, 97, 0.13);
  transform: translateZ(-0.6rem);
}

.story-product-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22% 22% 18% 18%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(207, 238, 242, 0.58));
  box-shadow:
    inset 16px 14px 20px rgba(255, 255, 255, 0.86),
    inset -18px -18px 24px rgba(24, 149, 181, 0.12),
    20px 26px 30px rgba(17, 82, 97, 0.17);
  transform: translateZ(0.8rem);
}

.story-product-face::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(108deg, rgba(255, 255, 255, 0.5), transparent 32%, transparent 68%, rgba(24, 149, 181, 0.12));
  pointer-events: none;
}

.story-product-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.28);
}

.story-product-face span {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  color: var(--ink);
  font-size: clamp(0.52rem, 0.75vw, 0.72rem);
  font-weight: 850;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.story-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.2rem);
  font-weight: 770;
  letter-spacing: -0.073em;
  line-height: 0.9;
}

.story-copy h2 em {
  color: var(--cyan-deep);
  font-style: normal;
}

.story-copy > p {
  max-width: 33rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 2rem;
}

.story-point {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.story-point strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.65rem;
  letter-spacing: -0.07em;
}

.story-point span {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 650;
  line-height: 1.35;
}

.gallery-section {
  padding-bottom: clamp(5rem, 11vw, 10rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-template-rows: repeat(2, minmax(11rem, 16rem));
  gap: 0.85rem;
}

.gallery-tile {
  position: relative;
  min-height: 10rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #dcebed;
}

.gallery-tile:first-child {
  grid-row: span 2;
}

.gallery-tile:nth-child(4) {
  grid-column: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 600ms var(--ease), filter 600ms ease;
}

.gallery-tile:hover img {
  filter: saturate(1.1);
  transform: scale(1.07);
}

.gallery-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(11, 16, 20, 0.46));
  pointer-events: none;
}

.gallery-tile figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-section {
  position: relative;
  padding-top: clamp(4.5rem, 9vw, 8rem);
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
  background: var(--ink);
  color: var(--white);
}

.review-section::before {
  position: absolute;
  top: -2.8rem;
  right: -3rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(101, 204, 230, 0.38);
  border-radius: 50%;
  content: "";
  transform: rotateX(65deg) rotateZ(-20deg);
}

.review-section .section-heading {
  margin-bottom: 2.4rem;
}

.review-section .eyebrow {
  color: var(--cyan);
}

.review-section .section-heading h2 {
  max-width: 16ch;
}

.review-section .section-heading h2 em {
  color: var(--cyan);
}

.review-section .section-heading p {
  color: rgba(255, 255, 255, 0.58);
}

.review-track {
  display: grid;
  grid-auto-columns: minmax(17rem, 30rem);
  grid-auto-flow: column;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(101, 204, 230, 0.5) transparent;
  overscroll-behavior-inline: contain;
}

.review-card {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.review-stars {
  color: var(--cyan);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.review-quote {
  max-width: 22ch;
  margin: 2rem 0;
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.67rem;
  font-weight: 700;
}

.review-avatar {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cyan), var(--orange));
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 850;
}

.review-drag-note {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-drag-note::before {
  width: 2.2rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.detail-shell {
  padding-top: 8rem;
  padding-bottom: 7rem;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  margin-bottom: 2.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.detail-back:hover {
  color: var(--ink);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.detail-image {
  position: relative;
  overflow: hidden;
  min-height: min(70vh, 42rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 45% 35%, #fff 0 14%, rgba(255, 255, 255, 0.6) 34%, transparent 64%),
    #deedf0;
  box-shadow: var(--shadow);
}

.detail-image::before {
  position: absolute;
  top: 10%;
  right: 7%;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(24, 149, 181, 0.32);
  border-radius: 50%;
  content: "";
  transform: rotateX(65deg) rotateZ(21deg);
}

.detail-image img {
  width: 100%;
  height: 100%;
  min-height: min(70vh, 42rem);
  object-fit: cover;
  mix-blend-mode: multiply;
}

.detail-info .eyebrow {
  margin-bottom: 1rem;
}

.detail-info h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6rem);
  font-weight: 780;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.detail-info h1 em {
  color: var(--cyan-deep);
  font-style: normal;
}

.detail-description {
  max-width: 31rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1.9rem 0;
}

.detail-spec {
  padding: 0.85rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.6);
}

.detail-spec strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: -0.05em;
}

.detail-spec span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 700;
  line-height: 1.25;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.detail-points {
  display: grid;
  gap: 0.1rem;
  margin-top: 1.25rem;
}

.detail-points .hero-note {
  margin-top: 0.65rem;
}

.all-products-shell {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.all-products-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.54fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.all-products-intro h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.6rem);
  font-weight: 780;
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.all-products-intro h1 em {
  color: var(--cyan-deep);
  font-style: normal;
}

.all-products-intro p {
  max-width: 23rem;
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

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

.all-products-grid .product-card:first-child {
  grid-column: span 2;
}

.all-products-grid .product-card:first-child .product-image-wrap {
  aspect-ratio: 1.65;
}

.coming-soon-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.96), rgba(101, 204, 230, 0.3) 42%, rgba(101, 204, 230, 0.1)),
    #e2eff1;
}

.coming-soon-visual > span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.1em;
}

.coming-soon-orbit {
  position: absolute;
  width: 57%;
  aspect-ratio: 1;
  border: 1px solid rgba(24, 149, 181, 0.42);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(-28deg);
}

.coming-soon-orbit::after {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(242, 139, 74, 0.16);
}

.related-heading {
  margin-top: clamp(5rem, 10vw, 9rem);
  margin-bottom: 2rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 3.4rem var(--page-pad) 1.2rem;
  background: #eaf0f1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: min(100%, 92rem);
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 1.35rem;
}

.footer-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  justify-self: end;
  width: min(100%, 24rem);
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-label {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--cyan-deep);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 92rem);
  margin: 4rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  max-width: min(24rem, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.85rem;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 32px rgba(11, 16, 20, 0.2);
  font-size: 0.74rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 250ms ease, transform 250ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.empty-state {
  padding: 8rem var(--page-pad);
  text-align: center;
}

.empty-state h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: -0.08em;
}

.empty-state p {
  color: var(--muted);
}

@keyframes orbit-drift {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

@keyframes capsule-float {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -0.8rem;
  }
}

@keyframes story-product-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.75rem;
  }
}

@keyframes story-product-tilt {
  0%,
  100% {
    rotate: 0deg;
  }
  50% {
    rotate: 2deg;
  }
}

@keyframes story-orbit-turn {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

@keyframes story-shadow-pulse {
  0%,
  100% {
    opacity: 0.72;
    scale: 1;
  }
  50% {
    opacity: 0.42;
    scale: 0.82;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 940px) {
  .desktop-nav {
    gap: 1.2rem;
    margin-right: 1.25rem;
  }

  .hero-grid {
    gap: 2.7rem;
  }

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

  .story-section {
    gap: 3rem;
  }

  .story-visual {
    min-height: 25rem;
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 1.05rem;
  }

  .site-header {
    height: 4.3rem;
  }

  .desktop-nav,
  .header-bag {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    top: 4.3rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 7rem;
    padding-bottom: 4.1rem;
  }

  .hero::before {
    top: 21rem;
    right: -12rem;
    width: 25rem;
    height: 25rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-copy .lede {
    max-width: 24rem;
    margin-top: 1.35rem;
    margin-bottom: 1.5rem;
  }

  .hero-note {
    margin-top: 1.45rem;
  }

  .hero-visual {
    min-height: 25rem;
    margin-top: 1.1rem;
  }

  .hero-product-card {
    width: min(68%, 19rem);
  }

  .hero-bottom-item {
    right: 0;
    bottom: 0.25rem;
    width: 8.8rem;
    min-height: 6.8rem;
  }

  .video-panel {
    right: 2%;
    bottom: 5%;
    width: 8.6rem;
  }

  .hero-scroll {
    position: static;
    margin-top: 0.4rem;
  }

  .section {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }

  .section-heading {
    display: block;
    margin-bottom: 1.8rem;
  }

  .section-heading p {
    margin-top: 1rem;
  }

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

  .product-card {
    border-radius: 1rem;
  }

  .product-body {
    padding: 0.75rem 0.72rem 0.85rem;
  }

  .product-kicker {
    margin-bottom: 0.3rem;
    font-size: 0.51rem;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .product-card .product-copy {
    min-height: 3.4rem;
    margin: 0.5rem 0 0.75rem;
    font-size: 0.64rem;
  }

  .product-link {
    padding-top: 0.6rem;
    font-size: 0.63rem;
  }

  .product-badge {
    top: 0.55rem;
    left: 0.55rem;
    padding: 0.32rem 0.42rem;
    font-size: 0.48rem;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 5.5rem;
  }

  .story-visual {
    min-height: 21rem;
    order: 2;
  }

  .story-product {
    width: 61%;
  }

  .story-product-orbit {
    width: 79%;
  }

  .story-copy {
    order: 1;
  }

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

  .story-copy > p {
    margin-top: 1.2rem;
    font-size: 0.88rem;
  }

  .story-points {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .story-point strong {
    font-size: 1.35rem;
  }

  .story-point span {
    font-size: 0.57rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 9.8rem);
    gap: 0.55rem;
  }

  .gallery-tile:first-child {
    grid-row: span 2;
  }

  .gallery-tile:nth-child(4) {
    grid-column: span 2;
  }

  .gallery-tile {
    min-height: 0;
    border-radius: 1rem;
  }

  .gallery-tile figcaption {
    right: 0.72rem;
    bottom: 0.65rem;
    left: 0.72rem;
    font-size: 0.52rem;
  }

  .review-section {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }

  .review-track {
    grid-auto-columns: minmax(16.2rem, 82vw);
    margin-right: calc(var(--page-pad) * -1);
    margin-left: calc(var(--page-pad) * -1);
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .review-card {
    min-height: 15.5rem;
    padding: 1.3rem;
  }

  .review-quote {
    margin: 1.7rem 0;
    font-size: 1.25rem;
  }

  .detail-shell,
  .all-products-shell {
    padding-top: 6.9rem;
    padding-bottom: 5rem;
  }

  .detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .detail-image {
    min-height: 24rem;
    border-radius: 1.35rem;
  }

  .detail-image img {
    min-height: 24rem;
  }

  .detail-info h1 {
    max-width: 12ch;
  }

  .detail-description {
    margin-top: 1.15rem;
    font-size: 0.87rem;
  }

  .detail-specs {
    margin: 1.4rem 0;
  }

  .detail-spec {
    padding: 0.72rem 0.55rem;
  }

  .detail-spec strong {
    font-size: 1rem;
  }

  .detail-spec span {
    font-size: 0.52rem;
  }

  .all-products-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .all-products-intro p {
    font-size: 0.86rem;
  }

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

  .all-products-grid .product-card:first-child {
    grid-column: span 2;
  }

  .all-products-grid .product-card:first-child .product-image-wrap {
    aspect-ratio: 1.2;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .footer-links {
    justify-self: stretch;
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2.7rem;
    font-size: 0.55rem;
  }
}

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