/* =====================================================================
   ROBOTROLA v4 — Da Vinci product house
   Editorial luxury. Restraint over gimmick. Dark sale + cream credibility.
   ===================================================================== */
:root{
  --paper:#08080A;
  --paper-2:#0E0E12;
  --ink:#F3EEE6;
  --muted:#9A9186;
  --muted-2:#6F675E;
  --line:rgba(201,162,39,.12);
  --line-2:rgba(201,162,39,.28);
  --gold:#C9A227;
  --gold-2:#E0BC4A;
  --bronze:#E8D5A8;
  --copper:#9B5A2A;
  --cream:#F7EFE3;
  --cream-ink:#1A1510;
  --cream-muted:#6B6258;
  --cream-line:rgba(26,21,16,.12);
  --font-display:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  --font-body:"Outfit",ui-sans-serif,system-ui,sans-serif;
  --font-mono:ui-monospace,"SF Mono",Menlo,monospace;
  --maxw:1180px;
  --gutter:clamp(1.25rem,4vw,3.5rem);
  --nav-h:4.5rem;
  --ease:cubic-bezier(.22,1,.36,1);
  --dur:.65s;
  --radius:2px;
  --safe-t:env(safe-area-inset-top,0px);
  --safe-b:env(safe-area-inset-bottom,0px);
}

*,*::before,*::after{box-sizing:border-box}
*{margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;background:var(--paper)}
body{
  font-family:var(--font-body);
  background:var(--paper);
  color:var(--ink);
  line-height:1.55;
  font-size:clamp(1rem,.95rem + .2vw,1.0625rem);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  padding-bottom:var(--safe-b);
}
img,svg,video{display:block;max-width:100%}
a{color:inherit}
button{font:inherit}
::selection{background:color-mix(in oklab,var(--gold) 38%,transparent);color:var(--ink)}

/* Layout */
.wrap{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gutter)}
.section{padding-block:clamp(4.5rem,11vw,8.5rem);position:relative}
.grid2{display:grid;gap:clamp(2rem,5vw,4rem)}
@media(min-width:900px){.grid2{grid-template-columns:1.05fr .95fr;align-items:center}}

/* Type */
.display{
  font-family:var(--font-display);
  font-weight:500;
  line-height:.96;
  letter-spacing:-.025em;
  font-size:clamp(2.75rem,8.2vw,5.75rem);
  text-wrap:balance;
  color:var(--ink);
}
.display em,.display .thin{
  font-style:italic;font-weight:500;color:var(--bronze);
}
.h2{
  font-family:var(--font-display);
  font-weight:500;
  line-height:1.05;
  letter-spacing:-.02em;
  font-size:clamp(2rem,4.2vw,3.35rem);
  text-wrap:pretty;
  color:var(--ink);
}
.lead{
  color:var(--muted);
  max-width:38ch;
  font-size:clamp(1.05rem,1rem + .35vw,1.22rem);
  line-height:1.6;
  text-wrap:pretty;
}
.kicker{
  font-family:var(--font-body);
  font-weight:600;
  font-size:.7rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex;align-items:center;gap:.75rem;
}
.kicker::before{
  content:"";width:1.5rem;height:1px;background:var(--gold);opacity:.85;
}

/* Buttons — quiet luxury */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  padding:.95rem 1.55rem;
  border-radius:999px;
  font-weight:600;font-size:.92rem;
  letter-spacing:.01em;
  text-decoration:none;border:1px solid transparent;
  cursor:pointer;
  transition:transform .35s var(--ease),background .35s var(--ease),border-color .35s var(--ease),box-shadow .35s var(--ease),color .35s var(--ease);
}
.btn--primary{
  background:var(--gold);color:#0A0908;
}
.btn--primary:hover{
  background:var(--gold-2);
  box-shadow:0 16px 40px -16px color-mix(in oklab,var(--gold) 70%,transparent);
}
.btn--ghost{
  background:transparent;color:var(--ink);border-color:var(--line-2);
}
.btn--ghost:hover{border-color:var(--gold);color:var(--bronze)}
.btn .arrow{transition:transform .35s var(--ease)}
.btn:hover .arrow{transform:translateX(3px)}
.btn:active{transform:scale(.985)}

/* Skip */
.skip{
  position:absolute;left:-9999px;top:0;z-index:300;
  background:var(--gold);color:#0A0908;padding:.65rem 1rem;font-weight:700;
}
.skip:focus{left:0}

