/* =============================================================
   SQREEL — styles.css
   Identidad PROVISIONAL: al recibir el manual de marca, cambiar
   solo los tokens de la sección 1 (colores y tipografías) y el
   símbolo #sq-mark del index.html.
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* SQREEL · paleta del manual (BRAND_RULES §2.1). Cerrada: sin azul, dorado ni fondos oscuros. */
  --ivory: #FFF8F0;  --sand: #E4D7C7;  --stone: #B8B1A7;
  --orange: #E86A33; --olive: #7C8A43; --coral: #C95A45; --charcoal: #232323;

  --bg:   #FFFFFF;               /* v3: página blanca; ivory/sand solo en subsecciones de ritmo */
  --bg-2: var(--ivory);
  --bg-3: #F6EEE4;
  --bg-4: var(--sand);

  /* texto = charcoal y sus mezclas sobre ivory (todas >= 5.6:1 sobre --bg) */
  --ink:   var(--charcoal);
  --ink-2: #4A4640;
  --ink-3: #5C564F;
  --ink-4: #6A635B;

  --line:   rgba(35, 35, 35, .10);
  --line-2: rgba(35, 35, 35, .16);
  --line-3: rgba(35, 35, 35, .28);

  --accent:     var(--orange);   /* rellenos y texto >= 24px bold (3.05:1, AA grande) */
  --accent-2:   #A8481F;         /* naranja del manual oscurecido SOLO para texto pequeño: 5.5:1 sobre ivory */
  --accent-3:   var(--coral);
  --accent-ink: var(--charcoal); /* texto sobre naranja: 4.9:1 */
  --violet:     var(--olive);
  --wa:         #25D366;         /* solo el icono de WhatsApp (marca de tercero) */
  --paper:      var(--ivory);
  --paper-ink:  var(--charcoal);
  --grad: linear-gradient(var(--orange), var(--orange));

  --sans:  "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: var(--sans);
  --mono:  var(--sans);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(64px, 7.5vw, 108px);
  --nav-h: 72px;
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px;

  --ease-out:    cubic-bezier(.16, 1, .3, 1);
  --ease-in:     cubic-bezier(.23, 1, .32, 1);
  --ease-soft:   cubic-bezier(.25, .46, .45, .94);
  --ease-bounce: cubic-bezier(.16, 1, .3, 1);
}
/* Manual: Inter SIN cursivas, nunca. */
em, i, cite, address, .phone-cap, .pdf-cover-info h3 { font-style: normal; }
.h2 em, .hero-title em, .final-title em, .problem-text em, h2 em, h1 em { color: var(--accent); font-weight: 700; background: none; -webkit-text-fill-color: currentColor; }


/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  scrollbar-gutter: stable;
  overflow-x: clip;
  background: var(--bg);
  color-scheme: light;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body::after { /* grano de película */
  content: ""; position: fixed; inset: 0; z-index: 9500; pointer-events: none; opacity: .03;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -.03em; font-weight: 600; }
