:root {
  --font-body: "Inter";
  --font-heading: "Poppins";
  --black: #111111;
  --background: #ffffff;
  --foreground: #111111;
  --surface: #f3f5f6;
  --surface-strong: #fafcfc;
  --accent: #8fb6b0;
  --accent-soft: #dce8ea;
  --accent-sand: #c8d8d6;
  --accent-cream: #f4f7f7;
  --accent-bronze: #6e8e8a;
  --accent-gold: #4f7c88;
  --accent-blush: #b7d8d2;
  --soft-black: #1a1a1a;
  --dark-grey: #2a2a2a;
  --mid-grey: #6b7280;
  --cool-grey: #9ca3af;
  --border: #d1d5db;
  --success: #22c55e;
  --error: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --muted: #6b7280;
  --glow: rgba(143, 182, 176, 0.4);
  --shadow-soft: 0 24px 60px rgba(17, 17, 17, 0.08);
  --shadow-hover: 0 30px 78px rgba(17, 17, 17, 0.15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 14%, rgba(220, 232, 234, 0.92), transparent 18%),
    radial-gradient(circle at 84% 10%, rgba(183, 216, 210, 0.34), transparent 20%),
    radial-gradient(circle at 72% 74%, rgba(143, 182, 176, 0.18), transparent 18%),
    radial-gradient(circle at 46% 118%, rgba(79, 124, 136, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fbfb 42%, #eef4f4 100%);
  color: var(--foreground);
  font-family: var(--font-body), sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 8% 18%, rgba(183, 216, 210, 0.12), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(79, 124, 136, 0.08), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(220, 232, 234, 0.08), transparent 28%);
  animation: ambient-drift 18s ease-in-out infinite alternate;
}

body::after {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0), rgba(244, 247, 247, 0.26), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0) 78%);
  opacity: 0.6;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
}

button {
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

main {
  overflow-x: clip;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.focus-ring:focus-visible {
  outline: 2px solid var(--foreground);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.reveal {
  --reveal-delay: 0ms;
  --reveal-distance: 32px;
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0) scale(0.985);
  filter: blur(12px);
  transition:
    opacity 720ms var(--ease-out) var(--reveal-delay),
    transform 860ms var(--ease-out) var(--reveal-delay),
    filter 860ms var(--ease-out) var(--reveal-delay);
  will-change: opacity, transform, filter;
}

.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-card-shell {
  display: block;
}

.reveal-heading {
  width: 100%;
}

.section-shell {
  padding: 76px 0;
}

.surface-section {
  background: linear-gradient(180deg, rgba(244, 247, 247, 0.82), rgba(255, 255, 255, 0.96));
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading,
.page-intro,
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-heading,
.page-intro {
  margin-bottom: 32px;
}

.section-heading h2,
.page-intro h1,
.hero-copy h1,
.not-found-card h1,
.setup-card h1 {
  margin: 0;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
}

.purchase-panel h1 {
  margin: 0;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading p:last-child,
.page-intro p:last-child,
.setup-card p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.button-base {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  min-height: 60px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  transition:
    transform 160ms var(--ease-out),
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.button-base:active {
  transform: scale(0.975);
}

.button-base[disabled],
.button-base.is-disabled,
.button-base[aria-disabled="true"] {
  opacity: 0.52;
  pointer-events: none;
  cursor: not-allowed;
}

.button-base::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.08) 50%, transparent 82%);
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease-out);
  pointer-events: none;
}

.button-base::after {
  content: "";
  position: absolute;
  inset: auto 16% -18px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 182, 176, 0.28), rgba(143, 182, 176, 0));
  filter: blur(12px);
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 240ms var(--ease-out);
  transform: translateY(6px);
  pointer-events: none;
}

.button-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  width: 100%;
}

.button-frame-with-icon {
  display: grid;
  grid-template-columns: minmax(18px, 1fr) auto minmax(18px, 1fr);
  align-items: center;
  column-gap: 12px;
  width: 100%;
}

.button-frame-with-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  justify-self: start;
}

