/* =============================================================================
   GOT YOU — STYLES
   Mobile-first, full-bleed sections, warm low-contrast palette.
   Layout only — all copy/pricing lives in js/config.js.
   ============================================================================= */

:root {
  /* Palette (from brand direction) */
  --ground:       #22231F; /* dark warm ground        */
  --ground-2:     #2b2c27; /* slightly lifted dark     */
  --paper:        #F4F2EA; /* warm paper (light bg)    */
  --paper-2:      #EAE7DB; /* alt paper tone            */
  --amber:        #D98A3D; /* amber accent             */
  --amber-soft:   #e6a765;
  --clay:         #8B4A42; /* deep clay / rose         */
  --teal:         #3E4E49; /* deep teal                */

  /* Ink colors */
  --ink-on-dark:      #F4F2EA;
  --ink-on-dark-soft: #cfccbf;
  --ink-on-paper:     #22231F;
  --ink-on-paper-soft:#5a574c;

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  "Public Sans", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-section: clamp(3.5rem, 9vw, 8rem);
  --wrap-max: 1120px;
  --wrap-narrow: 720px;

  --radius: 14px;
  --radius-sm: 10px;

  --shadow-soft: 0 18px 50px rgba(20, 20, 16, 0.18);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  line-height: 1.6;
  color: var(--ink-on-paper);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;                 /* lighter, editorial serif (Ready2-style) */
  font-optical-sizing: auto;
  line-height: 1.06;
  letter-spacing: -0.018em;
  text-wrap: balance;               /* tidier line breaks on headings */
  margin: 0 0 0.5em;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

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

/* --------------------------------------------------------------------------- */
/* Layout helpers                                                              */
.full-bleed { width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-left: clamp(1.25rem, 5vw, 3rem);
  padding-right: clamp(1.25rem, 5vw, 3rem);
}
.wrap.narrow { max-width: var(--wrap-narrow); }
.narrow { max-width: var(--wrap-narrow); margin-left: auto; margin-right: auto; }
.center { text-align: center; }

.section { padding-top: var(--space-section); padding-bottom: var(--space-section); }

.section--dark  { background: var(--ground); color: var(--ink-on-dark); }
.section--paper { background: var(--paper);  color: var(--ink-on-paper); }

.section--dark  .lede,
.section--dark  .section__heading + .lede { color: var(--ink-on-dark-soft); }
.section--paper .lede { color: var(--ink-on-paper-soft); }

.section__heading {
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.1rem);
}
.lede {
  font-size: clamp(1.06rem, 1rem + 0.5vw, 1.35rem);
  line-height: 1.55;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: #1a1a16;
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------- */
/* Buttons                                                                     */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(180deg, var(--amber-soft), var(--amber));
  color: #1a1a16;
  box-shadow: 0 10px 28px rgba(217, 138, 61, 0.28), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #efb379, var(--amber-soft));
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(217, 138, 61, 0.34), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn--primary:active { transform: translateY(0); }

.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.08rem; }
/* Arrow that eases forward on hover — hero CTA only */
.btn--lg::after {
  content: "→";
  display: inline-block;
  margin-left: 0.55em;
  transition: transform 0.2s ease;
}
.btn--lg:hover::after { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  border-color: rgba(244, 242, 234, 0.35);
  color: var(--ink-on-dark);
  padding: 0.6rem 1.15rem;
  font-size: 0.95rem;
}
.section--paper .btn--ghost { border-color: rgba(34,35,31,0.25); color: var(--ink-on-paper); }
.btn--ghost:hover { border-color: var(--amber); }

.btn--block { display: block; width: 100%; text-align: center; }

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

/* --------------------------------------------------------------------------- */
/* Header                                                                      */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(34, 35, 31, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(244,242,234,0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

/* Primary nav (desktop): anchor links between wordmark and CTA */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: 1.5rem;
  margin-right: auto; /* pushes the CTA to the far right */
}
.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-on-dark-soft);
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--ink-on-dark); }
.site-nav a.is-active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}
/* Below the header row, keep clear of the sticky bar when jumping to a section */
#arc, #ingredients, #reviews { scroll-margin-top: 84px; }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid rgba(244,242,234,0.28);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink-on-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
/* Animate to an X when open */
.site-header.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .site-header__inner { justify-content: flex-end; gap: 0.75rem; }
  .wordmark { margin-right: auto; }               /* wordmark left */
  .nav-toggle { display: flex; }                  /* show hamburger */

  /* Nav becomes a dropdown panel below the sticky header */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: var(--ground);
    border-bottom: 1px solid rgba(244,242,234,0.12);
    box-shadow: var(--shadow-soft);
    padding: 0.5rem clamp(1.25rem, 5vw, 3rem) 1rem;
  }
  .site-header.nav-open .site-nav { display: flex; }
  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(244,242,234,0.08); /* row divider, not the underline */
    font-size: 1.05rem;
  }
  .site-nav a.is-active { color: var(--amber); border-bottom-color: rgba(244,242,234,0.08); }
}
.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink-on-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.header-cta { white-space: nowrap; }

