:root {
  --ink: #100f0d;
  --muted: #81796e;
  --line: rgba(238, 224, 199, 0.18);
  --paper: #11100e;
  --white: #fffaf0;
  --mist: #f4f0e7;
  --charcoal: #151514;
  --graphite: #282622;
  --champagne: #d7b26d;
  --copper: #b97755;
  --coral: #ff6d4a;
  --teal: #32d4c7;
  --violet: #7662f2;
  --sage: #6c806e;
  --blue: #52788f;
  --radius: 10px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--white);
  min-width: 320px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Scroll progress bar ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), var(--teal));
  z-index: 100;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

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

/* ─── Scroll animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(15, 14, 12, 0.6);
  border-bottom: 1px solid rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  transition: background 0.4s, border-color 0.4s;
}

.site-header.scrolled {
  background: rgba(15, 14, 12, 0.88);
  border-bottom-color: rgba(255, 250, 240, 0.12);
}

.brand,
.nav-links,
.hero-actions,
.trust-strip,
.header-actions,
.language-toggle,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
}

.brand-mark {
  width: 24px;
  aspect-ratio: 1;
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--champagne), 0 0 12px rgba(215, 178, 109, 0.2);
  transition: box-shadow 0.3s;
}

.brand:hover .brand-mark {
  box-shadow: inset 0 0 0 2px var(--champagne), 0 0 20px rgba(215, 178, 109, 0.4);
}

.nav-links {
  gap: 28px;
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  gap: 12px;
}

.language-toggle {
  padding: 3px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.06);
}

.language-toggle button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 250, 240, 0.55);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  transition: all 0.25s var(--ease-out);
}

.language-toggle button.active {
  background: var(--white);
  color: var(--ink);
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(255, 250, 240, 0.32);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 178, 109, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-cta:hover {
  border-color: var(--champagne);
  transform: translateY(-1px);
}

.nav-cta:hover::before {
  opacity: 1;
}

/* ─── Mobile menu ─── */
.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s var(--ease-out);
}

.menu-toggle span { top: 50%; transform: translate(-50%, -50%); }
.menu-toggle span::before { content: ""; position: absolute; top: -6px; left: 0; }
.menu-toggle span::after { content: ""; position: absolute; bottom: -6px; left: 0; }

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

/* ─── Hero ─── */
.hero {
  min-height: calc(100svh - 64px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(100px, 14vw, 180px) clamp(18px, 5vw, 72px) clamp(80px, 9vw, 120px);
  background: #0b0a09;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 178, 109, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: hero-glow 8s ease-in-out infinite alternate;
}

@keyframes hero-glow {
  from { opacity: 0.4; transform: translate(0, 0) scale(1); }
  to { opacity: 0.7; transform: translate(-40px, 30px) scale(1.1); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.96) 0%, rgba(11, 10, 9, 0.76) 30%, rgba(11, 10, 9, 0.12) 72%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.2), rgba(11, 10, 9, 0.04) 54%, #11100e 100%);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(4.2rem, 9vw, 9rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 .gradient-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--champagne) 50%, var(--teal) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.button.primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 250, 240, 0.1);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 30%, rgba(215, 178, 109, 0.3) 50%, transparent 70%);
  background-size: 300% 100%;
  animation: shimmer 3s ease infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(215, 178, 109, 0.15);
}

.button.secondary {
  border: 1px solid rgba(255, 250, 240, 0.2);
  background: rgba(255, 250, 240, 0.06);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  border-color: rgba(255, 250, 240, 0.36);
  background: rgba(255, 250, 240, 0.1);
  transform: translateY(-2px);
}

.button.wide { width: 100%; }

.button.is-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
  box-shadow: 0 0 0 1px rgba(255, 250, 240, 0.12);
}

.button.is-disabled::after { display: none; }

.trust-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-strip span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 250, 240, 0.04);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}

.trust-strip span:hover {
  border-color: rgba(215, 178, 109, 0.3);
  background: rgba(255, 250, 240, 0.08);
}

.hero-visual { display: none; }

.hero-specs {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-specs span {
  padding-top: 12px;
  border-top: 1px solid rgba(215, 178, 109, 0.35);
  transition: color 0.3s, border-color 0.3s;
}

.hero-specs span:hover {
  color: var(--champagne);
  border-color: var(--champagne);
}

/* ─── Proof band ─── */
.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(255, 250, 240, 0.08);
  background:
    linear-gradient(180deg, #131210 0%, #1a1815 100%);
  position: relative;
  overflow: hidden;
}

.proof-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 50%, rgba(215, 178, 109, 0.08), transparent 40%),
    radial-gradient(circle at 100% 50%, rgba(50, 212, 199, 0.06), transparent 40%);
  pointer-events: none;
}

.proof-band > div {
  position: relative;
  padding: 42px clamp(20px, 3vw, 48px);
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 12px;
  align-content: center;
  transition: background 0.5s var(--ease-out);
}

.proof-band > div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(215, 178, 109, 0.18), transparent);
}

.proof-band > div:hover {
  background: linear-gradient(180deg, rgba(215, 178, 109, 0.05), transparent);
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(215, 178, 109, 0.16), rgba(215, 178, 109, 0.04));
  border: 1px solid rgba(215, 178, 109, 0.22);
  color: var(--champagne);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.06),
    0 8px 20px rgba(215, 178, 109, 0.08);
  transition: transform 0.4s var(--ease-spring), border-color 0.4s, box-shadow 0.4s;
}

.proof-band > div:hover .proof-icon {
  transform: translateY(-2px) rotate(-3deg);
  border-color: rgba(215, 178, 109, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.1),
    0 14px 28px rgba(215, 178, 109, 0.16);
}

