/* ═══════════════════════════════════════════════
   DIONÉA v2 — modern, warm, contemporary
   Light cream base · terracotta accent · Geist + Instrument Serif
   ═══════════════════════════════════════════════ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
img,video,svg{display:block;max-width:100%}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}

/* ── tokens ─────────────────────────────────────────────── */
:root{
  --sans: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --ease: cubic-bezier(.22,.61,.36,1);
  --bounce: cubic-bezier(.34,1.56,.64,1);

  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 11vw, 140px);

  /* Light mode — warm cream */
  --bg: #FAF6EE;
  --bg-elev: #FFFFFF;
  --bg-soft: #F3ECDD;
  --bg-deep: #EDE3CE;
  --ink: #181612;
  --ink-soft: #5B544A;
  --ink-mute: #978C7B;
  --line: rgba(24,22,18,.10);
  --line-strong: rgba(24,22,18,.20);

  /* Accent — terracotta clay (default) */
  --accent: #C66848;
  --accent-deep: #A24E32;
  --accent-soft: #F3DACD;
  --accent-ink: #FFFFFF;
  --accent-glow: rgba(198,104,72,.16);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(24,22,18,.04), 0 2px 6px rgba(24,22,18,.04);
  --shadow: 0 4px 8px -2px rgba(24,22,18,.04), 0 16px 32px -8px rgba(24,22,18,.07);
  --shadow-lg: 0 8px 16px -4px rgba(24,22,18,.05), 0 30px 60px -10px rgba(80,55,35,.13);
  --shadow-card: 0 1px 2px rgba(24,22,18,.04), 0 8px 24px -8px rgba(24,22,18,.08);
}

/* accent variants */
html[data-accent="sage"]{
  --accent: #6E8C6A;
  --accent-deep: #4F6A4C;
  --accent-soft: #D8E2D5;
  --accent-glow: rgba(110,140,106,.14);
}
html[data-accent="indigo"]{
  --accent: #3F4FA6;
  --accent-deep: #2A357E;
  --accent-soft: #D7DBEE;
  --accent-glow: rgba(63,79,166,.14);
}
html[data-accent="ink"]{
  --accent: #1E1B16;
  --accent-deep: #000;
  --accent-soft: #E7E2D6;
  --accent-glow: rgba(24,22,18,.18);
}

/* dark mode */
html[data-mode="dark"]{
  --bg: #14110D;
  --bg-elev: #1C1814;
  --bg-soft: #1A1611;
  --bg-deep: #221C16;
  --ink: #F4ECDE;
  --ink-soft: #B5AB99;
  --ink-mute: #7A7062;
  --line: rgba(244,236,222,.10);
  --line-strong: rgba(244,236,222,.20);
  --accent-ink: #14110D;
  color-scheme: dark;
}

/* radius variants */
html[data-rounded="sharp"]{
  --radius-sm: 6px; --radius: 10px; --radius-lg: 14px; --radius-xl: 18px;
}
html[data-rounded="round"]{
  --radius-sm: 18px; --radius: 28px; --radius-lg: 40px; --radius-xl: 52px;
}

/* ── body ───────────────────────────────────────────────── */
body{
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  font-feature-settings: "ss01","kern","liga","cv11";
  transition: background .5s var(--ease), color .5s var(--ease);
}