.button-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-0.5px);
  justify-self: center;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  justify-self: end;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 220ms var(--ease-out),
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.button-primary {
  border-color: rgba(17, 17, 17, 0.96);
  background:
    radial-gradient(circle at top, rgba(220, 232, 234, 0.14), transparent 42%),
    linear-gradient(180deg, #1d2324, #111111 68%);
  color: var(--background);
  box-shadow:
    0 18px 36px rgba(17, 17, 17, 0.22),
    0 0 28px rgba(79, 124, 136, 0.22),
    0 0 68px rgba(143, 182, 176, 0.16),
    0 0 120px rgba(183, 216, 210, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -24px 44px rgba(79, 124, 136, 0.16);
}

.button-secondary {
  border-color: rgba(143, 182, 176, 0.34);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.88), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 247, 0.98));
  color: var(--foreground);
  box-shadow:
    0 18px 34px rgba(79, 124, 136, 0.14),
    0 0 20px rgba(143, 182, 176, 0.14),
    0 0 54px rgba(183, 216, 210, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -18px 32px rgba(220, 232, 234, 0.74);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.button-primary .button-icon {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button-secondary .button-icon {
  background: rgba(79, 124, 136, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.button-base:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .button-primary:hover,
  .button-secondary:hover,
  .button-ghost:hover,
  .product-card:hover,
  .collection-pill:hover,
  .highlight-card:hover,
  .benefit-card:hover {
    transform: translateY(-3px);
  }

  .button-primary:hover {
    box-shadow:
      0 24px 56px rgba(17, 17, 17, 0.26),
      0 0 28px rgba(79, 124, 136, 0.24),
      0 0 64px rgba(143, 182, 176, 0.2),
      0 0 120px rgba(183, 216, 210, 0.1),
      inset 0 -28px 52px rgba(79, 124, 136, 0.2);
  }

  .button-primary:hover::before,
  .button-secondary:hover::before,
  .button-ghost:hover::before {
    opacity: 1;
    transform: translateX(10px);
  }

  .button-primary:hover::after,
  .button-secondary:hover::after,
  .button-ghost:hover::after {
    opacity: 1;
    transform: translateY(0);
  }

  .button-primary:hover .button-icon,
  .button-secondary:hover .button-icon,
  .button-ghost:hover .button-icon {
    transform: translate3d(2px, 0, 0);
    box-shadow: 0 0 20px rgba(143, 182, 176, 0.18);
  }

  .button-secondary:hover {
    border-color: rgba(79, 124, 136, 0.42);
    box-shadow:
      0 24px 44px rgba(79, 124, 136, 0.14),
      0 0 22px rgba(143, 182, 176, 0.16),
      0 0 80px rgba(183, 216, 210, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  .button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
  }

  .product-card:hover,
  .highlight-card:hover,
  .benefit-card:hover {
    box-shadow: var(--shadow-hover);
  }
}

.site-header {
  position: sticky;
  top: 42px;
  z-index: 50;
  border-bottom: 1px solid rgba(209, 213, 219, 0.42);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 247, 247, 0.74)),
    rgba(255, 255, 255, 0.72);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 10% -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(143, 182, 176, 0.42), rgba(255, 255, 255, 0));
  box-shadow: 0 0 20px rgba(143, 182, 176, 0.22);
  pointer-events: none;
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(143, 182, 176, 0.18);
  background:
    radial-gradient(circle at 20% 50%, rgba(143, 182, 176, 0.16), transparent 22%),
    radial-gradient(circle at 80% 50%, rgba(79, 124, 136, 0.14), transparent 18%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.98), rgba(28, 34, 35, 0.96));
  color: #ffffff;
}

.announcement-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 42px;
}

.announcement-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.announcement-copy svg {
  color: var(--accent);
}

.announcement-divider {
  color: rgba(255, 255, 255, 0.42);
}

.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 90px;
  gap: 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 0;
  padding: 6px 2px;
  justify-self: start;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px 22px 18px 24px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.84), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 246, 0.92));
  box-shadow:
    0 12px 24px rgba(17, 17, 17, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-logo {
  width: auto;
  height: 34px;
}

.brand-wordmark {
  color: var(--foreground);
  font-family: var(--font-heading), sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav,
.header-actions,
.footer-links,
.collection-pill-row,
.hero-actions,
.trust-item,
.purchase-actions,
.quantity-row,
.cart-total-row,
.cart-line-top,
.cart-line-bottom {
  display: flex;
  align-items: center;
}

.desktop-nav,
.header-actions,
.footer-links,
.collection-pill-row,
.hero-actions,
.trust-list,
.purchase-actions {
  gap: 12px;
}

.nav-link,
.footer-links a {
  color: var(--muted);
  transition:
    color 180ms ease,
    transform 220ms var(--ease-out),
    opacity 180ms ease,
    background-color 180ms ease,
    box-shadow 220ms ease;
}

.nav-link:hover,
.footer-links a:hover {
  color: var(--foreground);
}

.nav-link,
.footer-links a,
.proof-chip,
.footer-banner-link {
  transition:
    transform 220ms var(--ease-out),
    color 180ms ease,
    box-shadow 220ms ease;
}

.nav-link:hover,
.footer-links a:hover {
  transform: translateY(-1px);
}

.desktop-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-width: 120px;
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
}

.desktop-nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 120px;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.header-actions {
  justify-self: end;
}

.desktop-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 124, 136, 0.9), rgba(143, 182, 176, 0.4));
  transform: scaleX(0.2);
  opacity: 0;
  transition:
    transform 220ms var(--ease-out),
    opacity 180ms ease;
}

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

.desktop-nav .nav-link:hover {
  background: rgba(220, 232, 234, 0.54);
  box-shadow:
    0 14px 24px rgba(17, 17, 17, 0.04),
    0 0 22px rgba(143, 182, 176, 0.1);
}

.desktop-nav .nav-link.is-active {
  color: var(--foreground);
  background: rgba(220, 232, 234, 0.54);
  box-shadow:
    0 14px 24px rgba(17, 17, 17, 0.04),
    0 0 22px rgba(143, 182, 176, 0.1);
}

.desktop-nav .nav-link.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition:
    transform 160ms var(--ease-out),
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 220ms ease;
}

.icon-button:active {
  transform: scale(0.97);
}

.icon-button:hover {
  border-color: var(--foreground);
  box-shadow:
    0 18px 34px rgba(17, 17, 17, 0.06),
    0 0 24px rgba(143, 182, 176, 0.12);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--foreground);
  color: var(--background);
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-only,
.mobile-nav-shell {
  display: none;
}

.hero-section {
  padding: 34px 0 14px;
}

.hero-grid,
.product-layout,
.trust-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border: 1px solid rgba(42, 42, 42, 0.12);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(183, 216, 210, 0.26), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(79, 124, 136, 0.16), transparent 18%),
    radial-gradient(circle at 76% 72%, rgba(143, 182, 176, 0.18), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(244, 247, 247, 0.08), transparent 32%),
    linear-gradient(145deg, #111111, #15191a 45%, #202728 100%);
  box-shadow:
    0 32px 80px rgba(17, 17, 17, 0.18),
    0 0 80px rgba(79, 124, 136, 0.12),
    0 0 120px rgba(143, 182, 176, 0.08),
    0 0 180px rgba(183, 216, 210, 0.04);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 39px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 70%, rgba(143, 182, 176, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: auto 12% 24px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 182, 176, 0.2), rgba(143, 182, 176, 0));
  filter: blur(22px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-grid-glow {
  position: absolute;
  inset: auto auto -140px 18%;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 124, 136, 0.32), rgba(79, 124, 136, 0));
  filter: blur(18px);
  pointer-events: none;
}

