@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Variable.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("/assets/fonts/BeVietnamPro-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

:root {
  --navy-950: #061426;
  --navy-900: #0a1d36;
  --navy-800: #102a49;
  --blue: #0a58d0;
  --blue-light: #2377f3;
  --ink: #10151b;
  --charcoal: #20262d;
  --steel: #66717c;
  --mist: #e1e7ed;
  --warm-white: #f8f7f4;
  --off-white: #f3f6f8;
  --white: #fff;
  --shadow-sm: 0 10px 32px rgba(6, 20, 38, 0.07);
  --shadow-md: 0 24px 65px rgba(6, 20, 38, 0.12);
  --shadow-dark: 0 30px 80px rgba(2, 9, 18, 0.28);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --content: 1200px;
  --wide: 1320px;
  --ease: cubic-bezier(.2, .72, .2, 1);
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3,
h4,
.eyebrow,
.btn,
.nav-link,
.stat strong,
.price,
.footer-title {
  font-family: "Montserrat", sans-serif;
}

h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  font-weight: 720;
  letter-spacing: -.055em;
  line-height: 1.02;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 4vw, 3.45rem);
  font-weight: 690;
  letter-spacing: -.045em;
  line-height: 1.08;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.3;
}

p {
  color: var(--steel);
}

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

.skip-link:focus {
  transform: none;
}

.container,
.container-wide {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.container-wide {
  width: min(calc(100% - 48px), var(--wide));
}

.section {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0;
  overflow: clip;
}

.section-sm {
  padding: clamp(60px, 7vw, 90px) 0;
}

.surface {
  background: var(--off-white);
}

.warm {
  background: var(--warm-white);
}

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

.dark p {
  color: #b8c4d0;
}

.product-buy-banner {
  min-height: 570px;
  display: flex;
  align-items: center;
}

.product-buy-banner::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 20, 38, .94) 5%, rgba(6, 20, 38, .72) 55%, rgba(6, 20, 38, .4));
  content: "";
}

.product-buy-banner-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.product-buy-banner .container {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 680;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.dark .eyebrow {
  color: #78adff;
}

.lead {
  max-width: 660px;
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.accent {
  color: var(--blue);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 720;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(10, 88, 208, .2);
  color: var(--white);
}

.btn-primary:hover {
  background: #084caf;
  box-shadow: 0 15px 34px rgba(10, 88, 208, .27);
}

.btn-secondary {
  border-color: #cfd7df;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: #aebbc7;
  background: var(--white);
}

.btn-dark {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.btn-icon {
  width: 16px;
  transition: transform 220ms var(--ease);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 86px;
  border-bottom: 0;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  transition: height 250ms var(--ease), box-shadow 250ms var(--ease), background 250ms var(--ease);
}

.site-header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 30px rgba(6, 20, 38, .07);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 48px), var(--wide));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: flex;
  width: 124px;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(62px, 4.8vw, 70px);
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.nav-wrap,
.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: clamp(18px, 2.3vw, 34px);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  color: #4e5964;
  cursor: pointer;
  font-size: .71rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.active,
.nav-item:hover > .nav-link {
  color: var(--blue);
}

.chevron {
  width: 11px;
  transition: transform 200ms var(--ease);
}

.nav-item:hover .chevron,
.nav-item:focus-within .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -22px;
  width: 280px;
  padding: 10px;
  border: 1px solid var(--mist);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 190ms ease, transform 190ms var(--ease), visibility 190ms;
  visibility: hidden;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 11px;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: .76rem;
  font-weight: 620;
  line-height: 1.4;
}

.dropdown a:hover {
  background: var(--off-white);
  color: var(--blue);
}

.dropdown-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.account-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: #4e5964;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: .71rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.account-link:hover { color: var(--blue); }
.account-icon { width: 21px; height: 21px; line-height: 1; }
.account-area { position: relative; margin-left: clamp(18px, 2.3vw, 34px); }
.account-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 1px solid var(--mist); }
.account-icon-wrap { display: inline-flex; }
.account-dropdown { position: absolute; top: calc(100% + 8px); right: 0; z-index: 20; width: 190px; padding: 8px; border: 1px solid var(--mist); border-radius: 14px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-md); }
.account-dropdown a, .account-dropdown button { display: block; width: 100%; padding: 11px 12px; border: 0; border-radius: 9px; background: transparent; color: var(--ink); text-align: left; font: 600 .76rem "Montserrat", sans-serif; cursor: pointer; }
.account-dropdown a:hover, .account-dropdown button:hover { background: var(--off-white); color: var(--blue); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mist);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 220ms var(--ease), opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before { top: -6px; }
.menu-lines::after { top: 6px; }

.menu-open .menu-lines { background: transparent; }
.menu-open .menu-lines::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-lines::after { top: 0; transform: rotate(-45deg); }

.mobile-panel {
  display: none;
}

/* Images and cards */
.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 21, 27, .09);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  box-shadow: var(--shadow-sm);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.image-frame.contain img {
  object-fit: contain;
}

.image-frame:hover img {
  transform: scale(1.018);
}