/* Nav — museum quiet */
.nav{
  position:fixed;inset:0 0 auto 0;z-index:100;
  display:flex;align-items:center;gap:1rem;
  min-height:var(--nav-h);
  padding:calc(.65rem + var(--safe-t)) var(--gutter) .65rem;
  background:linear-gradient(180deg,rgba(8,8,10,.92),rgba(8,8,10,.55) 70%,transparent);
  backdrop-filter:blur(14px) saturate(1.15);
  -webkit-backdrop-filter:blur(14px) saturate(1.15);
  border-bottom:1px solid transparent;
  transition:border-color .3s var(--ease),background .3s var(--ease);
}
.nav.is-open{background:rgba(8,8,10,.97);border-bottom-color:var(--line)}
.nav__brand{
  display:inline-flex;align-items:center;gap:.7rem;
  text-decoration:none;color:var(--ink);
  font-family:var(--font-display);font-weight:600;font-size:1.35rem;letter-spacing:.02em;
  flex:none;
}
.nav__brand .mark{width:28px;height:28px;color:var(--gold);flex:none}
.nav__links{
  display:none;list-style:none;gap:1.6rem;margin:0;padding:0;
}
.nav__links a{
  text-decoration:none;color:var(--muted);font-size:.86rem;font-weight:500;
  transition:color .25s var(--ease);
}
.nav__links a:hover,.nav__links a.is-active{color:var(--ink)}
.nav__right{display:flex;align-items:center;gap:.65rem;margin-left:auto}
.nav__ghost{
  display:none;text-decoration:none;color:var(--muted);font-size:.84rem;font-weight:500;
}
.nav__ghost:hover{color:var(--ink)}
.lang{
  display:inline-flex;border:1px solid var(--line-2);border-radius:999px;overflow:hidden;
}
.lang button{
  border:0;background:transparent;color:var(--muted);
  padding:.32rem .62rem;font-size:.68rem;font-weight:700;letter-spacing:.06em;
  cursor:pointer;font-family:var(--font-body);
}
.lang button[aria-pressed="true"]{background:var(--gold);color:#0A0908}
.nav__menu{
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;border:1px solid var(--line-2);border-radius:10px;
  background:transparent;color:var(--ink);cursor:pointer;order:2;
}
.nav__menu__icon{display:flex;flex-direction:column;gap:5px;width:16px}
.nav__menu__icon span{display:block;height:1.5px;background:currentColor;border-radius:1px;transition:.3s var(--ease)}
.nav.is-open .nav__menu__icon span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.nav.is-open .nav__menu__icon span:nth-child(2){opacity:0}
.nav.is-open .nav__menu__icon span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
@media(min-width:900px){
  .nav__links{display:flex}
  .nav__ghost{display:inline-flex}
  .nav__menu{display:none!important}
}
@media(max-width:899px){
  .nav{flex-wrap:wrap}
  .nav__links{
    display:none;width:100%;order:3;flex-direction:column;gap:0;
  }
  .nav.is-open .nav__links{display:flex;border-top:1px solid var(--line);padding-top:.4rem}
  .nav__links a{display:block;padding:.95rem 0;font-size:1.05rem;border-bottom:1px solid var(--line)}
  .nav__right .btn{display:none}
}

/* Reveal */
[data-reveal]{
  opacity:0;transform:translateY(22px);
  transition:opacity var(--dur) var(--ease),transform var(--dur) var(--ease);
  transition-delay:var(--rd,0ms);
}
[data-reveal].is-in{opacity:1;transform:none}

/* ========== HERO — cinematic product ========== */
.hero{
  min-height:100svh;
  display:grid;
  align-items:end;
  padding-top:calc(var(--nav-h) + 1rem);
  padding-bottom:clamp(2rem,5vw,3.5rem);
  position:relative;
  overflow:hidden;
}
.hero__stage{
  position:absolute;inset:0;z-index:0;
  background:
    radial-gradient(ellipse 70% 55% at 72% 42%,rgba(201,162,39,.11),transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%,rgba(155,90,42,.08),transparent 55%),
    var(--paper);
}
.hero__frame{
  position:absolute;
  inset:clamp(5.5rem,12vh,7rem) var(--gutter) clamp(1.5rem,4vh,2.5rem) auto;
  width:min(46vw,520px);
  max-width:calc(100% - 2 * var(--gutter));
  z-index:1;
  border:1px solid var(--line);
  background:var(--paper-2);
  overflow:hidden;
}
@media(max-width:899px){
  .hero__frame{
    position:relative;inset:auto;
    width:100%;aspect-ratio:4/5;max-height:58svh;
    margin:0 var(--gutter) 1.5rem;
  }
  .hero{align-items:stretch;display:flex;flex-direction:column;justify-content:flex-end}
}
.hero__frame img{
  width:100%;height:100%;object-fit:cover;object-position:center top;
  filter:saturate(.95) contrast(1.02);
}
.hero__frame::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 45%,rgba(8,8,10,.55) 100%);
  pointer-events:none;
}
.hero__badge{
  position:absolute;left:1rem;bottom:1rem;z-index:2;
  font-family:var(--font-mono);font-size:.65rem;letter-spacing:.14em;
  color:var(--gold);border:1px solid var(--line-2);
  padding:.35rem .65rem;background:rgba(8,8,10,.55);backdrop-filter:blur(8px);
}
.hero__content{
  position:relative;z-index:2;
  width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gutter);
  padding-bottom:.5rem;
}
@media(min-width:900px){
  .hero__content{max-width:min(52%,34rem);margin-left:max(var(--gutter),calc((100% - var(--maxw))/2 + var(--gutter)));margin-right:auto}
}
.hero .kicker{margin-bottom:1.15rem}
.hero .lead{margin-top:1.25rem}
.hero__cta{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.75rem}
.pills{display:flex;flex-wrap:wrap;gap:.45rem;list-style:none;margin-top:1.5rem}
.pills li{
  font-size:.72rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;
  color:var(--bronze);border:1px solid var(--line);padding:.42rem .8rem;
}

/* ========== PROOF — quiet specs ========== */
.proof{
  border-block:1px solid var(--line);
  background:var(--paper-2);
  padding-block:1.15rem;
}
.proof__row{
  display:flex;flex-wrap:wrap;justify-content:center;gap:.35rem 0;
  list-style:none;
}
.proof__row li{
  font-family:var(--font-display);font-size:clamp(1.05rem,2.2vw,1.35rem);
  font-weight:500;color:var(--ink);letter-spacing:.02em;
  padding:.35rem 1.1rem;display:inline-flex;align-items:center;gap:.85rem;
}
.proof__row li + li::before{
  content:"";width:3px;height:3px;border-radius:50%;background:var(--gold);opacity:.8;
  margin-right:.85rem;
}
.proof__row .num{color:var(--bronze);font-variant-numeric:tabular-nums}