/* --------------------------------------------------------------------------- */
/* Hero                                                                        */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(4.5rem, 12vw, 9rem);
  padding-bottom: clamp(4.5rem, 12vw, 9rem);
  /* Base ground + a soft vignette so text stays legible over the moving orbs. */
  background:
    radial-gradient(140% 110% at 50% -10%, rgba(62,78,73,0.30), transparent 60%),
    var(--ground);
}

/* --- Ambient moving background (aurora) --- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  /* subtle darkening scrim over the orbs for contrast */
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,35,31,0.15), rgba(34,35,31,0.55));
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
  /* parallax offset set by JS via custom props; animation handles the drift */
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
}
.orb--amber {
  width: 62vmax; height: 62vmax;
  top: -22vmax; left: -14vmax;
  background: radial-gradient(circle at 40% 40%, rgba(217,138,61,0.95), rgba(217,138,61,0) 62%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
.orb--teal {
  width: 54vmax; height: 54vmax;
  bottom: -20vmax; right: -12vmax;
  background: radial-gradient(circle at 50% 50%, rgba(62,78,73,0.95), rgba(62,78,73,0) 60%);
  opacity: 0.7;
  animation: drift-b 34s ease-in-out infinite alternate;
}
.orb--clay {
  width: 40vmax; height: 40vmax;
  top: 20%; left: 45%;
  background: radial-gradient(circle at 50% 50%, rgba(139,74,66,0.8), rgba(139,74,66,0) 62%);
  opacity: 0.45;
  animation: drift-c 30s ease-in-out infinite alternate;
}
/* Each orb keeps its JS parallax offset (--px/--py) and adds an animated drift. */
@keyframes drift-a {
  from { transform: translate3d(var(--px,0px), var(--py,0px), 0) scale(1); }
  to   { transform: translate3d(calc(var(--px,0px) + 7vmax), calc(var(--py,0px) + 5vmax), 0) scale(1.12); }
}
@keyframes drift-b {
  from { transform: translate3d(var(--px,0px), var(--py,0px), 0) scale(1.05); }
  to   { transform: translate3d(calc(var(--px,0px) - 6vmax), calc(var(--py,0px) - 4vmax), 0) scale(0.95); }
}
@keyframes drift-c {
  from { transform: translate3d(var(--px,0px), var(--py,0px), 0) scale(0.95); }
  to   { transform: translate3d(calc(var(--px,0px) + 4vmax), calc(var(--py,0px) - 6vmax), 0) scale(1.1); }
}

.hero__inner { position: relative; z-index: 2; max-width: 900px; }
.hero__category {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-on-dark-soft, rgba(244, 242, 234, 0.7));
  margin-bottom: 0.9rem;
}
.hero__promise {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.5rem);
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.hero__headline {
  font-size: clamp(2.7rem, 1.6rem + 5.4vw, 5.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 0.55em;
}
/* Editorial italic accent on the payoff phrase (Merely-style) */
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-soft);
}
.hero__subhead {
  font-size: clamp(1.1rem, 1rem + 0.7vw, 1.5rem);
  color: var(--ink-on-dark-soft);
  max-width: 44ch;
  margin-bottom: 2rem;
}
.hero__actions { margin-bottom: 1rem; }
.hero__reassurance {
  font-size: 0.95rem;
  color: var(--ink-on-dark-soft);
}