/* ─── shared utilities ─── */
.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.kicker-dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.section-head{
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.section-title{
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -.018em;
  font-weight: 400;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em{ font-style: italic; color: var(--accent); font-weight: 400 }
.section-lede{
  margin-top: 22px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.ink-link{
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  transition: color .2s var(--ease);
}
.ink-link:hover{ color: var(--accent-deep) }

.arrow{
  display: inline-block;
  transition: transform .35s var(--ease);
}
a:hover .arrow, .btn:hover .arrow{ transform: translateX(4px) }

section{ padding: var(--section-y) var(--gutter) }

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav{
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  width: min(calc(100% - 32px), 1180px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 22px;
  background: color-mix(in oklab, var(--bg-elev) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.nav.is-hidden{ transform: translate(-50%, calc(-100% - 16px)) }

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -.01em;
}
.brand-dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.brand-dot::after{
  content:'';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: .35;
}

.nav-links{
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
}
.nav-links a{
  position: relative;
  padding: 6px 2px;
  transition: color .2s var(--ease);
}
.nav-links a:hover{ color: var(--ink) }

.nav-cta-sm{ display: none }
.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 10px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: background .25s var(--ease);
}
.nav-cta .arrow{
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 13px;
  line-height: 1;
}
.nav-cta:hover{ background: var(--accent); }
.nav-cta:hover .arrow{ background: var(--ink); color: var(--bg); }

@media (max-width: 800px){
  .nav-links{ display: none }
  .nav{ padding: 8px 10px 8px 18px }
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero{
  position: relative;
  text-align: center;
  padding-top: clamp(140px, 18vh, 200px);
  padding-bottom: clamp(60px, 8vw, 100px);
  isolation: isolate;
  overflow: hidden;
}
.orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: .55;
  pointer-events: none;
}
.orb-1{
  width: 420px; height: 420px;
  background: radial-gradient(circle at 30% 30%, var(--accent) 0%, transparent 65%);
  top: -140px; right: -100px;
}
.orb-2{
  width: 480px; height: 480px;
  background: radial-gradient(circle at 70% 70%, var(--accent-soft) 0%, transparent 65%);
  bottom: -120px; left: -120px;
  opacity: .75;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pill:hover{ transform: translateY(-1px); box-shadow: var(--shadow) }
.pill strong{ color: var(--ink); font-weight: 600 }
.pill-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ opacity:1 } 50%{ opacity:.55 } }

.hero-title{
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 112px);
  line-height: .98;
  letter-spacing: -.025em;
  font-weight: 400;
  color: var(--ink);
  margin: 0 auto 28px;
  max-width: 14ch;
  text-wrap: balance;
}
.hero-title em{
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  display: inline-block;
}
.hero-title .qm{
  font-family: var(--serif);
  color: var(--accent);
  opacity: .55;
  font-size: .55em;
  vertical-align: .25em;
  margin: 0 .04em;
  font-style: italic;
}

.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  padding: 8px 16px;
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
}
html[data-mode="dark"] .hero-eyebrow{
  background: rgba(198,104,72,.16);
  color: var(--accent);
}

.hero-author{
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: -16px;
  margin-bottom: 36px;
}

.hero-note{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  padding: 14px 28px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  letter-spacing: .01em;
}
.hero-note-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  display: inline-block;
}
.hero-note .sep{ color: var(--accent); opacity: .5 }
.hero-sub{
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 auto 44px;
  text-wrap: balance;
}

.hero-social{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-stars{ color: var(--accent); font-size: 16px; letter-spacing: 2px }
.hero-social-text{ font-size: 13px; color: var(--ink-mute); font-weight: 500 }

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-guarantee{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 0;
}
.hero-guarantee svg{ opacity: .6; flex-shrink: 0 }
.hero-price-note{
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 10px;
  letter-spacing: .03em;
}
.urgency-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding: 13px 16px;
  background: #EDD8C8;
  border: 1px solid rgba(198,104,72,.22);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  text-align: left;
}
.urgency-bar:empty{ display: none }
.urg-left{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.urg-dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: urgPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(198,104,72,.18);
}
@keyframes urgPulse{
  0%,100%{ opacity:1; transform:scale(1); box-shadow:0 0 0 3px rgba(198,104,72,.18); }
  50%{ opacity:.85; transform:scale(.88); box-shadow:0 0 0 7px rgba(198,104,72,.06); }
}
.urg-body{ display: flex; flex-direction: column; gap: 2px; }
.urg-label{
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--accent-deep);
  font-weight: 500;
}
.urg-main{
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.urg-main em{
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 17px;
  font-weight: 400;
}
.urg-express{
  font-size: 11px;
  color: var(--accent-deep);
  margin-top: 3px;
  letter-spacing: .01em;
}
.urg-express em{
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 12.5px;
}
.urg-cta{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .18s, transform .15s;
  letter-spacing: .01em;
}
.urg-cta:hover{ background: var(--accent-deep); transform: translateY(-1px); }
@media(max-width:640px){
  .urgency-bar{ padding: 11px 14px; gap: 10px; }
  .urg-cta{ display: none; }
  .urg-main{ font-size: 14px; }
  .urg-main em{ font-size: 15px; }
}

/* ── STICKY URGENCY BAR (mobile) ─────────────────────────── */
.sticky-urgency{
  display: none;
}
@media(max-width:640px){
  .sticky-urgency{
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 18px;
    padding-bottom: calc(11px + env(safe-area-inset-bottom));
    background: var(--bg-elev);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(24,22,18,.07);
    transform: translateY(110%);
    transition: transform .38s cubic-bezier(.22,.61,.36,1);
  }
  .sticky-urgency.is-visible{
    transform: translateY(0);
  }
}
.surg-info{
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.surg-main{
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.3;
}
.surg-main em{
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 14px;
}
.surg-cta{
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .18s;
}
.surg-cta:active{ background: var(--accent-deep); }

/* Burger menu */
.nav-burger{
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-burger span{
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s var(--ease);
}
.nav-burger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg) }
.nav-burger.is-open span:nth-child(2){ opacity: 0 }
.nav-burger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg) }

