:root {
  --ink: #0b1526;
  --ink-deep: #101e36;
  --ink-soft: #31435f;
  --cloud: #f6f8fb;
  --mist: #e7edf5;
  --glacier: #62b5e4;
  --cobalt: #2158a7;
  --iris: #3d3e8e;
  --seafoam: #b7d9d1;
  --rose: #e6b8c4;
  --sage: #b7cbb8;
  --dusk: #5a6b85;
  --fog: #93a5c1;
  --paper: #ffffff;
  --copy: #5a6b85;
  --line: rgba(11, 21, 38, 0.1);
  --shadow: 0 16px 44px -18px rgba(11, 21, 38, 0.22);
  --shadow-soft: 0 24px 70px -28px rgba(11, 21, 38, 0.25);
  --page: min(1160px, calc(100% - 48px));
  color: var(--ink);
  background: var(--cloud);
  font-family: "Manrope", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cloud);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

::selection {
  background: var(--glacier);
  color: var(--paper);
}

/* Subtle grain overlay shared with the product pages */
body::after {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.028;
  pointer-events: none;
  content: "";
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cloud);
}

::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: #c6d3e8;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--fog);
}

.accent {
  color: var(--cobalt);
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}

html[lang="zh-CN"] .accent {
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3 {
  letter-spacing: 0;
}

html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .hero-carousel__eyebrow,
html[lang="zh-CN"] .product-card__index {
  letter-spacing: 0.18em;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--cloud) 74%, transparent);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header[data-scrolled="true"] {
  border-color: var(--line);
  background: color-mix(in srgb, var(--cloud) 92%, transparent);
}

.nav-shell,
.footer-shell,
.section-shell,
.hero__inner {
  width: var(--page);
  margin-inline: auto;
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.wordmark__logo {
  width: clamp(7.8rem, 10vw, 9.2rem);
  height: auto;
  object-fit: contain;
}

.wordmark__logo--white {
  width: clamp(8.7rem, 12vw, 10.4rem);
}

.desktop-nav,
.nav-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: clamp(1rem, 2vw, 2rem);
}

.desktop-nav a {
  position: relative;
  padding-block: 0.2rem;
  color: var(--copy);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
  content: "";
  transition: transform 280ms ease;
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  gap: 0.7rem;
}

.language-switch {
  gap: 0.15rem;
  padding: 0.22rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.language-switch button,
.menu-toggle {
  border: 0;
  cursor: pointer;
}

.language-switch button {
  min-width: 2.45rem;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  color: var(--copy);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-switch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 2px 9px rgba(11, 23, 44, 0.1);
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle__lines::before {
  top: -0.34rem;
}

.menu-toggle__lines::after {
  top: 0.34rem;
}

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

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
  transform: translateY(0.34rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
  transform: translateY(-0.34rem) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cloud);
}

.mobile-menu:not([hidden]) {
  display: block;
}

.mobile-menu__inner {
  display: grid;
  width: var(--page);
  margin-inline: auto;
  padding: 1rem 0 1.5rem;
  gap: 0.2rem;
}

.mobile-menu a {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(11, 23, 44, 0.07);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

main {
  display: block;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(560px, 43vw, 760px);
  color: var(--paper);
  background: #101b2d;
}

.hero-carousel__track,
.hero-carousel__slide {
  position: absolute;
  inset: 0;
}

.hero-carousel__slide {
  z-index: 0;
  visibility: hidden;
  opacity: 0;
}

.hero-carousel__slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.hero-carousel__media {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1);
}

.hero-carousel__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 14, 29, 0.55) 0%, transparent 26%),
    linear-gradient(90deg, rgba(5, 14, 29, 0.78) 0%, rgba(5, 14, 29, 0.36) 36%, transparent 64%);
}

.hero-carousel__slide[data-copy-side="right"] .hero-carousel__shade {
  background:
    linear-gradient(0deg, rgba(5, 14, 29, 0.55) 0%, transparent 26%),
    linear-gradient(270deg, rgba(5, 14, 29, 0.8) 0%, rgba(5, 14, 29, 0.38) 36%, transparent 64%);
}

.hero-carousel__content {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  display: flex;
  width: min(40vw, 34rem);
  flex-direction: column;
  justify-content: center;
  padding-bottom: 3.5rem;
  text-shadow: 0 2px 22px rgba(3, 12, 27, 0.32);
}