/* --------------------------------------------------------------------------- */
/* Pillars                                                                     */
.pillars {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
  grid-template-columns: 1fr;
}
.pillar {
  background: var(--ground-2);
  border: 1px solid rgba(244,242,234,0.09);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.pillar__title {
  font-size: 1.5rem;
  margin-bottom: 0.4em;
}
.pillar__title::before {
  content: "";
  display: block;
  width: 34px; height: 3px;
  background: var(--amber);
  border-radius: 3px;
  margin-bottom: 0.9rem;
}
.pillar:nth-child(2) .pillar__title::before { background: var(--clay); }
.pillar:nth-child(3) .pillar__title::before { background: var(--teal); }
.pillar__line { color: var(--ink-on-dark-soft); margin: 0; }

@media (min-width: 780px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------- */
/* Arc — three equal-weight panels                                             */
.arc {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
  grid-template-columns: 1fr;
}
.arc__panel {
  background: #fff;
  border: 1px solid rgba(34,35,31,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.arc__media {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  background: var(--teal);
}
.arc__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.arc__phase {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.arc__name { font-size: 1.4rem; margin-bottom: 0.3em; }
.arc__job { font-weight: 600; margin-bottom: 0.6rem; color: var(--ink-on-paper); }
.arc__text { color: var(--ink-on-paper-soft); margin: 0; }

@media (min-width: 860px) {
  .arc { grid-template-columns: repeat(3, 1fr); } /* equal columns → Back = Set Up = Stay */
}

/* --------------------------------------------------------------------------- */
/* Trust stack                                                                 */
.trust {
  display: grid;
  grid-template-columns: minmax(0, 1fr); /* never let a wide child (marquee) stretch the column */
  gap: 2rem;
  margin-top: 2.5rem;
}
.trust__block {
  min-width: 0; /* grid items default to min-width:auto — this lets them shrink to the column */
  background: var(--ground-2);
  border: 1px solid rgba(244,242,234,0.09);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.trust__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.trust__block p { color: var(--ink-on-dark-soft); }
/* Lead line of the story reads a touch larger/warmer */
.trust__block--story p:nth-of-type(1) {
  font-size: 1.2rem;
  color: var(--ink-on-dark);
}
.trust__sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--amber-soft);
  margin-top: 1.25rem;
}

/* Formulation — ingredients grouped by phase */
/* Shared inline-icon base */
.icon { width: 18px; height: 18px; display: block; flex: 0 0 auto; }

.formulation__group { margin-top: 1.5rem; }
.formulation__phase {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.formulation__phase-icon { display: inline-flex; color: var(--amber); }
.formulation__phase-icon .icon { width: 16px; height: 16px; }

.ingredients { list-style: none; margin: 0; padding: 0; }
.ingredient {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(244,242,234,0.1);
}
.ingredient__icon { color: var(--amber-soft); margin-top: 0.15rem; }
.ingredient__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ingredient__head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.6rem;
}
.ingredient__name {
  font-weight: 600;
  color: var(--ink-on-dark);
}
.ingredient__benefit {
  color: var(--ink-on-dark-soft);
  font-size: 0.95rem;
}
.ingredient__benefit::before { content: "— "; opacity: 0.6; }
.ingredient__form {
  font-size: 0.85rem;
  color: var(--ink-on-dark-soft);
  opacity: 0.75;
}
.formulation__note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-on-dark-soft);
  border-left: 3px solid var(--clay);
  padding-left: 1rem;
}
/* Ingredient name as a deep-link to the Evidence page */
.ingredient__link {
  color: var(--ink-on-dark);
  text-decoration: none;
  border-bottom: 1px dotted rgba(217,138,61,0.6);
}
.ingredient__link:hover { color: var(--amber-soft); border-bottom-color: var(--amber); }
.formulation__research {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
}
.formulation__research:hover { color: var(--amber-soft); }

/* =============================================================================
   RESEARCH / EVIDENCE PAGE
   ============================================================================= */
.research__reviewed {
  color: var(--ink-on-dark-soft);
  font-size: 0.95rem;
  margin-top: -0.5rem;
}
.research__draft {
  max-width: 760px;
  margin: 2rem auto 0;
  background: rgba(139,74,66,0.18);
  border: 1px solid var(--clay);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: var(--ink-on-dark);
  text-align: center;
}
.research { margin-top: 2.5rem; }
.research__group { margin-bottom: 2.5rem; }
.research__phase {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(244,242,234,0.12);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.research__phase-icon { display: inline-flex; color: var(--amber); }
.evidence {
  background: var(--ground-2);
  border: 1px solid rgba(244,242,234,0.09);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
  scroll-margin-top: 90px; /* clear the sticky header on deep-link */
}
.evidence__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
}
.evidence__icon { color: var(--amber-soft); display: inline-flex; }
.evidence__name { font-size: 1.3rem; margin: 0; }
.evidence__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(62,78,73,0.28);
  border: 1px solid rgba(62,78,73,0.6);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}
.evidence__about { color: var(--ink-on-dark-soft); margin: 0.7rem 0 0; max-width: 68ch; }
.evidence__research { margin-top: 0.9rem; }
.evidence__toggle {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--amber);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.evidence__toggle::-webkit-details-marker { display: none; }
.evidence__toggle::before { content: "▸"; transition: transform 0.15s ease; }
.evidence__research[open] .evidence__toggle::before { transform: rotate(90deg); }
.refs { list-style: none; margin: 1rem 0 0; padding: 0; }
.ref {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(244,242,234,0.1);
}
.ref__type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin-bottom: 0.3rem;
}
.ref__summary { color: var(--ink-on-dark-soft); margin: 0 0 0.4rem; font-size: 0.95rem; }
.ref__link { color: var(--amber); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.ref__link:hover { color: var(--amber-soft); }

.research__notes {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(244,242,234,0.12);
  max-width: 760px;
}
.research__scope,
.research__evolving,
.research__provider {
  font-size: 0.9rem;
  color: var(--ink-on-dark-soft);
  margin-bottom: 0.9rem;
}
.research__notes .footer__disclaimer { margin-top: 1.5rem; }

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.testimonial {
  background: rgba(244,242,234,0.05);
  border: 1px solid rgba(244,242,234,0.1);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.4rem;
}
.testimonial__quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--ink-on-dark);
  margin-bottom: 0.6rem;
}
.testimonial__meta {
  font-size: 0.85rem;
  color: var(--ink-on-dark-soft);
  margin: 0;
}
.placeholder-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a16;
  background: var(--amber-soft);
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
}
@media (min-width: 720px) {
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------- */
/* Kit builder                                                                 */
/* Configurator + product image, side by side on desktop */
.kit-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  /* Media a touch narrower than the form, top-aligned; image stays in view (sticky). */
  .kit-layout { grid-template-columns: 0.85fr 1fr; gap: 3rem; align-items: start; }
  .kit-media { position: sticky; top: 92px; }
}
.kit-media { margin: 0; }