.proof-band strong {
  display: block;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 0%, var(--champagne) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.proof-band strong em {
  font-style: normal;
  font-size: 0.55em;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.7), rgba(215, 178, 109, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
  letter-spacing: 0.02em;
}

.proof-label {
  display: block;
  color: rgba(255, 250, 240, 0.56);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

/* ─── Sections ─── */
.section {
  padding: clamp(72px, 10vw, 140px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.compact { margin-bottom: 22px; }

h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* ─── Intro / Experience ─── */
.intro,
.design,
.faq {
  background: #f4f0e7;
  color: var(--ink);
}

.intro .section-heading p:not(.eyebrow),
.design .section-heading p:not(.eyebrow),
.faq .section-heading p:not(.eyebrow),
.science-panel p,
.price-copy p,
.feature-card p,
.design-grid p,
details p,
.price-card p {
  color: #7d756b;
  line-height: 1.7;
}

.product-editorial {
  margin: 0 0 22px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #151412;
  box-shadow: 0 36px 100px rgba(16, 15, 13, 0.22);
}

.product-editorial img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 58%;
  filter: contrast(1.06) saturate(0.86);
  transition: transform 0.6s var(--ease-out);
}

.product-editorial:hover img {
  transform: scale(1.02);
}

.product-editorial figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 420px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 250, 240, 0.86);
  background: rgba(12, 11, 10, 0.6);
  backdrop-filter: blur(16px);
  font-size: 0.86rem;
  line-height: 1.5;
}

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

.feature-card {
  position: relative;
  min-height: 196px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(215, 178, 109, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 250, 240, 0.96), rgba(232, 224, 210, 0.58)),
    radial-gradient(circle at 100% 0%, rgba(215, 178, 109, 0.2), transparent 40%);
  box-shadow: 0 18px 50px rgba(37, 33, 27, 0.07);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(37, 33, 27, 0.13);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 58px;
  height: 30px;
  border-bottom: 2px solid rgba(108, 128, 110, 0.22);
  border-radius: 50%;
  transform: rotate(-16deg);
  pointer-events: none;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 800;
  font-size: 0.72rem;
  transition: transform 0.3s var(--ease-spring);
}

.feature-card:hover .icon {
  transform: scale(1.1);
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.feature-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ─── Capability grid ─── */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.cap {
  --accent: 215, 178, 109;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  align-content: start;
  gap: 18px;
  min-height: 168px;
  padding: 28px 18px 22px;
  border: 1px solid rgba(20, 18, 15, 0.05);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 250, 240, 0.6) 100%);
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px rgba(37, 33, 27, 0.04);
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}

.cap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(var(--accent), 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
  z-index: -1;
}

.cap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent), 0.6), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.cap:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent), 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 26px 60px rgba(var(--accent), 0.18),
    0 8px 20px rgba(37, 33, 27, 0.05);
}

.cap:hover::before { opacity: 1; }
.cap:hover::after { opacity: 1; }

.cap-ico {
  display: grid;
  place-items: center;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(var(--accent), 0.18) 0%, rgba(var(--accent), 0.08) 100%);
  color: rgb(var(--accent));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 6px 16px rgba(var(--accent), 0.12);
  transition: transform 0.5s var(--ease-spring), background 0.5s, box-shadow 0.5s;
}

.cap:hover .cap-ico {
  transform: scale(1.08) translateY(-2px);
  background:
    linear-gradient(135deg, rgba(var(--accent), 0.28) 0%, rgba(var(--accent), 0.14) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 14px 28px rgba(var(--accent), 0.22);
}

.cap-label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 14ch;
}

/* Category accents (R, G, B) */
.cap.cat-sleep    { --accent: 125, 95, 237; }
.cap.cat-activity { --accent: 108, 128, 110; }
.cap.cat-stress   { --accent: 50, 184, 196; }
.cap.cat-heart    { --accent: 219, 68, 63; }
.cap.cat-oxygen   { --accent: 240, 100, 61; }
.cap.cat-social   { --accent: 82, 120, 143; }
.cap.cat-women    { --accent: 199, 110, 140; }
.cap.cat-water    { --accent: 70, 132, 178; }
.cap.cat-camera   { --accent: 185, 145, 80; }
.cap.cat-eda      { --accent: 118, 98, 242; }
.cap.cat-blood    { --accent: 220, 80, 60; }
.cap.cat-pressure { --accent: 245, 145, 73; }
.cap.cat-glucose  { --accent: 240, 100, 61; }

/* Indicative badge */
.cap.tier-indicative {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.96) 0%, rgba(248, 240, 226, 0.6) 100%);
}

.cap.tier-indicative .cap-ico::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px dashed rgba(var(--accent), 0.32);
  pointer-events: none;
}

.cap.tier-indicative .cap-ico {
  position: relative;
}

.cap.tier-indicative .indicative-pill,
.cap.tier-indicative::before { z-index: -1; }

.cap.tier-indicative {
  padding-top: 36px;
}

.cap.tier-indicative > .cap-label::after {
  content: "Indicatif";
  display: block;
  margin: 8px auto 0;
  padding: 3px 10px;
  width: max-content;
  border-radius: 999px;
  background: rgba(var(--accent), 0.1);
  color: rgb(var(--accent));
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

[lang="en"] .cap.tier-indicative > .cap-label::after { content: "Indicative"; }

/* ─── Medical notice ─── */
.medical-notice {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(185, 119, 85, 0.32);
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 245, 232, 0.9), rgba(252, 238, 220, 0.9));
}

.medical-icon {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
}

.medical-notice strong {
  display: block;
  margin-bottom: 6px;
  color: #6a3d28;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.medical-notice p {
  margin: 0;
  color: #6a4e3a;
  font-size: 0.94rem;
  line-height: 1.6;
}

.medical-notice b {
  color: #4d2f1d;
  font-weight: 700;
}

/* ─── Journey ─── */
.journey,
.compare {
  background: #151412;
  color: var(--white);
}

.journey .section-heading p:not(.eyebrow),
.compare .section-heading p:not(.eyebrow),
.journey-grid p,
.compare-grid p {
  color: rgba(255, 250, 240, 0.56);
}

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

.journey-grid article,
.compare-grid article {
  min-height: 196px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.05);
  transition: all 0.4s var(--ease-out);
}

.journey-grid article:hover,
.compare-grid article:hover {
  border-color: rgba(215, 178, 109, 0.2);
  background: rgba(255, 250, 240, 0.07);
  transform: translateY(-3px);
}

.journey-grid .journey-time {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--champagne);
  color: #151412;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.journey-grid p,
.compare-grid p,
.design-grid p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.journey-grid h3,
.compare-grid h3,
.design-grid h3 {
  margin-bottom: 8px;
}

/* ─── Science / Health ─── */
.science {
  background: #ede6da;
  color: var(--ink);
}

.science-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 36px;
  align-items: stretch;
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.05), transparent 40%),
    #11100e;
  color: var(--white);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.3);
}

.science-panel .eyebrow { color: var(--champagne); }

.science-panel p {
  color: rgba(255, 253, 247, 0.66);
  max-width: 680px;
}

.metric-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  --accent: 215, 178, 109;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.05);
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

.metric:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent), 0.45);
  background: rgba(var(--accent), 0.07);
}

.metric-hrv    { --accent: 233, 84, 80; }
.metric-sleep  { --accent: 139, 116, 245; }
.metric-stress { --accent: 46, 178, 214; }
.metric-spo2   { --accent: 240, 120, 70; }