em { font-style: normal; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 6px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 1000px; }
.mono { font-family: var(--mono); letter-spacing: .02em; }
.ic {
  width: 1em; height: 1em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.logo-mark { width: 28px; height: 28px; flex: none; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 10000;
  padding: .6rem 1rem; background: var(--orange); color: var(--ink); border-radius: 10px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   4. Typography
   ============================================================= */
.kicker {
  display: inline-flex; align-items: center; gap: .7em;
  font-size: 12px; text-transform: uppercase; letter-spacing: .16em; color: var(--accent-2);
}
.kicker::before { content: ""; width: 20px; height: 1px; background: currentColor; opacity: .7; }
.h2 {
  margin-top: 18px;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  font-weight: 600; letter-spacing: -.04em; line-height: 1.02;
}
.h2 em, .hero-title em, .final-title em, .problem-answer em {
  font-family: var(--sans); font-style: normal; font-weight: inherit; letter-spacing: inherit;
}
.h2 em { color: var(--accent); }
.lead { margin-top: 20px; max-width: 56ch; font-size: clamp(1.02rem, 1.3vw, 1.18rem); line-height: 1.6; color: var(--ink-2); }
.section { position: relative; padding-block: var(--section); }
.section-head { max-width: 780px; margin-bottom: clamp(36px, 4.5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* =============================================================
   5. Components
   ============================================================= */
/* Buttons */
.btn {
  --h: 48px;
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  height: var(--h); padding: 0 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -.01em; white-space: nowrap;
  transition: transform .5s var(--ease-out), background-color .3s, border-color .3s, color .3s, box-shadow .5s var(--ease-out);
}
.btn-sm { --h: 40px; padding: 0 18px; font-size: 14px; }
.btn-lg { --h: 56px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 10px 30px -10px rgba(232, 106, 51, .6), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--grad); opacity: 0; transition: opacity .45s var(--ease-out);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { box-shadow: 0 18px 44px -12px rgba(232, 106, 51, .8), inset 0 1px 0 rgba(255, 255, 255, .35); }
.btn .ic { transition: transform .5s var(--ease-out); }
.btn-primary:hover .ic { transform: translateX(3px); }
.btn-ghost { border: 1px solid var(--line-2); background: rgba(35, 35, 35, .02); color: var(--ink); }
.btn-ghost:hover { border-color: var(--line-3); background: rgba(35, 35, 35, .07); }
.btn:active { transform: scale(.98); }

/* Magnetic */
.has-magnetic { isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform; transition: transform .8s var(--ease-soft);
}

/* Pill */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 10px; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(35, 35, 35, .03); font-size: 13px; color: var(--ink-2);
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent);  }

/* Cards + spotlight */
.card {
  position: relative; isolation: isolate; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(35, 35, 35, .035), rgba(35, 35, 35, .012));
}
.spot::before { /* borde iluminado que sigue al cursor */
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border-radius: inherit; padding: 1px;
  background: radial-gradient(380px circle at var(--mx, -999px) var(--my, -999px), rgba(232, 106, 51, .75), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
}
.spot::after { /* brillo interior */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(520px circle at var(--mx, -999px) var(--my, -999px), rgba(232, 106, 51, .10), transparent 45%);
}

/* Tag */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px 5px 9px; border: 1px solid var(--line-2); border-radius: 999px;
  font-family: var(--mono); font-size: 12px; color: var(--ink-2);
}
.tag .ic { font-size: 14px; color: var(--accent-2); }

/* Language switch */
.lang {
  display: inline-flex; align-items: center; padding: 3px;
  border: 1px solid var(--line-2); border-radius: 999px; background: rgba(35, 35, 35, .02);
}
.lang-btn {
  padding: 5px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; color: var(--ink-3);
  transition: color .3s, background-color .3s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn[aria-pressed="true"] { background: var(--sand); color: var(--ink); }

/* Wave (audio) */
.wave { display: flex; align-items: center; gap: 3px; height: 24px; flex: 1; }
.wave i {
  flex: 1; max-width: 4px; height: 30%; border-radius: 2px; background: #fff;
  animation: wave 1.1s ease-in-out infinite;
}
.wave i:nth-child(2n) { animation-duration: .9s; }
.wave i:nth-child(3n) { animation-duration: 1.35s; }
.wave i:nth-child(4n+1) { animation-delay: -.4s; }
.wave i:nth-child(5n) { animation-delay: -.7s; }

/* Mini QR + WhatsApp */
.qr-mini {
  flex: none; width: 22px; height: 22px; border-radius: 2px;
  background: repeating-conic-gradient(#232323 0 25%, #fff 0 50%) 0 0 / 5.5px 5.5px;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #232323;
}
.wa-mini {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 8px; border-radius: 999px; background: var(--wa); color: var(--charcoal);
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.wa-mini .ic { font-size: 12px; }

/* =============================================================
   6. Sections
   ============================================================= */

/* ---------- Splash ---------- */
.splash { display: none; }
.js .splash {
  position: fixed; inset: 0; z-index: 9000;
  display: grid; place-items: center; background: var(--bg);
  clip-path: inset(0 0 0 0);
  transition: clip-path 1s cubic-bezier(.77, 0, .18, 1);
  animation: splashSafety .01s 4s forwards;
}
.splash.is-out { clip-path: inset(0 0 100% 0); pointer-events: none; }
.splash-inner { display: grid; justify-items: center; gap: 18px; }
.splash-mark { width: 64px; height: 64px; animation: splashMark 1s var(--ease-out) both; }
.splash-logo { width: min(240px, 62vw); height: auto; animation: splashMark 1s var(--ease-out) both; }
.splash-word { padding-left: .42em; font-size: 14px; font-weight: 700; letter-spacing: .42em; color: var(--ink-2); animation: fadeUp .8s var(--ease-out) .2s both; }
.splash-bar { width: 120px; height: 2px; border-radius: 2px; background: var(--line-2); overflow: hidden; }
.splash-bar i { display: block; height: 100%; background: var(--grad); transform-origin: 0 50%; animation: splashBar 1.1s var(--ease-out) .15s both; }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 12px var(--gutter); }
.nav-inner {
  max-width: var(--container); height: 56px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 0 8px 0 16px; border: 1px solid transparent; border-radius: 999px;
  transition: background-color .5s, border-color .5s, box-shadow .5s;
}
.nav.is-scrolled .nav-inner {
  background: rgba(255, 255, 255, .94); border-color: var(--line);
  box-shadow: 0 20px 50px -20px rgba(35, 35, 35, .17);
}
@supports (backdrop-filter: blur(1px)) {
  .nav.is-scrolled .nav-inner {
    background: rgba(255, 255, 255, .72);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
  }
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-word { font-size: 17px; font-weight: 700; letter-spacing: .14em; }
.logo-img { height: 34px; width: auto; }
.logo-icon-img { width: 28px; height: 28px; flex: none; object-fit: contain; }
.hub-logo { width: 42px; height: 42px; object-fit: contain; }
.nav-links { display: none; gap: 2px; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px; font-size: 14px; color: var(--ink-2);
  transition: color .3s, background-color .3s;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); background: rgba(35, 35, 35, .06); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta { display: none; }
.burger {
  display: grid; place-content: center; gap: 5px;
  width: 40px; height: 40px; border: 1px solid var(--line-2); border-radius: 50%;
}
.burger span { display: block; width: 16px; height: 1.5px; background: var(--ink); transition: transform .45s var(--ease-out); }
.nav-open .burger span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-open .burger span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-menu {
  position: absolute; top: calc(100% - 2px); left: var(--gutter); right: var(--gutter);
  display: grid; gap: 2px; padding: 12px;
  border: 1px solid var(--line-2); border-radius: 24px; background: var(--bg-2);
  box-shadow: 0 40px 80px -30px rgba(35, 35, 35, .23);
  opacity: 0; visibility: hidden; transform: translateY(-8px); pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .45s var(--ease-out), visibility 0s .45s;
}
.nav-open .mobile-menu { opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition-delay: 0s; }
.mobile-menu a:not(.btn) { padding: 12px 14px; border-radius: 12px; font-size: 17px; }
.mobile-menu a:not(.btn):hover { background: rgba(35, 35, 35, .05); }
.mobile-menu .btn { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: clip;
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 84px));
  padding-bottom: clamp(56px, 6vw, 88px);
}
.hero-aura { position: absolute; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.hero-aura::before, .hero-aura::after {
  content: ""; position: absolute; left: 0; top: 0;
  width: min(62vw, 900px); aspect-ratio: 1; border-radius: 50%;
  filter: blur(90px); opacity: .22; will-change: transform;
}
.hero-aura::before {
  background: radial-gradient(circle, rgba(228, 215, 199, .95), rgba(232, 106, 51, .25) 45%, transparent 70%);
  transform: translate3d(calc(var(--ax, 50vw) - 50%), calc(var(--ay, 22vh) - 50%), 0);
}
.hero-aura::after {
  background: radial-gradient(circle, rgba(124, 138, 67, .85), transparent 65%);
  opacity: .24;
  transform: translate3d(calc(var(--bx, 30vw) - 50%), calc(var(--by, 60vh) - 50%), 0);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .7;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 26%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 50% at 50% 26%, #000 20%, transparent 75%);
}
.hero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-title {
  max-width: 17ch; margin-top: 28px;
  font-size: clamp(2.6rem, 6.4vw, 5.25rem); font-weight: 600; letter-spacing: -.045em; line-height: 1;
}
.hero-title:not(.is-split) em,
.hero-title.is-split em .wi {
  color: var(--accent);
}
.hero-title .w { display: inline-block; overflow: clip; vertical-align: top; padding: .12em .14em .26em; margin: -.12em -.14em -.26em; }
.hero-title.is-settled .w { overflow: visible; }
.hero-title.is-split em .wi { padding: 0 .06em .24em; margin: 0 -.06em -.24em; }
.hero-title .wi {
  display: inline-block; transform: translateY(108%);
  animation: wordUp 1.15s var(--ease-out) forwards paused;
  animation-delay: calc(.1s + var(--i, 0) * 70ms);
}
.is-go .hero-title .wi { animation-play-state: running; }
.hero-title.no-anim .wi { animation: none; transform: none; }
.hero-sub { max-width: 62ch; margin-top: 28px; font-size: clamp(1.02rem, 1.4vw, 1.22rem); color: var(--ink-2); }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.hero-note { margin-top: 20px; font-size: 12px; color: var(--ink-3); letter-spacing: .04em; }
.hero .pill { --rd: .05s; }
.hero-sub   { --rd: .35s; }
.hero-ctas  { --rd: .45s; }
.hero-note  { --rd: .55s; }

.hero-visual-wrap { margin-top: clamp(44px, 5vw, 72px); perspective: 1800px; }
.hero-visual {
  position: relative; max-width: 1120px; margin-inline: auto;
  transition: opacity 1.4s var(--ease-out) .55s, transform 1.4s var(--ease-out) .55s;
}
.js:not(.is-go) .hero-visual { opacity: 0; transform: translateY(70px); }

/* Studio mockup */
.studio {
  --sx: 0deg;
  position: relative; border-radius: 22px;
  background: linear-gradient(180deg, #FFFFFF, #FAF9F6);
  border: 1px solid var(--line-2);
  box-shadow:
    0 90px 140px -50px rgba(35, 35, 35, .23),
    0 30px 80px -40px rgba(232, 106, 51, .35),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transform: rotateX(calc(var(--sx) + var(--rx, 0deg))) rotateY(var(--ry, 0deg));
  transform-origin: 50% 0%;
  transform-style: preserve-3d;
}
.studio-top { display: flex; align-items: center; gap: 14px; height: 46px; padding: 0 16px; border-bottom: 1px solid var(--line); }
.studio-dots { display: flex; gap: 6px; }
.studio-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--bg-4); border: 1px solid var(--line-2); }
.studio-url { flex: 1; overflow: hidden; text-align: center; font-size: 12px; color: var(--ink-3); white-space: nowrap; text-overflow: ellipsis; }
.studio-live {
  display: inline-flex; align-items: center; gap: 8px; padding: 5px 10px;
  border: 1px solid var(--line-2); border-radius: 999px; font-size: 12px; color: var(--ink-2);
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent);  }
.studio.is-done .live-dot { background: var(--wa); animation: none; box-shadow: 0 0 0 3px rgba(37, 211, 102, .2); }

.studio-grid { display: grid; gap: 12px; padding: 12px; }
.st-input {
  display: grid; grid-template-columns: 104px 1fr; align-items: center; gap: 12px;
  padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: var(--bg-3);
}
.st-photo { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 11px; }
.st-photo img { width: 100%; height: 100%; object-fit: cover; }
.st-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-2); }
.st-title { margin-top: 4px; font-size: 17px; letter-spacing: -.02em; }
.st-meta { margin-top: 2px; font-size: 12.5px; color: var(--ink-3); }
.st-price { margin-top: 4px; font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.st-steps { display: none; }

.st-outputs {
  display: grid; gap: 10px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "post reel" "pdf reel" "copy copy" "pub pub";
}
.st-card {
  position: relative; overflow: hidden; padding: 9px;
  border: 1px solid var(--line); border-radius: 14px; background: var(--bg-3);
  transition: opacity .7s var(--ease-out), transform .9s var(--ease-out), filter .7s var(--ease-out);
}
.studio.is-anim .st-card:not(.is-on) { opacity: 0; transform: translateY(16px) scale(.97); filter: blur(8px); }
.st-pdf { grid-area: pdf; display: flex; flex-direction: column; }
.st-post { grid-area: post; }
.st-reel { grid-area: reel; min-height: 250px; padding: 0; }
.st-copy { grid-area: copy; padding: 12px 14px; }
.st-publish { grid-area: pub; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; }

.st-post figure { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 10px; }
.st-post img { width: 100%; height: 100%; object-fit: cover; }
.post-badge {
  position: absolute; top: 8px; left: 8px; padding: 4px 8px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.post-price {
  position: absolute; bottom: 8px; left: 8px; padding: 4px 8px; border-radius: 8px;
  background: rgba(35, 35, 35, .72); color: #fff; font-size: 13px; font-weight: 700;
}
.post-foot { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 12px; color: var(--ink-3); }
.avatar {
  display: grid; place-items: center; width: 22px; height: 22px; flex: none; border-radius: 50%;
  background: var(--grad); color: var(--accent-ink); font-size: 12px; font-weight: 700;
}

.pdf-mini {
  flex: 1; display: flex; flex-direction: column; overflow: hidden;
  border-radius: 8px; background: var(--paper); color: var(--paper-ink);
  box-shadow: 0 12px 24px -12px rgba(35, 35, 35, .15);
}
.pdf-mini-cover { aspect-ratio: 16 / 10; overflow: hidden; }
.pdf-mini-cover img { width: 100%; height: 100%; object-fit: cover; }
.pdf-mini-body { display: grid; gap: 4px; padding: 8px 9px 6px; }
.pdf-mini-body b { font-size: 12px; letter-spacing: -.01em; }
.pdf-mini-body i { display: block; height: 4px; border-radius: 2px; background: rgba(35, 35, 35, .12); }
.pdf-mini-body i.short { width: 60%; }
.pdf-mini-agent {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 6px;
  padding: 7px 9px; border-top: 1px solid rgba(35, 35, 35, .08);
}
.st-file { margin-top: 8px; overflow: hidden; font-size: 12px; color: var(--ink-3); white-space: nowrap; text-overflow: ellipsis; }

.st-reel figure { position: absolute; inset: 0; }
.st-reel img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 14s ease-in-out infinite alternate; }
.st-reel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35), transparent 30%, transparent 55%, rgba(0, 0, 0, .8));
}
.reel-ui { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 12px; }
.reel-voice {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 9px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px;
  background: rgba(35, 35, 35, .6); color: #fff; font-size: 12px;
}
.reel-bottom { display: flex; align-items: center; gap: 10px; }
.reel-play { display: grid; place-items: center; flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--ivory); color: var(--charcoal); font-size: 14px; }