/* Single-image carousel (box → card → grab-and-go → app) */
.kit-carousel { position: relative; }
.kit-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--paper-2);
}
.kit-carousel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kit-carousel__img.is-hidden { display: none; }
.kit-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(34, 35, 31, 0.1);
  color: var(--ink-on-paper);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  transition: background-color 0.15s ease;
}
.kit-carousel__nav:hover { background: #fff; }
.kit-carousel__nav--prev { left: 0.7rem; }
.kit-carousel__nav--next { right: 0.7rem; }
.kit-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.kit-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(34, 35, 31, 0.25);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.kit-carousel__dot:hover { background: rgba(34, 35, 31, 0.45); }
.kit-carousel__dot.is-active { background: var(--amber); }
.kit-layout .kit { margin-top: 0; }

/* Small helper line under a kit field label */
.kit__hint {
  margin: -0.35rem 0 0.7rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(34, 35, 31, 0.6);
  max-width: 42ch;
}

/* --- Tier toggle: The full arc / Nights only --- */
.kit__tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.tier {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
  padding: 0.85rem 0.95rem;
  border: 1.5px solid rgba(34, 35, 31, 0.18);
  border-radius: calc(var(--radius) * 0.6);
  background: var(--paper);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.tier:hover { border-color: rgba(34, 35, 31, 0.4); }
.tier.is-active {
  border-color: var(--amber);
  background: rgba(217, 138, 61, 0.08);
  box-shadow: 0 0 0 1px var(--amber) inset;
}
.tier__title { font-weight: 600; color: var(--ink-on-paper); font-size: 1rem; }
.tier__sub { font-size: 0.82rem; color: var(--ink-on-paper-soft, rgba(34, 35, 31, 0.62)); line-height: 1.35; }
@media (max-width: 460px) {
  .kit__tiers { grid-template-columns: 1fr; }
}

/* --- Upsell nudge (Nights only → full arc) --- */
.kit__upsell {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--clay, #8B4A42);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.kit__upsell:hover { color: var(--amber); }

/* Nudge on the success page pointing down to the survey */
.success__nudge {
  color: var(--amber);
  font-weight: 500;
  margin: 0;
}
.success__nudge span { display: inline-block; margin-left: 0.2rem; animation: nudge-bounce 1.6s ease-in-out infinite; }
@keyframes nudge-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .success__nudge span { animation: none; } }

/* --- Post-purchase survey (success page) --- */
.survey { text-align: left; }
.survey .eyebrow { color: var(--amber); }
.survey__q { border: 0; margin: 1.6rem 0 0; padding: 0; }
.survey__legend { font-weight: 600; color: var(--ink-on-paper); margin-bottom: 0.6rem; padding: 0; font-size: 1.02rem; }
.survey__options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.survey__opt {
  font: inherit; cursor: pointer;
  padding: 0.5rem 0.95rem;
  border: 1.5px solid rgba(34, 35, 31, 0.2);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-on-paper);
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.survey__opt:hover { border-color: rgba(34, 35, 31, 0.45); }
.survey__opt.is-selected { background: var(--amber); border-color: var(--amber); color: #22231F; font-weight: 600; }
.survey__open {
  width: 100%; font: inherit; margin-top: 0.3rem;
  padding: 0.7rem 0.85rem; border-radius: calc(var(--radius) * 0.6);
  border: 1.5px solid rgba(34, 35, 31, 0.2); background: var(--paper); color: var(--ink-on-paper);
  resize: vertical;
}
.survey__open:focus { outline: none; border-color: var(--amber); }
.survey__actions { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.survey__skip {
  background: none; border: 0; font: inherit; cursor: pointer;
  color: rgba(34, 35, 31, 0.6); text-decoration: underline; text-underline-offset: 2px;
}
.survey__skip:hover { color: var(--ink-on-paper); }
.survey__done { font-size: 1.15rem; color: var(--ink-on-paper); font-weight: 500; }

/* Interview-for-voucher offer */
.survey__call {
  margin-top: 1.8rem; padding: 1.5rem;
  border: 1.5px dashed rgba(217, 138, 61, 0.5);
  border-radius: var(--radius);
  background: rgba(217, 138, 61, 0.06);
}
.survey__call-heading { margin: 0.2rem 0 0.5rem; font-size: 1.2rem; color: var(--ink-on-paper); }
.survey__call-body { margin: 0 0 1rem; color: rgba(34, 35, 31, 0.75); }
.survey__call-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.survey__call-input {
  flex: 1 1 220px; font: inherit; padding: 0.6rem 0.85rem;
  border: 1.5px solid rgba(34, 35, 31, 0.2); border-radius: calc(var(--radius) * 0.6);
  background: var(--paper); color: var(--ink-on-paper);
}
.survey__call-input:focus { outline: none; border-color: var(--amber); }
.survey__call-input.is-invalid { border-color: var(--clay, #8B4A42); }
.survey__call-note { margin: 0.7rem 0 0; font-size: 0.8rem; color: rgba(34, 35, 31, 0.55); }

.kit {
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid rgba(34,35,31,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.kit__group { border: 0; margin: 0 0 1.75rem; padding: 0; }
.kit__legend {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  padding: 0;
}
.choices {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .choices { grid-template-columns: repeat(3, 1fr); }
}
.choice {
  position: relative;
  display: block;
  border: 1.5px solid rgba(34,35,31,0.18);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  background: #fff;
}
.choice:hover { border-color: var(--amber); }
.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice__label { display: block; font-weight: 600; }
.choice__sub { display: block; font-size: 0.85rem; color: var(--ink-on-paper-soft); }
.choice:has(input:checked) {
  border-color: var(--amber);
  background: rgba(217,138,61,0.1);
  box-shadow: inset 0 0 0 1px var(--amber);
}
.choice:has(input:focus-visible) { outline: 3px solid var(--amber); outline-offset: 2px; }

/* Numeric picker: ± stepper + quick-pick chips */
.picker { display: flex; flex-direction: column; gap: 0.85rem; }
.stepper {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  border: 1.5px solid rgba(34,35,31,0.2);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}
.stepper__btn {
  width: 46px; height: 46px;
  border: 0; background: transparent;
  font-size: 1.5rem; line-height: 1;
  color: var(--ink-on-paper);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.15s ease;
}
.stepper__btn:hover:not(:disabled) { background: rgba(217,138,61,0.12); }
.stepper__btn:disabled { opacity: 0.3; cursor: default; }
.stepper__value {
  min-width: 2.6rem; text-align: center;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--ink-on-paper);
}
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  border: 1.5px solid rgba(34,35,31,0.18);
  background: #fff; color: var(--ink-on-paper);
  border-radius: 999px; padding: 0.45rem 0.95rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.chip:hover { border-color: var(--amber); }
.chip.is-active {
  border-color: var(--amber);
  background: rgba(217,138,61,0.14);
  box-shadow: inset 0 0 0 1px var(--amber);
}

/* Composition breakdown */
.kit__composition {
  margin-top: 0.5rem;
  padding: 1rem 1.2rem;
  background: rgba(62,78,73,0.07);
  border: 1px solid rgba(62,78,73,0.16);
  border-radius: var(--radius-sm);
}
.kit__composition-head {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin: 0 0 0.6rem;
}
.kit__composition-list { list-style: none; margin: 0; padding: 0; }
.kit__composition-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.3rem 0; gap: 1rem;
}
.kit__composition-name { color: var(--ink-on-paper); font-weight: 500; }
.kit__composition-count { color: var(--clay); font-weight: 700; font-variant-numeric: tabular-nums; }

.kit__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(34,35,31,0.1);
  margin-top: 0.5rem;
}
.kit__price-amount {
  font-family: var(--serif);
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem);
  font-weight: 600;
  color: var(--ink-on-paper);
}
.kit__price-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay);
}
.kit__cta { margin-top: 0.5rem; }
.kit__note {
  font-size: 0.9rem;
  color: var(--ink-on-paper-soft);
  margin-top: 1rem;
}

/* Buy-area accordions */
.kit__details { margin-top: 1.5rem; border-top: 1px solid rgba(34,35,31,0.12); }
.kit-acc { border-bottom: 1px solid rgba(34,35,31,0.12); }
.kit-acc__summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 2rem 0.95rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-on-paper);
  position: relative;
}
.kit-acc__summary::-webkit-details-marker { display: none; }
.kit-acc__summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--amber);
  transition: transform 0.2s ease;
}
.kit-acc[open] .kit-acc__summary::after { content: "–"; }
.kit-acc__body { padding: 0 0 1.2rem; }
.kit-acc__text { color: var(--ink-on-paper-soft); margin: 0 0 0.6rem; }
.kit-acc__links { display: flex; flex-direction: column; gap: 0.35rem; }
.kit-acc__link { color: var(--amber); font-weight: 600; text-decoration: none; font-size: 0.92rem; }
.kit-acc__link:hover { color: var(--clay); }
.kit-acc__note { font-size: 0.85rem; color: var(--ink-on-paper-soft); margin: 0.8rem 0 0; }
.kit-acc__disclaimer {
  font-size: 0.85rem;
  color: var(--ink-on-paper);
  border-left: 3px solid var(--amber);
  padding-left: 0.8rem;
  margin: 0.9rem 0 0;
}
.kit-acc .placeholder-tag { background: var(--amber-soft); }