/* Cream invert */
.theme-cream{
  background:var(--cream);color:var(--cream-ink);
  --ink:var(--cream-ink);--muted:var(--cream-muted);--line:var(--cream-line);--line-2:rgba(26,21,16,.2);
}
.theme-cream .h2,.theme-cream .display{color:var(--cream-ink)}
.theme-cream .lead{color:var(--cream-muted)}
.theme-cream .kicker{color:var(--copper)}
.theme-cream .kicker::before{background:var(--copper)}
.theme-cream .btn--ghost{color:var(--cream-ink);border-color:var(--cream-line)}
.theme-cream .btn--ghost:hover{border-color:var(--copper)}
.theme-cream .btn--primary{background:var(--copper);color:var(--cream)}
.theme-cream .btn--primary:hover{background:#7E4721;box-shadow:0 14px 36px -14px rgba(155,90,42,.45)}
.theme-cream ::selection{color:var(--cream-ink)}

/* Section head */
.sec-head{max-width:28rem;margin-bottom:clamp(2rem,5vw,3.25rem)}
.sec-head .lead{margin-top:.85rem}

/* Benefits — manuscript rows */
.brow{
  display:grid;grid-template-columns:auto 1fr;gap:.75rem 1.5rem;
  padding-block:clamp(1.4rem,3vw,2rem);
  border-top:1px solid var(--cream-line);
}
.brow:last-child{border-bottom:1px solid var(--cream-line)}
.brow__num{
  font-family:var(--font-display);font-size:clamp(1.5rem,2.5vw,2rem);
  color:var(--copper);line-height:1;min-width:2.5rem;
}
.brow__title{
  font-family:var(--font-display);font-size:clamp(1.45rem,2.4vw,1.9rem);
  font-weight:500;color:var(--cream-ink);line-height:1.1;
}
.brow__body{
  grid-column:2;color:var(--cream-muted);max-width:42ch;font-size:1.02rem;
}
@media(max-width:560px){
  .brow{grid-template-columns:1fr}
  .brow__body{grid-column:1}
}

/* Personaliza — video-first cinema */
.tabs{
  display:flex;gap:.4rem;overflow-x:auto;scrollbar-width:none;
  margin-bottom:clamp(1.5rem,3vw,2.25rem);padding-bottom:.15rem;
  border-bottom:1px solid var(--line);
}
.tabs::-webkit-scrollbar{display:none}
.tabs button{
  flex:none;border:0;background:transparent;color:var(--muted);
  font-weight:600;font-size:.88rem;letter-spacing:.08em;
  padding:.85rem 1rem;cursor:pointer;position:relative;
  font-family:var(--font-body);transition:color .25s var(--ease);
}
.tabs button[aria-selected="true"]{color:var(--ink)}
.tabs button[aria-selected="true"]::after{
  content:"";position:absolute;left:1rem;right:1rem;bottom:-1px;height:1px;background:var(--gold);
}
.pers__panel{display:none}
.pers__panel.active{
  display:grid;gap:clamp(1.5rem,4vw,2.75rem);
}
@media(min-width:900px){
  .pers__panel.active{grid-template-columns:1.05fr .95fr;align-items:start}
}
.pers__visual{display:flex;flex-direction:column;gap:1rem;min-width:0}
/* Hero cinema stage — protagonismo del intro */
.pers__cinema{
  position:relative;width:100%;max-width:560px;
  aspect-ratio:4/5;
  border:1px solid var(--line);
  background:#050506;
  overflow:hidden;
}
.pers__reel,.pers__still{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center top;
}
.pers__still{z-index:2;transition:opacity .35s var(--ease)}
.pers__reel{z-index:1}
.pers__cinema[data-mode="still"] .pers__still{display:block}
.pers__cinema[data-mode="still"] .pers__reel{opacity:.15}
.pers__cinema[data-mode="video"] .pers__still[hidden]{display:none!important}
.pers__play{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  z-index:4;display:inline-flex;align-items:center;gap:.65rem;
  border:1px solid rgba(201,162,39,.55);background:rgba(8,8,10,.72);
  color:var(--ink);backdrop-filter:blur(10px);
  padding:.85rem 1.25rem;border-radius:999px;cursor:pointer;
  font-family:var(--font-body);font-weight:600;font-size:.88rem;
  transition:background .25s var(--ease),border-color .25s var(--ease),opacity .25s var(--ease),transform .25s var(--ease);
}
.pers__play:hover{border-color:var(--gold);background:rgba(8,8,10,.88)}
.pers__play-icon{width:18px;height:18px;display:grid;place-items:center}
.pers__play-icon svg{width:16px;height:16px}
.pers__cinema.is-playing .pers__play{opacity:0;pointer-events:none}
.pers__cinema.is-playing:hover .pers__play,
.pers__cinema.is-playing:focus-within .pers__play{opacity:1;pointer-events:auto}
.pers__cinema.is-playing .ico-play{display:none}
.pers__cinema.is-playing .ico-pause{display:block!important}
.pers__cinema:not(.is-playing) .ico-pause{display:none!important}
.pers__cinema:not(.is-playing) .ico-play{display:block}
.pers__cinema-meta{
  position:absolute;left:0;right:0;bottom:0;z-index:3;
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.5rem;
  padding:.85rem 1rem;
  background:linear-gradient(180deg,transparent,rgba(5,5,6,.85));
}
.pers__reel-label{
  font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;
  color:var(--bronze);
}
.pers__to-intro{
  border:1px solid var(--line-2);background:rgba(8,8,10,.55);color:var(--ink);
  border-radius:999px;padding:.4rem .8rem;font-size:.75rem;font-weight:600;
  cursor:pointer;font-family:var(--font-body);
}
.pers__to-intro:hover{border-color:var(--gold);color:var(--bronze)}
.pers__facet-hint{
  font-size:.78rem;color:var(--muted-2);max-width:42ch;line-height:1.45;
}
.pers__moods{max-width:560px}
.pers__thumbs{display:flex;gap:.4rem;list-style:none;overflow-x:auto;scrollbar-width:none}
.pers__thumbs::-webkit-scrollbar{display:none}
.pers__thumbs button{
  flex:none;width:64px;height:80px;padding:0;border:1px solid var(--line);
  background:var(--paper-2);cursor:pointer;overflow:hidden;opacity:.55;
  transition:opacity .25s var(--ease),border-color .25s var(--ease);
}
.pers__thumbs button img{width:100%;height:100%;object-fit:cover}
.pers__thumbs button[aria-pressed="true"]{opacity:1;border-color:var(--gold)}
.pers__thumbs button:hover{opacity:.9}
.pers__thumbs.is-single{justify-content:flex-start}
.pers__mood-kicker{
  display:block;font-size:.65rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--gold);font-weight:700;margin-bottom:.2rem;margin-top:.75rem;
}
.pers__mood-copy strong{
  font-family:var(--font-display);font-size:1.2rem;font-weight:500;color:var(--ink);
}
.pers__mood-copy p{color:var(--muted);font-size:.9rem;margin-top:.2rem;max-width:36ch}
.pers__tag{
  font-family:var(--font-display);font-style:italic;font-size:clamp(1.35rem,2.2vw,1.75rem);
  color:var(--bronze);font-weight:500;
}
.pers__traits{display:flex;flex-wrap:wrap;gap:.4rem;list-style:none;margin:.9rem 0 1.1rem}
.pers__traits li{
  font-size:.72rem;font-weight:600;letter-spacing:.03em;color:var(--muted);
  border:1px solid var(--line);padding:.32rem .7rem;
}
.pers__voice{
  font-family:var(--font-display);font-size:clamp(1.3rem,2.2vw,1.65rem);
  line-height:1.28;font-weight:500;color:var(--ink);max-width:28ch;
}
.pers__bg{color:var(--muted);margin-top:1rem;max-width:44ch;line-height:1.6;font-size:.98rem}
.disclaimer{
  margin-top:2.5rem;padding-top:1.25rem;border-top:1px solid var(--line);
  font-size:.75rem;letter-spacing:.04em;color:var(--muted-2);
}
@media(prefers-reduced-motion:reduce){
  .pers__cinema.is-playing .pers__play{opacity:1;pointer-events:auto}
}

/* Parallel — dual channel diagram (no gimmick canvas) */
.parallel .lead{margin-top:.9rem}
.flow{
  border:1px solid var(--line);background:var(--paper-2);
  padding:clamp(1.25rem,3vw,2rem);
  display:grid;gap:1rem;
}
.flow__row{
  display:grid;grid-template-columns:1fr auto 1fr;gap:.75rem;align-items:center;
}
.flow__node{
  border:1px solid var(--line-2);padding:1rem 1.1rem;
  background:rgba(255,255,255,.02);
}
.flow__node strong{
  display:block;font-family:var(--font-display);font-size:1.2rem;font-weight:500;margin-bottom:.25rem;
}
.flow__node span{color:var(--muted);font-size:.88rem}
.flow__hub{
  width:44px;height:44px;border-radius:50%;border:1px solid var(--gold);
  display:grid;place-items:center;color:var(--gold);
}
.flow__hub svg{width:22px;height:22px}
.flow__meta{
  display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.25rem;
}
.flow__meta span{
  font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;font-weight:600;
  color:var(--bronze);border:1px solid var(--line);padding:.35rem .65rem;
}
@media(max-width:640px){
  .flow__row{grid-template-columns:1fr;justify-items:center}
  .flow__hub{transform:rotate(90deg)}
}