.st-label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); }
.copy-text { min-height: 3em; margin-top: 8px; font-size: 13.5px; line-height: 1.5; }
.caret { display: inline-block; width: 2px; height: 1.05em; margin-left: 2px; vertical-align: -.15em; background: var(--accent); animation: blink 1s steps(1) infinite; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tags span { padding: 3px 8px; border-radius: 999px; background: rgba(124, 138, 67, .10); color: #5E6B2E; font-family: var(--mono); font-size: 12px; }

.nets { display: flex; }
.nets span {
  display: grid; place-items: center; width: 30px; height: 30px; margin-left: -6px;
  border: 2px solid var(--bg-3); border-radius: 50%; background: var(--bg-4);
  font-size: 12px; font-weight: 700; color: var(--ink-2);
}
.nets span:first-child { margin-left: 0; }
.publish-btn {
  position: relative; display: inline-grid; align-items: center; overflow: hidden;
  height: 36px; padding: 0 16px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink); font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: background-color .4s, color .4s;
  overflow: hidden;
}
.publish-btn > span { grid-area: 1 / 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; transition: transform .5s var(--ease-out), opacity .4s; }
.pb-done { opacity: 0; transform: translateY(120%); }
.publish-btn.is-done { background: var(--wa); color: #04210F; }
.publish-btn.is-done .pb-idle { opacity: 0; transform: translateY(-120%); }
.publish-btn.is-done .pb-done { opacity: 1; transform: none; }

.studio-toast {
  position: absolute; z-index: 3; right: 12px; bottom: -24px;
  display: flex; align-items: center; gap: 12px; max-width: min(340px, 88%);
  padding: 12px 16px 12px 12px; border: 1px solid var(--line-2); border-radius: 18px;
  background: rgba(255, 255, 255, .96); box-shadow: 0 30px 60px -20px rgba(35, 35, 35, .21);
  transform: translateZ(60px);
  transition: opacity .6s var(--ease-out), transform .8s var(--ease-out);
}
.studio.is-anim .studio-toast:not(.is-on) { opacity: 0; transform: translateY(20px) translateZ(60px) scale(.96); }
.toast-ic { display: grid; place-items: center; flex: none; width: 38px; height: 38px; border-radius: 12px; background: var(--wa); color: #fff; font-size: 20px; }
.toast-txt { display: grid; gap: 2px; font-size: 13px; line-height: 1.3; }
.toast-txt small { font-size: 12px; color: var(--ink-3); }

/* ---------- Networks band ---------- */
.nets-band { padding-block: 44px 28px; border-block: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(35, 35, 35, .015)); }
.nets-title { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: .18em; color: var(--ink-3); }
.marquee { margin-top: 18px; padding-inline: var(--gutter); }
.marquee-track { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: clamp(16px, 3vw, 48px); max-width: var(--container); margin-inline: auto; }
@media (max-width: 720px) { .marquee-track { display: grid; grid-template-columns: repeat(3, auto); justify-content: center; gap: 10px 22px; } }
.marquee-track span { font-size: clamp(1.15rem, 2.3vw, 1.9rem); font-weight: 600; letter-spacing: -.03em; color: var(--ink-2); }
.marquee-track i { font-style: normal; font-size: 1rem; color: var(--accent-2); }

/* ---------- Problem ---------- */
.problem { padding-bottom: clamp(56px, 6vw, 88px); }
.problem-text { margin-top: 28px; font-size: clamp(1.7rem, 3.6vw, 3.1rem); font-weight: 500; line-height: 1.18; letter-spacing: -.035em; }
.problem-text .sw { opacity: .72; transition: opacity .35s linear; }
.no-gsap .problem-text .sw { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .problem-text .sw { opacity: 1; } }
.problem-text .sw.is-lit { opacity: 1; }
.problem-answer { margin-top: 36px; font-size: clamp(1.3rem, 2.4vw, 2rem); letter-spacing: -.02em; color: var(--ink-2); }
.problem-answer em { color: var(--accent-2); }
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  margin-top: clamp(44px, 5.5vw, 72px); overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--line);
}
.stats li { display: grid; align-content: start; gap: 10px; padding: clamp(20px, 3vw, 36px); background: var(--bg); }
.stats strong {
  font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 600; line-height: 1; letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.stats li > span { max-width: 22ch; font-size: 14.5px; color: var(--ink-3); }

/* ---------- Features (bento) ---------- */
.bento { display: grid; grid-template-columns: 1fr; gap: 14px; }
.bento .card { display: flex; flex-direction: column; gap: 28px; min-height: 340px; padding: clamp(22px, 2.4vw, 32px); }
.card-copy h3 { margin-top: 16px; font-size: clamp(1.3rem, 1.8vw, 1.6rem); letter-spacing: -.03em; }
.card-copy p:not(.tag) { max-width: 46ch; margin-top: 10px; font-size: 15px; color: var(--ink-3); }
.viz { position: relative; flex: 1; }

.viz-pdf { display: grid; place-items: center; min-height: 250px; }
.vp {
  grid-area: 1 / 1; width: min(58%, 240px); aspect-ratio: 3 / 4; overflow: hidden;
  border-radius: 10px; background: var(--paper);
  box-shadow: 0 30px 50px -24px rgba(35, 35, 35, .21);
  transition: transform .9s var(--ease-out);
}
.vp { position: relative; }
.vp-1 { z-index: 3; }
.vp-3 { z-index: 1; background: #E6E0D6; transform: translate(-24%, 5%) rotate(-9deg); }
.vp-2 { z-index: 2; display: grid; align-content: start; gap: 8px; padding: 18% 12%; background: #EFEBE4; transform: translate(22%, 3%) rotate(7deg); }
.vp-2 i { height: 6px; border-radius: 3px; background: rgba(35, 35, 35, .12); }
.vp-2 i.s { width: 55%; }
.vp-1 { display: flex; flex-direction: column; color: var(--paper-ink); }
.vp-img { height: 54%; overflow: hidden; }
.vp-img img { width: 100%; height: 100%; object-fit: cover; }
.vp-row { display: grid; gap: 6px; padding: 10px 12px; }
.vp-row b { display: block; width: 70%; height: 8px; border-radius: 4px; background: rgba(35, 35, 35, .8); }
.vp-row b.s { width: 90%; height: 5px; background: rgba(35, 35, 35, .15); }
.vp-agent { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 6px; padding: 8px 10px; border-top: 1px solid rgba(35, 35, 35, .08); }
.b-pdf:hover .vp-3 { transform: translate(-40%, 7%) rotate(-14deg); }
.b-pdf:hover .vp-2 { transform: translate(38%, 4%) rotate(12deg); }
.b-pdf:hover .vp-1 { transform: translateY(-8px) scale(1.03); }

.viz-formats { display: flex; align-items: flex-end; justify-content: center; gap: 12px; min-height: 200px; }
.fmt { position: relative; overflow: hidden; border: 1px solid var(--line-2); border-radius: 10px; box-shadow: 0 20px 40px -20px rgba(35, 35, 35, .19); transition: transform .8s var(--ease-out); }
.fmt img { width: 100%; height: 100%; object-fit: cover; }
.fmt figcaption { position: absolute; left: 6px; bottom: 6px; padding: 2px 6px; border-radius: 6px; background: rgba(35, 35, 35, .75); color: #fff; font-size: 12px; }
.fmt-11 { width: 30%; aspect-ratio: 1; }
.fmt-45 { width: 30%; aspect-ratio: 4 / 5; }
.fmt-916 { width: 26%; aspect-ratio: 9 / 16; }
.b-img:hover .fmt-11 { transform: translateY(-6px) rotate(-3deg); }
.b-img:hover .fmt-45 { transform: translateY(-14px); }
.b-img:hover .fmt-916 { transform: translateY(-6px) rotate(3deg); }

.viz-hooks, .viz-tags { display: flex; flex-wrap: wrap; align-content: flex-end; gap: 8px; min-height: 110px; }
.viz-hooks span, .viz-tags span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(35, 35, 35, .02); font-size: 14px; color: var(--ink-2);
  transition: color .5s, background-color .5s, border-color .5s, transform .5s var(--ease-out);
}
.viz-hooks span.is-hot { border-color: rgba(232, 106, 51, .55); background: rgba(232, 106, 51, .1); color: var(--accent-2); transform: translateY(-3px); }
.viz-tags span { font-family: var(--mono); font-size: 13px; }
.viz-tags span.hot { border-color: rgba(124, 138, 67, .45); background: rgba(124, 138, 67, .08); color: #5E6B2E; }
.viz-tags .ic { font-size: 14px; }

.viz-phone { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 16px; min-height: 380px; }
.phone {
  width: min(64%, 200px); aspect-ratio: 9 / 18.5; padding: 7px; border-radius: 30px;
  background: var(--charcoal); border: 1px solid var(--line-2);
  box-shadow: 0 40px 60px -30px rgba(35, 35, 35, .24), inset 0 0 0 1px rgba(255, 255, 255, .05);
}
.phone-screen { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 24px; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 12s ease-in-out infinite alternate; }
.phone-ui { position: absolute; inset: auto 0 0 0; display: grid; gap: 8px; padding: 56px 12px 14px; background: linear-gradient(transparent, rgba(35, 35, 35, .9) 45%); }
.phone-cap { font-family: var(--serif); font-size: 15px; transition: opacity .5s; }
.phone .wave { height: 18px; }
.viz-phone.voice-off .phone-cap { opacity: 0; }
.viz-phone.voice-off .wave i { animation-play-state: paused; opacity: .35; }
.voice-toggle { display: inline-flex; padding: 4px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(35, 35, 35, .03); }
.vt-opt { padding: 6px 14px; border-radius: 999px; font-size: 13px; color: var(--ink-3); transition: color .4s, background-color .4s; }
.vt-opt.is-on { background: var(--sand); color: var(--ink); }

.viz-hub { display: grid; place-items: center; min-height: 230px; }
.hub-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hub-lines path { fill: none; stroke: var(--line-3); stroke-width: 1; stroke-dasharray: 4 6; vector-effect: non-scaling-stroke; animation: dash 1.2s linear infinite; }
.hub-center {
  position: relative; z-index: 2; display: grid; place-items: center;
  width: 76px; height: 76px; border: 1px solid var(--line-2); border-radius: 24px; background: var(--bg-3);
  box-shadow: 0 18px 40px -18px rgba(35, 35, 35, .25);
}
.hub-center .logo-mark { width: 42px; height: 42px; }
.hub-node {
  position: absolute; z-index: 2; transform: translate(-50%, -50%);
  padding: 7px 12px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--bg-3);
  font-size: 13px; color: var(--ink-2); white-space: nowrap;
  transition: color .5s, border-color .5s, box-shadow .5s;
}
.hub-node.is-on { color: var(--ink); border-color: rgba(232, 106, 51, .7); box-shadow: 0 8px 20px -10px rgba(35, 35, 35, .3); }
.n1 { left: 15%; top: 18%; } .n2 { left: 85%; top: 18%; }
.n3 { left: 10%; top: 82%; } .n4 { left: 90%; top: 82%; }
.n5 { left: 50%; top: 95%; }

/* ---------- How it works ---------- */
.how-track { position: relative; }
.how-line { position: absolute; inset: 0 0 auto 0; display: none; height: 1px; background: var(--line-2); }
.how-line span { display: block; height: 100%; background: var(--grad); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); }
.no-gsap .how-line span { transform: none; }
.how-steps { display: grid; gap: 48px; }
.how-step { position: relative; padding-top: 34px; border-top: 1px solid var(--line-2); }
.how-step::before {
  content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line-3);
  transition: background-color .5s, border-color .5s, box-shadow .5s;
}
.how-step.is-lit::before, .no-gsap .how-step::before { background: var(--accent); border-color: var(--accent-2); box-shadow: 0 0 0 6px rgba(232, 106, 51, .15); }
.how-step .how-num {
  font-family: var(--sans); font-size: clamp(3.2rem, 5vw, 4.6rem); font-weight: 500; line-height: 1; letter-spacing: -.05em;
  color: transparent; -webkit-text-stroke: 1px var(--line-3);
  transition: -webkit-text-stroke-color .6s, color .6s;
}
.how-step.is-lit .how-num { -webkit-text-stroke-color: rgba(232, 106, 51, .8); }
.how-ic {
  position: absolute; top: 34px; right: 0; display: grid; place-items: center;
  width: 52px; height: 52px; border: 1px solid var(--line-2); border-radius: 16px;
  background: var(--bg-3); font-size: 22px; color: var(--accent-2);
}
.how-step h3 { margin-top: 26px; font-size: 1.45rem; }
.how-step p { max-width: 36ch; margin-top: 10px; color: var(--ink-3); }

/* ---------- PDF showcase ---------- */
.pdf-sec { overflow: clip; }
.pdf-split { display: grid; align-items: center; gap: clamp(56px, 6vw, 96px); }
.checklist { display: grid; gap: 14px; margin-top: 32px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-2); }
.checklist .ic {
  flex: none; width: 22px; height: 22px; margin-top: 2px; padding: 4px; border-radius: 50%;
  background: rgba(232, 106, 51, .15); color: var(--accent-2); stroke-width: 2.4;
}
.pdf-stage { position: relative; padding: 30px 0; perspective: 1600px; }
.pdf-doc {
  display: grid; grid-template-columns: 1fr 1fr; border-radius: 14px;
  box-shadow: 0 80px 120px -50px rgba(35, 35, 35, .24), 0 0 0 1px rgba(35, 35, 35, .08);
  transform: rotateX(var(--rx, 0deg)) rotateY(calc(var(--ry, 0deg) - 8deg)) rotateZ(1deg);
  transform-style: preserve-3d;
}
.pdf-page { position: relative; aspect-ratio: 1 / 1.414; overflow: hidden; background: var(--paper); color: var(--paper-ink); }
.pdf-cover { border-radius: 14px 0 0 14px; }
.pdf-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdf-cover-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .4), transparent 32%, transparent 45%, rgba(0, 0, 0, .85)); }
.pdf-agency { position: absolute; top: 6%; left: 7%; color: #fff; font-size: clamp(8px, .95vw, 12px); font-weight: 500; letter-spacing: .24em; }
.pdf-agency b { margin-left: .3em; font-weight: 800; }
.pdf-cover-info { position: absolute; left: 7%; right: 7%; bottom: 6%; color: #fff; }
.pdf-badge {
  display: inline-block; padding: 3px 8px; border-radius: 999px; background: var(--accent); color: var(--accent-ink);
  font-size: clamp(7px, .8vw, 10px); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.pdf-cover-info h3 { margin-top: 8px; font-size: clamp(1.1rem, 2.2vw, 1.9rem); font-weight: 700; line-height: 1; letter-spacing: -.01em; }
.pdf-cover-info p { margin-top: 4px; font-size: clamp(8px, .9vw, 12px); opacity: .8; }
.pdf-cover-info .pdf-price { margin-top: 8px; font-size: clamp(13px, 1.6vw, 22px); font-weight: 700; letter-spacing: -.02em; opacity: 1; }
.pdf-info { display: flex; flex-direction: column; gap: clamp(6px, 1vw, 12px); padding: 7% 7% 6%; border-radius: 0 14px 14px 0; }
.pdf-info::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 24px; background: linear-gradient(90deg, rgba(0, 0, 0, .14), transparent); pointer-events: none; }
.pdf-h { font-size: clamp(7px, .8vw, 10px); text-transform: uppercase; letter-spacing: .14em; color: #9A5B36; }
.pdf-desc { font-size: clamp(8px, .95vw, 12.5px); line-height: 1.45; color: #333; }
.pdf-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.pdf-specs li { display: grid; padding: 5px 8px; border-radius: 6px; background: #ECE6DC; }
.pdf-specs strong { font-size: clamp(11px, 1.3vw, 18px); letter-spacing: -.02em; }
.pdf-specs span { font-size: clamp(6px, .7vw, 9.5px); text-transform: uppercase; letter-spacing: .06em; color: #5C564F; }
.pdf-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.pdf-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 5px; }
.pdf-agent { margin-top: auto; display: flex; align-items: center; gap: 8px; padding-top: 8px; border-top: 1px solid rgba(0, 0, 0, .1); }
.pdf-avatar {
  display: grid; place-items: center; flex: none; width: clamp(22px, 2.6vw, 34px); aspect-ratio: 1; border-radius: 50%;
  background: var(--grad); color: var(--accent-ink); font-size: 12px; font-weight: 700;
}
.pdf-agent-txt { display: grid; flex: 1; min-width: 0; line-height: 1.2; }
.pdf-agent-txt strong { font-size: clamp(8px, .95vw, 12.5px); }
.pdf-agent-txt small { font-size: clamp(6px, .72vw, 9.5px); color: #5C564F; }
.pdf-qr { display: grid; justify-items: center; gap: 2px; }
.pdf-qr svg { width: clamp(30px, 4.2vw, 56px); height: auto; aspect-ratio: 1; padding: 2px; border-radius: 3px; background: #fff; }
.pdf-qr svg path { fill: #232323; }
.pdf-qr small { font-size: clamp(5px, .6vw, 8px); color: #5C564F; white-space: nowrap; }
.pdf-wa {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: clamp(4px, .6vw, 8px) 10px; border-radius: 999px; background: var(--wa); color: var(--charcoal);
  font-size: clamp(9px, .85vw, 12px); font-weight: 700;
}
.pdf-float {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(255, 255, 255, .94); font-size: 12px; color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(35, 35, 35, .21);
  animation: bob 6s ease-in-out infinite;
}
.pdf-float .ic { font-size: 15px; color: var(--accent-2); }
.pf-1 { right: 0; bottom: 8%; }
.pf-2 { left: 0; top: 2%; animation-delay: -3s; }

/* ---------- Compare + audience ---------- */
.compare-grid { display: grid; gap: 16px; }
.cmp { padding: clamp(24px, 3vw, 40px); border: 1px solid var(--line); border-radius: var(--r-lg); }
.cmp h3 { display: flex; align-items: center; gap: 12px; font-size: 1.4rem; }
.cmp ul { display: grid; gap: 14px; margin-top: 24px; }
.cmp li { display: flex; align-items: flex-start; gap: 12px; }
.cmp li .ic { flex: none; width: 22px; height: 22px; margin-top: 1px; padding: 4px; border-radius: 50%; stroke-width: 2.2; }
.cmp-before { background: var(--bg-2); }
.cmp-before h3 { color: var(--ink-2); }
.cmp-before li { color: var(--ink-3); }
.cmp-before li .ic { background: rgba(35, 35, 35, .05); color: var(--ink-3); }
.cmp-after {
  background: linear-gradient(180deg, rgba(232, 106, 51, .11), rgba(232, 106, 51, .02) 60%), var(--bg-2);
  border-color: rgba(232, 106, 51, .35);
  box-shadow: 0 40px 80px -40px rgba(232, 106, 51, .35);
}
.cmp-after li .ic { background: rgba(232, 106, 51, .16); color: var(--accent-2); }
.audience { display: grid; gap: 14px; margin-top: clamp(40px, 5vw, 64px); }
.aud { padding: 28px; }
.aud-ic { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line-2); border-radius: 14px; background: var(--bg-3); font-size: 22px; color: var(--accent-2); }
.aud h3 { margin-top: 20px; font-size: 1.25rem; }
.aud p { margin-top: 8px; font-size: 15px; color: var(--ink-3); }

/* ---------- Pricing ---------- */
.pricing { overflow: clip; }
.pricing-glow {
  position: absolute; left: 50%; top: 45%; z-index: -1; width: min(1100px, 120vw); height: 760px; pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(232, 106, 51, .12), transparent), radial-gradient(closest-side at 72% 62%, rgba(124, 138, 67, .08), transparent);
  filter: blur(40px);
}
.billing-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
.billing { position: relative; display: inline-flex; padding: 5px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(35, 35, 35, .03); }
.billing button {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink-3);
  transition: color .4s, background-color .4s;
}
.billing button:hover { color: var(--ink); }
.billing button[aria-checked="true"] { color: var(--ink); }
.billing:not(.is-ready) button[aria-checked="true"] { background: var(--orange); }
.billing button em { padding: 2px 7px; border-radius: 999px; background: rgba(232, 106, 51, .10); color: var(--accent-2); font-size: 12px; font-weight: 700; transition: background-color .4s, color .4s; }
.billing button[aria-checked="true"] em { background: var(--accent); color: var(--accent-ink); }
.billing-thumb {
  position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 0; width: var(--tw, 0); border-radius: 999px;
  background: var(--orange); transform: translateX(var(--tx, 5px));
  transition: transform .45s var(--ease-out);
}
.plans { display: grid; gap: 16px; }
.plan { display: flex; flex-direction: column; padding: clamp(26px, 2.6vw, 36px); }
.plan-name { font-size: 1.45rem; letter-spacing: -.02em; }
.plan-desc { min-height: 3em; margin-top: 8px; font-size: 14.5px; color: var(--ink-3); }
.price { display: flex; align-items: flex-start; margin-top: 28px; line-height: 1; }
.price-cur { margin-top: .35rem; font-size: 1.4rem; font-weight: 500; color: var(--ink-2); }
.price-num { display: inline-block; font-size: clamp(3.4rem, 5vw, 4.4rem); font-weight: 600; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.price-num.is-rolling { animation: priceRoll .55s var(--ease-out); }
.price-per { align-self: flex-end; margin: 0 0 .6rem 6px; font-size: 15px; color: var(--ink-3); }
.price-note { min-height: 1.5em; margin-top: 10px; font-size: 13px; color: var(--ink-3); }
.plan .btn { margin-top: 24px; }
.plan-list { display: grid; gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--ink-2); }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; }
.plan-list .ic { flex: none; margin-top: 3px; font-size: 16px; color: var(--accent-2); stroke-width: 2.2; }
.plan-list strong { font-weight: 600; color: var(--ink); }
.plan-featured {
  background: linear-gradient(180deg, rgba(232, 106, 51, .13), rgba(35, 35, 35, .02) 45%), var(--bg-2);
  border-color: rgba(232, 106, 51, .42);
  box-shadow: 0 50px 100px -50px rgba(232, 106, 51, .55);
}
.plan-badge {
  position: absolute; top: 24px; right: 24px; padding: 5px 10px; border-radius: 999px;
  background: var(--grad); color: var(--accent-ink);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.pay-note { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 44px; font-size: 14px; text-align: center; color: var(--ink-3); }
.pay-note .ic { color: var(--ink-2); }

/* ---------- FAQ ---------- */
.faq-split { display: grid; gap: 40px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem); font-weight: 500; letter-spacing: -.015em;
  transition: color .3s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--accent-2); }
.faq-list summary .ic {
  width: 34px; height: 34px; padding: 9px; border: 1px solid var(--line-2); border-radius: 50%;
  transition: transform .5s var(--ease-out), background-color .3s, color .3s;
}
.faq-list details[open] summary .ic { transform: rotate(45deg); background: var(--orange); color: var(--ink); }
.faq-list details p { max-width: 62ch; padding: 0 56px 26px 0; color: var(--ink-3); }
.faq-list details a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq-list details::details-content { height: 0; overflow: clip; transition: content-visibility .5s allow-discrete; }
  .faq-list details[open]::details-content { height: auto; }
}

/* ---------- Final CTA ---------- */
.final { overflow: clip; isolation: isolate; }
.final-aura {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(50% 60% at 18% 100%, rgba(232, 106, 51, .18), transparent 70%), radial-gradient(40% 50% at 92% 8%, rgba(124, 138, 67, .12), transparent 70%);
}
.final-inner { display: grid; align-items: center; gap: 48px; }
.final-title { font-size: clamp(2.4rem, 5.4vw, 4.8rem); line-height: 1; letter-spacing: -.045em; }
.final-title em { color: var(--accent); padding-right: .05em; }
.lead-form {
  position: relative; display: grid; gap: 16px; padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line-2); border-radius: var(--r-xl); background: rgba(255, 255, 255, .94);
  box-shadow: 0 60px 120px -60px rgba(35, 35, 35, .24);
}
.field { display: grid; gap: 8px; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink-2); }
.field input, .field select {
  height: 52px; padding: 0 16px; border: 1px solid var(--line-2); border-radius: 14px;
  background: rgba(35, 35, 35, .03); outline: none;
  transition: border-color .3s, box-shadow .3s, background-color .3s;
}
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2374747C' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 16px;
}
.field select option { background: var(--bg-3); color: var(--ink); }
.field input::placeholder { color: var(--ink-4); }
.field input:focus, .field select:focus { border-color: rgba(232, 106, 51, .7); background-color: rgba(35, 35, 35, .05); box-shadow: 0 0 0 4px rgba(232, 106, 51, .15); }
.field input.is-invalid { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(201, 90, 69, .12); }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-3); cursor: pointer; }
.consent input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent-2); }
.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.consent.is-invalid span { color: #96391F; }
.lead-form button[type="submit"] { margin-top: 6px; }
.bs-busy { display: none; gap: 5px; }
.bs-busy i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: dots 1s infinite; }
.bs-busy i:nth-child(2) { animation-delay: .15s; }
.bs-busy i:nth-child(3) { animation-delay: .3s; }
.lead-form.is-sending .bs-idle { display: none; }
.lead-form.is-sending .bs-busy { display: inline-flex; }
.form-ok {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 18px;
  padding: 32px; border-radius: inherit; background: var(--bg-2); text-align: center;
  opacity: 0; visibility: hidden; transition: opacity .6s var(--ease-out), visibility 0s .6s;
}
.lead-form.is-sent .form-ok { opacity: 1; visibility: visible; transition-delay: 0s; }
.form-ok p { display: grid; gap: 6px; }
.form-ok strong { font-size: 1.4rem; letter-spacing: -.02em; }
.form-ok span { color: var(--ink-3); }
.ok-check { width: 64px; height: 64px; }
.ok-check circle { fill: none; stroke: var(--wa); stroke-width: 2; stroke-dasharray: 151; stroke-dashoffset: 151; }
.ok-check path { fill: none; stroke: var(--wa); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; }
.lead-form.is-sent .ok-check circle { stroke-dashoffset: 0; transition: stroke-dashoffset .9s var(--ease-out) .1s; }
.lead-form.is-sent .ok-check path { stroke-dashoffset: 0; transition: stroke-dashoffset .5s var(--ease-out) .7s; }