/* How-to mini-timeline */
.howto { list-style: none; margin: 0; padding: 0; }
.howto__step { display: flex; gap: 0.8rem; padding: 0.55rem 0; }
.howto__icon { color: var(--amber); margin-top: 0.15rem; }
.howto__head { margin: 0 0 0.1rem; display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.4rem 0.55rem; }
.howto__label { font-weight: 600; color: var(--ink-on-paper); }
.howto__when {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal);
}
.howto__desc { margin: 0; font-size: 0.92rem; color: var(--ink-on-paper-soft); }

/* Email capture / waitlist form field */
.capture {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.capture input[type="email"] {
  flex: 1 1 220px;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border: 1.5px solid rgba(34,35,31,0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-on-paper);
}
.section--dark .capture input[type="email"] {
  background: var(--ground-2);
  border-color: rgba(244,242,234,0.22);
  color: var(--ink-on-dark);
}
.capture input[type="email"]::placeholder { color: #98958a; }
.capture .btn { flex: 0 0 auto; }
.capture .btn--block { flex: 1 1 100%; }

.field-error {
  color: var(--clay);
  font-size: 0.9rem;
  margin-top: 0.6rem;
  min-height: 1.2em;
}
.section--dark .field-error { color: var(--amber-soft); }

/* Success state */
.capture-success {
  border: 1px solid var(--amber);
  background: rgba(217,138,61,0.12);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.4rem;
}
.capture-success h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3em;
}
.capture-success p { margin: 0; }

/* Live-purchase stub notice */
.checkout-stub {
  border: 1px dashed var(--clay);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--ink-on-paper-soft);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------- */
/* App teaser waitlist                                                         */
.waitlist { margin-top: 1.75rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------- */
/* FAQ                                                                         */
.faq { margin-top: 2rem; }
.faq__item {
  border-bottom: 1px solid rgba(34,35,31,0.12);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  font-weight: 500;
  color: var(--ink-on-paper);
  cursor: pointer;
  position: relative;
}
.faq__q::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--amber);
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__q::after { content: "–"; }
.faq__a {
  padding: 0 0 1.4rem;
  color: var(--ink-on-paper-soft);
  max-width: 62ch;
}
/* Using <details>/<summary>; hide default marker */
.faq__item summary { list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }

/* --------------------------------------------------------------------------- */
/* Footer                                                                      */
.site-footer { padding-top: var(--space-section); padding-bottom: 3rem; }
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
/* Disclaimer: legible, not tiny gray fine print */
.footer__disclaimer {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-on-dark);
  max-width: 72ch;
  border-left: 3px solid var(--amber);
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.footer__meta {
  display: grid;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244,242,234,0.12);
  color: var(--ink-on-dark-soft);
  font-size: 0.9rem;
}
.footer__legalnote {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--ink-on-dark-soft);
}

