/* ===========================================================
   E+ROSE WELLNESS MIX — "Seal" edition brand tokens, pulled from
   the new sachet dieline: cream flood, black ink, Rhodamine Red
   seal + rules. Archivo for display, IBM Plex Mono for facts.
   =========================================================== */

:root {
  --bg: #fbfbf9;
  --surface: #ffffff;
  --ink: #101012;
  --ink-2: #1c1c1f;
  --pink: #e5326b;
  --pink-dim: #d92d64;
  --pink-tint: rgba(229, 50, 107, 0.12);
  --white: #ffffff;
  --paper: #f7f4ee;
  --muted: #5c5c59;
  --muted-2: #6b6b68;
  --line: rgba(16, 16, 18, 0.12);
  --line-strong: rgba(16, 16, 18, 0.22);

  --display: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--pink);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.04;
}

p { color: var(--muted); max-width: 54ch; }

.section {
  padding: clamp(64px, 10vw, 128px) 0;
  position: relative;
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head h2 { font-size: clamp(28px, 4vw, 44px); color: var(--ink); margin-top: 14px; }
.section-head p { margin-top: 14px; font-size: 16px; }

.rule {
  height: 1px;
  background: var(--line);
  width: 100%;
}
.rule--pink { background: var(--pink); height: 1px; }

/* Visible keyboard focus, everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 16px 28px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pink-dim); color: var(--white); }
.btn-primary:hover { background: var(--ink); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }

/* ---------- Top nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(251,251,249,0.92), rgba(251,251,249,0));
  backdrop-filter: blur(2px);
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(251, 251, 249, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(10px);
}
.nav-mark {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 0;
  margin: -12px 0;
}
.nav-mark b { font-family: var(--display); font-weight: 800; font-size: 16px; letter-spacing: 0; text-transform: uppercase; color: var(--ink); }
.nav-mark .nav-plus { color: var(--pink); }
.mix-fx {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.mix-fx::before,
.mix-fx::after {
  content: "";
  position: absolute;
  left: -10%; right: -10%;
  top: 6%; bottom: 6%;
  background: #f6c2d4;
  z-index: -1;
}
.mix-fx::before { transform: rotate(-5deg); }
.mix-fx::after { transform: rotate(4deg); }
.nav-mark span { color: var(--pink); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: var(--white); }
.nav-links a.btn-primary:hover { background: var(--ink); }
.nav-cta { display: none; }
@media (min-width: 760px) { .nav-cta { display: inline-flex; } }
.nav-links .nav-links-list { display: none; }
@media (min-width: 760px) { .nav-links .nav-links-list { display: flex; gap: 28px; } }

/* ---------- Marquee claim band (the packaging's claim band, reused as a motif) ---------- */
.marquee {
  background: var(--pink);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
  border-top: 1px solid rgba(16,16,18,0.15);
  border-bottom: 1px solid rgba(16,16,18,0.15);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.marquee span::after { content: "\2022"; opacity: 0.55; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(120px, 18vw, 180px);
  padding-bottom: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; gap: 24px; }
}
.dd-badge {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
}
.dd-seal {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pink);
  flex: none;
}
.dd-seal::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 52%; height: 15%;
  background: var(--white);
}
.dd-seal::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 15%; height: 52%;
  background: var(--white);
}
.dd-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.dd-badge-text strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.dd-badge-by {
  color: var(--muted);
  text-transform: none;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.01em;
  margin-top: 1px;
}

.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-claim {
  font-size: clamp(34px, 5.2vw, 62px);
  text-transform: none;
  color: var(--ink);
  line-height: 1.08;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--pink);
}
.hero-tagline {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink);
  max-width: 46ch;
  font-weight: 400;
  line-height: 1.45;
}
.hero-tagline .light { color: var(--muted); font-weight: 400; }
.tagline-brand {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}
.hero-meta strong { color: var(--ink); font-weight: 600; }