/* Steps */
.steps{display:grid;gap:0;margin-top:clamp(1.5rem,4vw,2.5rem)}
@media(min-width:800px){.steps{grid-template-columns:repeat(3,1fr);gap:0}}
.step{
  padding:clamp(1.25rem,3vw,1.75rem) 0;
  border-top:1px solid var(--cream-line);
}
@media(min-width:800px){
  .step{padding:1.5rem 1.4rem 1.5rem 0;border-top:0;border-right:1px solid var(--cream-line)}
  .step:last-child{border-right:0;padding-right:0}
  .step:first-child{padding-left:0}
}
.step__num{
  font-family:var(--font-display);font-size:clamp(2.2rem,4vw,3rem);
  color:var(--copper);line-height:1;margin-bottom:.5rem;
}
.step__title{
  font-family:var(--font-display);font-size:clamp(1.25rem,2vw,1.55rem);
  font-weight:500;color:var(--cream-ink);
}
.step__body{color:var(--cream-muted);margin-top:.35rem;max-width:28ch}

/* Trust rows */
.crow{
  display:grid;gap:.4rem 2rem;padding-block:1.35rem;
  border-top:1px solid var(--cream-line);
}
@media(min-width:720px){.crow{grid-template-columns:14rem 1fr;align-items:baseline}}
.crow__label{font-weight:600;color:var(--cream-ink);font-size:1.05rem}
.crow__text{color:var(--cream-muted);max-width:48ch}

/* Blueprint teaser */
.blueprint{background:var(--paper)}
.blueprint__mock{
  border:1px solid var(--line);background:var(--paper-2);
  padding:clamp(1rem,3vw,1.5rem);
}
.blueprint__mock svg{width:100%;height:auto}
.blueprint .lead{margin-top:.9rem}
.blueprint .btn{margin-top:1.5rem}

/* FAQ */
.acc{display:grid;gap:.55rem}
.acc details{
  border-top:1px solid var(--cream-line);
  border-bottom:1px solid transparent;
}
.acc details[open]{border-bottom-color:var(--cream-line)}
.acc summary{
  list-style:none;cursor:pointer;padding:1.15rem 0;
  font-weight:600;color:var(--cream-ink);display:flex;justify-content:space-between;gap:1rem;
  font-size:clamp(1rem,1.3vw,1.1rem);
}
.acc summary::-webkit-details-marker{display:none}
.acc .pm{
  width:18px;height:18px;position:relative;flex:none;margin-top:.15rem;
}
.acc .pm::before,.acc .pm::after{
  content:"";position:absolute;background:var(--copper);top:50%;left:50%;
  transform:translate(-50%,-50%);
}
.acc .pm::before{width:12px;height:1.5px}
.acc .pm::after{width:1.5px;height:12px;transition:opacity .25s}
.acc details[open] .pm::after{opacity:0}
.acc .ans{padding:0 0 1.2rem;color:var(--cream-muted);max-width:56ch;line-height:1.6}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding-block:clamp(4rem,10vw,7rem) clamp(2rem,5vw,3rem);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%,rgba(201,162,39,.08),transparent 60%),
    var(--paper);
}
.footer__cta{max-width:28rem}
.footer__cta .lead{margin-top:1rem}
.footer__cta .btn{margin-top:1.5rem}
.footer__meta{
  margin-top:clamp(2.5rem,6vw,4rem);
  padding-top:1.5rem;border-top:1px solid var(--line);
  display:flex;flex-wrap:wrap;gap:1rem 1.75rem;justify-content:space-between;align-items:center;
  color:var(--muted-2);font-size:.82rem;
}
.footer__meta a{color:var(--muted);text-decoration:none}
.footer__meta a:hover{color:var(--ink)}
.footer__meta .mark{width:36px;height:36px;color:var(--gold);opacity:.85}

/* Social — quiet luxury, text not icons */
.social{
  display:flex;flex-wrap:wrap;align-items:center;gap:.55rem 1.1rem;
}
.social__link{
  display:inline-flex;align-items:baseline;gap:.35rem;
  text-decoration:none;color:var(--muted);
  font-size:.78rem;letter-spacing:.02em;
  border-bottom:1px solid transparent;
  transition:color .25s ease,border-color .25s ease;
}
.social__link:hover{color:var(--ink);border-bottom-color:var(--line2, rgba(103,66,35,.34))}
.social__label{
  font-family:var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size:.68rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:var(--muted-2, var(--muted));
}
.social__handle{font-weight:500;color:inherit;opacity:.92}
.footer__brand{display:grid;gap:.35rem}
.footer__mail{color:var(--muted);text-decoration:none}
.footer__mail:hover{color:var(--ink)}
.cierre__meta.footer__meta{
  width:100%;
  grid-column:1/-1;
  align-items:center;
  gap:1.25rem 1.75rem;
}
@media (min-width:720px){
  .cierre__meta.footer__meta{display:grid;grid-template-columns:1fr auto auto;align-items:center}
}
body.subpage .social__link:hover{color:var(--cream-ink, var(--ink))}
body.subpage .social__label{color:var(--copper, var(--muted))}
.repo-note a{color:var(--copper, inherit);text-underline-offset:3px}