.metric-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.metric-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: rgb(var(--accent));
  background: rgba(var(--accent), 0.16);
  flex-shrink: 0;
}

.metric-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 253, 247, 0.7);
}

.metric-value {
  display: block;
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric-value em {
  font-style: normal;
  font-size: 0.42em;
  font-weight: 600;
  color: rgba(255, 253, 247, 0.5);
  margin-left: 3px;
}

.metric-spark {
  width: 100%;
  height: 26px;
  color: rgb(var(--accent));
  margin-bottom: 12px;
}

.metric-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 26px;
  margin-bottom: 12px;
}

.metric-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 3px;
  background: rgb(var(--accent));
  opacity: 0.85;
}

.metric-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 26px;
  margin-bottom: 12px;
}

.metric-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.16);
}

.metric-dots i.on { background: rgb(var(--accent)); }

.metric-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.12);
  overflow: hidden;
  margin-bottom: 12px;
  margin-top: 6px;
}

.metric-track span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: rgb(var(--accent));
}

.metric-status {
  margin-top: auto;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgb(var(--accent));
  background: rgba(var(--accent), 0.14);
}

/* ─── App preview ─── */
.app-preview {
  background:
    radial-gradient(circle at 18% 0%, rgba(50, 212, 199, 0.1), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(215, 178, 109, 0.14), transparent 28%),
    linear-gradient(180deg, #f7f1e7 0%, #e3d7c6 100%);
  color: var(--ink);
}

.app-preview .section-heading { max-width: 940px; }

.sync-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 9px 18px 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(178, 140, 70, 0.38);
  background: linear-gradient(135deg, rgba(215, 178, 109, 0.22), rgba(215, 178, 109, 0.08));
  color: rgba(28, 22, 11, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.005em;
}

.sync-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #d7b26d, #c69a4f);
  border: 1px solid rgba(150, 115, 55, 0.5);
  color: #2a2008;
}

.phone-stage {
  display: grid;
  grid-template-columns: minmax(340px, 460px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.phone-shell {
  --c-red: #ef4d4d;
  --c-coral: #f0814e;
  --c-orange: #f59149;
  --c-yellow: #f5c451;
  --c-green: #2abd68;
  --c-teal: #2fcfc0;
  --c-blue: #5798ef;
  --c-purple: #7d5fed;
  --c-purple-soft: #a89bff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 20px 16px 0;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 36px;
  background: linear-gradient(180deg, #e7f1f2 0%, #f3f6f7 30%, #f3f6f7 100%);
  box-shadow:
    0 40px 100px rgba(62, 48, 31, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition: transform 0.5s var(--ease-out);
  color: #1c1f24;
}

.phone-shell:hover {
  transform: translateY(-6px);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 18px;
  color: #1c1f24;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.phone-share {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #1c1f24;
  cursor: pointer;
  transition: background 0.25s var(--ease-out);
}

.phone-share:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* ─── Summary (open ring + stats list) ─── */
.app-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.activity-ring {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.activity-ring > svg:not(.ring-feet) {
  width: 100%;
  height: 100%;
  transform: rotate(135deg);
}

.activity-ring .ring-track,
.activity-ring .ring-fill {
  fill: none;
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 235 314;
}

.activity-ring .ring-track {
  stroke: rgba(47, 207, 192, 0.18);
}

.activity-ring .ring-fill {
  stroke: var(--c-teal);
  stroke-dasharray: 162 314;
  filter: drop-shadow(0 6px 12px rgba(47, 207, 192, 0.35));
}

.activity-ring .ring-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
}

.activity-ring .ring-text strong {
  display: block;
  font-size: clamp(1.7rem, 4.6vw, 2.3rem);
  font-weight: 800;
  color: #111720;
  letter-spacing: -0.02em;
}

.activity-ring .ring-text span {
  display: block;
  margin-top: 4px;
  color: #8a9097;
  font-size: 0.78rem;
  font-weight: 700;
}

.activity-ring .ring-feet {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-teal);
}

.summary-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.summary-stats li {
  display: grid;
  grid-template-columns: 8px 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
}

.summary-stats .dot {
  grid-row: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  align-self: center;
}

.summary-stats .dot-red { background: var(--c-red); }
.summary-stats .dot-blue { background: var(--c-blue); }
.summary-stats .dot-purple { background: var(--c-purple); }

.summary-stats .stat-label {
  grid-column: 2;
  grid-row: 1;
  color: #8a9097;
  font-size: 0.78rem;
  font-weight: 600;
}

.summary-stats strong {
  grid-column: 2;
  grid-row: 2;
  color: #111720;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.summary-stats strong em {
  margin-left: 4px;
  color: #8a9097;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
}

/* ─── Featured workout card ─── */
.workout-card {
  padding: 14px 14px 12px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(62, 48, 31, 0.06);
}

.workout-head {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.workout-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 207, 192, 0.16);
  color: var(--c-teal);
}

.workout-title strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 800;
  color: #111720;
  letter-spacing: -0.01em;
}

.workout-title small {
  display: block;
  margin-top: 2px;
  color: #8a9097;
  font-size: 0.74rem;
  font-weight: 600;
}

.workout-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.workout-stats div {
  min-width: 0;
  text-align: center;
}

.workout-stats span {
  display: block;
  color: #8a9097;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.workout-stats strong {
  display: block;
  color: #111720;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.workout-stats strong em {
  margin-left: 3px;
  color: #8a9097;
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 700;
}

.workout-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pill {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.pill-teal {
  background: rgba(47, 207, 192, 0.14);
  color: #0f8a80;
}

.pill-orange {
  background: rgba(245, 145, 73, 0.14);
  color: #c25e1d;
}

/* ─── Health cards grid ─── */
.health-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 1;
}

.health-card {
  --tone: #1c1f24;
  position: relative;
  min-height: 130px;
  padding: 12px 12px 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(62, 48, 31, 0.06);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  transition: transform 0.3s var(--ease-out);
}

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

.health-card header {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
}

.health-card .card-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tone);
  color: #fff;
}

.health-card .card-title {
  color: var(--tone);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: right;
  line-height: 1.1;
}

.health-card .card-value {
  margin: 2px 0 8px;
  color: #111720;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.health-card .card-value em {
  margin-left: 3px;
  color: #8a9097;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
}

.health-card small {
  margin-top: 8px;
  color: #8a9097;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Bars (sleep) */
.card-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 26px;
}

.card-bars i {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 2px;
  background: linear-gradient(180deg, var(--c-purple-soft), var(--c-purple));
  opacity: 0.9;
}