.hero-grid-glow::after {
  content: "";
  position: absolute;
  inset: 40px auto auto 240px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(183, 216, 210, 0.22), rgba(183, 216, 210, 0));
  filter: blur(10px);
}

.hero-accent {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.8;
}

.hero-accent-one {
  top: 24px;
  right: 120px;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(143, 182, 176, 0.8), rgba(255, 255, 255, 0));
  box-shadow: 0 0 22px rgba(143, 182, 176, 0.32);
}

.hero-accent-two {
  top: 88px;
  right: 68px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  box-shadow:
    0 0 0 8px rgba(143, 182, 176, 0.08),
    0 0 20px rgba(143, 182, 176, 0.42);
}

.hero-accent-three {
  left: 42px;
  bottom: 42px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(220, 232, 234, 0.18), rgba(220, 232, 234, 0));
  filter: blur(6px);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-orb-one {
  top: -120px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(220, 232, 234, 0.5), rgba(220, 232, 234, 0));
  animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-two {
  bottom: -120px;
  left: 28%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(143, 182, 176, 0.26), rgba(143, 182, 176, 0));
  animation: float-orb 10s ease-in-out infinite reverse;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 22px;
  align-content: center;
  padding: 18px 0;
  max-width: 860px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
  color: #ffffff;
  animation: rise-in 520ms var(--ease-out) both;
}

.hero-copy h1 {
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(17, 17, 17, 0.2);
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-card,
.benefit-card,
.highlight-card,
.empty-state-card,
.not-found-card,
.setup-card,
.hero-card-large {
  border: 1px solid rgba(209, 213, 219, 0.7);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-card,
.hero-card-large {
  padding: 24px;
}

.hero-card span,
.hero-card-large span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card strong,
.hero-card-large strong {
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.hero-card-large {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(220, 232, 234, 0.55), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.92);
}

.hero-banner-media {
  position: relative;
  width: 100%;
  min-height: 272px;
}

.hero-banner-media img {
  object-fit: contain;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.14);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge-soft {
  background: rgba(143, 182, 176, 0.14);
  border-color: rgba(143, 182, 176, 0.28);
  box-shadow:
    0 12px 24px rgba(17, 17, 17, 0.14),
    0 0 22px rgba(143, 182, 176, 0.14);
}

.proof-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
  transition:
    transform 220ms var(--ease-out),
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 220ms ease;
}

.proof-chip:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(143, 182, 176, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 12px 30px rgba(17, 17, 17, 0.12),
    0 0 26px rgba(143, 182, 176, 0.1);
}

.proof-chip:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(79, 124, 136, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 12px 30px rgba(17, 17, 17, 0.12),
    0 0 26px rgba(79, 124, 136, 0.1);
}

.proof-chip span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.proof-chip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.4;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 400px) minmax(0, 0.85fr);
  gap: 20px;
  width: 100%;
  margin-top: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(143, 182, 176, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 56px rgba(17, 17, 17, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-showcase-copy,
.hero-showcase-notes {
  display: grid;
  align-content: center;
  gap: 12px;
  text-align: left;
}

.hero-showcase-copy h2 {
  margin: 0;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-showcase-copy p:last-child {
  margin: 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.68);
}

.hero-showcase-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.hero-showcase-halo {
  position: absolute;
  inset: 50%;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(143, 182, 176, 0.24), rgba(143, 182, 176, 0) 68%);
  filter: blur(16px);
  transform: translate(-50%, -50%);
  animation: float-orb 9s ease-in-out infinite;
}

.hero-showcase-media {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.92), rgba(244, 247, 247, 0.78)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 30px 70px rgba(17, 17, 17, 0.18),
    0 0 44px rgba(143, 182, 176, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.hero-showcase-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(143, 182, 176, 0.14);
  border-radius: 30px;
  pointer-events: none;
}

.hero-showcase-image {
  object-fit: cover;
  transform: scale(1.05);
}

.hero-showcase-notes {
  gap: 10px;
}

.hero-note-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.12);
}

.hero-note-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(143, 182, 176, 0.42);
}

.hero-note-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-primary-button,
.hero-secondary-button,
.spotlight-button,
.section-link-button {
  min-width: 220px;
}

.button-base > .button-frame:not(.button-frame-with-icon) {
  padding-inline: 2px;
}

.hero-primary-button {
  width: 244px;
  box-shadow:
    0 22px 46px rgba(17, 17, 17, 0.28),
    0 0 24px rgba(79, 124, 136, 0.18),
    0 0 52px rgba(143, 182, 176, 0.12),
    0 0 90px rgba(183, 216, 210, 0.08);
}

.marquee-section {
  padding: 10px 0 22px;
}

.marquee-shell,
.page-marquee-shell {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(143, 182, 176, 0.28);
  border-bottom: 1px solid rgba(143, 182, 176, 0.28);
  background:
    linear-gradient(90deg, rgba(220, 232, 234, 0.92), rgba(244, 247, 247, 0.9), rgba(200, 216, 214, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 34px rgba(79, 124, 136, 0.08),
    0 0 42px rgba(143, 182, 176, 0.08);
}

.marquee-shell::before,
.page-marquee-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0) 80%);
  transform: translateX(-30%);
  animation: sheen-pass 8s linear infinite;
  pointer-events: none;
}