/* --------------------------------------------------------------------------- */
/* =============================================================================
   LEGAL PAGES (privacy.html / terms.html)
   ============================================================================= */
.legal { padding: clamp(2.5rem, 6vw, 4.5rem) 0 4rem; }
.legal .wrap { max-width: 780px; }
.legal__draft {
  background: rgba(139,74,66,0.14);
  border: 1px solid var(--clay);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: var(--ink-on-dark);
  margin-bottom: 2rem;
}
.legal h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin-bottom: 0.2em; }
.legal__updated { color: var(--ink-on-dark-soft); font-size: 0.9rem; margin-bottom: 2rem; }
.legal h2 {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2.2rem 0 0.5rem;
  color: var(--ink-on-dark);
}
.legal p, .legal li { color: var(--ink-on-dark-soft); }
.legal a { color: var(--amber); }
.legal ul { padding-left: 1.2rem; }
.legal li { margin: 0.35rem 0; }
.legal .fill { color: var(--amber-soft); font-weight: 600; }

/* Footer legal links */
.footer__links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.footer__links a { color: var(--ink-on-dark-soft); font-size: 0.9rem; text-decoration: none; }
.footer__links a:hover { color: var(--amber); }

/* Scroll reveal (slow fade/rise). Disabled under reduced-motion.              */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Gentle stagger for items revealing together in a grid */
.pillars .reveal:nth-child(2),
.arc .reveal:nth-child(2)   { transition-delay: 0.08s; }
.pillars .reveal:nth-child(3),
.arc .reveal:nth-child(3)   { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  /* Freeze every ambient/looping motion; keep the static composition. */
  .orb,
  .seal,
  .marquee__track { animation: none !important; }
  .section--dark::before { animation: none !important; }
  .hero__video { display: none; } /* fall back to the static aurora */
}