.hero-carousel__content--left {
  left: max(24px, calc((100vw - 1160px) / 2));
}

.hero-carousel__content--right {
  right: max(24px, calc((100vw - 1160px) / 2));
}

.hero-carousel__eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: var(--cobalt);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-carousel__eyebrow::before,
.eyebrow::before {
  width: 2rem;
  height: 2px;
  flex-shrink: 0;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.hero-carousel__eyebrow {
  color: #b9e1f8;
  text-shadow: 0 1px 12px rgba(2, 12, 27, 0.5);
}

.hero-carousel__slide .hero-carousel__eyebrow,
.hero-carousel__slide h1,
.hero-carousel__slide h2,
.hero-carousel__slide .hero-carousel__lede {
  opacity: 1;
  transform: none;
}

.hero h1,
.hero h2,
.section-heading h2,
.story__copy h2 {
  margin: 0;
  letter-spacing: -0.06em;
}

.hero h1,
.hero h2 {
  max-width: 10.5em;
  margin-top: 1rem;
  font-size: clamp(3rem, 5.25vw, 5.55rem);
  line-height: 0.96;
}

.hero-carousel__lede {
  max-width: 30rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.7;
}

.hero-carousel__cta {
  display: inline-flex;
  width: fit-content;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.85rem;
  padding: 0.85rem 1.85rem;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cloud);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-shadow: none;
  box-shadow: 0 18px 44px -16px rgba(0, 0, 0, 0.45);
  opacity: 1;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-carousel__cta::after {
  margin-left: 0.5rem;
  content: "→";
}

.hero-carousel__cta:hover {
  background: var(--paper);
  box-shadow: 0 20px 50px -14px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-carousel__chrome {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 1.2rem;
  left: 0;
  display: flex;
  width: var(--page);
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  pointer-events: none;
}

.hero-carousel__controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  pointer-events: auto;
}

.hero-carousel__control {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  text-shadow: 0 1px 10px rgba(3, 12, 27, 0.5);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease, opacity 240ms ease;
}

.hero-carousel__control:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.hero-carousel__control svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

/* The pause/play toggle stays hidden until the hero is hovered, focused or paused */
.hero-carousel__toggle {
  opacity: 0;
}

.hero:hover .hero-carousel__toggle,
.hero-carousel__toggle:focus-visible,
.hero-carousel__toggle.is-paused {
  opacity: 1;
}

.hero-carousel__toggle svg {
  fill: currentColor;
}

.hero-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  padding-inline: 0.25rem;
}

.hero-carousel__dot {
  position: relative;
  width: 2rem;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-carousel__dot::after {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  left: 0.35rem;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  transition: background 160ms ease, transform 160ms ease;
}

.hero-carousel__dot:hover::after {
  background: rgba(255, 255, 255, 0.6);
}

.hero-carousel__dot.is-active::after {
  background: var(--paper);
  transform: scaleY(2);
}

.hero-carousel__status {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 10px rgba(3, 12, 27, 0.5);
  pointer-events: auto;
}

.collection,
.moments,
.story {
  padding-block: clamp(4.6rem, 9vw, 8rem);
}

.collection {
  background: var(--cloud);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(17rem, 0.55fr);
  align-items: end;
  gap: 1.5rem 4rem;
}

.section-heading h2,
.story__copy h2 {
  margin-top: 0.8rem;
  font-size: clamp(2.15rem, 4.1vw, 4rem);
  line-height: 1;
}

.section-heading > p:last-child,
.story__copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--copy);
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.7rem);
  margin-top: clamp(2.4rem, 5vw, 4.5rem);
}

.product-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid rgba(11, 21, 38, 0.06);
  border-radius: 1.75rem;
  background: var(--paper);
  box-shadow: 0 2px 12px rgba(11, 21, 38, 0.04);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px -18px rgba(11, 21, 38, 0.22);
}

.product-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}