.nav-mobile-menu{
  display: none;
  position: fixed;
  top: 64px; left: 10px; right: 10px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 4999;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease);
  pointer-events: none;
}
.nav-mobile-menu.is-open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.nav-mobile-menu a{
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
  display: block;
}
.nav-mobile-menu a:hover{ background: var(--bg-soft) }
.nav-mobile-cta{
  margin-top: 8px;
  padding: 14px 16px !important;
  background: var(--ink);
  color: var(--bg) !important;
  border-radius: var(--radius-pill) !important;
  text-align: center;
  font-weight: 600 !important;
}

@media (min-width: 801px){
  .nav-burger{ display: none !important }
  .nav-mobile-menu{ display: none !important }
}
@media (max-width: 800px){
  .nav-burger{ display: flex }
  .nav-mobile-menu{ display: flex }
}

/* Phone frame Écouter label */
.phone-ov{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.phone-ov-label{
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
}

/* Sticky CTA mobile */
.sticky-cta{
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px 20px;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -4px rgba(24,22,18,.08);
  z-index: 5000;
  text-align: center;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-visible{ transform: translateY(0) }
.sticky-cta-btn{
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}
.sticky-cta-note{
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 6px;
}
@media (max-width: 640px){
  .sticky-cta{ display: block }
}

.hero-quote{
  display: none;
}
.hero-quote-avatars{
  display: inline-flex;
  flex-shrink: 0;
}
.ava{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-elev);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-ink);
  margin-left: -10px;
}
.ava:first-child{ margin-left: 0 }
.ava-1{ background: linear-gradient(135deg, #E89A7F, #C66848) }
.ava-2{ background: linear-gradient(135deg, #B89B68, #7A6038) }
.ava-3{ background: linear-gradient(135deg, #8BA887, #4F6A4C) }

.hero-quote-text{
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
}
.hero-quote-author{
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}

@media (max-width: 640px){
  .hero-quote{ flex-direction: column; gap: 12px; text-align: center; padding: 18px 22px; border-radius: var(--radius-lg) }
  .hero-quote-avatars{ margin: 0 auto }
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.005em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg{ padding: 18px 28px; font-size: 16px }
.btn-primary{
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover{
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px var(--accent-glow);
}
.btn-ghost{
  background: var(--bg-elev);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover{
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-play{
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-play svg{ width: 10px; height: 10px; margin-left: 1px }

/* ═══════════════════════════════════════════════
   PRAYER CARD — centerpiece
   ═══════════════════════════════════════════════ */
.sample{
  padding-top: clamp(60px, 8vw, 100px);
}
.prayer-card{
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.prayer-card::before{
  content:'';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: .5;
  z-index: -1;
}

.prayer-card-head{
  margin-bottom: 32px;
}
.prayer-tags{
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.tag{
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-pill);
}
.tag-soft{
  background: var(--accent-soft);
  color: var(--accent-deep);
}
html[data-mode="dark"] .tag-soft{
  background: rgba(255,255,255,.08);
  color: var(--ink);
}
.prayer-recipient{
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 400;
  color: var(--ink);
}
.prayer-recipient em{
  font-style: italic;
  color: var(--accent);
}
.prayer-author{
  font-size: 14px;
  color: var(--ink-mute);
  margin-top: 8px;
}

/* player */
.player{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2.5vw, 24px);
  align-items: center;
  padding: 18px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.player-play{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  transition: transform .25s var(--ease), background .25s var(--ease);
  flex-shrink: 0;
  box-shadow: 0 6px 20px -8px var(--accent-glow);
}
.player-play:hover{ transform: scale(1.05); background: var(--accent-deep) }
.play-svg{ width: 20px; height: 20px; fill: currentColor }
.play-svg .ic-pause{ display: none }
.player.is-playing .ic-play{ display: none }
.player.is-playing .ic-pause{ display: block }
.player.is-playing .player-play{ animation: ringPulse 2s var(--ease) infinite }
@keyframes ringPulse{
  0%{ box-shadow: 0 0 0 0 var(--accent-glow) }
  70%{ box-shadow: 0 0 0 14px transparent }
  100%{ box-shadow: 0 0 0 0 transparent }
}

.player-top{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 12px;
}
.player-title{
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.player-time{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  flex-shrink: 0;
}
.player-time .sep{ margin: 0 6px; opacity: .5 }
#curTime{ color: var(--accent); font-weight: 500 }

.waveform{
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
  cursor: pointer;
}
.wf-bar{
  flex: 1 1 0;
  background: var(--ink-mute);
  border-radius: 999px;
  transition: background .15s, transform .12s;
  transform-origin: center;
  min-height: 4px;
  opacity: .35;
}
.wf-bar.is-past{ background: var(--accent); opacity: 1 }
.wf-bar.is-active{
  background: var(--accent);
  opacity: 1;
  transform: scaleY(1.2);
}

/* transcript */
.transcript{
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.6;
  color: var(--ink-mute);
  text-align: center;
  padding: 16px 8px 32px;
  min-height: 240px;
  max-height: 340px;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(198,104,72,.65) rgba(198,104,72,.10);
  mask-image: linear-gradient(180deg, transparent 0, black 16%, black 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, black 16%, black 84%, transparent 100%);
}
.transcript::-webkit-scrollbar{ width: 5px; }
.transcript::-webkit-scrollbar-track{ background: rgba(198,104,72,.12); border-radius: 99px; }
.transcript::-webkit-scrollbar-thumb{ background: rgba(198,104,72,.7); border-radius: 99px; }
.transcript-line{
  display: block;
  opacity: .2;
  transition: opacity .6s var(--ease), color .6s var(--ease), transform .5s var(--ease), font-size .4s var(--ease);
  padding: 6px 0;
  will-change: transform, opacity;
}
.transcript-line.is-past{
  opacity: .45;
  color: var(--ink-soft);
}
.transcript-line.is-active{
  opacity: 1;
  color: var(--accent);
  font-style: italic;
  font-size: 1.15em;
  transform: scale(1.03);
}

.prayer-card-foot{
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.rating{ display: inline-flex; flex-direction: column; gap: 2px }
.stars{ color: var(--accent); letter-spacing: .12em; font-size: 15px }
.stars-lg{ font-size: 22px }
.rating-text{ font-size: 13px; color: var(--ink-mute) }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
.steps{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  position: relative;
}
.step{
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.step-num{
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1;
  padding-bottom: 2px;
}
html[data-mode="dark"] .step-num{
  background: rgba(198,104,72,.18);
  color: var(--accent);
}
.step-title{
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -.012em;
  font-weight: 400;
  color: var(--ink);
}
.step-body{
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
.step-meta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

@media (max-width: 860px){
  .steps{ grid-template-columns: 1fr }
}

/* ═══════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════ */
.marquee{
  overflow: hidden;
  background: var(--bg);
  padding: 18px 0;
  position: relative;
}
.marquee::before, .marquee::after{
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before{ left: 0; background: linear-gradient(90deg, var(--bg), transparent) }
.marquee::after{ right: 0; background: linear-gradient(270deg, var(--bg), transparent) }
.marquee-track{
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: mq 40s linear infinite;
  will-change: transform;
}
@keyframes mq{ to{ transform: translateX(-50%) } }
.mq-item{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 3.2vw, 40px);
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1;
}
.mq-star{
  display: inline-block;
  color: var(--accent);
  font-size: clamp(16px, 2vw, 22px);
  animation: starSpin 8s linear infinite;
}
@keyframes starSpin{ to{ transform: rotate(360deg) } }
@media (prefers-reduced-motion: reduce){
  .marquee-track, .mq-star{ animation: none }
}

/* ═══════════════════════════════════════════════
   L'ESSENCE — color-reveal text + watermark
   ═══════════════════════════════════════════════ */
.essence{
  position: relative;
  padding: clamp(120px, 18vw, 220px) var(--gutter);
  background: var(--bg);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
html[data-mode="light"] .essence{
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.essence-watermark{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(180px, 28vw, 460px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ink);
  opacity: .06;
  pointer-events: none;
  white-space: nowrap;
  z-index: -1;
  user-select: none;
}
html[data-mode="dark"] .essence-watermark{ opacity: .08 }

.essence .kicker{
  margin-bottom: 38px;
  background: var(--bg-elev);
}
.kicker-dark{ /* unused fallback */ }

.essence-text{
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.18;
  letter-spacing: -.018em;
  max-width: 22ch;
  margin: 0 auto 48px;
  text-wrap: balance;
}
.essence-text .word{
  display: inline-block;
  color: var(--ink-mute);
  transition: color .35s var(--ease);
  white-space: pre;
}
.essence-text .word.is-lit{
  color: var(--ink);
}
.essence-text .word.is-accent{
  color: var(--accent);
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS — vertical timeline (Paynext-style)
   ═══════════════════════════════════════════════ */
.how-grid{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.how-intro{
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.how-intro .section-title{
  text-align: left;
  font-size: clamp(40px, 5vw, 72px);
  margin: 0;
}
.how-intro .section-lede{
  text-align: left;
  margin: 0;
  max-width: 36ch;
}
.how-cta{ margin-top: 12px }

.timeline{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 8px;
}
.timeline::before{
  content: '';
  position: absolute;
  left: 31px; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-soft) 50%, var(--line) 100%);
  z-index: 0;
}
html[data-mode="dark"] .timeline::before{
  background: linear-gradient(180deg, var(--accent) 0%, rgba(198,104,72,.25) 50%, var(--line) 100%);
}
.timeline-step{
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
  padding: 22px 26px 22px 0;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding-left: 22px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.timeline-step:hover{
  border-color: var(--accent);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.timeline-node{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-elev), 0 6px 18px -6px var(--accent-glow);
  flex-shrink: 0;
}
.timeline-node svg{ width: 20px; height: 20px }
.timeline-body{ display: flex; flex-direction: column; gap: 8px; padding-top: 8px }
.timeline-title{
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.012em;
  color: var(--ink);
}
.timeline-text{
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 48ch;
}
.timeline-meta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  margin-top: 4px;
}
.timeline-meta::before{
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

@media (max-width: 980px){
  .how-grid{ grid-template-columns: 1fr; gap: 48px }
  .how-intro{ position: static }
}

/* ═══════════════════════════════════════════════
   MOBILE PASS — comprehensive < 640px overrides
   ═══════════════════════════════════════════════ */
@media (max-width: 640px){
  :root{
    --gutter: 22px;
    --section-y: clamp(72px, 14vw, 96px);
  }

  /* Nav */
  .nav{
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 14px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
  }
  .nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .brand{ flex-shrink: 0; }
  .nav-cta-lg{ display: none }
  .nav-cta-sm{ display: inline }
  .nav-cta{
    margin-left: auto;
    margin-right: 10px;
    background: var(--accent);
    color: var(--accent-ink);
    padding: 7px 12px;
    font-size: 12px;
    gap: 4px;
  }
  .nav-cta .arrow{
    background: none;
    color: var(--accent-ink);
    width: auto;
    height: auto;
    font-size: 12px;
    display: inline;
  }
  .nav-burger{ flex-shrink: 0; }

  /* Hero */
  .hero{
    padding-top: 120px;
    padding-bottom: 64px;
  }
  .orb-1{ width: 280px; height: 280px; top: -100px; right: -80px }
  .orb-2{ width: 320px; height: 320px; bottom: -80px; left: -100px }
  .hero-eyebrow{
    font-size: 11px;
    letter-spacing: .12em;
    padding: 8px 16px;
    margin-bottom: 32px;
  }
  .hero-title{
    font-size: clamp(44px, 13vw, 64px);
    line-height: 1;
    margin-bottom: 28px;
  }
  .hero-title .qm{ font-size: .45em }
  .hero-sub{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .hero-author{
    font-size: 14px;
    margin-bottom: 32px;
    text-wrap: balance;
  }
  .hero-actions{
    gap: 12px;
    flex-direction: column;
    width: 100%;
    margin-bottom: 36px;
  }
  .hero-actions .btn{
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
  }
  .hero-note{
    font-size: 12px;
    padding: 12px 18px;
    gap: 10px;
  }
  .hero-guarantee{ display: none }
  .hero-sub br{ display: none }
  .hero-sub{ font-size: 15px; margin-bottom: 24px }

  /* Marquee */
  .marquee{ padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .mq-item{ font-size: 20px }
  .mq-star{ font-size: 12px }
  .marquee-track{ gap: 16px }
  .marquee::before, .marquee::after{ width: 40px }

  /* Essence */
  .essence{ padding: 96px 22px }
  .essence-watermark{ font-size: clamp(120px, 50vw, 180px) }
  .essence-text{
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.25;
    margin-bottom: 40px;
  }
  .essence .kicker{ margin-bottom: 32px }

  /* Section heads */
  .section-head{ margin-bottom: 48px }
  .section-title{
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.05;
  }
  .section-lede{
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
  }
  .kicker{ margin-bottom: 24px; font-size: 11px }

  /* Prayer card */
  .prayer-card{
    padding: 28px 22px;
    border-radius: var(--radius);
  }
  .prayer-card-head{ margin-bottom: 28px }
  .prayer-tags{
    gap: 8px;
    margin-bottom: 18px;
  }
  .tag{ font-size: 11px; padding: 6px 12px }
  .prayer-recipient{ font-size: clamp(26px, 7vw, 36px) }
  .prayer-author{ font-size: 13px; margin-top: 6px }

  .player{
    padding: 16px;
    gap: 16px;
    border-radius: var(--radius);
  }
  .player-play{ width: 50px; height: 50px }
  .play-svg{ width: 18px; height: 18px }
  .player-title{ font-size: 15px }
  .player-time{ font-size: 11px }
  .waveform{ height: 32px; gap: 2px }

  .transcript{
    font-size: 18px;
    line-height: 1.55;
    min-height: 160px;
    max-height: 240px;
    padding: 20px 0;
  }

  .prayer-card-foot{
    padding-top: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .prayer-card-foot .btn{ justify-content: center }
  .rating{ flex-direction: row; gap: 10px; align-items: baseline }

  /* How — vertical timeline */
  .how-grid{ gap: 48px }
  .how-intro{ gap: 20px }
  .how-intro .section-title{ font-size: clamp(32px, 9vw, 44px) }
  .timeline{ padding-left: 0; gap: 20px }
  .timeline::before{ left: 27px; top: 24px; bottom: 24px }
  .timeline-step{
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 22px 20px;
    border-radius: var(--radius);
  }
  .timeline-step:hover{ transform: none }
  .timeline-node{ width: 38px; height: 38px }
  .timeline-node svg{ width: 17px; height: 17px }
  .timeline-title{ font-size: 19px }
  .timeline-text{ font-size: 15px; line-height: 1.55; margin-top: 6px }
  .timeline-meta{ font-size: 11px; margin-top: 8px }

  /* Occasions */
  .oc-card{
    padding: 26px 22px;
    border-radius: var(--radius);
  }
  .oc-arrow{
    width: 28px; height: 28px;
    top: 20px; right: 20px;
  }
  .oc-name{ font-size: 22px }
  .oc-tag{ font-size: 13px; margin-top: 6px }

  /* Testimonials */
  .tmn-featured{
    padding: 22px 18px;
    gap: 24px;
    border-radius: var(--radius);
  }
  .tmn-thumb{ border-radius: var(--radius-sm) }
  .tmn-thumb-lg{ aspect-ratio: 16 / 11 }
  .tmn-play{ width: 56px; height: 56px }
  .tmn-play svg{ width: 18px; height: 18px }
  .tmn-mood{ font-size: 10px; padding: 5px 10px }
  .tmn-quote{ font-size: clamp(24px, 7vw, 34px); line-height: 1.3 }
  .tmn-author{ font-size: 13px; margin-top: 12px }
  .tmn-grid-3,
  .tmn-grid{ grid-template-columns: 1fr; gap: 18px; margin-top: 18px }
  .tmn-card{ padding: 18px; gap: 14px }
  .tmn-card .tmn-thumb{ aspect-ratio: 16 / 10 }
  .tmn-q{ font-size: 17px; line-height: 1.5 }

  /* FAQ */
  .faq-list{ gap: 10px }
  .faq-q{
    padding: 22px 22px;
    font-size: 16px;
    line-height: 1.4;
  }
  .faq-a > p{
    padding: 0 22px;
    font-size: 15px;
    line-height: 1.65;
  }
  .faq-item.is-open .faq-a > p{ padding-bottom: 24px }

  /* Final */
  .final-card{
    padding: 64px 26px 56px;
    border-radius: var(--radius);
  }
  .final-eyebrow{ margin-bottom: 18px }
  .final-title{ font-size: clamp(36px, 11vw, 56px) }
  .final-sub{ font-size: 16px; margin-bottom: 32px; line-height: 1.6 }
  .final-card .btn{ padding: 17px 28px; font-size: 15px }
  .final-guarantee{ font-size: 12px; margin-top: 26px }

  /* Footer */
  .foot{ padding-top: 60px; padding-bottom: 32px }
  .foot-brand{ font-size: 20px }
  .foot-tag{ font-size: 16px; margin-top: 6px }
  .foot-mid{
    flex-direction: column;
    gap: 32px;
    padding: 36px 0;
  }
  .foot-credo{ font-size: 14px; line-height: 1.65 }
  .foot-links{ gap: 18px }
  .foot-bot{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
  }

  /* Buttons */
  .btn-lg{ padding: 17px 28px; font-size: 15px }

  /* Tweaks panel */
  .tk{ bottom: 16px; right: 16px; left: 16px; width: auto }
  .tk-trigger{ bottom: 16px; right: 16px }
}

/* Ultra-narrow */
@media (max-width: 380px){
  .hero-title{ font-size: clamp(36px, 13vw, 44px) }
  .essence-text{ font-size: 24px }
  .prayer-card{ padding: 18px 14px }
  .player{ padding: 12px }
  .transcript{ font-size: 16px; min-height: 140px }
  .oc-card{ padding: 18px }
  .timeline-step{ padding: 14px }
  .nav-cta-lg{ display: none }
  .nav-cta-sm{ display: inline }
}

/* ═══════════════════════════════════════════════
   OCCASIONS
   ═══════════════════════════════════════════════ */
.oc-grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.oc-card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px 28px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.oc-card:hover{
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.oc-name{
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1;
  letter-spacing: -.012em;
  color: var(--ink);
}
.oc-tag{
  font-size: 14px;
  color: var(--ink-soft);
}
.oc-arrow{
  position: absolute;
  top: 22px; right: 24px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink-mute);
  display: grid; place-items: center;
  font-size: 14px;
  transition: all .3s var(--ease);
}
.oc-card:hover .oc-arrow{
  background: var(--accent);
  color: var(--accent-ink);
  transform: translate(2px,-2px);
}

@media (max-width: 860px){
  .oc-grid{ grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 540px){
  .oc-grid{ grid-template-columns: 1fr }
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.tmn-featured{
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  box-shadow: var(--shadow);
}
.tmn-thumb{
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-deep) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; place-items: center;
}
.tmn-thumb::before{
  content:'';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, color-mix(in oklab, var(--ink) 6%, transparent) 14px 15px);
  opacity: .55;
}
.tmn-thumb::after{
  content: attr(data-placeholder);
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
  text-align: center;
  padding: 8px 10px;
  background: color-mix(in oklab, var(--bg-elev) 78%, transparent);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
}
.tmn-play{
  position: relative;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-elev);
  color: var(--accent);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  transition: all .3s var(--ease);
  z-index: 1;
}
.tmn-play svg{ width: 24px; height: 24px; margin-left: 3px }
.tmn-play:hover{
  background: var(--accent);
  color: var(--accent-ink);
  transform: scale(1.06);
}
.tmn-mood{
  position: absolute;
  top: 16px; left: 16px;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  background: color-mix(in oklab, var(--bg-elev) 80%, transparent);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border-radius: var(--radius-pill);
  z-index: 1;
}

.tmn-body{ display: flex; flex-direction: column; gap: 18px }
.tmn-quote{
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--ink);
  text-wrap: balance;
}
.tmn-quote em{ font-style: italic; color: var(--accent) }
.tmn-author{
  font-size: 14px;
  color: var(--ink-mute);
}

.tmn-grid{
  max-width: 1100px;
  margin: clamp(20px, 3vw, 32px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tmn-grid-3{ grid-template-columns: repeat(3, 1fr) }
@media (max-width: 980px){
  .tmn-grid-3{ grid-template-columns: repeat(2, 1fr) }
}
.tmn-card{
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tmn-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow) }
.tmn-card .tmn-thumb{ aspect-ratio: 16 / 10; border-radius: var(--radius); }
.tmn-card .tmn-play{ width: 56px; height: 56px }
.tmn-card .tmn-play svg{ width: 18px; height: 18px; margin-left: 2px }
.tmn-q{
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  padding: 0 6px;
}
.tmn-card .stars{ padding: 0 6px 6px }

@media (max-width: 860px){
  .tmn-featured{ grid-template-columns: 1fr }
  .tmn-grid{ grid-template-columns: 1fr }
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-list{
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item{
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-item.is-open{ border-color: var(--line-strong) }
.faq-q{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 26px;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 500;
  letter-spacing: -.008em;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-q:hover{ color: var(--accent) }
.faq-q-tog{
  position: relative;
  width: 24px; height: 24px;
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.faq-q-tog::before,
.faq-q-tog::after{
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%,-50%);
  transition: background .25s var(--ease);
}
.faq-q-tog::after{ transform: translate(-50%,-50%) rotate(90deg) }
.faq-item.is-open .faq-q-tog{ transform: rotate(180deg) }
.faq-item.is-open .faq-q-tog::after{ transform: translate(-50%,-50%) rotate(0deg); opacity: 0 }
.faq-item.is-open .faq-q-tog::before,
.faq-item.is-open .faq-q-tog::after{ background: var(--accent) }

.faq-a{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.faq-a > p{
  overflow: hidden;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding: 0 26px;
  max-width: 64ch;
}
.faq-item.is-open .faq-a{ grid-template-rows: 1fr }
.faq-item.is-open .faq-a > p{ padding-bottom: 24px }

/* ═══════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════ */
.final{
  padding-bottom: clamp(60px, 8vw, 100px);
}
.final-card{
  max-width: 1100px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg);
  padding: clamp(56px, 8vw, 120px) clamp(28px, 4vw, 56px);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
html[data-mode="dark"] .final-card{
  background: var(--bg-elev);
  border: 1px solid var(--line);
}
.orb-final{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, var(--accent) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 80% 80%, color-mix(in oklab, var(--accent) 60%, var(--accent-deep)) 0%, transparent 55%);
  opacity: .35;
  filter: blur(40px);
}
.final-eyebrow{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--accent-soft);
  margin-bottom: 20px;
}
html[data-mode="dark"] .final-eyebrow{ color: var(--accent) }
.final-title{
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1;
  letter-spacing: -.025em;
  font-weight: 400;
  margin-bottom: 22px;
  text-wrap: balance;
}
.final-title em{
  font-style: italic;
  color: var(--accent);
  background: linear-gradient(90deg, var(--accent), color-mix(in oklab, var(--accent) 70%, white));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-sub{
  font-size: 17px;
  color: color-mix(in oklab, var(--bg) 85%, transparent);
  margin-bottom: 36px;
}
html[data-mode="dark"] .final-sub{ color: var(--ink-soft) }
.final-card .btn-primary{
  background: var(--accent);
  color: var(--accent-ink);
}
.final-card .btn-primary:hover{
  background: var(--bg);
  color: var(--ink);
}
.final-guarantee{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: color-mix(in oklab, var(--bg) 65%, transparent);
  margin-top: 28px;
}
html[data-mode="dark"] .final-guarantee{ color: var(--ink-mute) }
.final-contact{
  margin-top: 16px;
  font-size: 13px;
  color: color-mix(in oklab, var(--bg) 55%, transparent);
  text-align: center;
}
.final-contact a{ color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════════════
   FOOTER PRE-CTA
   ═══════════════════════════════════════════════ */
.foot-precta{
  text-align: center;
  padding: 28px var(--gutter);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.foot-precta-link{
  color: var(--accent);
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.foot{
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(24px, 3vw, 36px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.foot-top{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 12px;
}
.foot-brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 500;
}
.foot-brand .brand-dot{ width: 12px; height: 12px }
.foot-logo{ height: 48px; width: auto; display: block; }
.foot-tag{
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
}
.foot-mid{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 0;
  flex-wrap: wrap;
}
.foot-left{ display: flex; flex-direction: column; gap: 0; max-width: 52ch; }
.foot-credo{
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.foot-origin{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 7px 14px 7px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  width: fit-content;
}
.foot-origin-flag{ font-size: 18px; line-height: 1; }
.foot-origin-label{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink);
}
.foot-links{
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.foot-links a{
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.foot-links a:hover{ color: var(--accent) }
.foot-bot{
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 12px;
}

/* ═══════════════════════════════════════════════
   REVEALS
   ═══════════════════════════════════════════════ */
.pre-reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.pre-reveal.is-in{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .pre-reveal{ opacity:1; transform: none }
  .pill-dot, .player.is-playing .player-play{ animation: none }
}

/* ═══════════════════════════════════════════════
   TWEAKS PANEL
   ═══════════════════════════════════════════════ */
.tk{
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 300;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  width: 300px;
  box-shadow: var(--shadow-lg);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.tk.is-open{ opacity: 1; transform: none; pointer-events: auto }
.tk-head{
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.tk-title{
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.tk-title-sub{
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  margin-left: 4px;
}
.tk-close{
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--ink-mute);
  transition: all .2s var(--ease);
}
.tk-close:hover{ background: var(--bg-soft); color: var(--ink) }
.tk-section{ margin-bottom: 14px }
.tk-section:last-child{ margin-bottom: 0 }
.tk-label{
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.tk-seg{
  display: grid;
  gap: 4px;
  padding: 3px;
  background: var(--bg-soft);
  border-radius: var(--radius);
}
.tk-seg-2{ grid-template-columns: 1fr 1fr }
.tk-seg-3{ grid-template-columns: 1fr 1fr 1fr }
.tk-seg button{
  font-size: 12px;
  font-weight: 500;
  padding: 8px 6px;
  border-radius: calc(var(--radius) - 4px);
  color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.tk-seg button:hover{ color: var(--ink) }
.tk-seg button.is-on{
  background: var(--bg-elev);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.tk-swatches{
  display: flex; gap: 8px;
}
.tk-swatch{
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: transform .2s var(--ease);
  position: relative;
}
.tk-swatch::after{
  content:'';
  position: absolute; inset: 2px;
  border-radius: 50%;
  background: var(--c);
}
.tk-swatch:hover{ transform: scale(1.08) }
.tk-swatch.is-on{ border-color: var(--ink); }

/* trigger */
.tk-trigger{
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 299;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform .3s var(--bounce);
}
.tk-trigger:hover{ transform: scale(1.06) }
.tk-trigger svg{ width: 20px; height: 20px }
.tk-trigger.is-hidden{ display: none }