/* ===========================================================================
   REFINEMENTS — grain, background video, ambient glow, marquee, seal
   =========================================================================== */

/* --- Film-grain overlay: subtle printed-matter texture over everything --- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Optional hero background VIDEO (config-driven). Sits above the aurora,
       below the scrim/content. When no video is configured it isn't rendered
       and the aurora shows through. --- */
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;                 /* above .hero__bg orbs (z 0), below ::after scrim */
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;              /* keep text legible; tune per real footage */
}
.hero__bg::after { z-index: 2; }  /* scrim sits above the video too */

/* --- Very subtle drifting glow on the other dark sections, to tie the page
       together without competing with the hero. --- */
.section--dark { position: relative; isolation: isolate; overflow: hidden; }
.section--dark > .wrap { position: relative; z-index: 1; }
.section--dark:not(.hero)::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 70vmax; height: 70vmax;
  top: -20vmax; right: -25vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,138,61,0.10), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  animation: glow-drift 40s ease-in-out infinite alternate;
}
#trust.section--dark::before { background: radial-gradient(circle, rgba(62,78,73,0.16), transparent 60%); left: -25vmax; right: auto; }
@keyframes glow-drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-8vmax, 6vmax, 0); }
}

/* --- Testimonial marquee (Ready2-style ticker) --- */
.marquee {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin-top: 1.5rem;
  /* fade the edges so cards enter/leave softly */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 46s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee .testimonial {
  flex: 0 0 min(78vw, 360px);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }  /* track holds two copies; -50% = seamless loop */
}