.marquee-track,
.page-marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  min-height: 54px;
  padding-left: 18px;
  padding-right: 18px;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-item,
.page-marquee-item {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--soft-black);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-item::after,
.page-marquee-item::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(79, 124, 136, 0.74);
  box-shadow: 0 0 20px rgba(79, 124, 136, 0.3);
}

.featured-products-section {
  position: relative;
}

.products-stage {
  position: relative;
}

.products-stage-glow {
  position: absolute;
  inset: 4% 12% auto;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 182, 176, 0.28), rgba(143, 182, 176, 0));
  filter: blur(18px);
  pointer-events: none;
}

.cinematic-section {
  padding-top: 18px;
}

.cinematic-panel {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 42px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.18), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(143, 182, 176, 0.14), transparent 18%),
    linear-gradient(145deg, #101314, #182021 48%, #253133 100%);
  box-shadow:
    0 36px 86px rgba(17, 17, 17, 0.18),
    0 0 84px rgba(79, 124, 136, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cinematic-panel::before {
  content: "";
  position: absolute;
  inset: auto 12% -54px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 182, 176, 0.24), rgba(143, 182, 176, 0));
  filter: blur(16px);
  pointer-events: none;
}

.cinematic-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 28px;
  justify-items: center;
  text-align: center;
}

.cinematic-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.cinematic-copy p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.cinematic-product-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.cinematic-product-card {
  display: grid;
  gap: 12px;
  transition:
    transform 260ms var(--ease-out),
    filter 220ms ease;
}

.cinematic-product-card-2 {
  transform: translateY(20px);
}

.cinematic-product-card-3 {
  transform: translateY(8px);
}

.cinematic-product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.96), rgba(244, 247, 247, 0.82)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 26px 58px rgba(17, 17, 17, 0.16),
    0 0 34px rgba(143, 182, 176, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.cinematic-product-card-2 .cinematic-product-media {
  aspect-ratio: 0.94 / 1.08;
}

.cinematic-product-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(143, 182, 176, 0.12);
  border-radius: 26px;
  pointer-events: none;
}

.cinematic-product-image {
  object-fit: cover;
  transition: transform 560ms var(--ease-out);
}

.cinematic-product-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cinematic-product-copy span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .cinematic-product-card:hover {
    transform: translateY(-6px);
  }

  .cinematic-product-card:hover .cinematic-product-image {
    transform: scale(1.05);
  }
}

.utility-showcase-section {
  padding-top: 18px;
}

.utility-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: center;
}

.utility-showcase-copy {
  display: grid;
  gap: 18px;
}

.utility-showcase-copy h2 {
  margin: 0;
  max-width: 10ch;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.utility-showcase-copy > p:last-of-type {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.utility-point-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.utility-point-card {
  padding: 20px 22px;
  border: 1px solid rgba(209, 213, 219, 0.66);
  border-radius: 28px 24px 30px 24px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 249, 0.94));
  box-shadow:
    0 18px 42px rgba(17, 17, 17, 0.05),
    0 0 24px rgba(143, 182, 176, 0.08);
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.utility-point-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading), sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.utility-point-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.utility-media-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(209, 213, 219, 0.68);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.5), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(143, 182, 176, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 248, 0.96));
  box-shadow:
    0 32px 80px rgba(17, 17, 17, 0.08),
    0 0 44px rgba(143, 182, 176, 0.1);
  overflow: hidden;
}

.utility-media-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.utility-media-glow-one {
  width: 260px;
  height: 260px;
  right: -20px;
  top: -30px;
  background: radial-gradient(circle, rgba(143, 182, 176, 0.2), rgba(143, 182, 176, 0));
  filter: blur(10px);
}

.utility-media-glow-two {
  width: 300px;
  height: 300px;
  left: -60px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(79, 124, 136, 0.14), rgba(79, 124, 136, 0));
  filter: blur(18px);
}

.utility-media-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  transition:
    transform 260ms var(--ease-out),
    filter 220ms ease;
}

.utility-media-wall-1 {
  grid-template-columns: minmax(0, 1fr);
}

.utility-media-wall-1 .utility-media-card-1 {
  grid-column: 1 / -1;
  grid-row: auto;
}

.utility-media-wall-1 .utility-media-card-1 .utility-media-frame {
  aspect-ratio: 1 / 1;
}

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

.utility-media-wall-2 .utility-media-card-1,
.utility-media-wall-2 .utility-media-card-2 {
  grid-row: auto;
  align-self: auto;
}

.utility-media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.96), rgba(244, 247, 247, 0.82)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 24px 54px rgba(17, 17, 17, 0.12),
    0 0 34px rgba(143, 182, 176, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.utility-media-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(143, 182, 176, 0.12);
  border-radius: 26px;
  pointer-events: none;
}

.utility-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms var(--ease-out);
}

.utility-media-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 28px rgba(17, 17, 17, 0.06),
    0 0 22px rgba(143, 182, 176, 0.08);
  color: var(--soft-black);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .utility-point-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 124, 136, 0.26);
    box-shadow:
      0 26px 52px rgba(17, 17, 17, 0.06),
      0 0 28px rgba(143, 182, 176, 0.12);
  }

  .utility-media-card:hover {
    transform: translateY(-6px);
  }

  .utility-media-card:hover .utility-media-image {
    transform: scale(1.05);
  }
}

.collection-strip {
  padding-bottom: 16px;
}

.collection-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-grid,
.benefit-grid,
.highlight-grid {
  display: grid;
  gap: 20px;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
}