.card {
  border: 1px solid var(--mist);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(6, 20, 38, .04);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), border-color 250ms ease;
}

.card:hover {
  border-color: #cfdae4;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #d8e0e7;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #43505d;
  font-family: "Montserrat", sans-serif;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Home */
.hero {
  position: relative;
  display: flex;
  min-height: min(900px, calc(100vh + 20px));
  align-items: center;
  padding: 154px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 26%, rgba(40, 103, 181, .2), transparent 28%),
    radial-gradient(circle at 16% 74%, rgba(19, 74, 139, .13), transparent 30%),
    linear-gradient(118deg, #05090e 0%, #09121d 48%, #0c1b2c 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(114, 164, 225, .09);
  border-radius: 50%;
  content: "";
  inset: 8% auto auto 41%;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(1, 5, 10, .42));
  content: "";
  pointer-events: none;
}

.hero-light {
  position: absolute;
  top: 0;
  width: 1px;
  height: 76%;
  background: linear-gradient(180deg, rgba(142, 183, 232, 0), rgba(142, 183, 232, .38) 35%, rgba(142, 183, 232, 0));
  box-shadow: 0 0 28px rgba(95, 154, 226, .28);
  opacity: .72;
}

.hero-light-left {
  left: 7%;
}

.hero-light-right {
  right: 4%;
  height: 63%;
  opacity: .48;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 6.5vw, 94px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.hero-copy .lead {
  max-width: 610px;
  margin-bottom: 0;
  color: #bcc8d5;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.hero .eyebrow {
  margin-bottom: 26px;
  color: #77adf2;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
}

.hero-product-name,
.hero-tagline {
  display: block;
}

.hero-product-name {
  margin-bottom: 18px;
  color: #f7f9fc;
  font-size: clamp(3.35rem, 6vw, 5.9rem);
  font-weight: 760;
  letter-spacing: -.07em;
  line-height: .92;
}

.hero-tagline {
  color: #eaf1f8;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 610;
  letter-spacing: -.05em;
  line-height: 1.07;
}

.hero-tagline::after {
  display: block;
  width: min(330px, 62%);
  height: 2px;
  margin-top: 27px;
  background: linear-gradient(90deg, rgba(53, 127, 227, 0), #4b9bff 50%, rgba(53, 127, 227, 0));
  box-shadow: 0 0 12px rgba(65, 145, 255, .7);
  content: "";
}

.hero-facts {
  display: grid;
  max-width: 600px;
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-facts > div {
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.hero-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: .92rem;
  font-weight: 680;
  letter-spacing: .01em;
}

.hero-facts span {
  margin-top: 3px;
  color: #8494a5;
  font-size: .72rem;
}

.hero .btn-row {
  margin-top: 38px;
}

.hero-buy-button {
  min-width: 178px;
  box-shadow: 0 15px 38px rgba(10, 88, 208, .34);
}

.hero-visual {
  position: relative;
  min-height: 680px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  right: 9%;
  bottom: 5%;
  width: 74%;
  height: 10%;
  border-radius: 50%;
  background: rgba(0, 3, 8, .72);
  filter: blur(23px);
  content: "";
  opacity: .82;
}

.hero-visual::after {
  position: absolute;
  z-index: 0;
  right: 8%;
  bottom: 7.5%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(113, 175, 244, .45), transparent);
  box-shadow: 0 0 20px rgba(56, 139, 237, .34);
  content: "";
}

.hero-tech-field {
  position: absolute;
  z-index: -1;
  inset: 2% -3% 2% 2%;
  pointer-events: none;
}

.hero-tech-glow {
  position: absolute;
  inset: 14% 8% 11% 11%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 48%, rgba(75, 151, 239, .23), rgba(23, 87, 164, .1) 38%, transparent 69%);
  filter: blur(5px);
  animation: hero-glow-pulse 7s ease-in-out infinite;
}

.hero-tech-grid {
  position: absolute;
  right: 1%;
  bottom: 8%;
  width: 92%;
  height: 48%;
  background-image:
    linear-gradient(rgba(109, 164, 225, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 164, 225, .11) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .8) 35%, transparent 94%);
  opacity: .32;
  transform: perspective(520px) rotateX(66deg) scaleX(1.08);
  transform-origin: center bottom;
}

.hero-light-arc {
  position: absolute;
  inset: 10% 3% 7% 7%;
  border: 1px solid transparent;
  border-top-color: rgba(133, 191, 255, .27);
  border-right-color: rgba(93, 157, 231, .12);
  border-radius: 50%;
  filter: drop-shadow(0 0 8px rgba(70, 143, 231, .22));
  transform: rotate(-18deg);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(119, 175, 239, .18);
  border-radius: 50%;
}

.hero-orbit-outer {
  inset: 9% 3% 6% 7%;
  animation: hero-orbit-spin 30s linear infinite;
}

.hero-orbit-inner {
  inset: 20% 14% 17% 18%;
  border-color: rgba(122, 183, 249, .12);
  transform: rotate(23deg);
  animation: hero-orbit-spin-reverse 38s linear infinite;
}