/* Mini hypnogram (sleep card) */
.card-hypno {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.card-hypno svg {
  width: 100%;
  height: 36px;
  display: block;
}

/* Segments */
.card-segments {
  position: relative;
  display: grid;
  gap: 3px;
  align-items: center;
  height: 14px;
}

.card-segments i {
  height: 5px;
  border-radius: 999px;
}

.card-segments.segments-5 { grid-template-columns: repeat(5, 1fr); }
.card-segments.segments-5 i:nth-child(1) { background: var(--c-blue); }
.card-segments.segments-5 i:nth-child(2) { background: var(--c-green); }
.card-segments.segments-5 i:nth-child(3) { background: var(--c-yellow); }
.card-segments.segments-5 i:nth-child(4) { background: var(--c-coral); }
.card-segments.segments-5 i:nth-child(5) { background: var(--c-red); }

.card-segments.segments-6 { grid-template-columns: repeat(6, 1fr); }
.card-segments.segments-6 i:nth-child(1) { background: var(--c-blue); }
.card-segments.segments-6 i:nth-child(2) { background: var(--c-green); }
.card-segments.segments-6 i:nth-child(3) { background: var(--c-yellow); }
.card-segments.segments-6 i:nth-child(4) { background: var(--c-orange); }
.card-segments.segments-6 i:nth-child(5) { background: var(--c-red); }
.card-segments.segments-6 i:nth-child(6) { background: #a82018; }

.card-segments.segments-3 { grid-template-columns: 1fr 1fr 1fr; }
.card-segments.segments-3 i:nth-child(1) { background: var(--c-blue); }
.card-segments.segments-3 i:nth-child(2) { background: var(--c-green); }
.card-segments.segments-3 i:nth-child(3) { background: var(--c-orange); }

.card-segments.segments-duo { grid-template-columns: 78% 22%; }
.card-segments.segments-duo i:nth-child(1) { background: var(--c-orange); }
.card-segments.segments-duo i:nth-child(2) { background: var(--c-green); }

.segment-marker {
  position: absolute;
  top: -8px;
  left: var(--pos, 50%);
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--c-green);
}

.segment-marker.marker-down {
  top: -8px;
  border-top-color: var(--c-blue);
}

/* Card tones */
.health-card.sleep { --tone: var(--c-purple); }
.health-card.heart,
.health-card.hrv { --tone: var(--c-red); }
.health-card.pressure { --tone: var(--c-orange); }
.health-card.oxygen { --tone: var(--c-coral); }
.health-card.met { --tone: var(--c-green); }

/* HRV graph */
.card-graph {
  width: 100%;
  height: 32px;
  color: var(--c-red);
}

.card-graph circle {
  fill: var(--c-red);
}

/* ─── Phone bottom nav ─── */
.phone-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 16px -16px 0;
  padding: 10px 0 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  border-radius: 0 0 35px 35px;
}

.phone-nav span {
  display: grid;
  place-items: center;
  gap: 2px;
  color: #b1b6bc;
  font-size: 0.7rem;
  font-weight: 700;
}

.phone-nav span.active {
  color: var(--c-teal);
}

.sensor-note { max-width: 560px; }

.sensor-note h3 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.sensor-note p {
  color: #63584c;
  font-size: 1.06rem;
  line-height: 1.75;
}

/* ─── Design ─── */
.design-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.design-grid article {
  padding: 22px;
  border: 1px solid rgba(215, 178, 109, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.72);
  transition: all 0.35s var(--ease-out);
}

.design-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 33, 27, 0.1);
  border-color: rgba(215, 178, 109, 0.22);
}