/* ---------- Footer ---------- */
.footer { position: relative; overflow: clip; padding-top: clamp(56px, 6vw, 88px); border-top: 1px solid var(--line); }
.footer-top { display: grid; gap: 40px; }
.footer-brand p { max-width: 30ch; margin-top: 14px; color: var(--ink-3); }
.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col p { margin-bottom: 6px; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-4); }
.footer-col a { width: fit-content; font-size: 15px; color: var(--ink-2); transition: color .3s; }
.footer-col a:hover { color: var(--ink); }
.footer-word { margin: clamp(36px, 4.5vw, 60px) 0 0; text-align: center; user-select: none; }
.footer-word img { display: block; width: min(100%, 720px); height: auto; margin-inline: auto; opacity: .9; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 24px 32px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-4);
}
.lang-foot { gap: 2px; padding: 3px 3px 3px 10px; }
.lang-foot .ic { margin-right: 4px; color: var(--ink-3); }

/* ---------- Privacy modal ---------- */
.modal {
  width: min(820px, calc(100% - 24px)); max-height: min(88vh, 920px); margin: auto; padding: 0; overflow: hidden;
  border: 1px solid var(--line-2); border-radius: 26px; background: var(--bg-2); color: var(--ink);
  box-shadow: 0 80px 160px -40px rgba(35, 35, 35, .24);
}
.modal[open] { display: flex; flex-direction: column; animation: modalIn .6s var(--ease-out); }
.modal::backdrop { background: rgba(35, 35, 35, .38); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); animation: fadeIn .4s var(--ease-out); }
html:not(.js) .modal:target { position: fixed; inset: 0; z-index: 10000; display: flex; flex-direction: column; }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 26px clamp(22px, 4vw, 40px) 20px; border-bottom: 1px solid var(--line); }
.modal-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--accent-2); }
.modal-head h2 { margin-top: 6px; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -.03em; }
.modal-close {
  display: grid; place-items: center; flex: none; width: 42px; height: 42px;
  border: 1px solid var(--line-2); border-radius: 50%; font-size: 18px;
  transition: background-color .3s, transform .5s var(--ease-out);
}
.modal-close:hover { background: rgba(35, 35, 35, .08); transform: rotate(90deg); }
.modal-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 8px clamp(22px, 4vw, 40px) 30px; }
.modal-body:focus-visible { outline-offset: -4px; }
.modal-foot { display: flex; justify-content: flex-end; padding: 16px clamp(22px, 4vw, 40px); border-top: 1px solid var(--line); background: rgba(35, 35, 35, .015); }
.legal { font-size: 15px; line-height: 1.7; color: var(--ink-2); }
.legal h3 { margin-top: 30px; font-size: 1.1rem; letter-spacing: -.01em; color: var(--ink); }
.legal p, .legal ul { margin-top: 10px; }
.legal ul { display: grid; gap: 8px; }
.legal li { position: relative; padding-left: 20px; }
.legal li::before { content: ""; position: absolute; left: 2px; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.legal a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { font-weight: 600; color: var(--ink); }
.legal .legal-updated {
  display: inline-block; margin-top: 18px; padding: 5px 12px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(35, 35, 35, .04);
  font-family: var(--mono); font-size: 12px; color: var(--ink-3);
}
html[lang="en"] [data-lang-block="es"],
html:not([lang="en"]) [data-lang-block="en"] { display: none; }
html.modal-open { overflow: hidden; }

/* =============================================================
   7. Effects
   ============================================================= */
.js [data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.js [data-reveal].is-revealed { opacity: 1; transform: none; }
.js:not(.is-go) .hero [data-reveal] { opacity: 0; transform: translateY(24px); }

::view-transition-old(root), ::view-transition-new(root) { animation-duration: .45s; animation-timing-function: var(--ease-out); }

@keyframes wordUp { to { transform: none; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(232, 106, 51, .5); } 70%, 100% { box-shadow: 0 0 0 8px rgba(232, 106, 51, 0); } }
@keyframes blink { 50% { opacity: 0; } }
@keyframes dots { 0%, 100% { opacity: .3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }
@keyframes wave { 0%, 100% { height: 20%; } 50% { height: 100%; } }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.14) translate(-2%, -1%); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes dash { to { stroke-dashoffset: -20; } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes priceRoll { from { opacity: 0; transform: translateY(35%); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }
@keyframes splashMark { from { opacity: 0; transform: scale(.6) rotate(-12deg); } to { opacity: 1; transform: none; } }
@keyframes splashBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes splashSafety { to { clip-path: inset(0 0 100% 0); pointer-events: none; visibility: hidden; } }

/* =============================================================
   8. Responsive (mobile-first)
   ============================================================= */
@media (min-width: 540px) {
  .billing button { padding: 10px 18px; font-size: 14px; }
}

@media (min-width: 720px) {
  .st-outputs {
    grid-template-columns: 1fr 1fr .85fr;
    grid-template-areas: "post pdf reel" "copy copy reel" "pub pub reel";
    gap: 12px;
  }
  .st-reel { min-height: 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-pdf, .b-publish { grid-column: 1 / -1; }
  .bento .b-pdf { flex-direction: row; align-items: center; }
  .b-pdf .card-copy { flex: 1; }
  .b-pdf .viz { flex: 1.1; align-self: stretch; }
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .audience { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.6fr repeat(3, 1fr); }
  .studio-toast { right: -18px; bottom: -26px; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .burger, .mobile-menu { display: none; }

  .studio-grid { grid-template-columns: 252px 1fr; gap: 14px; padding: 14px; }
  .st-input { grid-template-columns: 1fr; align-items: start; align-content: start; padding: 12px; }
  .st-steps { display: grid; gap: 3px; padding-top: 12px; border-top: 1px solid var(--line); }
  .st-steps li {
    display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: 10px;
    font-size: 13px; color: var(--ink-3); transition: color .4s, background-color .4s;
  }
  .st-step-ic { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--bg-4); font-size: 14px; transition: background-color .4s, color .4s; }
  .st-ok { margin-left: auto; font-size: 15px; color: var(--wa); opacity: 0; transform: scale(.5); transition: opacity .4s, transform .5s var(--ease-bounce); }
  .studio:not(.is-anim) .st-steps li, .st-steps li.is-on { color: var(--ink); background: rgba(35, 35, 35, .03); }
  .studio:not(.is-anim) .st-step-ic, .st-steps li.is-on .st-step-ic { background: rgba(232, 106, 51, .15); color: var(--accent-2); }
  .studio:not(.is-anim) .st-ok, .st-steps li.is-on .st-ok { opacity: 1; transform: none; }
  .studio-toast { right: -34px; bottom: -30px; }

  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "pdf pdf img" "copy tags video" "pub pub video";
  }
  .b-pdf, .b-publish { grid-column: auto; }
  .b-pdf { grid-area: pdf; } .b-img { grid-area: img; } .b-copy { grid-area: copy; }
  .b-tags { grid-area: tags; } .b-video { grid-area: video; } .b-publish { grid-area: pub; }

  .how-line { display: block; }
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .how-step { border-top: 0; }

  .pdf-split { grid-template-columns: .9fr 1.1fr; }
  .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .plan-featured { top: -14px; }
  .faq-split { grid-template-columns: .8fr 1.2fr; align-items: start; gap: 80px; }
  .faq .section-head { position: sticky; top: calc(var(--nav-h) + 40px); }
  .final-inner { grid-template-columns: 1.1fr .9fr; gap: 80px; }
}

@media (min-width: 1280px) {
  .pf-1 { right: -24px; }
  .pf-2 { left: -24px; }
}

/* =============================================================
   9. Reduced motion — solo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .st-reel img, .phone-screen img { animation: none; }
  .pdf-float { animation: none; }
  .hub-lines path { animation: none; }
}

/* =============================================================
   v2 · formulario: honeypot y error visible
   ============================================================= */
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-err { margin: 0; padding: 12px 14px; border-radius: var(--r-sm); background: #FBE9E4; color: #7A2E1F; font-size: 14px; line-height: 1.5; border: 1px solid rgba(201, 90, 69, .35); }
.form-err[hidden] { display: none; }

/* =============================================================
   v2 · la ardilla que recorre la web (squirrel.js)
   ============================================================= */
.sq-roam { position: fixed; left: 0; top: 0; z-index: 40; width: 80px; height: auto; opacity: 0; pointer-events: none; user-select: none; will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) { .sq-roam { display: none !important; } }

/* v2 · móvil: CTAs del hero del mismo ancho */
@media (max-width: 540px) { .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; } }

/* =============================================================
   v3 · ronda de Juan (2026-09-18)
   ============================================================= */
:root {
  --shadow-sm: 0 1px 2px rgba(35,35,35,.06), 0 2px 8px -2px rgba(35,35,35,.08);
  --shadow-md: 0 2px 4px rgba(35,35,35,.04), 0 12px 28px -10px rgba(35,35,35,.16);
  --shadow-lg: 0 4px 10px rgba(35,35,35,.05), 0 30px 70px -24px rgba(35,35,35,.24);
}

/* 1 · Nav de vidrio (liquid glass), siempre visible, no solo al hacer scroll */
.nav-inner, .nav.is-scrolled .nav-inner {
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.5));
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), inset 0 -1px 0 rgba(35,35,35,.04), 0 10px 30px -12px rgba(35,35,35,.22), 0 1px 3px rgba(35,35,35,.06);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
}
@supports not (backdrop-filter: blur(1px)) { .nav-inner, .nav.is-scrolled .nav-inner { background: rgba(255,255,255,.95); } }
.nav .logo-img { height: 30px; }

/* 2 · Profundidad */
.card { background: #FFFFFF; box-shadow: var(--shadow-md); border-color: rgba(35,35,35,.07); }
.card:hover { box-shadow: var(--shadow-lg); }
.btn-primary { box-shadow: 0 1px 2px rgba(35,35,35,.1), 0 10px 24px -10px rgba(232,106,51,.7), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-ghost { background: #FFFFFF; box-shadow: var(--shadow-sm); }
.studio, .pdf-doc, .lead-form { box-shadow: var(--shadow-lg); }
.plan { box-shadow: var(--shadow-md); }
.plan-featured { box-shadow: var(--shadow-lg); }

/* 3 · Ritmo de fondos: blanco base, ivory/sand en algunas subsecciones */
.problem { background: linear-gradient(180deg, #FFFFFF 0%, var(--ivory) 35%, var(--ivory) 100%); }
.how { background: radial-gradient(1200px 500px at 85% 0%, rgba(228,215,199,.55), transparent 60%), var(--ivory); }
.compare { background: #FFFFFF; }
.pricing { background: linear-gradient(180deg, #FFFFFF 0%, #F6EEE4 55%, #FFFFFF 100%); }
.final { background: linear-gradient(180deg, #FFFFFF 0%, var(--ivory) 40%); }
.nets-band { background: #FFFFFF; border-block: 1px solid rgba(35,35,35,.06); }

/* 4 · Marquee de redes que se mueve (logos SVG oficiales, monocromo charcoal) */
.bi { width: 1em; height: 1em; flex: none; fill: currentColor; }
.marquee { overflow: hidden; padding-inline: 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track, .marquee-track[data-marquee] { display: flex; flex-wrap: nowrap; width: max-content; max-width: none; gap: 0; margin: 0; animation: sqMarquee 32s linear infinite; }
.marquee-set { display: flex; align-items: center; gap: clamp(28px, 4vw, 64px); padding-right: clamp(28px, 4vw, 64px); }
.marquee .net { display: inline-flex; align-items: center; gap: .45em; font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 600; letter-spacing: -.02em; color: var(--ink-2); white-space: nowrap; }
.marquee .net .bi { font-size: 1.15em; color: var(--ink); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes sqMarquee { to { transform: translateX(-50%); } }
@media (max-width: 720px) { .marquee-track, .marquee-track[data-marquee] { display: flex; } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .marquee-track[data-marquee] { animation: none; width: auto; flex-wrap: wrap; justify-content: center; margin-inline: auto; }
  .marquee-set[aria-hidden] { display: none; }
  .marquee-set { flex-wrap: wrap; justify-content: center; padding-right: 0; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

/* 8 · Publicar: cada red se enciende naranja (~1 s) y queda verde; se acumulan */
.nets span[data-net] { width: 32px; height: 32px; margin-left: -4px; border: 2px solid #FFFFFF; background: var(--bg-3); color: var(--ink-3); font-size: 15px; transition: background-color .35s, color .35s, transform .35s var(--ease-out); }
.nets span[data-net].is-pub { background: var(--orange); color: var(--charcoal); transform: translateY(-3px); }
.nets span[data-net].is-ok { background: #1FA855; color: #FFFFFF; transform: none; }
.hub-node { display: inline-flex; align-items: center; gap: 6px; background: #FFFFFF; box-shadow: var(--shadow-sm); transition: background-color .35s, color .35s, border-color .35s; }
.hub-node .bi { font-size: 14px; }
.hub-node.is-pub { background: var(--orange); border-color: var(--orange); color: var(--charcoal); }
.hub-node.is-ok { background: #E7F6EC; border-color: #1FA855; color: #14532D; }
.hub-node.is-ok .bi { color: #1FA855; }

/* 9 · Íconos de audiencia más corporativos */
.aud-ic { background: #FFFFFF; border-color: rgba(35,35,35,.08); box-shadow: var(--shadow-sm); color: var(--accent-2); }

/* 10 · Pie: lockup oficial apilado */
.footer-word img { width: min(46%, 220px); opacity: 1; }

/* 6 · Brochure animado (páginas que pasan) */
.viz-pdf { min-height: 300px; perspective: 1200px; }
.bro { position: relative; width: min(100%, 250px); aspect-ratio: 3 / 4; }
.bro-page { position: absolute; inset: 0; overflow: hidden; border-radius: 12px; background: #FFFFFF; box-shadow: var(--shadow-lg); transform-origin: left center; opacity: 0; animation: broPage 9s infinite; }
.bro-cover { animation-delay: 0s; }
.bro-gallery { animation-delay: 3s; }
.bro-agent { animation-delay: 6s; }
@keyframes broPage {
  0% { opacity: 0; transform: rotateY(-35deg) translateX(18px); }
  5%, 30% { opacity: 1; transform: none; }
  36%, 100% { opacity: 0; transform: rotateY(28deg) translateX(-14px); }
}
.bro-cover img { width: 100%; height: 100%; object-fit: cover; }
.bro-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(35,35,35,.82)); }
.bro-badge { position: absolute; z-index: 1; top: 10px; left: 10px; padding: 3px 8px; border-radius: 999px; background: var(--orange); color: var(--charcoal); font-size: 12px; font-weight: 700; }
.bro-cover-info { position: absolute; z-index: 1; left: 12px; right: 12px; bottom: 12px; display: grid; gap: 2px; color: #FFFFFF; font-size: 12px; }
.bro-cover-info b { font-size: 16px; }
.bro-cover-info strong { margin-top: 4px; font-size: 18px; }
.bro-gallery { padding: 12px; background: var(--ivory); }
.bro-h { margin: 0 0 8px; font-size: 12px; font-weight: 700; color: var(--ink); }
.bro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; height: calc(100% - 26px); }
.bro-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.bro-agent { display: grid; place-items: center; align-content: center; gap: 8px; padding: 16px; text-align: center; }
.bro-avatar { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--sand); font-size: 12px; font-weight: 700; color: var(--ink); }
.bro-name { margin: 0; display: grid; font-weight: 700; font-size: 14px; color: var(--ink); }
.bro-name small { font-weight: 500; font-size: 12px; color: var(--ink-3); }
.bro-qr { width: 78px; height: 78px; padding: 4px; background: #FFFFFF; border-radius: 6px; box-shadow: var(--shadow-sm); transform: scale(.4); opacity: 0; animation: broPop 9s infinite 6.5s; }
.bro-wa { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: var(--wa); color: var(--charcoal); font-size: 12px; font-weight: 700; box-shadow: var(--shadow-sm); transform: translateY(10px); opacity: 0; animation: broPop 9s infinite 7.1s; }
@keyframes broPop { 0% { opacity: 0; transform: translateY(10px) scale(.6); } 4%, 20% { opacity: 1; transform: none; } 24%, 100% { opacity: 0; } }
.bro-dots { position: absolute; left: 0; right: 0; bottom: -22px; display: flex; justify-content: center; gap: 6px; }
.bro-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--stone); animation: broDot 9s infinite; }
.bro-dots i:nth-child(2) { animation-delay: 3s; } .bro-dots i:nth-child(3) { animation-delay: 6s; }
@keyframes broDot { 0%, 33% { background: var(--orange); } 34%, 100% { background: var(--stone); } }
@media (prefers-reduced-motion: reduce) {
  .bro-page, .bro-qr, .bro-wa, .bro-dots i { animation: none; }
  .bro-cover, .bro-gallery { opacity: 0; }
  .bro-agent, .bro-qr, .bro-wa { opacity: 1; transform: none; }
}

/* v3 ronda 2 */
.pdf-mini-body .pm-meta { font-size: 12px; color: var(--ink-3); }
.pdf-mini-body .pm-price { font-size: 12px; font-weight: 700; color: var(--ink); }
.phone-ui { background: linear-gradient(transparent, rgba(35,35,35,.92) 40%) !important; }
.phone-cap { color: var(--ivory); font-weight: 600; }
.footer-bottom { margin-top: 24px; }