.hero-orbit-outer::before,
.hero-orbit-inner::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #79b9ff;
  box-shadow: 0 0 13px rgba(105, 175, 255, .9);
  content: "";
}

.hero-orbit-outer::before {
  top: 20%;
  right: 8%;
}

.hero-orbit-inner::after {
  bottom: 10%;
  left: 18%;
  opacity: .65;
}

.hero-orbit-dot {
  position: absolute;
  top: 18%;
  left: 14%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(177, 216, 255, .8);
  box-shadow:
    52px 31px 0 rgba(177, 216, 255, .25),
    438px 82px 0 rgba(177, 216, 255, .35),
    472px 365px 0 rgba(177, 216, 255, .25),
    76px 420px 0 rgba(177, 216, 255, .18);
}

.hero-ingredient-system {
  position: absolute;
  z-index: 1;
  inset: 4% 1% 7% 3%;
  pointer-events: none;
}

.hero-ingredient-halo {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(106, 175, 255, .12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 44px rgba(42, 112, 199, .06),
    0 0 54px rgba(31, 100, 187, .07);
  animation: hero-ingredient-halo 8s ease-in-out infinite;
}

.hero-ingredient-track {
  --angle: 0deg;
  --counter-angle: 0deg;
  --ingredient-crop-y: 22.2%;
  --ingredient-accent: 135, 190, 255;
  --pulse-delay: 0s;
  position: absolute;
  inset: 6%;
  transform-origin: center;
  transform: rotate(var(--angle));
  animation: hero-ingredient-orbit 24s linear infinite;
  will-change: transform;
}

.hero-ingredient-chip {
  position: absolute;
  top: -39px;
  left: 50%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(var(--ingredient-accent), .42);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(var(--ingredient-accent), .2), rgba(5, 15, 27, .84) 72%);
  box-shadow:
    0 15px 34px rgba(0, 4, 12, .38),
    0 0 28px rgba(var(--ingredient-accent), .2);
  backdrop-filter: blur(8px);
  transform: translateX(-50%) rotate(var(--counter-angle));
  transform-origin: center;
  animation: hero-ingredient-counter-orbit 24s linear infinite;
  will-change: transform;
}

.hero-ingredient-chip::before {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(var(--ingredient-accent), .2);
  border-radius: 50%;
  content: "";
}

.hero-ingredient-art {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(var(--ingredient-accent), .74);
  border-radius: 50%;
  background-color: #fff;
  background-image: url("/assets/images/zmez-product-ingredients.png");
  background-position: 59.6% var(--ingredient-crop-y);
  background-repeat: no-repeat;
  background-size: 748% auto;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, .72),
    0 0 20px rgba(var(--ingredient-accent), .24);
  animation: hero-ingredient-breathe 2.8s ease-in-out var(--pulse-delay) infinite;
}

.hero-ingredient-track-bha {
  --angle: -55deg;
  --counter-angle: 55deg;
}

.hero-ingredient-track-niacinamide {
  --angle: 45deg;
  --counter-angle: -45deg;
  --ingredient-crop-y: 36%;
  --ingredient-accent: 246, 184, 47;
  --pulse-delay: -.55s;
}

.hero-ingredient-track-honey {
  --angle: 120deg;
  --counter-angle: -120deg;
  --ingredient-crop-y: 49.8%;
  --ingredient-accent: 255, 166, 36;
  --pulse-delay: -1.1s;
}

.hero-ingredient-track-decyl {
  --angle: 225deg;
  --counter-angle: -225deg;
  --ingredient-crop-y: 63.6%;
  --ingredient-accent: 87, 190, 111;
  --pulse-delay: -1.65s;
}

.hero-ingredient-track-glycerin {
  --angle: 290deg;
  --counter-angle: -290deg;
  --ingredient-crop-y: 77.3%;
  --ingredient-accent: 105, 186, 238;
  --pulse-delay: -2.2s;
}

.hero-product-stage {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.hero-product-stage::before {
  position: absolute;
  z-index: 0;
  right: 18%;
  bottom: 8%;
  width: 64%;
  height: 12%;
  border: 1px solid rgba(106, 175, 255, .2);
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(62, 140, 232, .18), rgba(18, 67, 126, .06) 48%, transparent 72%);
  box-shadow:
    inset 0 0 25px rgba(80, 157, 244, .09),
    0 0 32px rgba(44, 118, 210, .09);
  content: "";
  animation: hero-stage-pulse 6.5s ease-in-out infinite;
}

.hero-product-stage::after {
  position: absolute;
  z-index: 0;
  top: 9%;
  right: 25%;
  bottom: 9%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(78, 153, 239, .08), transparent);
  content: "";
  filter: blur(20px);
  opacity: .75;
  transform: perspective(500px) rotateY(-8deg);
}

.hero-product-float {
  position: absolute;
  z-index: 2;
  inset: 2% -1% 8% 1%;
  display: grid;
  place-items: center;
  animation: hero-product-float 6.5s ease-in-out infinite;
}