/* --- Attribute strip: slim scrolling band under the hero --- */
.attr-strip {
  background: var(--ground-2);
  color: var(--ink-on-dark);
  border-top: 1px solid rgba(244,242,234,0.08);
  border-bottom: 1px solid rgba(244,242,234,0.08);
  overflow: hidden;
  padding: 0.9rem 0;
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.attr-strip .marquee__track { animation-duration: 40s; gap: 0; }
.attr-strip__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-on-dark-soft);
  padding: 0 1.4rem;
}
.attr-strip__item::before {
  content: "✳";
  color: var(--amber);
  margin-right: 1.4rem;
  font-size: 0.7rem;
}

/* --- Product showcase --- */
.product-hero {
  margin: 2.75rem auto 0;
  max-width: 940px;
}
.product-hero__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: block;
}
.product-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 760px) {
  .product-features { grid-template-columns: repeat(2, 1fr); }
}
.product-feature {
  margin: 0;
  background: var(--ground-2);
  border: 1px solid rgba(244, 242, 234, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-feature__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.product-feature__cap { padding: 1.3rem 1.45rem; }
.product-feature__title { font-size: 1.3rem; margin-bottom: 0.3em; }
.product-feature__body { color: var(--ink-on-dark-soft); margin: 0; font-size: 0.98rem; }

/* --- App (companion) section --- */
.app-layout {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .app-layout { grid-template-columns: 0.8fr 1fr; gap: 3.5rem; }
}
/* Let both grid tracks actually honour their fr sizes (grid items default to
   min-width:auto, which would let the phone images force the column wide). */
.app-media-col,
.app-content { min-width: 0; }
.app-media-col { display: block; }
/* Reuse the kit carousel, but on the dark section: show whole images (mixed
   landscape hero + portrait phone screens) contained over the section ground. */
.app-media-col .kit-carousel__viewport {
  aspect-ratio: 4 / 5;
  background: transparent;
  box-shadow: none;
  border-radius: var(--radius);
}
.app-media-col .kit-carousel__img { object-fit: contain; }
.app-media-col .kit-carousel__dot { background: rgba(244, 242, 234, 0.28); }
.app-media-col .kit-carousel__dot:hover { background: rgba(244, 242, 234, 0.5); }
.app-features {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}
.app-feature { display: flex; gap: 0.9rem; align-items: flex-start; }
.app-feature__icon { color: var(--amber); margin-top: 0.15rem; }
.app-feature__title { font-size: 1.1rem; margin: 0 0 0.15em; color: var(--ink-on-dark); }
.app-feature__text { margin: 0; color: var(--ink-on-dark-soft); font-size: 0.95rem; }
.app-access {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--ink-on-dark-soft);
  border-left: 3px solid var(--amber);
  padding-left: 0.9rem;
}

/* --- Intentional-use statement --- */
.intentional { background: var(--paper-2); }
.intentional .eyebrow { color: var(--teal); }
.intentional .eyebrow::before {
  content: "";
  display: block;
  width: 40px; height: 3px;
  background: var(--amber);
  border-radius: 3px;
  margin: 0 auto 1.1rem;
}
.intentional .section__heading { max-width: 20ch; margin-left: auto; margin-right: auto; }

/* --- Pull-quote statement band --- */
.pullquote {
  background: var(--clay);
  color: var(--ink-on-dark);
  text-align: center;
  padding: clamp(3.5rem, 9vw, 7rem) clamp(1.25rem, 5vw, 3rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.pullquote__text {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.75rem);
  max-width: 18ch;
  margin: 0 auto 0.5em;
  text-wrap: balance;
}
.pullquote__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.4rem);
  color: rgba(244,242,234,0.8);
  margin: 0;
}

/* --- Closing CTA --- */
.closing__actions { margin-top: 1.75rem; }

/* --- Spinning seal / badge (small refined detail) --- */
.seal {
  position: absolute;
  z-index: 3;
  width: 118px;
  height: 118px;
  right: clamp(1.25rem, 5vw, 3rem);
  bottom: clamp(1.5rem, 5vw, 3rem);   /* fully inside the dark hero */
  color: var(--ink-on-dark);
  animation: seal-spin 24s linear infinite;
}
.seal svg { width: 100%; height: 100%; overflow: visible; }
.seal__text { font-family: var(--sans); font-size: 8.6px; letter-spacing: 0.18em; fill: currentColor; text-transform: uppercase; }
.seal__dot { fill: var(--amber); }
.seal__ring { fill: none; stroke: rgba(244,242,234,0.35); stroke-width: 1; }
@keyframes seal-spin { to { transform: rotate(360deg); } }
/* Hide on small screens so it never crowds the hero copy. */
@media (max-width: 720px) { .seal { display: none; } }