.product-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.66);
  border-radius: 34px 34px 28px 28px;
  background:
    radial-gradient(circle at top, rgba(220, 232, 234, 0.3), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 249, 0.97));
  box-shadow:
    0 18px 45px rgba(17, 17, 17, 0.06),
    0 0 24px rgba(143, 182, 176, 0.08),
    0 0 60px rgba(79, 124, 136, 0.04);
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    filter 220ms ease;
  animation: rise-in 520ms var(--ease-out) both;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(79, 124, 136, 0.24), transparent 78%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(220, 232, 234, 0.24), transparent 42%);
  opacity: 0.8;
  pointer-events: none;
}

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

.product-card:nth-child(2n)::before {
  background:
    radial-gradient(circle at 0% 0%, rgba(183, 216, 210, 0.22), transparent 42%);
}

.product-card:nth-child(3n)::before {
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 124, 136, 0.14), transparent 42%);
}

.product-card-media,
.product-gallery-main,
.cart-line-media {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.product-card-media {
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
}

.product-card img,
.product-gallery img,
.cart-line img {
  transition: transform 400ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover img {
    transform: scale(1.06);
  }

  .product-card:hover::after {
    opacity: 1;
  }

  .product-card:hover {
    border-color: rgba(79, 124, 136, 0.38);
    background:
      radial-gradient(circle at top, rgba(220, 232, 234, 0.32), transparent 42%),
      linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(242, 248, 248, 0.98));
    filter: saturate(1.04);
    box-shadow:
      0 26px 58px rgba(17, 17, 17, 0.08),
      0 0 28px rgba(143, 182, 176, 0.12),
      0 0 90px rgba(79, 124, 136, 0.08);
  }

  .proof-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
      0 18px 34px rgba(17, 17, 17, 0.16),
      0 0 24px rgba(143, 182, 176, 0.12);
  }
}

.product-card .product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  transform: none;
}

.product-card-copy {
  display: grid;
  gap: 12px;
  padding: 20px 20px 22px;
}

.product-card-row,
.purchase-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.product-card h3,
.benefit-card h3,
.highlight-card h3,
.empty-cart h3 {
  margin: 0;
  font-family: var(--font-heading), sans-serif;
  font-size: 1.24rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.benefit-card p,
.highlight-card p,
.trust-item p,
.faq-block p,
.purchase-note,
.cart-line-copy p,
.empty-cart p,
.footer-copy,
.page-intro p,
.not-found-card p,
.setup-card p,
.closing-panel p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--foreground);
  font-size: 0.92rem;
  font-weight: 600;
}

.products-page-intro {
  justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}

.products-page-intro h1 {
  max-width: 780px;
}

.products-page-intro p:last-child {
  text-align: center;
}

.page-marquee-shell {
  margin-bottom: 30px;
  border-radius: 999px;
}

.product-card-price span,
.purchase-price-row span {
  color: var(--muted);
  text-decoration: line-through;
}

.product-card-price strong,
.purchase-price-row strong,
.cart-line-top strong,
.cart-total-row strong {
  font-variant-numeric: tabular-nums;
}

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

.rhythm-section {
  padding-top: 8px;
}

.scene-section {
  padding-top: 10px;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.scene-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(209, 213, 219, 0.68);
  border-radius: 36px 32px 38px 32px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.22) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 248, 0.96));
  box-shadow:
    0 24px 58px rgba(17, 17, 17, 0.06),
    0 0 30px rgba(143, 182, 176, 0.08);
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease;
}

.scene-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene-card-1::before {
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.54), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(143, 182, 176, 0.18), transparent 22%);
}

.scene-card-2::before {
  background:
    radial-gradient(circle at top right, rgba(183, 216, 210, 0.42), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(79, 124, 136, 0.14), transparent 22%);
}

.scene-card-3::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(220, 232, 234, 0.48), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(143, 182, 176, 0.16), transparent 20%);
}

.scene-card h3,
.scene-card p {
  position: relative;
  z-index: 1;
}

.scene-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.scene-card p:last-child {
  margin: 0;
  max-width: 320px;
  color: var(--muted);
  line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
  .scene-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 30px 64px rgba(17, 17, 17, 0.08),
      0 0 34px rgba(143, 182, 176, 0.12);
  }
}

.rhythm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.rhythm-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(209, 213, 219, 0.68);
  border-radius: 38px 34px 42px 30px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.42), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(143, 182, 176, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 249, 0.96));
  box-shadow:
    0 28px 66px rgba(17, 17, 17, 0.08),
    0 0 44px rgba(143, 182, 176, 0.08);
}

.rhythm-panel h2 {
  margin: 0 0 14px;
  max-width: 620px;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.rhythm-panel p:last-child {
  max-width: 620px;
}

.rhythm-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.rhythm-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(143, 182, 176, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 28px rgba(17, 17, 17, 0.04),
    0 0 18px rgba(143, 182, 176, 0.08);
  color: var(--soft-black);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.rhythm-stack {
  display: grid;
  gap: 16px;
}

.rhythm-card {
  padding: 26px;
  border: 1px solid rgba(209, 213, 219, 0.68);
  border-radius: 32px 28px 34px 28px;
  background:
    radial-gradient(circle at top right, rgba(220, 232, 234, 0.2), transparent 30%),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 20px 44px rgba(17, 17, 17, 0.06),
    0 0 24px rgba(143, 182, 176, 0.08);
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.rhythm-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.04em;
}

.rhythm-card p:last-child {
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .rhythm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 124, 136, 0.26);
    box-shadow:
      0 28px 58px rgba(17, 17, 17, 0.08),
      0 0 34px rgba(143, 182, 176, 0.12);
  }
}

.signature-section {
  padding-top: 36px;
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
}