.hero-product-image {
  width: min(100%, 690px);
  max-height: 665px;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 30px rgba(0, 3, 9, .52))
    drop-shadow(0 0 38px rgba(40, 105, 183, .18));
}

.hero-product-float::after {
  position: absolute;
  top: 13%;
  bottom: 18%;
  left: 31%;
  width: 8%;
  background: linear-gradient(90deg, transparent, rgba(191, 223, 255, .13), transparent);
  content: "";
  filter: blur(4px);
  opacity: 0;
  transform: skewX(-11deg);
  animation: hero-light-sweep 8.5s ease-in-out infinite;
}

.hero-product-reflection {
  position: absolute;
  z-index: 1;
  right: 7%;
  bottom: -4%;
  width: 82%;
  height: 20%;
  overflow: hidden;
  opacity: .11;
  transform: scaleY(-1);
  transform-origin: center top;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .72), transparent 82%);
  filter: blur(1.4px);
}

.hero-product-reflection img {
  width: 100%;
  transform: translateY(-73%);
}

.hero-spec {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: rgba(227, 240, 255, .94);
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  letter-spacing: .04em;
  pointer-events: none;
}

.hero-spec::before {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(102, 172, 255, .7), transparent);
  content: "";
}

.hero-spec strong {
  font-size: .76rem;
  font-weight: 680;
}

.hero-spec small {
  color: rgba(127, 155, 186, .78);
  font-size: .5rem;
  letter-spacing: .14em;
}

.hero-spec-left {
  top: 32%;
  left: 2%;
  align-items: flex-start;
}

.hero-spec-left::before {
  left: calc(100% + 12px);
}

@keyframes hero-product-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -9px, 0);
  }
}

@keyframes hero-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-orbit-spin-reverse {
  from {
    transform: rotate(23deg);
  }
  to {
    transform: rotate(-337deg);
  }
}

@keyframes hero-ingredient-orbit {
  from {
    transform: rotate(var(--angle));
  }
  to {
    transform: rotate(calc(var(--angle) + 360deg));
  }
}

@keyframes hero-ingredient-counter-orbit {
  from {
    transform: translateX(-50%) rotate(var(--counter-angle));
  }
  to {
    transform: translateX(-50%) rotate(calc(var(--counter-angle) - 360deg));
  }
}

@keyframes hero-ingredient-halo {
  0%,
  100% {
    opacity: .48;
    transform: scale(.965);
  }
  50% {
    opacity: .92;
    transform: scale(1.025);
  }
}

@keyframes hero-ingredient-breathe {
  0%,
  100% {
    filter: brightness(.94);
    transform: scale(.94);
  }
  50% {
    filter: brightness(1.12);
    transform: scale(1.04);
  }
}

@keyframes hero-glow-pulse {
  0%,
  100% {
    opacity: .72;
    transform: scale(.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes hero-light-sweep {
  0%,
  58%,
  100% {
    left: 24%;
    opacity: 0;
  }
  68% {
    opacity: .42;
  }
  82% {
    left: 68%;
    opacity: 0;
  }
}

@keyframes hero-stage-pulse {
  0%,
  100% {
    opacity: .58;
    transform: scale(.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.025);
  }
}

.statement {
  background: var(--white);
}

.statement-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
}

.statement h2 {
  max-width: 700px;
}

.stats {
  display: grid;
  margin-top: 62px;
  border-top: 1px solid var(--mist);
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 30px 18px 0 0;
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 650;
  letter-spacing: -.03em;
}

.stat span {
  color: var(--steel);
  font-size: .73rem;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(44px, 7vw, 92px);
}

.feature-image {
  aspect-ratio: .84;
}

.feature-image img {
  object-position: center top;
}

.feature-list {
  border-top: 1px solid #d9e2e9;
}

.feature-item {
  display: grid;
  padding: 25px 0;
  border-bottom: 1px solid #d9e2e9;
  grid-template-columns: 50px 150px 1fr;
  gap: 12px;
}

.feature-number {
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: .75rem;
  font-weight: 650;
}

.feature-name {
  font-family: "Montserrat", sans-serif;
  font-size: .84rem;
  font-weight: 650;
}

.feature-item p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.65;
}

.editorial-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 110px);
}

.editorial-image {
  aspect-ratio: 1.02;
}

.check-list {
  display: grid;
  gap: 17px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #3c4854;
}

.check-list li::before {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  content: "✓";
  font-size: .72rem;
}