.product-card__visual::after {
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  content: "↗";
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.product-card:hover .product-card__visual::after {
  transform: translate(2px, -2px);
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover .product-card__visual img {
  transform: scale(1.025);
}

.product-card__body {
  display: grid;
  min-height: 18.25rem;
  padding: 1.35rem;
}

.product-card__index {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--cobalt);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card__index::before {
  width: 1.4rem;
  height: 2px;
  flex-shrink: 0;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.product-card h3 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.product-card__description {
  min-height: 3.2em;
  margin: 0.75rem 0 0;
  color: var(--copy);
  font-size: 0.86rem;
  line-height: 1.55;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  align-self: end;
  gap: 0.38rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.product-features li {
  padding: 0.36rem 0.6rem;
  border: 1px solid rgba(11, 21, 38, 0.08);
  border-radius: 999px;
  color: var(--dusk);
  background: var(--cloud);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.25;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  align-self: end;
  width: fit-content;
  margin-top: 1.15rem;
  padding: 0.62rem 1.2rem;
  border: 1.5px solid rgba(11, 21, 38, 0.16);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.product-card__link::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "→";
  transition: transform 250ms ease;
}

.product-card__link:hover {
  border-color: var(--ink);
  color: var(--cloud);
  background: var(--ink);
  box-shadow: 0 12px 28px -14px rgba(11, 21, 38, 0.55);
}

.product-card__link:hover::after {
  transform: translateX(3px);
}

.product-card__link:focus-visible {
  outline: 3px solid var(--glacier);
  outline-offset: 3px;
}

.moments {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background-color: var(--ink);
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 25% 45%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 40% 8%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 55% 30%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 70% 55%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 85% 25%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 15% 70%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 60% 80%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 90% 70%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(46rem 24rem at 88% -12%, rgba(61, 62, 142, 0.42), transparent 60%),
    linear-gradient(180deg, #0b1526 0%, #0f1c32 45%, #0b1526 100%);
}

.moments::before {
  position: absolute;
  top: -16rem;
  right: -9rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(98, 181, 228, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 3.75rem rgba(98, 181, 228, 0.05), 0 0 0 7.5rem rgba(98, 181, 228, 0.03);
  content: "";
}

.moments .section-heading {
  position: relative;
  z-index: 1;
}

.moments .eyebrow {
  color: var(--glacier);
}

.moments .accent {
  color: var(--glacier);
}

.moments .section-heading > p:last-child {
  color: #b9c8dc;
}

.moment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(2.3rem, 4vw, 4rem);
}

.moment-card {
  overflow: hidden;
  border: 1px solid rgba(246, 248, 251, 0.08);
  border-radius: 1.75rem;
  background: rgba(246, 248, 251, 0.03);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: transform 350ms ease, background 350ms ease, box-shadow 350ms ease;
}

.moment-card:hover {
  transform: translateY(-8px);
  background: rgba(246, 248, 251, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.moment-card__link {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.moment-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(246, 248, 251, 0.05);
}

.moment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.moment-card[data-moment-product="omnicradle-3"] .moment-card__media img {
  object-position: 68% center;
}

.moment-card[data-moment-product="travel-neck-pillow"] .moment-card__media img {
  object-position: 50% 42%;
}

.moment-card:hover .moment-card__media img {
  transform: scale(1.05);
}

.moment-card__body {
  position: relative;
  min-height: 16.5rem;
  padding: 1.5rem 1.55rem 1.8rem;
}

.moment-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.moment-card__mark {
  display: inline-block;
  min-width: 3.45rem;
  padding: 0 0.12em 0.08em 0;
  color: transparent;
  background: linear-gradient(145deg, #ffffff 5%, #b9e5fa 46%, var(--glacier) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 8px 16px rgba(1, 12, 29, 0.28));
  font-family: "Fraunces", "Noto Serif SC", Georgia, serif;
  font-size: clamp(2.55rem, 4vw, 3.35rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.82;
}

.moment-card__product {
  max-width: calc(100% - 3.5rem);
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(246, 248, 251, 0.12);
  border-radius: 999px;
  color: #d7e6f4;
  background: rgba(246, 248, 251, 0.05);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 1.25;
  text-align: right;
}

.moment-card h3 {
  margin: 1.25rem 0 0;
  font-size: 1.27rem;
  letter-spacing: -0.04em;
}

.moment-card p {
  max-width: calc(100% - 2.2rem);
  margin: 0.65rem 0 0;
  color: #c5d2e3;
  font-size: 0.88rem;
  line-height: 1.65;
}

.moment-card__cta {
  position: absolute;
  right: 1.45rem;
  bottom: 1.35rem;
  color: var(--glacier);
  font-size: 1.15rem;
  transition: transform 220ms ease, color 220ms ease;
}

.moment-card:hover .moment-card__cta {
  color: var(--paper);
  transform: translate(0.18rem, -0.18rem);
}

.story {
  background: linear-gradient(180deg, #f5f8fb 0%, #ebf1f7 100%);
}

.story__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(15rem, 0.76fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
}

.story__copy h2 {
  max-width: 32rem;
}

.story__copy > p:not(.eyebrow) {
  max-width: 33rem;
  margin-top: 1.45rem;
}

.story__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.story__chips li {
  padding: 0.5rem 1.05rem;
  border: 1px solid rgba(11, 21, 38, 0.12);
  border-radius: 999px;
  color: var(--dusk);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(11, 21, 38, 0.04);
}

.story__fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 2rem;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 12%, rgba(98, 181, 228, 0.3), transparent 34%),
    radial-gradient(30rem 16rem at 90% -20%, rgba(61, 62, 142, 0.5), transparent 62%),
    linear-gradient(150deg, #14264b 0%, #0b1526 70%);
  box-shadow: var(--shadow-soft);
}

.story__fact .story__stat:last-child {
  grid-column: 1 / -1;
}

.story__stat {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(246, 248, 251, 0.1);
  border-radius: 1.3rem;
  background: rgba(246, 248, 251, 0.03);
  transition: border-color 250ms ease, background 250ms ease;
}

.story__stat:hover {
  border-color: rgba(246, 248, 251, 0.22);
  background: rgba(246, 248, 251, 0.06);
}

.story__stat strong {
  color: var(--paper);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.story__stat span {
  color: var(--fog);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}

.research-showcase {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2.6rem, 6vw, 5.4rem);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border-radius: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--paper);
  background:
    radial-gradient(46rem 30rem at 94% -8%, rgba(98, 181, 228, 0.26), transparent 62%),
    radial-gradient(34rem 22rem at 8% 110%, rgba(57, 64, 146, 0.32), transparent 70%),
    linear-gradient(145deg, #14264b 0%, #091425 72%);
  box-shadow: 0 32px 80px -50px rgba(5, 15, 31, 0.74);
}

.research-showcase__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(17rem, 0.55fr);
  align-items: end;
  gap: 1.3rem clamp(2rem, 7vw, 6rem);
  padding: clamp(0.45rem, 1vw, 0.8rem) clamp(0.2rem, 1vw, 0.8rem) clamp(1.8rem, 4vw, 3.2rem);
}

.research-showcase__heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -0.35rem;
  color: var(--glacier);
}

.research-showcase__heading h3,
.brand-proof__heading h3,
.brand-mission h3 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.research-showcase__heading h3 {
  max-width: 12em;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.research-showcase__heading > p:last-child {
  margin: 0;
  color: #bdcadb;
  font-size: 0.95rem;
  line-height: 1.75;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
}

.research-card {
  position: relative;
  display: grid;
  grid-column: span 5;
  min-height: clamp(18rem, 27vw, 26rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(1.25rem, 2vw, 1.8rem);
  background: #10213d;
  box-shadow: 0 24px 54px -40px rgba(0, 0, 0, 0.82);
}

.research-card--feature,
.research-card--institution {
  grid-column: span 7;
}

.research-card__photo,
.research-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.research-card__photo {
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.research-card__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 13, 28, 0.04) 22%, rgba(5, 13, 28, 0.94) 100%),
    linear-gradient(90deg, rgba(5, 13, 28, 0.5), transparent 64%);
}

.research-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 0.85rem;
  padding: clamp(1.3rem, 2.5vw, 2.2rem);
}

.research-card__mark {
  width: auto;
  max-width: min(44%, 8rem);
  max-height: 5rem;
  object-fit: contain;
  object-position: left center;
}

.research-card__mark--wide {
  max-width: min(82%, 27rem);
  max-height: 5.5rem;
}

.research-card__mark--white {
  filter: drop-shadow(0 2px 12px rgba(3, 10, 22, 0.34));
}

.research-card__content > p,
.research-card__content--institution p {
  margin: 0;
  color: #c4d2e4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.research-card:hover .research-card__photo {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}

.research-card--institution {
  background:
    radial-gradient(circle at 78% 12%, rgba(98, 181, 228, 0.28), transparent 34%),
    linear-gradient(150deg, #172e58 0%, #0a1629 72%);
}

.research-card__orbit {
  position: absolute;
  z-index: 0;
  top: -34%;
  right: -10%;
  width: min(32rem, 72%);
  aspect-ratio: 1;
  border: 1px solid rgba(127, 205, 242, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 3.8rem rgba(98, 181, 228, 0.04), 0 0 0 8rem rgba(98, 181, 228, 0.025);
}

.research-card__content--institution {
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.research-card__mark--society {
  --society-mark-size: clamp(6.6rem, 12vw, 9.5rem);
  width: var(--society-mark-size);
  height: var(--society-mark-size);
  aspect-ratio: 1;
  max-width: none;
  max-height: none;
  padding: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px -22px rgba(0, 0, 0, 0.74);
  object-fit: cover;
  object-position: left center;
}

.research-card__content--institution h4 {
  max-width: 15em;
  margin: 0 0 0.65rem;
  color: var(--paper);
  font-size: clamp(1.45rem, 2.8vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.brand-proof {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  margin-top: clamp(1rem, 2vw, 1.4rem);
}

.brand-proof__panel {
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2.3rem);
  border: 1px solid rgba(11, 21, 38, 0.08);
  border-radius: clamp(1.45rem, 2.4vw, 2rem);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 58px -44px rgba(11, 21, 38, 0.5);
}

.brand-proof__panel--awards {
  background:
    radial-gradient(circle at 100% 0%, rgba(98, 181, 228, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.92);
}

.brand-proof__heading .eyebrow {
  margin: 0;
}

.brand-proof__heading h3 {
  max-width: 17em;
  margin-top: 0.8rem;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
}

.brand-proof__heading > p:last-child {
  max-width: 40rem;
  margin: 0.85rem 0 0;
  color: var(--copy);
  font-size: 0.84rem;
  line-height: 1.65;
}

.source-mark-list {
  display: grid;
  gap: 0.65rem;
  margin: clamp(1.25rem, 2.5vw, 2rem) 0 0;
  padding: 0;
  list-style: none;
}

.source-mark-list--awards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.source-mark-list--materials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.source-mark-list li {
  display: grid;
  min-width: 0;
  min-height: 8.7rem;
  align-content: center;
  justify-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.65rem;
  border: 1px solid rgba(11, 21, 38, 0.08);
  border-radius: 1rem;
  background: #fff;
  text-align: center;
}

.source-mark-list img {
  width: auto;
  height: 3.5rem;
  max-width: min(100%, 9.5rem);
  object-fit: contain;
}

.source-mark-list--awards img {
  height: 4.8rem;
  max-width: min(100%, 10.5rem);
}

.source-mark-list span {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.35;
}

.brand-proof__note {
  grid-column: 1 / -1;
  margin: 0;
  padding-inline: 0.4rem;
  color: #66758a;
  font-size: 0.7rem;
  line-height: 1.6;
}

.brand-mission {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(17rem, 0.58fr);
  align-items: end;
  gap: 1.2rem clamp(2rem, 7vw, 6rem);
  margin-top: clamp(1.7rem, 4vw, 3rem);
  padding: clamp(1.7rem, 4vw, 3.5rem);
  overflow: hidden;
  border-radius: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--paper);
  background:
    radial-gradient(32rem 18rem at 92% -15%, rgba(98, 181, 228, 0.28), transparent 68%),
    linear-gradient(145deg, #13284e 0%, #091525 76%);
}

.brand-mission .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -0.25rem;
  color: var(--glacier);
}

.brand-mission h3 {
  max-width: 13em;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.brand-mission > p:last-child {
  margin: 0;
  color: #bdcadb;
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer {
  position: relative;
  padding-block: clamp(3rem, 6vw, 4.6rem) 1.8rem;
  color: var(--fog);
  background: var(--ink);
}

.footer::before {
  position: absolute;
  top: 0;
  right: 5%;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 181, 228, 0.25), rgba(98, 181, 228, 0.42), rgba(98, 181, 228, 0.25), transparent);
  content: "";
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer__brand .wordmark {
  color: var(--paper);
}

.footer__blurb {
  max-width: 21rem;
  margin: 1.1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer__title {
  margin: 0;
  color: var(--cloud);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer__title--spaced {
  margin-top: 1.7rem;
}

.footer__products,
.footer__explore {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer__products a,
.footer__explore a {
  width: fit-content;
  color: var(--fog);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer__products a:hover,
.footer__explore a:hover {
  color: var(--paper);
}

.footer__contact-line {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(246, 248, 251, 0.1);
}

.footer__meta,
.footer__legal-note {
  margin: 0;
  color: #7d8fb0;
  font-size: 0.72rem;
  line-height: 1.5;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 860px) {
  :root {
    --page: min(100% - 32px, 1160px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: clamp(650px, calc(100svh - 68px), 760px);
  }

  .story__layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .research-showcase__heading,
  .brand-mission,
  .brand-proof {
    grid-template-columns: 1fr;
  }

  .research-showcase__heading .eyebrow,
  .brand-mission .eyebrow {
    grid-column: auto;
  }

  .research-grid {
    grid-template-columns: 1fr;
  }

  .research-card,
  .research-card--feature,
  .research-card--institution {
    grid-column: auto;
    min-height: clamp(20rem, 68vw, 29rem);
  }

  .hero-carousel__shade,
  .hero-carousel__slide[data-copy-side="right"] .hero-carousel__shade {
    background: linear-gradient(0deg, rgba(5, 14, 29, 0.94) 0%, rgba(5, 14, 29, 0.64) 38%, rgba(5, 14, 29, 0.04) 75%);
  }

  .hero-carousel__media {
    object-position: center center;
  }

  .hero-carousel__slide[data-copy-side="left"] .hero-carousel__media {
    object-position: 80% center;
  }

  .hero-carousel__slide[data-copy-side="right"] .hero-carousel__media {
    object-position: 20% center;
  }

  .hero-carousel__content,
  .hero-carousel__content--left,
  .hero-carousel__content--right {
    top: auto;
    right: 20px;
    bottom: 5.9rem;
    left: 20px;
    width: auto;
    max-width: 34rem;
    padding-bottom: 0;
  }

  .hero h1,
  .hero h2 {
    max-width: 12em;
    font-size: clamp(2.55rem, 10vw, 4.35rem);
  }

  .hero-carousel__lede {
    max-width: 31rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-carousel__chrome {
    bottom: 0.8rem;
  }

  .hero-carousel__status {
    display: none;
  }

  /* Touch devices have no hover: keep the pause toggle reachable */
  .hero-carousel__toggle {
    opacity: 1;
  }

  .product-card {
    grid-column: span 6;
  }

  .moment-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .nav-shell {
    min-height: 68px;
  }

  .wordmark__logo {
    width: 7.5rem;
  }

  .wordmark__logo--white {
    width: 9rem;
  }

  .nav-actions .language-switch {
    display: none;
  }

  .mobile-menu .language-switch {
    display: inline-flex;
    width: fit-content;
    margin-top: 1rem;
  }

  .hero {
    min-height: clamp(620px, calc(100svh - 68px), 720px);
  }

  .hero-carousel__content,
  .hero-carousel__content--left,
  .hero-carousel__content--right {
    bottom: 5.5rem;
  }

  .hero-carousel__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }

  .hero h1,
  .hero h2 {
    margin-top: 0.72rem;
    font-size: clamp(2.35rem, 11.5vw, 3.45rem);
  }

  .hero-carousel__lede {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0.85rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-carousel__cta {
    min-height: 2.85rem;
    margin-top: 1.05rem;
  }

  .hero-carousel__chrome {
    justify-content: center;
  }

  .hero-carousel__control {
    min-width: 44px;
    min-height: 44px;
  }

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

  .product-card {
    grid-column: auto;
  }

  .product-card__body {
    min-height: 17.5rem;
  }

  .story__fact {
    gap: 0.7rem;
  }

  .research-showcase {
    padding: 0.85rem;
  }

  .research-showcase__heading {
    padding: 0.6rem 0.45rem 1.6rem;
  }

  .research-card,
  .research-card--feature,
  .research-card--institution {
    min-height: 20rem;
  }

  .research-card__content--institution {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .research-card__mark--society {
    --society-mark-size: 6.4rem;
  }

  .brand-proof__panel,
  .brand-mission {
    padding: 1.35rem;
  }

  .source-mark-list--materials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-mark-list li {
    min-height: 7.8rem;
  }

  .source-mark-list img {
    height: 3rem;
  }

  .moment-card__body {
    min-height: 14.5rem;
  }

  .moment-card__product {
    font-size: 0.62rem;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-carousel__slide .hero-carousel__eyebrow,
  .hero-carousel__slide h1,
  .hero-carousel__slide h2,
  .hero-carousel__slide .hero-carousel__lede,
  .hero-carousel__slide .hero-carousel__cta {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }

  .hero-carousel__media,
  .hero-carousel__slide.is-active .hero-carousel__media {
    transform: none;
    transition: none;
  }
}