.signature-panel {
  padding: 30px;
  border: 1px solid rgba(209, 213, 219, 0.66);
  border-radius: 36px 30px 34px 28px;
  box-shadow: var(--shadow-soft);
}

.signature-panel-dark {
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.18), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(143, 182, 176, 0.12), transparent 18%),
    linear-gradient(145deg, #111111, #182021 54%, #243031 100%);
}

.signature-panel-dark h2,
.signature-panel-dark p:last-child {
  color: #ffffff;
}

.signature-panel-dark h2 {
  margin: 0 0 14px;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.signature-panel-dark p:last-child {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
}

.benefit-card,
.highlight-card {
  padding: 28px;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease;
}

.benefit-card {
  border-radius: 34px 24px 30px 26px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 247, 0.94));
  box-shadow:
    0 18px 42px rgba(17, 17, 17, 0.05),
    0 0 28px rgba(143, 182, 176, 0.08);
}

.highlight-card {
  border-radius: 26px 34px 28px 30px;
  background:
    radial-gradient(circle at bottom right, rgba(220, 232, 234, 0.22), transparent 36%),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 42px rgba(17, 17, 17, 0.05),
    0 0 28px rgba(143, 182, 176, 0.08);
}

@media (hover: hover) and (pointer: fine) {
  .benefit-card:hover,
  .highlight-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 24px 58px rgba(17, 17, 17, 0.08),
      0 0 32px rgba(143, 182, 176, 0.12),
      0 0 90px rgba(79, 124, 136, 0.06);
  }
}

.highlight-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(183, 216, 210, 0.2), transparent 32%),
    rgba(255, 255, 255, 0.92);
}

.highlight-card:nth-child(3) {
  background:
    radial-gradient(circle at top left, rgba(79, 124, 136, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.92);
}

.benefit-card h3,
.highlight-card h3 {
  margin-bottom: 10px;
}

.highlight-grid-rich {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  align-items: stretch;
}

.highlight-card-large {
  padding: 34px;
  border-radius: 38px 32px 36px 32px;
  background:
    radial-gradient(circle at top left, rgba(143, 182, 176, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 246, 0.94));
}

.highlight-card-large h3 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
}

.collection-story-section {
  padding-top: 20px;
}

.collection-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-story-card {
  border: 1px solid rgba(209, 213, 219, 0.66);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 248, 0.96));
  box-shadow:
    0 20px 46px rgba(17, 17, 17, 0.06),
    0 0 28px rgba(143, 182, 176, 0.08);
  overflow: hidden;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.collection-story-link {
  display: grid;
}

.collection-story-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f5f6;
}

.collection-story-image {
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.collection-story-copy {
  display: grid;
  gap: 10px;
  padding: 20px 20px 22px;
}

.collection-story-copy h3 {
  margin: 0;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

@media (hover: hover) and (pointer: fine) {
  .collection-story-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 124, 136, 0.28);
    box-shadow:
      0 28px 58px rgba(17, 17, 17, 0.08),
      0 0 32px rgba(143, 182, 176, 0.12);
  }

  .collection-story-card:hover .collection-story-image {
    transform: scale(1.05);
  }
}

.trust-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-item {
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(209, 213, 219, 0.72);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 247, 0.94));
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.04);
}

.trust-item span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.closing-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 30px 32px;
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.32), transparent 26%),
    linear-gradient(135deg, #111111, #162022 56%, #233033);
  box-shadow:
    0 26px 64px rgba(17, 17, 17, 0.16),
    0 0 48px rgba(79, 124, 136, 0.08),
    0 0 110px rgba(143, 182, 176, 0.06);
}

.closing-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -40px 18%;
  width: 220px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 124, 136, 0.24), rgba(79, 124, 136, 0));
  filter: blur(14px);
  pointer-events: none;
}

.closing-panel-rich::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 32px;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(143, 182, 176, 0.72), rgba(255, 255, 255, 0));
  box-shadow: 0 0 18px rgba(143, 182, 176, 0.28);
  pointer-events: none;
}

.closing-panel h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.closing-panel p:last-child {
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
}

.shop-page {
  min-height: calc(100vh - 180px);
  min-height: calc(100svh - 180px);
  min-height: calc(100dvh - 180px);
}

.shop-spotlight {
  margin-bottom: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(209, 213, 219, 0.66);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.26), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 38px rgba(17, 17, 17, 0.05),
    0 0 24px rgba(143, 182, 176, 0.08);
}