.ingredient-grid {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ingredient-card {
  min-height: 205px;
  padding: 25px;
}

.ingredient-card .ingredient-label {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: .68rem;
  font-weight: 680;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ingredient-card p {
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.65;
}

.product-band {
  background: linear-gradient(145deg, #f5f7f9 0%, #edf3f8 100%);
}

.product-band-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .84fr 1.16fr;
  gap: 70px;
}

.price {
  margin: 28px 0 5px;
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 660;
  letter-spacing: -.055em;
  line-height: 1;
}

.product-band-image {
  min-height: 580px;
  background: rgba(255, 255, 255, .72);
}

.product-band-image img {
  object-fit: contain;
  padding: 20px;
}

.story-grid {
  display: grid;
  margin-top: 44px;
  grid-template-columns: 1.15fr .9fr .9fr;
  gap: 18px;
}

.story-image {
  aspect-ratio: .76;
}

.story-image:first-child {
  aspect-ratio: .9;
}

.reason-grid {
  display: grid;
  margin-top: 45px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.reason-card {
  min-height: 270px;
  padding: 26px;
  background: #f8fafb;
}

.reason-number {
  display: block;
  margin-bottom: 62px;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: .75rem;
  font-weight: 650;
}

.reason-card p {
  font-size: .9rem;
}

/* Shared page heroes */
.page-hero {
  padding: 180px 0 94px;
  background:
    radial-gradient(circle at 82% 30%, rgba(10, 88, 208, .08), transparent 25%),
    var(--warm-white);
}

.page-hero .lead {
  max-width: 680px;
}

.page-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
}

.page-hero-image {
  min-height: 470px;
}

.page-hero-image img {
  object-position: center 28%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #78838d;
  font-size: .78rem;
}

.breadcrumb a:hover {
  color: var(--blue);
}

/* Shop */
.shop-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.product-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.18fr .82fr;
}

.product-card-visual {
  min-height: 610px;
  background: linear-gradient(145deg, #f7f9fa, #edf2f6);
}

.product-card-visual img {
  width: 100%;
  height: 100%;
  padding: 35px;
  object-fit: contain;
  transition: transform 600ms var(--ease);
}

.product-card:hover .product-card-visual img {
  transform: scale(1.018);
}

.product-card-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(35px, 6vw, 72px);
}

.product-card-copy .price {
  font-size: 3.2rem;
}

.notice {
  padding: 18px 20px;
  border: 1px solid #d9e5f1;
  border-radius: 14px;
  background: #f3f7fb;
  color: #435568;
  font-size: .9rem;
}

/* Product detail */
.product-detail {
  padding: 140px 0 100px;
}

.product-detail-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(50px, 7vw, 90px);
}

.product-gallery {
  position: sticky;
  top: 105px;
}

.gallery-main {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #f8fafb, #edf2f6);
}

.gallery-main img {
  padding: 24px;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  margin-top: 12px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--mist);
  border-radius: 14px;
  background: var(--off-white);
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

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

.product-info {
  padding-top: 10px;
}

.product-info h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
}

.product-facts {
  display: grid;
  margin: 38px 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  grid-template-columns: repeat(3, 1fr);
}

.product-fact {
  padding: 20px 10px 20px 0;
}

.product-fact strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: .96rem;
}

.product-fact span {
  color: var(--steel);
  font-size: .78rem;
}

.purchase-note {
  margin-top: 18px;
  font-size: .82rem;
}

.spec-table {
  overflow: hidden;
  border: 1px solid var(--mist);
  border-radius: var(--radius-md);
}

.spec-row {
  display: grid;
  padding: 18px 22px;
  border-bottom: 1px solid var(--mist);
  grid-template-columns: 190px 1fr;
  gap: 25px;
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row strong {
  font-family: "Montserrat", sans-serif;
  font-size: .82rem;
}

.spec-row span {
  color: var(--steel);
}

/* About */
.values-grid {
  display: grid;
  margin-top: 45px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 300px;
  padding: 32px;
}

.value-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 62px;
  place-items: center;
  border-radius: 13px;
  background: #eaf2fd;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: .76rem;
  font-weight: 700;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(40px, 8vw, 100px);
}

.contact-aside {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow-dark);
}

.contact-aside p {
  color: #b8c4d0;
}

.contact-note {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-family: "Montserrat", sans-serif;
  font-size: .76rem;
  font-weight: 630;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #d5dde5;
  border-radius: 12px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 88, 208, .1);
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 12px;
  background: #eef5fd;
  color: #27496d;
  font-size: .88rem;
}

.form-status.show {
  display: block;
}