/* Grain — soft only */
.grain{
  position:fixed;inset:0;z-index:9998;pointer-events:none;opacity:.03;
  mix-blend-mode:soft-light;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Kill junior custom cursor */
.cursor-dot,.cursor-ring{display:none!important}

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

/* Split words (subtle) */
[data-split] .word{display:inline-block;margin-right:.2em}
[data-split] .word > span{
  display:inline-block;transform:translateY(.35em);opacity:0;
  transition:transform .8s var(--ease),opacity .8s var(--ease);
}
[data-split].in .word > span{transform:none;opacity:1}
[data-split].in .word:nth-child(1) > span{transition-delay:40ms}
[data-split].in .word:nth-child(2) > span{transition-delay:90ms}
[data-split].in .word:nth-child(3) > span{transition-delay:140ms}
[data-split].in .word:nth-child(4) > span{transition-delay:190ms}
[data-split].in .word:nth-child(5) > span{transition-delay:240ms}

/* ========== SUBPAGES ========== */
body.subpage{background:var(--cream);color:var(--cream-ink)}
body.subpage .nav{
  background:linear-gradient(180deg,rgba(8,8,10,.94),rgba(8,8,10,.7) 75%,transparent);
}
body.subpage main{padding-top:var(--nav-h)}
body.subpage .footer{background:var(--paper);color:var(--ink)}
body.subpage .footer .h2{color:var(--ink)}
body.subpage .footer .lead{color:var(--muted)}
body.subpage .section{padding-block:clamp(3rem,7vw,5rem)}
body.subpage .page-hero{padding-top:clamp(1.5rem,4vw,2.5rem)}
body.subpage .page-hero-grid{
  display:grid;gap:clamp(1.75rem,4vw,3rem);
}
@media(min-width:900px){body.subpage .page-hero-grid{grid-template-columns:1.15fr .85fr;align-items:center}}
body.subpage .display{font-size:clamp(2.2rem,5vw,3.5rem);color:var(--cream-ink)}
body.subpage .h2{color:var(--cream-ink)}
body.subpage .lead{color:var(--cream-muted)}
body.subpage .kicker{color:var(--copper)}
body.subpage .kicker::before{background:var(--copper)}
body.subpage .commit-grid,body.subpage .pill-row{display:flex;flex-wrap:wrap;gap:.45rem;margin-top:1.25rem}
body.subpage .commit-grid > span,body.subpage .pill-row > span{
  font-size:.72rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;
  border:1px solid var(--cream-line);color:var(--cream-muted);padding:.4rem .75rem;
}
body.subpage .page-robot{position:relative;max-width:380px;margin-inline:auto}
body.subpage .page-robot img{width:100%;border:1px solid var(--cream-line)}
body.subpage .product-badge{
  position:absolute;left:1rem;bottom:1rem;
  font-family:var(--font-mono);font-size:.65rem;letter-spacing:.1em;
  background:rgba(247,239,227,.9);border:1px solid var(--cream-line);
  padding:.5rem .7rem;display:grid;gap:.1rem;color:var(--copper);
}
body.subpage .product-badge strong{color:var(--cream-ink);font-size:.9rem;letter-spacing:0;font-family:var(--font-body)}
body.subpage .product-badge em,body.subpage .product-badge small{font-style:normal;color:var(--cream-muted);font-size:.65rem}

body.subpage .safety-two,body.subpage .validation-layout,body.subpage .governance-layout,body.subpage .source-layout{
  display:grid;gap:clamp(1.4rem,3vw,2.2rem);
}
@media(min-width:900px){
  body.subpage .safety-two,body.subpage .validation-layout,body.subpage .governance-layout,body.subpage .source-layout{grid-template-columns:1.15fr .85fr}
}
body.subpage .section-head{margin-bottom:1.25rem;max-width:36ch}
body.subpage .trust-grid{display:grid;gap:.65rem}
@media(min-width:620px){body.subpage .trust-grid{grid-template-columns:1fr 1fr}}
body.subpage .trust-grid article{
  border:1px solid var(--cream-line);padding:1rem 1.1rem;display:grid;gap:.3rem;
  background:rgba(255,255,255,.35);
}
body.subpage .trust-grid b{color:var(--cream-ink)}
body.subpage .trust-grid p{color:var(--cream-muted);font-size:.92rem;margin:0}
body.subpage .trust-mark,body.subpage .trust-icon{
  font-family:var(--font-mono);font-size:.68rem;color:var(--copper);font-weight:700;
}
body.subpage .trust-icon{width:28px;height:28px;display:grid;place-items:center;border:1px solid var(--cream-line)}
body.subpage .trust-icon svg{width:14px;height:14px}
body.subpage .privacy-card,body.subpage .repo-card,body.subpage .spec-card{
  border:1px solid var(--cream-line);padding:1.35rem;background:rgba(255,255,255,.4);
}
body.subpage .privacy-card ul,body.subpage .spec-card ul{list-style:none;display:grid;gap:.85rem;margin-top:.9rem}
body.subpage .privacy-card li{display:grid;gap:.15rem}
body.subpage .privacy-card b{color:var(--cream-ink)}
body.subpage .privacy-card span{color:var(--cream-muted);font-size:.92rem}
body.subpage .spec-card li{display:flex;justify-content:space-between;padding:.5rem 0;border-bottom:1px solid var(--cream-line);color:var(--cream-muted)}
body.subpage .spec-card strong{color:var(--cream-ink)}
body.subpage .repo-head{display:flex;gap:.7rem;align-items:center;margin-bottom:1rem}
body.subpage .github-dot{color:#2da44e}
body.subpage .repo-stats{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1rem}
body.subpage .repo-stats > span{
  border:1px solid var(--cream-line);padding:.4rem .6rem;font-size:.75rem;color:var(--cream-muted);
  display:inline-flex;flex-direction:column;
}
body.subpage .repo-stats b{color:var(--cream-ink)}
body.subpage .repo-note{color:var(--cream-muted);margin:.5rem 0 1rem;font-size:.92rem}
body.subpage .btn.wide{width:100%;justify-content:center}
body.subpage .docs-grid{display:grid;grid-template-columns:1fr 1fr;gap:.55rem}
body.subpage .docs-grid article{border:1px solid var(--cream-line);padding:.85rem;display:grid;gap:.2rem;background:rgba(255,255,255,.3)}
body.subpage .docs-grid b{color:var(--cream-ink)}
body.subpage .docs-grid span{color:var(--cream-muted);font-size:.85rem}
body.subpage .timeline{display:grid;gap:0;margin-top:1rem}
body.subpage .timeline article{
  display:grid;grid-template-columns:auto 1fr;gap:.25rem 1rem;
  padding:1.1rem 0;border-top:1px solid var(--cream-line);
}
body.subpage .timeline b{font-family:var(--font-display);font-size:1.35rem;color:var(--copper);grid-row:span 2}
body.subpage .timeline strong{color:var(--cream-ink)}
body.subpage .timeline p{color:var(--cream-muted);margin:0;font-size:.95rem}
body.subpage .sub-faq,body.subpage .faq,body.subpage .acc{display:grid}
body.subpage .sub-faq details,body.subpage .faq details{
  border-top:1px solid var(--cream-line);
}
body.subpage .sub-faq summary,body.subpage .faq summary{
  list-style:none;cursor:pointer;padding:1.05rem 0;font-weight:600;color:var(--cream-ink);
}
body.subpage .sub-faq summary::-webkit-details-marker,body.subpage .faq summary::-webkit-details-marker{display:none}
body.subpage .sub-faq details p,body.subpage .faq details p{color:var(--cream-muted);padding:0 0 1rem;max-width:56ch}
body.subpage .tech-grid{display:grid;gap:.6rem;margin-top:1.2rem}
@media(min-width:640px){body.subpage .tech-grid{grid-template-columns:1fr 1fr}}
@media(min-width:980px){body.subpage .tech-grid{grid-template-columns:1fr 1fr 1fr}}
body.subpage .tech-card{
  text-decoration:none;border:1px solid var(--cream-line);padding:1rem 1.1rem;
  display:grid;gap:.2rem;background:rgba(255,255,255,.35);
  transition:border-color .25s var(--ease);
}
body.subpage .tech-card:hover{border-color:var(--copper)}
body.subpage .tech-card strong{color:var(--cream-ink)}
body.subpage .tech-card small{color:var(--copper);font-size:.72rem;font-weight:600;letter-spacing:.04em}
body.subpage .tech-card p{color:var(--cream-muted);font-size:.88rem;margin:0}
body.subpage .mini-icon{
  width:30px;height:30px;display:grid;place-items:center;
  border:1px solid var(--cream-line);font-family:var(--font-mono);font-size:.65rem;
  color:var(--copper);font-weight:700;margin-bottom:.3rem;
}
body.subpage .pipeline{display:grid;gap:.5rem}
@media(min-width:760px){body.subpage .pipeline{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1100px){body.subpage .pipeline{grid-template-columns:repeat(6,1fr)}}
body.subpage .lane{border:1px solid var(--cream-line);padding:.85rem;background:rgba(255,255,255,.3)}
body.subpage .lane h3,body.subpage .lane .subh{font-size:.95rem;color:var(--cream-ink);margin-bottom:.25rem;font-family:var(--font-display);font-weight:500}
body.subpage .lane p{margin:0;color:var(--cream-muted);font-size:.82rem}
body.subpage .blueprint-board{display:grid;gap:1rem}
@media(min-width:900px){body.subpage .blueprint-board{grid-template-columns:1fr auto 1fr;align-items:center}}
body.subpage .module-stack{display:grid;gap:.55rem}
body.subpage .module-stack article{border:1px solid var(--cream-line);padding:.85rem;background:rgba(255,255,255,.35);display:grid;gap:.15rem}
body.subpage .module-stack strong{color:var(--cream-ink)}
body.subpage .module-stack span{color:var(--cream-muted);font-size:.85rem}
body.subpage .robot-plinth{max-width:260px;margin-inline:auto;position:relative}
body.subpage .robot-plinth img{width:100%;border:1px solid var(--cream-line)}
body.subpage .plinth-ring{display:none}
body.subpage .bronze-band{background:color-mix(in oklab,var(--copper) 8%,var(--cream))!important}
body.subpage .gap-grid{display:grid;grid-template-columns:1fr 1fr;gap:.55rem;margin-top:1rem}
@media(min-width:800px){body.subpage .gap-grid{grid-template-columns:repeat(3,1fr)}}
body.subpage .gap-grid article{border:1px solid var(--cream-line);padding:.9rem;background:rgba(255,255,255,.35);display:grid;gap:.2rem}
body.subpage .gap-grid b{color:var(--cream-ink)}
body.subpage .gap-grid span{color:var(--cream-muted);font-size:.85rem}
body.subpage .subh{font-family:var(--font-display);font-weight:500;color:var(--cream-ink)}
body.subpage .btn--primary{background:var(--copper);color:var(--cream)}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important}
  [data-reveal]{opacity:1!important;transform:none!important}
  [data-split] .word > span{opacity:1!important;transform:none!important}
  html{scroll-behavior:auto}
}

/* ========== v7 — 3-stack + audio + cierre + MUSE morph ========== */
html{scroll-padding-top:var(--nav-h)}
.stack-root{/* reserved */}

.stack-section{
  min-height:100svh;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  transition:opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
}
.stack-section.is-wait{opacity:.35;transform:translateY(28px);filter:blur(0)}
.stack-section.is-exit{opacity:.2;transform:translateY(-24px) scale(.985)}
.stack-section.is-active{opacity:1;transform:none;filter:none;z-index:2}
.stack-hint{
  position:absolute;bottom:1.25rem;left:50%;transform:translateX(-50%);
  font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:var(--muted-2);
  opacity:0;transition:opacity .4s var(--ease);
}
.stack-section.is-active .stack-hint{opacity:.7}
@media(max-width:899px){
  .stack-section{min-height:auto;padding-block:clamp(4rem,12vw,6rem)}
  .stack-section.is-wait,.stack-section.is-exit{opacity:1;transform:none}
  .stack-hint{display:none}
}
@media(prefers-reduced-motion:reduce){
  .stack-section,.stack-section.is-wait,.stack-section.is-exit,.stack-section.is-active{
    opacity:1!important;transform:none!important;filter:none!important;transition:none!important;
  }
}

/* Personaliza denser layout */
.personaliza__inner{width:100%;padding-block:clamp(1rem,3vw,2rem)}
.sec-head--tight{margin-bottom:1rem;max-width:28rem}
.pers__panel.active{
  display:grid;gap:clamp(1.25rem,3vw,2rem);
}
@media(min-width:900px){
  .pers__panel.active{grid-template-columns:1.1fr .9fr;align-items:center}
}
.pers__cinema{
  max-width:min(100%,520px);
  aspect-ratio:4/5;
  border:1px solid var(--line);
  background:#050506;
  position:relative;overflow:hidden;
}
.pers__reel,.pers__still,.pers__morph{position:absolute;inset:0;width:100%;height:100%}
.pers__reel,.pers__still{object-fit:cover;object-position:center top}
.pers__morph img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top;
  opacity:0;transition:opacity 1.1s var(--ease);
}
.pers__morph img.is-on{opacity:.55}
.pers__cinema--muse .pers__reel{z-index:2}
.pers__cinema--muse .pers__morph{z-index:1}
.pers__cinema[data-mode="still"] .pers__still{display:block;z-index:3}
.pers__cinema[data-mode="still"] .pers__reel{opacity:.12}
.pers__controls{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);z-index:5;
  display:flex;gap:.5rem;flex-wrap:wrap;justify-content:center;
  transition:opacity .3s var(--ease);
}
.pers__cinema.is-playing .pers__controls{opacity:0;pointer-events:none}
.pers__cinema.is-playing:hover .pers__controls,
.pers__cinema.is-playing:focus-within .pers__controls{opacity:1;pointer-events:auto}
.pers__play,.pers__sound{
  border:1px solid rgba(201,162,39,.5);background:rgba(8,8,10,.78);
  color:var(--ink);backdrop-filter:blur(10px);
  padding:.75rem 1.1rem;border-radius:999px;cursor:pointer;
  font-family:var(--font-body);font-weight:600;font-size:.82rem;
}
.pers__sound[aria-pressed="true"]{
  border-color:var(--gold);background:color-mix(in oklab,var(--gold) 22%,rgba(8,8,10,.85));
  color:var(--bronze);
}
.pers__play:hover,.pers__sound:hover{border-color:var(--gold)}
.pers__cinema-meta{
  position:absolute;left:0;right:0;bottom:0;z-index:4;
  display:flex;flex-direction:column;gap:.55rem;
  padding:.75rem .9rem 1rem;
  background:linear-gradient(180deg,transparent,rgba(5,5,6,.9));
}
.pers__reel-label{
  font-size:.65rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;color:var(--bronze);
}
.pers__thumbs{display:flex;gap:.35rem;overflow-x:auto;scrollbar-width:none}
.pers__thumbs::-webkit-scrollbar{display:none}
.pers__thumbs button{
  flex:none;width:48px;height:60px;padding:0;border:1px solid var(--line);
  background:#111;cursor:pointer;overflow:hidden;opacity:.5;
}
.pers__thumbs button img{width:100%;height:100%;object-fit:cover}
.pers__thumbs button[aria-pressed="true"]{opacity:1;border-color:var(--gold)}
.pers__info{padding-top:.25rem}
.pers__tag{
  font-family:var(--font-display);font-style:italic;font-size:clamp(1.4rem,2.4vw,1.85rem);
  color:var(--bronze);font-weight:500;
}
.pers__voice-line{
  font-family:var(--font-display);font-size:clamp(1.35rem,2.4vw,1.75rem);
  line-height:1.25;margin-top:.55rem;color:var(--ink);max-width:18ch;
}
.pers__mood-line{color:var(--muted);margin-top:.75rem;font-size:.92rem}
.disclaimer{
  margin-top:1.5rem;font-size:.72rem;letter-spacing:.04em;color:var(--muted-2);
}