/* ─── Charging-case showcase ─── */
.charge-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  margin-top: 24px;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(215, 178, 109, 0.2);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(120% 120% at 82% 0%, rgba(215, 178, 109, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.55));
  box-shadow: 0 24px 60px rgba(37, 33, 27, 0.08);
  overflow: hidden;
}
/* two real product photos, framed as rounded tiles */
.charge-gallery {
  display: grid;
  justify-items: center;
  gap: 18px;
}
.charge-shot {
  /* transparent product cut-out — floats on the cream panel, no frame */
  margin: 0;
  display: flex;
  justify-content: center;
}
.charge-shot img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 340px; /* keep the photo to roughly the height of the copy block */
  filter: drop-shadow(0 22px 34px rgba(37, 33, 27, 0.32));
  transition: transform 0.6s var(--ease-spring);
}
.charge-shot:hover img { transform: translateY(-4px) scale(1.02); }
.charge-copy h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  margin: 10px 0 14px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.charge-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.charge-points li {
  position: relative;
  padding-left: 28px;
  color: #6a625a;
  font-weight: 500;
  font-size: 0.98rem;
}
.charge-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #f0d28f, #b8923f);
  box-shadow: 0 0 0 4px rgba(215, 178, 109, 0.14);
}
@media (max-width: 760px) {
  .charge-showcase {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ─── Specs ─── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 14px;
}

.spec-card {
  padding: 24px 24px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.03);
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.spec-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 178, 109, 0.32);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.spec-card h3 {
  margin: 0 0 6px;
  color: var(--champagne);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.spec-card dl { margin: 0; }

.spec-card dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.spec-card dt {
  color: var(--muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.spec-card dd {
  margin: 0;
  text-align: right;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.spec-box {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(215, 178, 109, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(215, 178, 109, 0.08), rgba(50, 212, 199, 0.04));
}

.spec-box h3 {
  margin: 0 0 6px;
  color: var(--champagne);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.spec-box p {
  margin: 0;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
}

.spec-note {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ─── Sleep ─── */
.section.sleep {
  background:
    radial-gradient(120% 80% at 15% 0%, rgba(118, 98, 242, 0.16), transparent 55%),
    radial-gradient(110% 90% at 100% 100%, rgba(228, 114, 216, 0.1), transparent 50%),
    var(--paper);
}

.sleep-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(118, 98, 242, 0.22);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(150deg, rgba(255, 250, 240, 0.04), rgba(118, 98, 242, 0.05));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.sleep-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: sticky;
  top: 90px;
}

.sleep-ring {
  position: relative;
  width: clamp(200px, 26vw, 264px);
  aspect-ratio: 1;
}

.sleep-ring svg {
  width: 100%;
  height: 100%;
}

.sleep-ring circle {
  fill: none;
  stroke-width: 11;
  stroke-linecap: round;
}

.sleep-ring .sr-track { stroke: rgba(255, 250, 240, 0.08); }

.sleep-ring .sr-dur,
.sleep-ring .sr-qual {
  transform: rotate(-90deg);
  transform-origin: 65px 65px;
}

.sleep-ring .sr-dur {
  stroke: var(--violet);
  stroke-dasharray: 339.3;
  stroke-dashoffset: 34;
  filter: drop-shadow(0 0 6px rgba(118, 98, 242, 0.5));
}

.sleep-ring .sr-qual {
  stroke: #e472d8;
  stroke-dasharray: 251.3;
  stroke-dashoffset: 50;
}

.sleep-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.sleep-ring-text strong {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.sleep-ring-text strong em {
  font-style: normal;
  font-size: 0.5em;
  color: var(--muted);
  margin: 0 1px 0 1px;
}

.sleep-ring-text span {
  font-size: 0.82rem;
  color: var(--muted);
}

.sleep-quality {
  text-align: center;
}

.sleep-quality-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin-bottom: 6px;
}

.sleep-quality strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.sleep-stars {
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: #f0c14b;
}

.sleep-stars .star-empty { color: rgba(255, 250, 240, 0.2); }

.sleep-detail { width: 100%; }

.sleep-detail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.sd-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}

.sd-total {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.sd-total em {
  font-style: normal;
  font-size: 0.5em;
  color: var(--muted);
  margin: 0 1px;
}

.sleep-hypno svg {
  display: block;
  width: 100%;
  height: clamp(96px, 15vw, 128px);
}

.hb-light { fill: #9f8cf5; }
.hb-deep { fill: #5b46c9; }
.hb-rem { fill: #4fb6e6; }

.sleep-schedule {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 22px;
  font-size: 0.78rem;
  color: var(--muted);
}

.sleep-schedule span:nth-child(2) {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.stage-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stage {
  display: grid;
  grid-template-columns: 14px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.stage:first-child { border-top: none; }

.stage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.stage-awake .stage-dot { background: #e0a93f; }
.stage-rem .stage-dot { background: #4fb6e6; }
.stage-light .stage-dot { background: #9f8cf5; }
.stage-deep .stage-dot { background: #5b46c9; }

.stage-name {
  font-size: 0.96rem;
  color: var(--white);
}

.stage-pct {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--white);
}

.stage-dur {
  min-width: 70px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  font-size: 0.9rem;
}

.sleep-trend {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(118, 98, 242, 0.08);
  border: 1px solid rgba(118, 98, 242, 0.18);
}

.trend-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 16px;
}

.trend-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.trend-avg {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.trend-avg em {
  font-style: normal;
  font-size: 0.5em;
  color: var(--muted);
  margin: 0 1px;
}

.trend-delta {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: #9f8cf5;
}

.trend-chart {
  display: grid;
  gap: 7px;
}

.trend-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: clamp(10px, 3vw, 28px);
  height: 96px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  /* repère discret à 5 h (50 % de l'axe 0–10 h) */
  background-image: linear-gradient(to top, transparent calc(50% - 0.5px), rgba(255, 250, 240, 0.07) calc(50% - 0.5px), rgba(255, 250, 240, 0.07) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}

.trend-bars .tb {
  width: 100%;
  max-width: 26px;
  margin: 0 auto;
  height: var(--t, 0%);
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.04);
}

.trend-bars .tb i {
  width: 100%;
  height: var(--h);
  display: block;
}

.ts-awake { background: #e0a93f; }
.ts-rem   { background: #4fb6e6; }
.ts-light { background: #9f8cf5; }
.ts-deep  { background: #5b46c9; }

.trend-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(10px, 3vw, 28px);
}

.trend-days span {
  text-align: center;
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}

/* ─── Compare ─── */
.compare .section-heading { max-width: 980px; }

.compare-grid h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ─── Pricing ─── */
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(135deg, #eee4d5 0%, #f8f3e9 55%, #dfd1bb 100%);
  color: var(--ink);
  position: relative;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(215, 178, 109, 0.12), transparent 60%);
  pointer-events: none;
}

.price-copy { max-width: 760px; }

/* product visual under the Founders copy — transparent cut-out, floats on the panel */
.price-visual {
  margin: clamp(28px, 5vw, 56px) auto 0; /* centered relative to the text block */
  max-width: 360px;
}
.price-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 38px rgba(68, 52, 34, 0.3));
}

.price-card {
  padding: 28px;
  border: 1px solid rgba(215, 178, 109, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 36px 100px rgba(68, 52, 34, 0.18);
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease-out);
}

.price-card:hover {
  transform: translateY(-4px);
}

.badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8ece8, #d8ddd8);
  color: #3a4d3c;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.price {
  margin-top: 18px;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--ink), #3d3428);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: #403e3a;
  font-weight: 600;
  font-size: 0.95rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne), #c5983e);
  box-shadow: 0 2px 6px rgba(215, 178, 109, 0.3);
}

/* ─── Preorder form ─── */
.preorder-form {
  display: grid;
  gap: 12px;
}

.preorder-field {
  display: grid;
  gap: 12px;
}

.preorder-form input[type="email"] {
  width: 100%;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 15, 13, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.preorder-form input[type="email"]::placeholder {
  color: rgba(64, 62, 58, 0.5);
}

.preorder-form input[type="email"]:focus {
  outline: none;
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(215, 178, 109, 0.28);
}

/* Submit button: dark fill so it reads on the cream price card. */
.preorder-form .button.primary {
  background: linear-gradient(135deg, var(--ink), #2c2822);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(16, 15, 13, 0.26);
}

.preorder-form .button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(16, 15, 13, 0.32);
}

.preorder-form .button.primary:disabled {
  opacity: 0.6;
  pointer-events: none;
  transform: none;
}

.preorder-status {
  margin: 2px 4px 0;
  min-height: 1.25em;
  font-size: 0.86rem;
  font-weight: 600;
  color: #403e3a;
}

.preorder-status.is-success { color: #2f7d56; }
.preorder-status.is-error { color: #c0432b; }

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

/* ─── FAQ ─── */
.faq {
  max-width: 980px;
  margin: 0 auto;
}

details {
  padding: 20px 22px;
  margin-top: 10px;
  border: 1px solid rgba(215, 178, 109, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.72);
  transition: all 0.3s var(--ease-out);
}

details[open] {
  border-color: rgba(215, 178, 109, 0.2);
  background: rgba(255, 250, 240, 0.88);
}

summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(215, 178, 109, 0.12);
  color: var(--ink);
  font-weight: 400;
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}

details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  background: rgba(215, 178, 109, 0.22);
}

details p {
  margin-top: 12px;
}

/* ─── Footer ─── */
.site-footer {
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.5);
  font-size: 0.9rem;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 800;
}

.site-footer a {
  transition: color 0.25s;
}

.site-footer a:hover {
  color: var(--champagne);
}

/* ─── Custom scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(215, 178, 109, 0.25);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(215, 178, 109, 0.45);
}

/* ─── Selection ─── */
::selection {
  background: rgba(215, 178, 109, 0.28);
  color: var(--white);
}

/* ─── Responsive ─── */
@media (max-width: 820px) {
  .sleep-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sleep-score { position: static; }
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* The header has backdrop-filter, which makes it the containing block for
       this fixed child — so we size to fill the viewport below it (top: 100% =
       header height) instead of relying on bottom: 0. */
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 100%);
    padding: 24px clamp(18px, 4vw, 56px) 40px;
    gap: 0;
    background: #0f0e0c;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 19;
    font-size: 1.4rem;
    overflow-y: auto;
    animation: menu-in 0.35s var(--ease-out);
  }

  .nav-links.mobile-open a {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.08);
  }

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

  .hero,
  .science-panel,
  .phone-stage,
  .pricing {
    grid-template-columns: 1fr;
  }
  /* keep the product visual a tasteful accent when stacked, not a full-height block */
  .price-visual { margin-top: 28px; max-width: 260px; margin-inline: auto; }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(11, 10, 9, 0.96) 0%, rgba(11, 10, 9, 0.76) 54%, rgba(11, 10, 9, 0.2) 100%),
      linear-gradient(180deg, rgba(11, 10, 9, 0.2), #11100e 100%);
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.4rem, 16vw, 6.4rem);
  }

  .proof-band,
  .feature-grid,
  .journey-grid,
  .compare-grid,
  .design-grid,
  .capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .phone-shell { max-width: 460px; }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding: 12px 16px;
  }

  .brand span:last-child { display: none; }
  .header-actions { margin-left: auto; }
  .language-toggle button { min-width: 34px; }
  .nav-cta { padding: 9px 12px; font-size: 0.82rem; }

  .hero { padding-inline: 16px; }

  .hero-media img { object-position: 68% center; }

  .hero-specs {
    position: static;
    margin-top: 28px;
  }

  .feature-grid,
  .journey-grid,
  .compare-grid,
  .design-grid {
    grid-template-columns: 1fr;
  }

  /* 2 cartes par ligne sur mobile */
  .proof-band { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 52px 16px; }
  .section-heading { margin-bottom: 24px; }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
    line-height: 1;
  }

  .feature-grid,
  .journey-grid,
  .compare-grid,
  .design-grid { gap: 10px; }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .cap {
    min-height: 96px;
    padding: 14px 10px;
  }

  .medical-notice {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .feature-card,
  .journey-grid article,
  .compare-grid article,
  .design-grid article {
    min-height: auto;
    padding: 18px;
  }

  .feature-card {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
    align-content: start;
  }

  .feature-card::after {
    width: 42px;
    height: 22px;
    right: 12px;
    top: 12px;
  }

  .feature-card .icon {
    grid-row: span 2;
    width: 34px;
    margin: 0;
  }

  .feature-card h3 { margin: 2px 0 6px; font-size: 1.02rem; }
  .feature-card p { max-width: 30rem; font-size: 0.92rem; }

  .journey-grid span {
    margin-bottom: 18px;
    padding: 7px 9px;
    font-size: 0.76rem;
  }

  .product-editorial figcaption {
    position: static;
    border-radius: 0;
  }

  /* 2×2 grid: clean dividers, no stray vertical lines */
  .proof-band > div + div::before { display: none; }
  .proof-band > div {
    padding: 28px clamp(14px, 4vw, 24px);
    border-right: 0;
    border-bottom: 0;
  }
  .proof-band > div:nth-child(odd) { border-right: 1px solid rgba(255, 250, 240, 0.08); }
  .proof-band > div:nth-child(1),
  .proof-band > div:nth-child(2) { border-bottom: 1px solid rgba(255, 250, 240, 0.08); }

  .phone-shell {
    padding: 18px 14px 0;
    border-radius: 32px;
  }

  .phone-top { font-size: 1.35rem; padding-bottom: 14px; }

  .activity-ring { max-width: 150px; }
  .activity-ring .ring-text strong { font-size: 1.5rem; }

  .summary-stats { gap: 10px; }
  .summary-stats strong { font-size: 1rem; }

  .workout-stats strong { font-size: 0.85rem; }
  .workout-pills { grid-template-columns: 1fr; }

  .health-grid { gap: 8px; }
  .health-card {
    min-height: 120px;
    padding: 11px 10px 12px;
  }
  .health-card .card-value { font-size: 1.3rem; }
  .health-card .card-title { font-size: 0.7rem; }

  .phone-nav { margin: 12px -14px 0; border-radius: 0 0 30px 30px; }
}

/* ─────────────────────────────────────────────
   Ring size guide modal (Guide des tailles)
   ───────────────────────────────────────────── */
.size-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.size-modal.open { display: flex; }
.size-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 3, 0.74);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: sizeModalFade 0.25s ease;
}
.size-modal__card {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, var(--graphite), var(--charcoal));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  animation: sizeModalPop 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes sizeModalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes sizeModalPop {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.size-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(238, 224, 199, 0.05);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
}
.size-modal__close:hover {
  background: rgba(238, 224, 199, 0.12);
  border-color: rgba(238, 224, 199, 0.4);
  transform: rotate(90deg);
}
.size-modal__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  padding-right: 2.5rem;
}
.size-modal__icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(215, 178, 109, 0.24), rgba(215, 178, 109, 0.08));
  border: 1px solid rgba(215, 178, 109, 0.34);
  color: var(--champagne);
}
.size-modal__title {
  margin: 0;
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.size-modal__sub {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.size-modal__tip {
  background: rgba(215, 178, 109, 0.08);
  border: 1px solid rgba(215, 178, 109, 0.2);
  border-left: 3px solid var(--champagne);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  margin-bottom: 1.1rem;
  color: var(--white);
  font-size: 0.85rem;
  line-height: 1.55;
}
.size-modal__tip strong { color: #e7c889; font-weight: 700; }
.size-table-wrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.size-table { width: 100%; border-collapse: collapse; }
.size-table th {
  text-align: left;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  font-weight: 700;
  padding: 0.7rem 1rem;
  background: rgba(238, 224, 199, 0.05);
}
.size-table td {
  padding: 0.7rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.size-table th:not(:first-child),
.size-table td:not(:first-child) { text-align: right; }
.size-table tbody tr:nth-child(even) { background: rgba(238, 224, 199, 0.03); }
.size-table tbody tr:hover { background: rgba(215, 178, 109, 0.09); }
.size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 0.15rem 0.6rem;
  font-weight: 800;
  color: #e7c889;
  background: rgba(215, 178, 109, 0.13);
  border: 1px solid rgba(215, 178, 109, 0.32);
  border-radius: 8px;
}
.size-modal__foot {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.5;
}
.size-guide-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.4rem auto 0;
  background: none;
  border: none;
  color: var(--champagne);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0.3rem 0.2rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.size-guide-trigger:hover {
  color: #e7c889;
  border-bottom-color: rgba(215, 178, 109, 0.5);
}
@media (prefers-reduced-motion: reduce) {
  .size-modal__overlay,
  .size-modal__card { animation: none; }
  .size-modal__close:hover { transform: none; }
}

/* ─────────────────────────────────────────────
   Preorder colour picker (Noir / Or / Argent)
   ───────────────────────────────────────────── */
.color-picker {
  border: 0;
  margin: 0 0 1rem;
  padding: 0;
}
.color-picker__label {
  padding: 0;
  margin: 0 0 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--muted);
}
.color-options {
  display: flex;
  gap: 0.75rem;
}
.color-option {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.color-option:hover {
  border-color: rgba(238, 224, 199, 0.35);
  transform: translateY(-1px);
}
.color-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.color-swatch {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.35),
    inset 0 -3px 6px rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.4);
}
.color-swatch--noir { background: linear-gradient(145deg, #4a4a4d 0%, #1a1a1c 55%, #050506 100%); }
.color-swatch--or { background: linear-gradient(145deg, #ffe9a8 0%, #d7b26d 45%, #9c7320 100%); }
.color-swatch--argent { background: linear-gradient(145deg, #ffffff 0%, #d2d2d6 45%, #8f8f96 100%); }
.color-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}
.color-option:has(input:checked) {
  border-color: var(--champagne);
  background: rgba(215, 178, 109, 0.1);
}
.color-option:has(input:checked) .color-swatch {
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
}
.color-option input:focus-visible + .color-swatch {
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
}

/* ─── Size guide: measure illustration ─── */
.size-modal__measure {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(238, 224, 199, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.1rem;
}
.measure-illu {
  flex: none;
  width: 104px;
  height: auto;
}
.size-modal__measure-cap {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}
@media (max-width: 400px) {
  .size-modal__measure { flex-direction: column; text-align: center; gap: 0.6rem; }
  .measure-illu { width: 120px; }
}

/* ─── Preorder size select ─── */
.size-field { margin: 0 0 1rem; }
.size-field__label {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--muted);
}
.size-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(238, 224, 199, 0.04);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7b26d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
  padding: 0.8rem 2.6rem 0.8rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.size-select:hover { border-color: rgba(238, 224, 199, 0.35); }
.size-select:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
  border-color: var(--champagne);
}
.size-select option { background: #1d1812; color: var(--white); }

/* ─────────────────────────────────────────────
   Refinements: ring-shaped swatches + finer proof band
   ───────────────────────────────────────────── */
/* Color swatches look like rings (metal band + hole) */
.color-swatch {
  position: relative;
  width: 44px;
  height: 44px;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.45),
    inset 0 -3px 6px rgba(0, 0, 0, 0.55),
    0 3px 7px rgba(0, 0, 0, 0.45);
}
.color-swatch::after {
  content: "";
  position: absolute;
  inset: 33%;
  border-radius: 999px;
  background: #15140f;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.85);
}
/* Slimmer, finer proof band */
.proof-band > div { padding: 24px clamp(14px, 2.4vw, 30px); gap: 9px; }
.proof-icon { width: 34px; border-radius: 10px; }
.proof-icon svg { width: 18px; height: 18px; }
.proof-band strong { font-size: clamp(1.35rem, 2.4vw, 1.95rem); }
.proof-label { font-size: 0.74rem; }

/* ─── Mobile: brand logo as menu trigger (hamburger removed) ─── */
.menu-toggle { display: none !important; }
.brand { cursor: pointer; }

/* ─── Premium size chips + larger hand illustration ─── */
.size-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.size-chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(238, 224, 199, 0.03);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s, color .2s, box-shadow .2s;
}
.size-chip:hover { border-color: rgba(238, 224, 199, 0.4); transform: translateY(-1px); }
.size-chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; }
.size-chip span { pointer-events: none; }
.size-chip:has(input:checked) {
  border-color: var(--champagne);
  background: linear-gradient(180deg, rgba(215, 178, 109, 0.22), rgba(215, 178, 109, 0.08));
  color: #f4dca0;
  box-shadow: 0 4px 14px rgba(215, 178, 109, 0.16);
}
.size-chip input:focus-visible + span { outline: 2px solid var(--champagne); outline-offset: 4px; border-radius: 6px; }
.measure-illu { width: 150px; }

/* ─── Light price-card: make size chips + colour names readable on cream bg ─── */
.price-card .size-field__label,
.price-card .color-picker__label { color: #6b5526; }

.price-card .size-chip {
  background: rgba(26, 23, 20, 0.045);
  border-color: rgba(26, 23, 20, 0.16);
  color: #2c2722;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.price-card .size-chip:hover {
  border-color: var(--champagne);
  background: rgba(215, 178, 109, 0.14);
  transform: translateY(-1px);
}
.price-card .size-chip:has(input:checked) {
  border-color: #c79a48;
  background: linear-gradient(180deg, #efce8e 0%, #d7b26d 100%);
  color: #3a2c0c;
  box-shadow: 0 6px 16px rgba(215, 178, 109, 0.42);
}

.price-card .color-name { color: #2c2722; }
.price-card .color-option {
  border-color: rgba(26, 23, 20, 0.14);
  background: rgba(26, 23, 20, 0.03);
}
.price-card .color-option:hover { border-color: rgba(26, 23, 20, 0.32); }
.price-card .color-option:has(input:checked) {
  border-color: #c79a48;
  background: rgba(215, 178, 109, 0.2);
}

/* ─── ring-swatch SVG (real ring shape, 3 metal finishes) ─── */
.ring-swatch {
  width: 52px;
  height: 52px;
  display: block;
  background: none;
  box-shadow: none;
}
.ring-swatch::after { content: none; }
.ring-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.32));
  transition: transform 0.18s var(--ease-out);
}
.color-option:hover .ring-svg { transform: translateY(-1px) scale(1.03); }
.color-option:has(input:checked) .ring-svg {
  filter: drop-shadow(0 4px 10px rgba(215, 178, 109, 0.55));
}

/* ─── ring-photo overlay: real product photo, falls back to SVG if file missing ─── */
.ring-swatch { position: relative; }
.ring-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
/* when a photo successfully loads, hide the drawn SVG underneath */
.ring-swatch:has(.ring-photo) .ring-svg { opacity: 0; }

/* ─── Journey timeline — premium upgrade ─── */
.journey-grid { gap: 24px; counter-reset: jstep; }
.journey-grid article {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 26px;
  border-radius: 18px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(215,178,109,0.07), transparent 55%),
    linear-gradient(180deg, rgba(255,250,240,0.035), rgba(255,250,240,0.008));
  border: 1px solid rgba(238,224,199,0.10);
  overflow: hidden;
}
/* top accent line that fills on hover */
.journey-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), transparent 70%);
  opacity: 0.5;
  transition: opacity .4s var(--ease-out);
}
/* faint step number watermark — centered behind the content */
.journey-grid article::after {
  counter-increment: jstep;
  content: "0" counter(jstep);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(238,224,199,0.09);
  pointer-events: none;
  z-index: 0;
}
/* keep card content above the watermark */
.journey-top,
.journey-grid h3 { position: relative; z-index: 1; }
.journey-grid article:hover { border-color: rgba(215,178,109,0.4); box-shadow: 0 28px 70px rgba(0,0,0,0.5); }
.journey-grid article:hover::before { opacity: 1; }