.form-status[data-state="error"] { background: #fff0f0; color: #a52e2e; }
.form-status[data-state="success"] { background: #edf9f1; color: #247342; }

.auth-section { padding-top: 52px; }
.auth-container { max-width: 620px; }
.auth-card { padding: clamp(24px, 4vw, 42px); }
.auth-card .field + .field { margin-top: 16px; }
.auth-card .btn { margin-top: 22px; }
.auth-links { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 22px; color: var(--steel); font-size: .88rem; }
.auth-links a { color: var(--blue); font-weight: 650; }
.auth-message { margin-top: 16px; padding: 12px 14px; border-radius: 12px; font-size: .88rem; }
.auth-message.error { background: #fff0f0; color: #a52e2e; }
.auth-message.success { background: #edf9f1; color: #247342; }
.auth-message.info { background: #eef5fd; color: #27496d; }
.auth-submit:disabled { cursor: wait; opacity: .65; }
.oauth-divider { display: flex; align-items: center; gap: 12px; margin-top: 20px; color: var(--steel); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.oauth-divider::before, .oauth-divider::after { content: ""; height: 1px; flex: 1; background: var(--mist); }
.google-auth { display: inline-flex; width: 100%; min-height: 46px; align-items: center; justify-content: center; gap: 10px; margin-top: 12px; border: 1px solid var(--mist); border-radius: 12px; background: var(--white); color: var(--ink); cursor: pointer; font: 650 .78rem "Montserrat", sans-serif; }
.google-auth:hover { border-color: #b9c7d5; background: var(--off-white); }
.google-auth:disabled { cursor: wait; opacity: .65; }
.google-auth svg { width: 18px; height: 18px; }
.account-grid { display: grid; gap: 24px; }
.account-card { padding: clamp(24px, 4vw, 40px); }
.account-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.profile-heading { display: flex; align-items: center; gap: 14px; }
.profile-avatar { display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; flex: 0 0 auto; overflow: hidden; border: 1px solid var(--mist); border-radius: 50%; background: var(--off-white); color: var(--blue); }
.profile-avatar .account-icon { width: 28px; height: 28px; }
.profile-avatar-image { width: 100%; height: 100%; object-fit: cover; }
.account-card h2 { margin-bottom: 18px; font-size: clamp(1.55rem, 3vw, 2.2rem); }
.account-details { display: grid; gap: 1px; margin: 20px 0 26px; border-top: 1px solid var(--mist); }
.account-details > div { display: grid; grid-template-columns: minmax(120px, .7fr) 1.3fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--mist); }
.account-details span { color: var(--steel); font-size: .86rem; }
.account-details strong { font-weight: 600; }
.account-edit-form { margin-bottom: 20px; }
.account-signout { margin-top: 24px; }
.address-list { display: grid; gap: 14px; margin: 20px 0; }
.address-item { padding: 18px; border: 1px solid var(--mist); border-radius: 14px; }
.address-item.is-default { border-color: var(--blue); background: #f7faff; }
.address-item strong { font-weight: 700; }
.address-item p { margin: 8px 0 14px; color: var(--steel); line-height: 1.55; }
.address-badge { display: inline-block; margin-left: 8px; padding: 4px 8px; border-radius: 999px; background: #e8f0ff; color: var(--blue); font-size: .72rem; font-weight: 700; }
.address-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.address-actions .btn { margin: 0; padding: 9px 12px; font-size: .76rem; }
.address-form { margin-top: 20px; }
.address-form .field + .field { margin-top: 14px; }
.checkbox-field { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--steel); font-size: .88rem; }
.checkbox-field input { width: 16px; height: 16px; accent-color: var(--blue); }
.btn-link { border: 0; background: transparent; color: #a52e2e; cursor: pointer; font: inherit; font-weight: 650; }
.orders-card .empty-state { margin-top: 24px; padding: 28px; border: 1px dashed #c8d3dd; border-radius: 14px; color: var(--steel); text-align: center; }

/* FAQ */
.faq-wrap {
  max-width: 920px;
  margin-inline: auto;
}

.faq-list {
  border-top: 1px solid var(--mist);
}

.faq-item {
  border-bottom: 1px solid var(--mist);
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 92px;
  align-items: center;
  padding: 22px 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  grid-template-columns: 46px 1fr 36px;
  text-align: left;
}

.faq-index {
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: .72rem;
  font-weight: 650;
}

.faq-question-text {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 620;
}

.faq-plus {
  position: relative;
  width: 28px;
  height: 28px;
  justify-self: end;
  border: 1px solid var(--mist);
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms var(--ease);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  max-width: 740px;
  margin: 0;
  padding: 0 45px 28px 50px;
}

.legal-content {
  max-width: 860px;
}

.legal-content > section {
  margin-top: 42px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.legal-content p {
  max-width: 760px;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 650;
}

.legal-updated {
  color: var(--steel);
  font-size: .82rem;
}

/* CTA + footer */
.final-cta {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.final-cta::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 20, 38, .94) 5%, rgba(6, 20, 38, .62) 53%, rgba(6, 20, 38, .28));
  content: "";
}

.final-cta-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.final-cta h2 {
  max-width: 650px;
}

.final-cta p {
  color: #d1dae4;
}

.site-footer {
  padding: clamp(64px, 8vw, 96px) 0 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(35, 119, 243, .12), transparent 30%),
    linear-gradient(145deg, #061426 0%, #081a30 58%, #0b213c 100%);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) repeat(3, minmax(135px, 1fr));
  gap: clamp(28px, 5vw, 68px);
}

.footer-brand img {
  width: clamp(108px, 10vw, 132px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity 220ms ease;
}

.footer-brand img:hover {
  opacity: .88;
}

.footer-brand-name {
  margin: 22px 0 5px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: .82rem;
  font-weight: 680;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 265px;
  margin-bottom: 0;
  color: #aab7c4;
  font-size: .87rem;
  line-height: 1.7;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a,
.footer-links span {
  color: #aab7c4;
  font-size: .84rem;
  line-height: 1.55;
}

.footer-address {
  max-width: 245px;
  color: #8fa2b5;
  font-size: .8rem;
  font-style: normal;
  line-height: 1.6;
}

.footer-links a:hover {
  color: #cfe2ff;
}

.footer-links a:focus-visible {
  outline: 2px solid #78adff;
  outline-offset: 4px;
  border-radius: 3px;
}

.footer-social-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  color: #c3d9f5 !important;
  font-family: "Montserrat", sans-serif;
  font-size: .8rem !important;
  font-weight: 620;
  transition: color 220ms ease, transform 220ms var(--ease);
}

.footer-social-link:hover {
  color: var(--white) !important;
  transform: translateX(2px);
}

.footer-social-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.footer-social-note {
  max-width: 190px;
  color: #8fa2b5;
  font-size: .8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #77899a;
  font-size: .72rem;
  line-height: 1.5;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }

@media (max-width: 1020px) {
  .desktop-nav { display: none !important; }

  .menu-toggle {
    display: flex;
  }

  .mobile-panel {
    position: fixed;
    z-index: 999;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 18px 24px 32px;
    overflow-y: auto;
    background: var(--white);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms var(--ease), visibility 220ms;
    visibility: hidden;
  }

  .menu-open .mobile-panel {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .mobile-nav {
    display: grid;
  }

  .mobile-nav > a,
  .mobile-shop-toggle {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--mist);
    font-family: "Montserrat", sans-serif;
    font-size: .92rem;
    font-weight: 650;
  }

  .mobile-shop-toggle {
    width: 100%;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--mist);
    background: none;
  }

  .mobile-subnav {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 260ms var(--ease);
  }

  .mobile-subnav.open {
    grid-template-rows: 1fr;
  }

  .mobile-subnav-inner {
    overflow: hidden;
  }

  .mobile-subnav a {
    display: block;
    margin: 8px 0;
    padding: 15px;
    border-radius: 12px;
    background: var(--off-white);
    color: var(--blue);
    font-size: .88rem;
  }

  .mobile-panel .btn {
    width: 100%;
    margin-top: 24px;
  }
  .mobile-account-link { width: 100%; min-height: 58px; border-bottom: 1px solid var(--mist); text-align: left; }
  .mobile-account-dropdown { position: static; width: 100%; margin-top: 8px; box-shadow: none; }

  .hero {
    min-height: auto;
    padding: 132px 0 72px;
  }

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

  .hero-grid,
  .page-hero-grid,
  .statement-grid,
  .feature-grid,
  .editorial-grid,
  .product-band-grid,
  .product-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 610px;
    margin-inline: auto;
  }

  .hero-product-image {
    max-height: 580px;
  }

  .hero-ingredient-system {
    inset: 4% 3% 7%;
  }

  .hero-ingredient-track {
    inset: 8%;
  }

  .hero-ingredient-chip {
    top: -35px;
    width: 70px;
    height: 70px;
    padding: 6px;
  }

  .hero-ingredient-art {
    width: 56px;
    height: 56px;
  }

  .statement-grid {
    gap: 20px;
  }

  .feature-grid {
    gap: 50px;
  }

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

  .product-card-visual {
    min-height: 500px;
  }

  .product-gallery {
    position: static;
  }

  .ingredient-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .story-grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .story-image:first-child {
    grid-row: span 2;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container,
  .container-wide,
  .header-inner,
  .final-cta-content {
    width: min(calc(100% - 40px), var(--content));
  }

  .site-header {
    height: 72px;
  }

  .header-inner {
    width: min(calc(100% - 28px), var(--wide));
  }

  .nav-wrap {
    gap: 8px;
  }

  .account-area {
    margin-left: 0;
  }

  .account-link:not(.mobile-account-link) {
    width: 42px;
    justify-content: center;
    padding: 8px 0;
  }

  .account-link:not(.mobile-account-link) .account-label {
    display: none;
  }

  .brand {
    width: 72px;
    height: 100%;
  }

  .brand img {
    width: 56px;
    max-height: 60px;
  }

  .mobile-panel {
    top: 72px;
    padding-inline: 20px;
  }

  .mobile-nav > a,
  .mobile-shop-toggle,
  .mobile-account-link {
    min-height: 56px;
    white-space: nowrap;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9.4vw, 2.6rem);
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    --hero-safe: 20px;
    padding: 108px 0 34px;
  }

  .hero-light-left {
    left: 5%;
  }

  .hero-light-right {
    right: 5%;
  }

  .hero-light {
    opacity: .58;
  }

  .hero-grid {
    gap: 22px;
    width: min(calc(100% - 40px), var(--content));
  }

  .hero-copy {
    padding: 8px var(--hero-safe) 0;
    min-width: 0;
  }

  .hero-copy .lead {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-product-name {
    margin-bottom: 13px;
    font-size: clamp(2.35rem, 12.2vw, 3.35rem);
    white-space: nowrap;
  }

  .hero-tagline {
    font-size: clamp(1.72rem, 8.3vw, 2.3rem);
    line-height: 1.08;
  }

  .hero-tagline::after {
    margin-top: 22px;
  }

  .hero-facts {
    margin-top: 24px;
    gap: 0;
  }

  .hero-facts > div {
    min-width: 0;
    padding: 0 9px;
  }

  .hero-facts strong {
    font-size: .72rem;
    white-space: nowrap;
  }

  .hero-facts span {
    font-size: .62rem;
    line-height: 1.45;
  }

  .hero .btn-row {
    margin-top: 26px;
  }

  .hero-visual {
    width: 100%;
    min-height: 350px;
    margin-inline: auto;
  }

  .hero-tech-field {
    inset: 1% 0 3%;
    opacity: .72;
  }

  .hero-tech-grid {
    right: 4%;
    bottom: 10%;
    width: 88%;
    height: 38%;
    background-size: 34px 34px;
    opacity: .2;
  }

  .hero-light-arc {
    inset: 10% 6% 11% 7%;
  }

  .hero-orbit-outer {
    inset: 10% 5% 9% 6%;
  }

  .hero-orbit-inner {
    inset: 22% 17% 20%;
  }

  .hero-orbit-dot {
    display: none;
  }

  .hero-ingredient-system {
    inset: 5% 3% 8%;
  }

  .hero-ingredient-track {
    inset: 10%;
    animation-duration: 28s;
  }

  .hero-ingredient-chip {
    top: -29px;
    width: 58px;
    height: 58px;
    padding: 5px;
    animation-duration: 28s;
  }

  .hero-ingredient-art {
    width: 46px;
    height: 46px;
  }

  .hero-product-float {
    inset: 0 0 7%;
  }

  .hero-product-image {
    width: 100%;
    max-height: 340px;
  }

  .hero-product-reflection {
    right: 6%;
    bottom: -1%;
    width: 88%;
    height: 15%;
    opacity: .09;
  }

  .hero-spec {
    display: none;
  }

  .btn-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .btn-row .btn {
    width: 100%;
  }

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

  .stat {
    padding-top: 22px;
  }

  .feature-item {
    padding: 21px 0;
    grid-template-columns: 38px 105px 1fr;
    gap: 7px;
  }

  .feature-item p {
    font-size: .8rem;
  }

  .editorial-grid {
    gap: 40px;
  }

  .editorial-image {
    aspect-ratio: .92;
  }

  .ingredient-grid,
  .values-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .ingredient-card {
    min-height: auto;
  }

  .ingredient-card .ingredient-label {
    margin-bottom: 20px;
  }

  .product-band-grid {
    gap: 42px;
  }

  .product-band-image {
    min-height: 390px;
  }

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

  .story-image,
  .story-image:first-child {
    aspect-ratio: .84;
  }

  .story-image:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 1.05;
  }

  .reason-card {
    min-height: auto;
  }

  .reason-number,
  .value-icon {
    margin-bottom: 38px;
  }

  .page-hero {
    padding: 130px 0 72px;
  }

  .page-hero-grid {
    gap: 38px;
  }

  .page-hero-image {
    min-height: 390px;
  }

  .shop-head {
    align-items: start;
    flex-direction: column;
  }

  .product-card-visual {
    min-height: 400px;
  }

  .product-card-copy {
    padding: 32px 24px 38px;
  }

  .product-detail {
    padding: 112px 0 76px;
  }

  .product-detail-grid {
    gap: 38px;
  }

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

  .product-fact strong {
    font-size: .82rem;
  }

  .product-fact span {
    font-size: .7rem;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-aside {
    padding: 28px 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .faq-question {
    min-height: 82px;
    grid-template-columns: 36px 1fr 32px;
  }

  .faq-answer p {
    padding: 0 35px 25px 36px;
    font-size: .92rem;
  }

  .final-cta {
    min-height: 520px;
  }

  .final-cta::before {
    background: linear-gradient(90deg, rgba(6, 20, 38, .92), rgba(6, 20, 38, .6));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .hero-grid {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero-copy {
    padding-inline: 14px;
  }

  .hero-product-name {
    font-size: 2.18rem;
    letter-spacing: -.075em;
  }

  .hero-tagline {
    font-size: 1.62rem;
  }

  .hero-facts > div {
    padding-inline: 6px;
  }

  .hero-facts strong {
    font-size: .66rem;
  }

  .hero-facts span {
    font-size: .57rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-product-float,
  .hero-orbit,
  .hero-tech-glow,
  .hero-product-float::after,
  .hero-product-stage::before {
    animation: none !important;
  }

  .hero-ingredient-track {
    animation: hero-ingredient-orbit 30s linear infinite !important;
  }

  .hero-ingredient-chip {
    animation: hero-ingredient-counter-orbit 30s linear infinite !important;
  }

  .hero-ingredient-art {
    animation: hero-ingredient-breathe 3.4s ease-in-out var(--pulse-delay) infinite !important;
  }

  .hero-ingredient-halo {
    animation: hero-ingredient-halo 10s ease-in-out infinite !important;
  }

  .hero-product-float {
    animation: hero-product-float 8s ease-in-out infinite !important;
  }

  .hero-product-float::after {
    animation: hero-light-sweep 10s ease-in-out infinite !important;
  }

  .hero-product-stage::before {
    animation: hero-stage-pulse 8s ease-in-out infinite !important;
  }
}