/* Cierre */
.cierre{background:var(--cream);color:var(--cream-ink)}
.cierre .kicker{color:var(--copper)}
.cierre .kicker::before{background:var(--copper)}
.cierre .h2{color:var(--cream-ink)}
.cierre__inner{width:100%;max-width:40rem}
.cierre__claims{list-style:none;margin:clamp(1.5rem,4vw,2.5rem) 0;display:grid;gap:1.15rem}
.cierre__claims li{display:grid;gap:.25rem;padding-top:1rem;border-top:1px solid var(--cream-line)}
.cierre__claims strong{font-size:1.05rem;color:var(--cream-ink)}
.cierre__claims span{color:var(--cream-muted);line-height:1.5;font-size:.98rem}
.cierre__cta{display:flex;flex-wrap:wrap;gap:.65rem;margin-top:.5rem}
.cierre .btn--primary{background:var(--copper);color:var(--cream)}
.cierre .btn--ghost{color:var(--cream-ink);border-color:var(--cream-line)}
.cierre .btn--ghost:hover{border-color:var(--copper)}
.cierre__meta{
  margin-top:clamp(2.5rem,6vw,3.5rem);padding-top:1.25rem;
  border-top:1px solid var(--cream-line);
  display:flex;flex-wrap:wrap;gap:1rem 1.5rem;justify-content:space-between;align-items:center;
  color:var(--cream-muted);font-size:.82rem;
}
.cierre__meta .mark{width:32px;height:32px;color:var(--copper)}