.journey-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
/* the time pill */
.journey-grid .journey-time {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 7px 15px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: #f4dca0;
  background: rgba(215,178,109,0.12);
  border: 1px solid rgba(215,178,109,0.3);
  box-shadow: none;
}
/* icon medallion — refined gold glass (overrides the generic .journey-grid span fill) */
.journey-grid .journey-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border-radius: 13px;
  color: #f4dca0;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(215,178,109,0.28), rgba(215,178,109,0.06) 70%),
    linear-gradient(160deg, rgba(255,250,240,0.05), rgba(255,250,240,0));
  border: 1px solid rgba(215,178,109,0.3);
  box-shadow:
    inset 0 1px 0 rgba(255,250,240,0.14),
    inset 0 -8px 14px rgba(0,0,0,0.25),
    0 6px 16px rgba(0,0,0,0.3);
  transition: transform .4s var(--ease-spring), border-color .4s, box-shadow .4s;
}
.journey-icon svg { width: 22px; height: 22px; }
.journey-grid article:hover .journey-icon {
  transform: translateY(-2px) rotate(-3deg);
  border-color: rgba(215,178,109,0.55);
  box-shadow:
    inset 0 1px 0 rgba(255,250,240,0.18),
    inset 0 -8px 14px rgba(0,0,0,0.25),
    0 10px 22px rgba(215,178,109,0.18);
}
.journey-grid h3 { font-size: 1.22rem; margin: 0 0 10px; letter-spacing: -0.01em; }
.journey-grid p { position: relative; z-index: 1; }