/* ---------- Sachet illustration (built from the real dieline spec) ---------- */
/* ---------- Sachet stage: dark "photography backdrop" card, since
   the product itself is now light-colored (cream/white) and needs
   contrast rather than blending into the page. ---------- */
.sachet-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 2.4vw, 26px) clamp(12px, 2vw, 20px);
  background: var(--ink);
  border-radius: 16px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.35);
}

/* ---------- Sachet illustration ("Seal" edition: cream body,
   pink vertical claim band, circular seal logo) ---------- */
.sachet {
  width: 100%;
  aspect-ratio: 70 / 150;
  background: var(--surface);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.6);
  overflow: hidden;
  animation: float 7s ease-in-out infinite;
}
.sachet::before, .sachet::after {
  content: "";
  position: absolute;
  left: 20%; right: 0;
  height: 2.2%;
  background-image: repeating-linear-gradient(115deg, rgba(16,16,18,0.12) 0 1.5px, transparent 1.5px 5px);
  pointer-events: none;
}
.sachet::before { top: 0; }
.sachet::after { bottom: 0; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-14px) rotate(1.2deg); }
}
.sachet-band-v {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 19%;
  background: var(--pink);
  overflow: hidden;
}
.sachet-band-v span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  white-space: nowrap;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  font-size: clamp(6px, 1.15vw, 8.5px);
}
.sachet-band-v .l1 { top: 84%; }
.sachet-band-v .l2 { top: 36%; }

.sachet-main {
  position: absolute;
  left: 19%; right: 0; top: 0; bottom: 0;
  padding: 6% 9%;
}
.sachet-wordmark {
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(10px, 2vw, 13px);
  letter-spacing: 0.05em;
}
.sachet-seal {
  margin: 6% auto 0;
  width: 34%;
  aspect-ratio: 1;
  background: var(--pink);
  border-radius: 50%;
  position: relative;
}
.sachet-seal::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 44%;
  height: 14%;
  background: var(--white);
}
.sachet-seal::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 14%;
  height: 44%;
  background: var(--white);
}
.sachet-sub {
  margin-top: 9%;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--pink);
  font-size: clamp(6.5px, 1.3vw, 8.5px);
  letter-spacing: 0.12em;
}
.sachet-title {
  margin-top: 3%;
  font-family: var(--display);
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(19px, 5.2vw, 29px);
  line-height: 1.03;
}
.sachet-title .num { color: var(--pink); }
.sachet-rule-h {
  margin-top: 7%;
  height: 1.5px;
  background: var(--ink);
}
.sachet-tagline-v {
  margin-top: 6%;
  text-align: center;
}
.sachet-tagline-v .you {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(6.5px, 1.35vw, 8.5px);
  color: var(--ink);
  letter-spacing: 0.02em;
}
.sachet-tagline-v .big {
  margin-top: 4%;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(13px, 3.1vw, 17px);
  line-height: 1.25;
  color: var(--ink);
}
.sachet-tagline-v .big .hl {
  background: var(--pink-tint);
  padding: 0 2px;
}
.sachet-tagline-v .big .pink { color: var(--pink); }
.sachet-footer-v {
  position: absolute;
  left: 9%; right: 9%; bottom: 5%;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: clamp(6px, 1.1vw, 7.5px);
  color: var(--muted-2);
  letter-spacing: 0.04em;
}
.sachet-caption {
  position: absolute;
  bottom: -46px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
}

/* ---------- 3D viewer overlay ---------- */
.sachet-visual {
  position: relative;
  width: min(320px, 78vw);
  aspect-ratio: 70 / 150;
}
.sachet-visual .sachet { position: absolute; inset: 0; }
.sachet-3d {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
  pointer-events: none;
  border-radius: 4px;
}
.sachet-3d canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
}
.sachet-3d canvas:active { cursor: grabbing; }
.sachet-3d-hint {
  position: absolute;
  bottom: -46px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--white);
  opacity: 0;
  letter-spacing: 0.08em;
  transition: opacity 0.6s ease 0.3s;
}
.sachet-visual.is-3d-ready .sachet-3d { opacity: 1; pointer-events: auto; }
.sachet-visual.is-3d-ready .sachet-3d-hint { opacity: 0.6; }
.sachet-visual.is-3d-ready > .sachet {
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: none;
}