/* Hero tweaks for stack */
.hero{padding-top:calc(var(--nav-h) + .5rem)}
.hero .lead{max-width:34ch}

/* ========== Parallel capitalisation in #cierre ========== */
.cierre__grid{
  width:100%;
  display:grid;
  gap:clamp(1.75rem,4vw,2.75rem);
}
@media(min-width:900px){
  .cierre__grid{
    grid-template-columns:1.15fr .85fr;
    align-items:start;
  }
  .cierre__meta{grid-column:1 / -1}
}
.cierre__main{max-width:38rem}
.cierre__lead{
  margin-top:1rem;
  color:var(--cream-muted);
  font-size:clamp(1.05rem,1rem + .35vw,1.2rem);
  line-height:1.55;
  max-width:40ch;
}
.cierre__wink{
  margin-top:1.25rem;
  font-family:var(--font-display);
  font-style:italic;
  font-size:clamp(1.15rem,2vw,1.4rem);
  line-height:1.35;
  color:var(--cream-ink);
  max-width:34ch;
}
.parallel-board{
  margin-top:1.6rem;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:.65rem;
  align-items:stretch;
  border:1px solid var(--cream-line);
  background:rgba(255,255,255,.4);
  padding:clamp(.9rem,2vw,1.2rem);
}
@media(max-width:640px){
  .parallel-board{grid-template-columns:1fr;justify-items:center}
  .parallel-board__hub{transform:rotate(90deg);margin:.25rem 0}
}
.parallel-board__lane{
  border:1px solid var(--cream-line);
  padding:.9rem 1rem;
  background:rgba(255,255,255,.55);
  display:grid;gap:.2rem;
  min-width:0;
}
.parallel-board__lane--legal{
  border-color:color-mix(in oklab,var(--copper) 45%,var(--cream-line));
  background:color-mix(in oklab,var(--copper) 8%,#fff);
}
.parallel-board__k{
  font-size:.65rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--copper);
}
.parallel-board__lane strong{
  font-family:var(--font-display);font-weight:500;font-size:1.2rem;color:var(--cream-ink);
}
.parallel-board__lane em{
  font-style:normal;font-size:.82rem;color:var(--cream-muted);
}
.parallel-board__hub{
  width:56px;height:56px;border-radius:50%;
  border:1px solid var(--copper);
  display:grid;place-items:center;align-content:center;gap:0;
  color:var(--copper);align-self:center;
}
.parallel-board__hub .mark{width:26px;height:26px}
.parallel-board__hub span{
  font-size:.55rem;font-weight:700;letter-spacing:.08em;margin-top:-2px;
}
.cierre__side .cierre__claims{margin-top:0}
.cierre__side .cierre__cta{margin-top:1.4rem}

/* Hero micro-specs */
.hero__specs{
  list-style:none;display:flex;flex-wrap:wrap;gap:.35rem .15rem;
  margin-top:1.5rem;padding:0;max-width:36rem;
}
.hero__specs li{
  font-size:.68rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:var(--bronze);padding:.35rem .7rem;
  border:1px solid var(--line);
}
.hero__specs li + li{margin-left:.15rem}

/* Champagne ritual */
.ritual{
  margin-top:clamp(2rem,5vw,2.75rem);
  padding-top:clamp(1.4rem,3vw,1.8rem);
  border-top:1px solid var(--cream-line);
}
.ritual__title{
  font-family:var(--font-display);font-weight:500;
  font-size:clamp(1.55rem,3vw,2.1rem);line-height:1.1;
  color:var(--cream-ink);margin-top:.35rem;max-width:18ch;
}
.ritual__lead{
  margin-top:.75rem;color:var(--cream-muted);max-width:40ch;line-height:1.5;
  font-size:1.02rem;
}
.ritual__steps{
  list-style:none;margin:1.35rem 0 0;padding:0;
  display:grid;gap:.75rem;
}
@media(min-width:700px){
  .ritual__steps{grid-template-columns:repeat(3,1fr);gap:.65rem}
}
.ritual__steps li{
  border:1px solid var(--cream-line);
  background:rgba(255,255,255,.45);
  padding:.9rem .95rem;
  display:grid;gap:.25rem;
}
.ritual__n{
  font-family:var(--font-display);font-size:1.35rem;color:var(--copper);line-height:1;
}
.ritual__steps strong{
  font-family:var(--font-display);font-weight:500;font-size:1.15rem;color:var(--cream-ink);
  letter-spacing:.02em;
}
.ritual__steps span{color:var(--cream-muted);font-size:.9rem;line-height:1.4}
.ritual__wink{margin-top:1.15rem}