.shop-spotlight h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.shop-spotlight p:last-child {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.shop-collections {
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.product-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-gallery-main {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid rgba(209, 213, 219, 0.66);
  border-radius: var(--radius-xl);
  background: #f5f5f5;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-gallery-thumb {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(209, 213, 219, 0.72);
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  cursor: pointer;
  transition: border-color 180ms ease;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
}

.product-gallery-thumb-active {
  border-color: var(--foreground);
}

.purchase-panel {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 104px;
}

.purchase-price-row {
  justify-content: start;
  gap: 12px;
  font-size: 1.3rem;
}

.stock-note {
  margin: -4px 0 0;
  color: var(--foreground);
  font-size: 0.92rem;
  font-weight: 600;
}

.rich-text p,
.rich-text ul,
.rich-text ol,
.rich-text blockquote {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.78;
}

.purchase-panel .rich-text {
  display: grid;
  gap: 2px;
}

.rich-text ul,
.rich-text ol {
  padding-left: 20px;
}

.option-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.option-group legend {
  margin-bottom: 12px;
  font-weight: 600;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-chip {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--background);
  cursor: pointer;
  transition:
    transform 160ms var(--ease-out),
    border-color 180ms ease,
    background-color 180ms ease;
}

.option-chip:active {
  transform: scale(0.97);
}

.option-chip-active {
  border-color: var(--foreground);
  background: rgba(143, 182, 176, 0.18);
}

.quantity-row {
  justify-content: space-between;
  gap: 16px;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(209, 213, 219, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.quantity-stepper button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f0f0f0;
  cursor: pointer;
}

.quantity-stepper span {
  min-width: 24px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.purchase-actions {
  flex-wrap: wrap;
}

.purchase-actions .button-base {
  flex: 1 1 200px;
}

.buy-now-button {
  box-shadow: none;
}

.trustscore-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid rgba(209, 213, 219, 0.7);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 247, 0.92));
  box-shadow:
    0 14px 28px rgba(17, 17, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.trustscore-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.trustscore-star-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(180deg, #00c98a, #00b67a);
  box-shadow:
    0 6px 12px rgba(0, 182, 122, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.trustscore-star-icon {
  width: 11px;
  height: 11px;
  fill: #ffffff;
}

.trustscore-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: var(--soft-black);
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
}

.trustscore-text strong {
  font-weight: 700;
  color: var(--black);
}

.purchase-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.purchase-note-success {
  color: var(--success);
}

.purchase-note-error {
  color: var(--error);
}

.benefit-block {
  display: none;
}

.faq-block {
  display: grid;
  gap: 12px;
}

.faq-block details {
  padding: 18px 20px;
  border: 1px solid rgba(209, 213, 219, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.faq-block summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-block p {
  margin-top: 10px;
}

.cart-shell {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.cart-shell-open {
  pointer-events: auto;
}

.cart-backdrop,
.cart-drawer {
  pointer-events: none;
}

.cart-shell-open .cart-drawer,
.cart-shell-open .cart-backdrop {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.38);
  opacity: 0;
  transition: opacity 220ms ease;
}

.cart-shell-open .cart-backdrop {
  opacity: 1;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 460px);
  height: 100%;
  padding: 24px 22px 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  border-left: 1px solid rgba(209, 213, 219, 0.58);
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.72), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 247, 0.98));
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  transform: translateX(100%);
  transition: transform 320ms var(--ease-out);
  box-shadow:
    -24px 0 72px rgba(17, 17, 17, 0.14),
    0 0 48px rgba(79, 124, 136, 0.1);
  overscroll-behavior: contain;
}

.cart-shell-open .cart-drawer {
  transform: translateX(0);
}

.cart-header,
.cart-footer,
.empty-cart {
  display: grid;
  gap: 12px;
}

.cart-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  padding-bottom: 2px;
}

.cart-heading {
  display: grid;
  gap: 8px;
}

.cart-header h2,
.empty-cart h3 {
  margin: 0;
  font-family: var(--font-heading), sans-serif;
}

.cart-lines {
  display: grid;
  gap: 14px;
  overflow: auto;
  padding-right: 6px;
}

.cart-line {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(209, 213, 219, 0.62);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.84);
  box-shadow:
    0 12px 28px rgba(17, 17, 17, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.cart-line-media {
  min-height: 104px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: #f5f5f5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cart-line img {
  width: 100%;
  height: 100%;
  padding: 0;
}

.cart-line-image {
  object-fit: contain;
  object-position: center;
}

.cart-line-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.cart-line-top,
.cart-line-bottom,
.cart-total-row {
  justify-content: space-between;
  gap: 14px;
}

.cart-line-top {
  align-items: start;
}

.cart-line-title-group {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.cart-line-top a {
  font-weight: 600;
  line-height: 1.15;
}

.cart-line-top strong {
  font-size: 1.08rem;
  line-height: 1;
  white-space: nowrap;
}

.cart-line-bottom {
  align-items: center;
}

.cart-line-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.text-action {
  border: 0;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--mid-grey);
  cursor: pointer;
  transition:
    transform 160ms var(--ease-out),
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.text-action:hover {
  color: var(--foreground);
  background: rgba(220, 232, 234, 0.72);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.05);
}

.text-action:active {
  transform: scale(0.97);
}

.cart-footer {
  gap: 14px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(209, 213, 219, 0.72);
  background:
    linear-gradient(180deg, rgba(244, 247, 247, 0), rgba(244, 247, 247, 0.92) 28%, rgba(244, 247, 247, 1));
}

.cart-checkout-button {
  width: 100%;
}

.empty-cart {
  height: 100%;
  place-content: center;
  text-align: center;
}

.cart-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.cart-summary-card {
  position: sticky;
  top: 116px;
  padding: 22px;
  border: 1px solid rgba(209, 213, 219, 0.62);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 16px 34px rgba(17, 17, 17, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.cart-page-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.empty-cart-page {
  min-height: 420px;
  padding: 28px;
  border: 1px solid rgba(209, 213, 219, 0.62);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.empty-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(143, 182, 176, 0.3);
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(209, 213, 219, 0.52);
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.78), transparent 24%),
    radial-gradient(circle at 86% 24%, rgba(79, 124, 136, 0.12), transparent 16%),
    radial-gradient(circle at 50% 100%, rgba(183, 216, 210, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(236, 244, 244, 0.52));
}

.footer-grid {
  align-items: center;
  row-gap: 20px;
}

.footer-banner-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  padding: 8px 0;
}

.footer-banner {
  width: auto;
  height: 64px;
  mix-blend-mode: multiply;
  opacity: 0.96;
}

.legal-page {
  min-height: calc(100vh - 220px);
  min-height: calc(100svh - 220px);
  min-height: calc(100dvh - 220px);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .button-ghost {
    background: rgba(255, 255, 255, 0.12);
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .proof-chip {
    background: rgba(255, 255, 255, 0.12);
  }

  .cart-drawer {
    background: rgba(250, 252, 252, 0.99);
  }
}

@supports not (text-wrap: balance) {
  .hero-copy h1 {
    max-width: 10ch;
    margin-inline: auto;
  }
}

.policy-hero {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}

.policy-hero h1 {
  margin: 0;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.policy-hero p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.policy-grid {
  display: grid;
  gap: 16px;
}

.policy-card,
.policy-empty-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(209, 213, 219, 0.72);
  border-radius: 34px 26px 32px 28px;
  background:
    radial-gradient(circle at top left, rgba(220, 232, 234, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.policy-empty-card {
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
}

.policy-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(180deg, #111111, #1e2b2d);
  color: #ffffff;
  font-family: var(--font-heading), sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  box-shadow:
    0 20px 38px rgba(17, 17, 17, 0.18),
    0 0 26px rgba(79, 124, 136, 0.12);
}

.policy-copy {
  display: grid;
  gap: 10px;
}

.policy-copy h2 {
  margin: 0;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -0.04em;
}

.policy-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-banner-link:hover {
  transform: translateY(-2px);
}

.highlights-section .highlight-card,
.signature-section .benefit-card,
.featured-products-section .product-card {
  animation: rise-in 560ms var(--ease-out) both;
}

.featured-products-section .product-card:nth-child(2),
.signature-section .benefit-card:nth-child(2),
.highlights-section .highlight-card:nth-child(2) {
  animation-delay: 60ms;
}

.featured-products-section .product-card:nth-child(3),
.signature-section .benefit-card:nth-child(3),
.highlights-section .highlight-card:nth-child(3) {
  animation-delay: 120ms;
}

.setup-shell {
  padding: 28px 0 0;
}

.setup-card,
.empty-state-card,
.not-found-card {
  padding: 28px;
}

.setup-card {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.setup-eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(220, 232, 234, 0.6), rgba(243, 245, 246, 0.96));
  color: rgba(17, 17, 17, 0.74);
  text-align: center;
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 12px, 0) scale(1.05);
  }
}

@keyframes ambient-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, -12px, 0) scale(1.04);
  }
}