/* ---------- Claims grid ---------- */
.claims-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 760px) { .claims-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.claim-card {
  background: var(--surface);
  padding: 34px 26px;
  transition: background 0.3s ease;
}
.claim-card:hover { background: var(--paper); }
.claim-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.1em;
}
.claim-card h3 {
  margin-top: 16px;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
}
@media (max-width: 420px) {
  .claims-grid { grid-template-columns: 1fr; }
}
.claim-card p { margin-top: 10px; font-size: 14px; }

.disclosure-section .section-head { max-width: 680px; }
.disclosure-grid .claim-card h3 { font-size: 17px; text-transform: none; letter-spacing: 0; }
@media (min-width: 760px) { .disclosure-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } }

/* ---------- Ingredient rows ---------- */
.ingredients-list {
  display: flex;
  flex-direction: column;
}
.ing-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.ing-row:last-child { border-bottom: 1px solid var(--line); }
.ing-amt {
  font-family: var(--mono);
  color: var(--pink);
  font-size: 14px;
  font-weight: 600;
}
.ing-body h4 { font-size: 17px; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); }
.ing-body p { margin-top: 6px; font-size: 14.5px; }
.ing-dv {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .ing-row { grid-template-columns: 70px 1fr; }
  .ing-dv { grid-column: 2; text-align: left; margin-top: -4px; }
}

/* ---------- Facts panel (authentic FDA-style label) ---------- */
.facts-section .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .facts-section .wrap { grid-template-columns: 1fr 380px; align-items: start; }
}
.facts-panel {
  background: var(--surface);
  color: var(--ink);
  padding: 22px 24px 26px;
  font-family: var(--mono);
  border-radius: 2px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.18);
}
.facts-panel h3 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 800;
  border-bottom: 8px solid var(--ink);
  padding-bottom: 6px;
  margin-bottom: 4px;
  color: var(--ink);
}
.facts-meta { font-size: 12.5px; padding: 6px 0; border-bottom: 4px solid var(--ink); }
.facts-meta div { display: flex; justify-content: space-between; padding: 2px 0; }
.facts-dv-head {
  display: flex;
  justify-content: flex-end;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 0;
  border-bottom: 1px solid var(--ink);
}
.facts-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12.5px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(16,16,18,0.15);
}
.facts-row.strong { font-weight: 700; border-bottom: 4px solid var(--ink); padding-bottom: 6px; }
.facts-row .fname { flex: 1; }
.facts-row .famt { flex: none; width: 62px; text-align: right; }
.facts-row .fdv { flex: none; width: 40px; text-align: right; font-weight: 700; }
.facts-foot { font-size: 10.5px; line-height: 1.5; padding-top: 10px; margin-top: 4px; border-top: 8px solid var(--ink); color: #444; }
.facts-foot p { color: #444; font-size: 10.5px; max-width: none; margin-top: 6px; }

.facts-side .eyebrow { margin-bottom: 16px; }
.facts-side h2 { font-size: clamp(26px, 3.4vw, 38px); }
.facts-side p { margin-top: 16px; font-size: 15.5px; }

.standard-quote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 2px solid var(--pink);
  background: var(--pink-tint);
}
.standard-quote .eyebrow { margin-bottom: 10px; }
.standard-quote p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
  margin-top: 0;
}
.made-without {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.made-without h4 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}
.made-without ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
}
.made-without li {
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.made-without li::before {
  content: "\2715";
  color: var(--pink);
  font-size: 11px;
}

/* ---------- Directions steps ---------- */
.ritual-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 980px) { .ritual-layout { grid-template-columns: 1fr 1fr; gap: 48px; } }
.ritual-diagram {
  display: flex;
  justify-content: center;
  padding: 4px;
}
.ritual-diagram img { width: 100%; max-width: 520px; height: auto; }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 760px) and (max-width: 979px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); } }
.step {
  padding: 34px 30px;
  background: var(--surface);
  position: relative;
}
.step-n {
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 700;
  color: var(--pink);
  opacity: 0.9;
}
.step h4 { margin-top: 14px; font-size: 18px; text-transform: uppercase; color: var(--ink); }
.step p { margin-top: 10px; font-size: 14.5px; }