/* real data readout — one clean glass chip, grounds each moment in ring metrics */
.journey-metric {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 9px;
  align-self: center; /* center the chip horizontally in the card */
  max-width: 100%;
  margin-top: 22px;
  padding: 8px 15px 8px 13px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,250,240,0.07), rgba(255,250,240,0.025));
  border: 1px solid rgba(238,224,199,0.14);
  box-shadow: inset 0 1px 0 rgba(255,250,240,0.06), 0 4px 16px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: border-color .4s var(--ease-out), transform .4s var(--ease-spring), box-shadow .4s;
}
/* gold shimmer sweep — staggered per card for a calm wave */
.journey-metric::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(244,220,160,0.22) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: journeyShimmer 6s var(--ease-out) infinite;
  pointer-events: none;
}
.journey-grid article:nth-child(2) .journey-metric::after { animation-delay: 2s; }
.journey-grid article:nth-child(3) .journey-metric::after { animation-delay: 4s; }
@keyframes journeyShimmer {
  0%   { transform: translateX(-130%); }
  18%  { transform: translateX(130%); }
  100% { transform: translateX(130%); }
}
.journey-grid article:hover .journey-metric {
  border-color: rgba(215,178,109,0.32);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,250,240,0.08), 0 8px 22px rgba(0,0,0,0.32);
}
/* value text */
.journey-metric-val {
  position: relative;
  z-index: 1;
  color: #efe3cd;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.004em;
  line-height: 1.35;
  /* wrap instead of clipping inside narrow tablet cards (761–920px) */
  overflow-wrap: anywhere;
}
/* status dot */
.journey-dot {
  position: relative;
  z-index: 1;
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 8px rgba(215,178,109,0.6);
}
/* live indicator for the active-day card */
.journey-metric.is-live .journey-dot {
  background: #6fce97;
  box-shadow: 0 0 8px rgba(111,206,151,0.7);
  animation: journeyPulse 2.4s var(--ease-out) infinite;
}
@keyframes journeyPulse {
  0%   { box-shadow: 0 0 8px rgba(111,206,151,0.5), 0 0 0 0 rgba(111,206,151,0.5); }
  70%  { box-shadow: 0 0 8px rgba(111,206,151,0.5), 0 0 0 7px rgba(111,206,151,0); }
  100% { box-shadow: 0 0 8px rgba(111,206,151,0.5), 0 0 0 0 rgba(111,206,151,0); }
}
@media (prefers-reduced-motion: reduce) {
  .journey-metric::after,
  .journey-metric.is-live .journey-dot { animation: none; }
  .journey-metric::after { display: none; }
}

/* ─── ring-photo: real 800×800 product photo, premium tile ─── */
.ring-swatch {
  width: 100%;
  max-width: 92px;
  height: auto;
  aspect-ratio: 7 / 8;
  margin-inline: auto;
  overflow: visible;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transition: transform 0.2s var(--ease-out);
}
.ring-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  background: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 6px 10px rgba(37, 33, 27, 0.22));
}
/* photos are local 800×800 files — drawn SVG fallback only if a photo is missing */
.ring-svg { display: none; }
.ring-swatch:not(:has(.ring-photo)) .ring-svg {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
}
.color-option:hover .ring-swatch {
  transform: translateY(-3px) scale(1.03);
}
.color-option:has(input:checked) .ring-swatch {
  transform: scale(1.04);
}
.color-option:has(input:checked) .ring-photo {
  filter: drop-shadow(0 7px 12px rgba(215, 178, 109, 0.5));
}