/* Corner audio FAB — top-left elegant waveform */
.pers__controls{display:none!important} /* kill center CTA chrome */
.audio-fab{
  position:absolute;top:.85rem;left:.85rem;z-index:6;
  width:48px;height:48px;padding:0;border:0;border-radius:50%;
  background:rgba(8,8,10,.55);color:var(--bronze);
  backdrop-filter:blur(12px) saturate(1.2);
  -webkit-backdrop-filter:blur(12px) saturate(1.2);
  box-shadow:0 0 0 1px rgba(201,162,39,.28), 0 10px 28px -12px rgba(0,0,0,.65);
  cursor:pointer;
  display:grid;place-items:center;
  transition:color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.audio-fab:hover{
  color:var(--gold-2);
  box-shadow:0 0 0 1px rgba(224,188,74,.55), 0 12px 32px -10px rgba(201,162,39,.35);
  transform:scale(1.04);
}
.audio-fab__svg{width:28px;height:28px;display:block}
.audio-fab__ring{opacity:.55}
.audio-fab__wave{opacity:.75;transition:opacity .25s var(--ease)}
.audio-fab[aria-pressed="true"]{
  color:var(--gold-2);
  background:color-mix(in oklab,var(--gold) 18%,rgba(8,8,10,.72));
  box-shadow:0 0 0 1px rgba(224,188,74,.65), 0 0 24px -4px rgba(201,162,39,.45);
}
.audio-fab[aria-pressed="true"] .audio-fab__wave--1{animation:wave 1s ease-in-out infinite}
.audio-fab[aria-pressed="true"] .audio-fab__wave--2{animation:wave 1s ease-in-out .08s infinite}
.audio-fab[aria-pressed="true"] .audio-fab__wave--3{animation:wave 1s ease-in-out .16s infinite}
.audio-fab[aria-pressed="true"] .audio-fab__wave--4{animation:wave 1s ease-in-out .24s infinite}
.audio-fab[aria-pressed="true"] .audio-fab__wave--5{animation:wave 1s ease-in-out .32s infinite}
@keyframes wave{
  0%,100%{transform:scaleY(.55);opacity:.55}
  50%{transform:scaleY(1);opacity:1}
}
.audio-fab__svg{transform-origin:center}
.audio-fab__wave{transform-box:fill-box;transform-origin:center}
@media(prefers-reduced-motion:reduce){
  .audio-fab[aria-pressed="true"] .audio-fab__wave{animation:none!important}
}

/* ---- Parallel counsel vignette + domestic ---- */
.vignette{margin-top:clamp(2rem,5vw,3rem);max-width:40rem}
.vignette__stage{
  position:relative;margin-top:1.1rem;border:1px solid var(--cream-line,rgba(26,21,16,.12));
  background:#0c0c0f;overflow:hidden;aspect-ratio:16/9;
}
.vignette__video,.vignette__still{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;
}
.vignette__stage.is-live .vignette__still{opacity:0;pointer-events:none}
.vignette__stage.is-live .vignette__video{opacity:1}
.vignette__video{opacity:0}
.vignette__controls{
  position:absolute;left:0;right:0;bottom:0;z-index:2;
  display:flex;flex-wrap:wrap;gap:.65rem;align-items:center;justify-content:space-between;
  padding:.85rem 1rem;
  background:linear-gradient(transparent,rgba(8,8,10,.82));
}
.vignette__lang{display:inline-flex;border:1px solid rgba(243,238,230,.25);border-radius:2px;overflow:hidden}
.vignette__lang button{
  appearance:none;border:0;background:transparent;color:rgba(243,238,230,.75);
  font:inherit;font-size:.72rem;font-weight:600;letter-spacing:.08em;padding:.45rem .7rem;cursor:pointer;
}
.vignette__lang button[aria-pressed="true"]{background:rgba(201,162,39,.35);color:#fff}
.vignette__disclaimer{
  margin:.75rem 0 0;font-size:.72rem;line-height:1.45;color:var(--cream-muted,#6B6258);max-width:52ch;
}
.domestic{margin-top:clamp(2.25rem,5vw,3.25rem)}
.domestic__grid{
  display:grid;gap:1rem;margin-top:1.25rem;
}
@media(min-width:720px){.domestic__grid{grid-template-columns:1fr 1fr;gap:1.15rem}}
.domestic__card{
  border:1px solid var(--cream-line,rgba(26,21,16,.12));background:rgba(255,252,246,.55);overflow:hidden;
}
.domestic__card img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover}
.domestic__body{padding:1rem 1.05rem 1.15rem}
.domestic__body strong{display:block;font-size:1.05rem;margin-bottom:.35rem;color:var(--cream-ink,#1A1510)}
.domestic__body p{margin:0;font-size:.9rem;line-height:1.5;color:var(--cream-muted,#6B6258)}
.domestic__tag{
  display:inline-block;margin-top:.65rem;font-family:var(--font-mono,ui-monospace,monospace);
  font-size:.65rem;letter-spacing:.08em;text-transform:uppercase;color:var(--copper,#9B5A2A);
}

/* Face brand mark */
.mark--face{
  width:36px;height:36px;border-radius:50%;object-fit:cover;display:block;
  box-shadow:0 0 0 1px rgba(201,162,39,.45);
}
.nav__brand .mark--face{width:34px;height:34px}
.parallel-board__hub .mark--face{width:40px;height:40px;margin-inline:auto}
.footer__meta .mark--face{width:36px;height:36px;opacity:1}

/* Serious-joke beats */
.joke-beats{display:grid;gap:.85rem;margin:1.15rem 0 1.25rem;max-width:40rem}
.joke-beats__item{
  display:grid;grid-template-columns:auto 1fr;gap:.65rem 0.85rem;align-items:start;
  margin:0;font-size:.95rem;line-height:1.55;color:var(--cream-muted,#6B6258);
}
.joke-beats__item strong{color:var(--cream-ink,#1A1510);font-weight:600}
.joke-beats__n{
  font-family:var(--font-mono,ui-monospace,monospace);font-size:.68rem;letter-spacing:.1em;
  color:var(--copper,#9B5A2A);padding-top:.2rem;
}

.cierre__product-disclaimer{
  grid-column:1/-1;margin:1.5rem 0 0;padding-top:1rem;border-top:1px solid var(--cream-line,rgba(26,21,16,.12));
  font-size:.72rem;line-height:1.5;color:var(--cream-muted,#6B6258);max-width:70ch;
}