@keyframes sheen-pass {
  from {
    transform: translate3d(-45%, 0, 0);
  }
  to {
    transform: translate3d(160%, 0, 0);
  }
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .product-layout,
  .trust-grid,
  .benefit-grid,
  .highlight-grid,
  .rhythm-grid,
  .utility-showcase-grid,
  .collection-story-grid,
  .scene-grid {
    grid-template-columns: 1fr;
  }

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

  .highlight-grid-rich {
    grid-template-columns: 1fr;
  }

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

  .cinematic-product-card-2,
  .cinematic-product-card-3 {
    transform: none;
  }

  .cinematic-product-card-2 .cinematic-product-media {
    aspect-ratio: 1 / 1;
  }

  .utility-media-wall {
    min-height: 0;
  }

  .utility-showcase-copy h2 {
    max-width: none;
  }

  .purchase-panel {
    position: static;
  }

  .closing-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section-shell {
    padding: 64px 0;
  }

  .desktop-nav {
    display: none;
  }

  .announcement-pills {
    display: none;
  }

  .mobile-only,
  .mobile-nav-shell {
    display: inline-flex;
  }

  .mobile-nav-shell {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid rgba(209, 213, 219, 0.48);
    background: rgba(255, 255, 255, 0.82);
    transition: max-height 260ms var(--ease-out);
  }

  .mobile-nav-shell-open {
    max-height: 180px;
  }

  .mobile-nav {
    display: grid;
    gap: 8px;
    padding: 14px 0 16px;
  }

  .mobile-nav-link {
    padding: 10px 0;
    color: var(--muted);
  }

  .section-heading,
  .page-intro,
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-shell {
    padding: 26px;
    border-radius: 30px;
  }

  .cinematic-panel {
    padding: 26px;
    border-radius: 32px;
  }

  .rhythm-panel,
  .rhythm-card,
  .highlight-card-large,
  .utility-point-card,
  .scene-card {
    padding: 24px;
  }

  .utility-media-wall {
    padding: 18px;
    border-radius: 30px;
  }

  .utility-media-card-1,
  .utility-media-card-2,
  .utility-media-card-3 {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }

  .hero-primary-button,
  .hero-secondary-button,
  .spotlight-button,
  .section-link-button {
    min-width: 0;
  }

  .hero-primary-button,
  .section-link-button,
  .purchase-actions .button-base,
  .empty-cart .button-base,
  .cart-checkout-button {
    width: 100%;
  }

  .hero-actions,
  .purchase-actions {
    width: 100%;
  }

  .brand-logo {
    height: 30px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px 20px 16px 20px;
  }

  .brand-wordmark {
    font-size: 1rem;
  }

  .footer-banner {
    height: 54px;
  }

  .hero-proof-row {
    display: grid;
  }

  .rhythm-pill-row {
    justify-content: center;
  }

  .product-gallery-main {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

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

  .cart-drawer {
    width: 100%;
    padding: 20px 16px calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .cart-line {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }

  .cart-line-media {
    min-height: 88px;
  }

  .cart-line-bottom {
    flex-wrap: wrap;
  }

  .cart-line-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .cart-footer {
    padding-bottom: calc(2px + env(safe-area-inset-bottom, 0px));
  }

  .cart-page-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-summary-card {
    position: static;
  }

  .policy-card,
  .policy-empty-card {
    grid-template-columns: 1fr;
  }

  .policy-empty-card .button-base {
    width: 100%;
  }
}

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

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