/* ---------- Shop grid ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 760px) { .shop-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.shop-card {
  background: var(--surface);
  padding: 32px 30px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.3s ease;
}
.shop-card:hover { background: var(--paper); }
.shop-card img { width: 100%; max-width: 300px; height: auto; margin-bottom: 8px; }
.shop-card-sachet-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  width: 100%;
}
.sachet--small { width: min(180px, 60vw); animation: none; }
.shop-card-body h4 { font-size: 19px; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); }
.shop-card-body p { margin-top: 8px; font-size: 14px; margin-left: auto; margin-right: auto; }
.shop-card-body .btn { margin-top: 18px; }

/* ---------- Founder / credibility ---------- */
.founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) { .founder { grid-template-columns: 220px 1fr; gap: 56px; } }
.founder-badge {
  width: 100%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.founder-seal {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10%;
  box-shadow: 0 24px 50px -20px rgba(229, 50, 107, 0.5);
}
.founder-seal-cross {
  position: relative;
  width: 20%;
  aspect-ratio: 1;
}
.founder-seal-cross::before,
.founder-seal-cross::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
}
.founder-seal-cross::before { width: 100%; height: 26%; }
.founder-seal-cross::after { width: 26%; height: 100%; }
.founder-seal-rd {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 7vw, 50px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.01em;
}
.founder-badge-label {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}
.founder-badge-cdr {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
.founder-copy h2 { font-size: clamp(26px, 3.4vw, 36px); }
.founder-copy p { margin-top: 16px; font-size: 16px; max-width: 62ch; }
.founder-sig { margin-top: 22px; font-family: var(--mono); font-size: 13px; color: var(--ink); }
.founder-sig span { display: block; color: var(--muted-2); font-size: 12px; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--pink);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 14px; transition: transform 0.3s ease; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-a { padding-bottom: 24px; font-size: 15px; max-width: 64ch; }

/* ---------- Waitlist / order ---------- */
.order {
  background: var(--pink);
  color: var(--ink);
  border-radius: 4px;
  padding: clamp(36px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 860px) { .order { grid-template-columns: 1.1fr 1fr; align-items: center; } }
.order h2 { color: var(--ink); font-size: clamp(28px, 4vw, 42px); }
.order p { color: rgba(16,16,18,0.72); margin-top: 14px; max-width: 46ch; }
.order-form { display: flex; flex-direction: column; gap: 12px; }
.order-form .row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2px; }
.order-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(16,16,18,0.4);
  padding: 15px 18px;
  font-family: var(--mono);
  font-size: 14px;
  border-radius: 2px;
}
.order-form input::placeholder { color: var(--muted-2); }
.order-form button {
  background: var(--ink);
  color: var(--white);
  border: none;
}
.order-form button:hover { background: var(--white); color: var(--ink); }
.order-note { font-family: var(--mono); font-size: 11.5px; color: rgba(16,16,18,0.6); }
.order-status { font-family: var(--mono); font-size: 13px; min-height: 18px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-mark { font-family: var(--display); font-weight: 400; font-size: 22px; letter-spacing: 0.01em; color: var(--ink); }
.footer-mark span { color: var(--pink); }
.footer-tag { margin-top: 10px; font-size: 14px; max-width: 32ch; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 11px 0;
}
.footer-col h5 { margin-bottom: 4px; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.03em;
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pink);
  color: var(--ink);
  padding: 12px 18px;
  z-index: 1000;
  font-family: var(--mono);
  font-size: 13px;
}
.skip-link:focus { left: 12px; top: 12px; }
