/* ═══════════════════════════════════════════════════════════════════
   FRECUENCIA ORIGEN · TERRACOTTA · v3.0
   Handoff final desde Claude Design.
   Cambios v2→v3: hosts duo card, tribe marquee, footer row,
   manifesto bleed, padding adjustments, GenderSwap en footer.
   ═══════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────
   TOKENS
   ─────────────────────────────────────── */
.fo-root {
  --bg:          #F2EAD8;
  --bg-2:        #E8D9BF;
  --bg-3:        #D8C6A8;
  --ink:         #1F1612;
  --ink-soft:    #2A1F17;
  --ink-dim:     #8C7560;
  --line:        rgba(42, 31, 23, 0.10);
  --line-strong: rgba(42, 31, 23, 0.22);

  --gold:      #C4934A;
  --gold-soft: rgba(196, 147, 74, 0.55);
  --gold-deep: #6E4520;
  --aqua:      #B8593B;
  --aqua-soft: rgba(184, 89, 59, 0.55);
  --aqua-deep: #6E4520;
  --rose:      #B8593B;

  --accent:      var(--gold);
  --accent-soft: var(--gold);

  --warm-tint:        rgba(110, 69, 32, 0.05);
  --warm-tint-strong: rgba(110, 69, 32, 0.09);

  --font-head: 'Instrument Serif', Georgia, serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-x: 56px;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ───────────────────────────────────────
   RESET
   ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  background: #F2EAD8;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.fo-root * { box-sizing: border-box; }
.fo-root h1, .fo-root h2, .fo-root h3 { margin: 0; font-weight: 400; letter-spacing: -0.025em; }
.fo-root em { font-style: italic; font-family: var(--font-head); color: var(--accent); }
.fo-root p { margin: 0 0 14px; }

/* ───────────────────────────────────────
   BG ATMOSPHERE
   ─────────────────────────────────────── */
.fo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.fo-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.6;
  mix-blend-mode: multiply;
}
.fo-orb-1 {
  width: 760px; height: 760px; top: -180px; left: -150px;
  background: radial-gradient(circle, rgba(184, 89, 59, 0.85) 0%, transparent 64%);
  opacity: 0.6;
  animation: foOrbDrift1 22s ease-in-out infinite;
}
.fo-orb-2 {
  width: 860px; height: 860px; top: 1100px; right: -220px;
  background: radial-gradient(circle, rgba(196, 147, 74, 0.85) 0%, transparent 60%);
  opacity: 0.62;
  animation: foOrbDrift2 28s ease-in-out infinite;
}
.fo-orb-3 {
  width: 680px; height: 680px; top: 2600px; left: 160px;
  background: radial-gradient(circle, rgba(110, 69, 32, 0.75) 0%, transparent 64%);
  opacity: 0.5;
  animation: foOrbDrift3 32s ease-in-out infinite;
}
.fo-orb-4 {
  width: 720px; height: 720px; top: 3900px; right: -120px;
  background: radial-gradient(circle, rgba(184, 89, 59, 0.7) 0%, transparent 62%);
  opacity: 0.48;
  animation: foOrbDrift1 26s ease-in-out infinite reverse;
}

@keyframes foOrbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1);       opacity: 0.6; }
  50%      { transform: translate(60px, 40px) scale(1.08); opacity: 0.72; }
}
@keyframes foOrbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1);        opacity: 0.62; }
  50%      { transform: translate(-50px, 60px) scale(1.06); opacity: 0.76; }
}
@keyframes foOrbDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1);        opacity: 0.5; }
  50%      { transform: translate(40px, -50px) scale(1.1); opacity: 0.62; }
}

.fo-noise {
  position: absolute; inset: 0;
  opacity: 0.12;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.fo-vignette {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%,   rgba(196, 147, 74, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 0%  30%,  rgba(184, 89,  59, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 70%, rgba(110, 69,  32, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 90% 30% at 50% 100%, rgba(110, 69,  32, 0.13) 0%, transparent 60%);
}

.fo-embers {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.fo-ember {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 0 0 6px rgba(110, 69, 32, 0.3);
  opacity: 0;
  animation: foEmberRise linear infinite;
}
@keyframes foEmberRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.35; }
  100% { transform: translateY(-120vh) translateX(var(--drift, 30px)); opacity: 0; }
}

/* ───────────────────────────────────────
   HERO
   ─────────────────────────────────────── */
.fo-hero {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 56px 52px;
  text-align: center;
}
@media (max-width: 720px) {
  .fo-hero {
    padding: 56px 24px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .fo-hero .fo-h1,
  .fo-hero .fo-sub,
  .fo-hero .fo-vsl { width: 100%; }
  .fo-hero .fo-vsl {
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
    max-width: none;
  }
  .fo-play { width: 48px; height: 48px; }
  .fo-play svg { width: 29px; height: 29px; }
  .fo-hero .fo-note {
    order: 1;
    margin-top: 28px;
    margin-bottom: 0;
  }
}

.fo-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-family: var(--font-head);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.fo-wordmark-name {
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 55px);
}
.fo-wordmark-name em {
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.fo-wordmark-mark {
  color: var(--gold);
  display: inline-flex;
  opacity: 0.85;
  position: relative;
  margin-top: 10px;
  animation: foMarkPulse 6s ease-in-out infinite;
}
.fo-wordmark-mark svg {
  width: 78px;
  height: 78px;
}
.fo-wordmark-mark::before {
  content: '';
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 147, 74, 0.32) 0%, rgba(196, 147, 74, 0.10) 40%, transparent 70%);
  filter: blur(12px);
  z-index: -1;
  animation: foMarkHalo 6s ease-in-out infinite;
}
.fo-wordmark-mark svg circle:first-child {
  transform-origin: center;
  transform-box: fill-box;
  animation: foMarkRing 6s ease-in-out infinite;
}
.fo-wordmark-mark svg circle:last-child {
  transform-origin: center;
  transform-box: fill-box;
  animation: foMarkDot 6s ease-in-out infinite;
}
@keyframes foMarkPulse {
  0%, 100% { opacity: 0.8; }
  50%      { opacity: 1; }
}
@keyframes foMarkHalo {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50%      { opacity: 1;   transform: scale(1.12); }
}
@keyframes foMarkRing {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
@keyframes foMarkDot {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.22); }
}

.fo-h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 44px;
  font-weight: 400;
  color: var(--ink);
}
.fo-h1 em {
  font-family: var(--font-head);
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--aqua) 50%, var(--rose) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  /* Evita el clip de descenders (p, g, j) en gradient text */
  display: inline-block;
  padding-bottom: 0.08em;
  line-height: 1.05;
}

/* o↔a swap (también usado en footer promise) */
.fo-swap {
  display: inline-grid;
  vertical-align: baseline;
}
.fo-swap-o, .fo-swap-a {
  grid-area: 1 / 1;
  text-align: center;
  will-change: opacity, transform;
  background: linear-gradient(135deg, var(--gold) 0%, var(--aqua) 60%, var(--rose) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fo-swap-o { animation: foSwapO 5.4s cubic-bezier(.4, 0, .2, 1) infinite; }
.fo-swap-a { animation: foSwapA 5.4s cubic-bezier(.4, 0, .2, 1) infinite; }
@keyframes foSwapO {
  0%, 42%   { opacity: 1; transform: translateY(0); }
  50%, 92%  { opacity: 0; transform: translateY(-0.14em); }
  100%      { opacity: 1; transform: translateY(0); }
}
@keyframes foSwapA {
  0%, 42%   { opacity: 0; transform: translateY(0.14em); }
  50%, 92%  { opacity: 1; transform: translateY(0); }
  100%      { opacity: 0; transform: translateY(0.14em); }
}
@media (prefers-reduced-motion: reduce) {
  .fo-swap-o, .fo-swap-a { animation: none; }
  .fo-swap-a { opacity: 0; }
  .fo-swap-o { opacity: 1; }
}

.fo-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 880px;
  margin: 20px auto 40px;
  text-align: center;
}

.fo-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--gold-deep);
  margin-top: 16px;
  margin-bottom: 44px;
  padding: 6px 14px 6px 12px;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(196, 147, 74, 0.10) 0%, rgba(196, 147, 74, 0.04) 100%);
  border: 1px solid rgba(196, 147, 74, 0.28);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
}
.fo-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: foRing 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes foRing {
  0%   { box-shadow: 0 0 0 0 rgba(196, 147, 74, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(196, 147, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 147, 74, 0); }
}

/* VSL */
.fo-vsl {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #1F1612;
  box-shadow:
    /* inner reflectance — luxe edge */
    0 1px 0 rgba(255, 250, 243, 0.55) inset,
    0 -1px 0 rgba(31, 22, 18, 0.35) inset,
    /* crisp 1px outline — museum print definition */
    0 0 0 1px rgba(110, 69, 32, 0.42),
    /* warm gold bloom — premium aura */
    0 0 32px -2px rgba(196, 147, 74, 0.22),
    /* refined deep shadow — floating presence */
    0 36px 72px -18px rgba(31, 22, 18, 0.40),
    0 18px 36px -12px rgba(42, 31, 23, 0.22),
    /* tight close shadow — grounding */
    0 6px 14px rgba(31, 22, 18, 0.14);
  transition:
    transform .6s cubic-bezier(.2, .7, .2, 1),
    box-shadow .6s cubic-bezier(.2, .7, .2, 1);
  cursor: pointer;
}
.fo-vsl:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 250, 243, 0.65) inset,
    0 -1px 0 rgba(31, 22, 18, 0.40) inset,
    0 0 0 1px rgba(110, 69, 32, 0.62),
    0 0 48px -2px rgba(196, 147, 74, 0.38),
    0 44px 84px -18px rgba(31, 22, 18, 0.46),
    0 22px 44px -12px rgba(110, 69, 32, 0.28),
    0 8px 16px rgba(31, 22, 18, 0.16);
}
.fo-vsl-glow {
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 50%, var(--aqua) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.85;
  pointer-events: none;
}
.fo-vsl-frame { position: relative; aspect-ratio: 16 / 9; }
.fo-vsl-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(242, 234, 216, 0.45);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(135deg, #2A1F17 0%, #1F1612 60%, #251B12 100%);
}
.fo-vsl-placeholder small {
  display: block;
  margin-top: 8px;
  text-transform: none;
  font-style: italic;
  letter-spacing: normal;
  opacity: 0.6;
}
.fo-vsl-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(42, 31, 23, 0.05) 0%, rgba(42, 31, 23, 0.18) 100%);
  pointer-events: none;
}
.fo-play {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(242, 234, 216, 0.96);
  color: #1F1612;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(20px);
  padding: 0;
  position: relative;
  box-shadow:
    0 8px 28px rgba(42, 31, 23, 0.28),
    0 0 0 6px rgba(196, 147, 74, 0.08);
  transition:
    transform .45s cubic-bezier(.2, .7, .2, 1),
    box-shadow .45s cubic-bezier(.2, .7, .2, 1);
  animation: foPlayRestBreath 3.8s ease-in-out infinite;
}
/* Sonar emission ring — invitación al play */
.fo-play::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 147, 74, 0.45);
  pointer-events: none;
  animation: foPlaySonar 3.8s cubic-bezier(.2, .7, .2, 1) infinite;
}
@keyframes foPlayRestBreath {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 8px 28px rgba(42, 31, 23, 0.28),
      0 0 0 5px rgba(196, 147, 74, 0.10),
      0 0 0 12px rgba(196, 147, 74, 0.03);
  }
  50% {
    transform: scale(1.025);
    box-shadow:
      0 10px 32px rgba(42, 31, 23, 0.32),
      0 0 0 9px rgba(196, 147, 74, 0.07),
      0 0 0 18px rgba(196, 147, 74, 0.015);
  }
}
@keyframes foPlaySonar {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.65); opacity: 0;    }
  100% { transform: scale(1.65); opacity: 0;    }
}
.fo-vsl:hover .fo-play {
  transform: scale(1.06);
  animation: foPlayHaloBreath 2.2s ease-in-out infinite;
}
.fo-vsl:hover .fo-play::after {
  animation-duration: 2.4s;
  border-color: rgba(196, 147, 74, 0.7);
}
@keyframes foPlayHaloBreath {
  0%, 100% {
    box-shadow:
      0 10px 32px rgba(42, 31, 23, 0.30),
      0 0 0 6px rgba(196, 147, 74, 0.18),
      0 0 0 14px rgba(196, 147, 74, 0.06);
  }
  50% {
    box-shadow:
      0 12px 38px rgba(42, 31, 23, 0.32),
      0 0 0 14px rgba(196, 147, 74, 0.10),
      0 0 0 26px rgba(196, 147, 74, 0.03);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fo-play,
  .fo-vsl:hover .fo-play { animation: none; }
  .fo-play::after { animation: none; opacity: 0; }
}
.fo-vsl-poster {
  display: block;
}

/* ───────────────────────────────────────
   SECTIONS
   ─────────────────────────────────────── */
.fo-section {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 56px;
}
.fo-section--whatis { padding-top: 40px; }
@media (max-width: 720px) {
  .fo-section { padding: 48px 24px; }
  .fo-section--whatis { padding-top: 28px; }
}

.fo-sec-eye {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fo-sec-n {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}
.fo-sec-line {
  flex: 0 0 60px;
  height: 1px;
  background: var(--line-strong);
}

.fo-h2 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  font-weight: 400;
  max-width: 760px;
  color: var(--ink);
  padding-bottom: 0.05em;
}
.fo-h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Evita el clip de descenders (p, g, j) en gradient text */
  display: inline-block;
  padding-bottom: 0.1em;
  line-height: 1.12;
}

.fo-intro {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 56px;
}

/* ───────────────────────────────────────
   01 · QUÉ ES · QUÉ NO ES
   ─────────────────────────────────────── */
.fo-iss {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}
@media (max-width: 880px) {
  .fo-iss {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.fo-iss-label { margin-bottom: 24px; }
.fo-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--line-strong);
}
.fo-tag-pos {
  color: var(--gold-deep);
  border-color: rgba(196, 147, 74, 0.4);
  background: rgba(196, 147, 74, 0.10);
}
.fo-tag-neg { color: var(--ink-dim); }
.fo-iss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px) {
  .fo-iss-grid { grid-template-columns: 1fr; gap: 10px; }
  .fo-iss { gap: 32px; }
  .fo-iss-card { padding: 16px; }
  .fo-iss-num { font-size: 14px; margin-bottom: 6px; }
  .fo-iss-t { font-size: 16px; margin-bottom: 4px; line-height: 1.25; }
  .fo-iss-d { font-size: 13px; line-height: 1.5; }
  .fo-iss-isnt { gap: 10px; margin-top: 20px; }
  .fo-iss-isnt li { font-size: 14px; padding-bottom: 10px; }
}
.fo-iss-card {
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.5) 0%, rgba(255, 250, 243, 0.2) 100%);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: transform .3s, border-color .3s, background .3s;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
.fo-iss-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 147, 74, 0.35);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.8) 0%, rgba(255, 250, 243, 0.4) 100%);
}
.fo-iss-num {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 12px;
}
.fo-iss-t {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.fo-iss-d {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.fo-iss-isnt {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}
.fo-iss-isnt li {
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.fo-iss-isnt li:last-child { border-bottom: none; }
.fo-x {
  color: var(--rose);
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
  opacity: 0.7;
}

/* ───────────────────────────────────────
   02 · MANIFIESTO · bleed + Flor fija
   ─────────────────────────────────────── */
.fo-manifesto {
  position: relative;
  background: radial-gradient(ellipse 90% 80% at 50% 40%, rgba(196, 147, 74, 0.10) 0%, rgba(110, 69, 32, 0.06) 50%, transparent 80%);
  margin-left: calc(-1 * var(--section-x));
  margin-right: calc(-1 * var(--section-x));
  padding-left: 112px;
  padding-right: 112px;
  max-width: none;
  width: calc(100% + var(--section-x) * 2);
  overflow: hidden;
}
@media (max-width: 880px) {
  .fo-manifesto {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 48px;
    padding-right: 48px;
    width: calc(100% + 48px);
  }
}
@media (max-width: 720px) {
  .fo-manifesto {
    padding-left: 36px;
    padding-right: 36px;
  }
}
.fo-manifesto-geometry {
  /* Responsiva: 80% del ancho del manifiesto (con cap 900px), cuadrada.
     Centrada al box con padding mediante translate. */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 900px;
  aspect-ratio: 1 / 1;
  z-index: 0;
  pointer-events: none;
}
.fo-manifesto-geometry svg,
.fo-manifesto-geometry img {
  width: 100%;
  height: 100%;
  display: block;
}
.fo-manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.fo-quote-wrap {
  position: relative;
  margin: 48px 0;
}
.fo-quote-glow {
  position: absolute;
  inset: -40px;
  border-radius: 30px;
  background: radial-gradient(ellipse at center, rgba(196, 147, 74, 0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.fo-quote {
  position: relative;
  padding: 40px 0;
  font-family: var(--font-head);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.15;
  color: var(--ink);
  text-align: center;
  letter-spacing: -0.025em;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  margin: 0;
}
.fo-quote em {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--aqua-deep) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fo-prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
}
.fo-prose em.fo-prose-mark {
  color: var(--gold-deep);
  font-size: 1.2em;
  letter-spacing: -0.015em;
}
.fo-beliefs {
  display: grid;
  gap: 0;
  margin-top: 56px;
}
.fo-belief {
  display: grid;
  grid-template-columns: 80px 240px 1fr;
  gap: 32px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  transition: padding-left .3s, background .3s;
}
@media (max-width: 880px) {
  .fo-belief {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }
  .fo-belief-n {
    font-size: 16px;
    align-self: baseline;
  }
  .fo-belief-d { grid-column: 2 / -1; margin-top: 8px; }
}
@media (max-width: 720px) {
  .fo-beliefs { margin-top: 24px; }
  .fo-belief { padding: 10px 0; gap: 8px; }
  .fo-belief-n { font-size: 15px; }
  .fo-belief-t { font-size: 15px; line-height: 1.2; }
  .fo-belief-d { font-size: 13px; line-height: 1.45; margin-top: 2px; }
  .fo-closing-line { font-size: 22px; line-height: 1.5; padding-top: 2.4em; }
}
.fo-belief:hover {
  padding-left: 12px;
  background: rgba(110, 69, 32, 0.04);
}
.fo-belief:last-child { border-bottom: 1px solid var(--line); }
.fo-belief-n {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--accent);
  font-size: 28px;
}
.fo-belief-t {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.fo-belief-d {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.fo-closing-line {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 0;
  padding-top: 2.6em;
  text-align: center;
}

/* ───────────────────────────────────────
   03 · HOSTS · duo card único
   ─────────────────────────────────────── */
.fo-hosts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.fo-host-duo {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  min-height: 440px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.55) 0%, rgba(255, 250, 243, 0.22) 100%);
  backdrop-filter: blur(12px);
  transition: transform .35s, border-color .35s, background .35s;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 3px rgba(42, 31, 23, 0.04);
  position: relative;
}
.fo-host-duo:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 147, 74, 0.4);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.85) 0%, rgba(255, 250, 243, 0.4) 100%);
}
.fo-host-portrait {
  position: relative;
  margin-bottom: 0;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}
.fo-host-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fo-host-glow {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(ellipse at center, rgba(196, 147, 74, 0.22) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.7;
  z-index: -1;
}
.fo-host-body {
  align-self: center;
  padding: 48px 48px 48px 52px;
}
.fo-host-tag {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fo-host-name {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.fo-host-role {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.fo-host-bio {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 720px) {
  .fo-host-duo {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .fo-host-portrait { aspect-ratio: 3 / 4; }
  .fo-host-body { padding: 36px; }
}

/* ───────────────────────────────────────
   04 · TRIBU · marquee scrolling
   ─────────────────────────────────────── */
.fo-tribe-marquee {
  margin: 48px calc(-1 * var(--section-x)) 0;
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
}
.fo-tribe-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: foTribeScroll 55s linear infinite;
}
@media (hover: hover) and (pointer: fine) {
  .fo-tribe-marquee:hover .fo-tribe-track {
    animation-play-state: paused;
  }
}
/* Premium · Polaroid editorial gallery
   Frame, persistent shadow, inner highlight, decorative hairline */
.fo-tribe-card {
  flex: 0 0 auto;
  width: 760px;
  padding: 14px 14px 36px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.88) 0%, rgba(248, 239, 221, 0.72) 100%);
  border: 1px solid rgba(196, 147, 74, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 14px 36px rgba(42, 31, 23, 0.12),
    0 3px 8px rgba(42, 31, 23, 0.08);
  transition:
    transform .5s cubic-bezier(.2, .7, .2, 1),
    box-shadow .5s cubic-bezier(.2, .7, .2, 1),
    border-color .5s cubic-bezier(.2, .7, .2, 1);
  position: relative;
}
.fo-tribe-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(42, 31, 23, 0.12);
}
/* Hairline gold decorativa en el borde inferior — referencia museum print */
.fo-tribe-card::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  transition: width .5s cubic-bezier(.2, .7, .2, 1), opacity .5s cubic-bezier(.2, .7, .2, 1);
}
@media (hover: hover) and (pointer: fine) {
  .fo-tribe-card:hover {
    transform: translateY(-6px);
    z-index: 2;
    border-color: rgba(196, 147, 74, 0.45);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 24px 56px rgba(110, 69, 32, 0.22),
      0 5px 14px rgba(42, 31, 23, 0.12);
  }
  .fo-tribe-card:hover::after {
    width: 64px;
    opacity: 0.85;
  }
}

/* VSL poster image (Vimeo facade) */
.fo-vsl-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.08) saturate(1.06) contrast(1.02);
}
.fo-vsl.is-playing .fo-vsl-overlay,
.fo-vsl.is-playing .fo-vsl-poster { display: none; }
.fo-vsl iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@keyframes foTribeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 10px)); }
}
@media (max-width: 880px) {
  .fo-tribe-card { width: 480px; }
}
@media (max-width: 720px) {
  .fo-tribe-card { width: 400px; }
  .fo-tribe-marquee { margin: 32px -24px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fo-tribe-track { animation: none; }
}

/* ───────────────────────────────────────
   05 · PRICING
   ─────────────────────────────────────── */
.fo-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) {
  .fo-prices { grid-template-columns: 1fr; }
  .fo-price { padding: 32px 26px; }
  .fo-price-name { font-size: clamp(26px, 3vw, 32px); margin-bottom: 14px; }
  .fo-price-num { font-size: clamp(42px, 5.6vw, 56px); }
  .fo-price-ars { margin-bottom: 22px; }
  .fo-price-feat { margin: 0 0 24px; gap: 10px; }
}
.fo-price {
  position: relative;
  padding: 36px 29px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.55) 0%, rgba(255, 250, 243, 0.22) 100%);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform .35s, border-color .35s;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 3px rgba(42, 31, 23, 0.04);
  display: flex;
  flex-direction: column;
}
.fo-price > .fo-btn {
  margin-top: auto;
}
.fo-price:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.fo-price.is-primary {
  background: linear-gradient(180deg, rgba(196, 147, 74, 0.16) 0%, rgba(184, 89, 59, 0.08) 100%);
  border-color: rgba(196, 147, 74, 0.5);
  overflow: visible;
}
.fo-price.is-primary:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 147, 74, 0.78);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 14px 40px rgba(184, 89, 59, 0.18),
    0 4px 12px rgba(110, 69, 32, 0.08);
}
.fo-price.is-primary:hover::before {
  opacity: 0.85;
  transform: scale(1.06);
}
/* Halo cálido respirando detrás de la card primary */
.fo-price.is-primary::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 32px;
  background: radial-gradient(ellipse 75% 80% at 50% 50%, rgba(196, 147, 74, 0.22) 0%, rgba(184, 89, 59, 0.10) 45%, transparent 75%);
  filter: blur(24px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  animation: foPriceGlow 6.5s ease-in-out infinite;
}
@keyframes foPriceGlow {
  0%, 100% { opacity: 0.4;  transform: scale(0.98); }
  50%      { opacity: 0.75; transform: scale(1.04); }
}
/* Línea de brillo dorado que barre el borde superior */
.fo-price-shine {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196, 147, 74, 0.35) 30%,
    var(--gold) 50%,
    rgba(196, 147, 74, 0.35) 70%,
    transparent 100%);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  animation: foPriceShine 5s ease-in-out infinite;
}
@keyframes foPriceShine {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}
.fo-price-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gold-deep);
  background: rgba(196, 147, 74, 0.12);
  border: 1px solid rgba(196, 147, 74, 0.32);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.fo-price.is-primary .fo-price-badge {
  background: rgba(196, 147, 74, 0.22);
  border-color: rgba(196, 147, 74, 0.5);
  position: relative;
  padding-left: 24px;
}
/* Punto cálido pulsando en el badge */
.fo-price.is-primary .fo-price-badge::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold);
  animation: foRing 2.5s ease-out infinite;
}
/* Flecha del CTA primary se desliza al hacer hover sobre la card */
.fo-price.is-primary .fo-btn-primary svg {
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}
.fo-price.is-primary:hover .fo-btn-primary svg {
  transform: translateX(3px);
}
.fo-price-name {
  font-family: var(--font-head);
  font-size: clamp(27px, 3.2vw, 34px);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.fo-price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.fo-price-cur {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.fo-price-num {
  font-family: var(--font-head);
  font-size: clamp(45px, 6vw, 60px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums lining-nums;
}
.fo-price-per {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-dim);
  margin-left: 4px;
}
.fo-price-ars {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 25px;
}
.fo-price-equiv {
  color: var(--gold-deep);
  font-style: italic;
  font-family: var(--font-head);
}
.fo-price-feat {
  margin: 0 0 28px;
  display: grid;
  gap: 11px;
}
.fo-price-feat li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.fo-price-feat li svg {
  flex: 0 0 14px;
  color: var(--accent);
}
.fo-price-note {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-dim);
  text-align: center;
}

/* ───────────────────────────────────────
   BUTTONS (premium)
   ─────────────────────────────────────── */
.fo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s, background .25s, border-color .25s, color .25s, box-shadow .25s;
  letter-spacing: -0.005em;
  position: relative;
  line-height: 1.4;
}
.fo-btn-primary {
  background: linear-gradient(180deg, #2A1F17 0%, #1F1612 100%);
  color: #F2EAD8;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 8px 24px rgba(42, 31, 23, 0.22),
    0 1px 2px rgba(42, 31, 23, 0.3);
}
.fo-btn-primary:hover {
  background: linear-gradient(180deg, #3A2614 0%, #6E4520 100%);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 12px 32px rgba(110, 69, 32, 0.35),
    0 1px 2px rgba(42, 31, 23, 0.3);
}
.fo-btn-ghost {
  background: linear-gradient(180deg, rgba(110, 69, 32, 0.06) 0%, rgba(110, 69, 32, 0.02) 100%);
  color: var(--ink);
  border-color: var(--line-strong);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
}
.fo-btn-ghost:hover {
  background: linear-gradient(180deg, rgba(110, 69, 32, 0.10) 0%, rgba(110, 69, 32, 0.04) 100%);
  border-color: rgba(196, 147, 74, 0.5);
}
.fo-btn-full { width: 100%; }

/* ───────────────────────────────────────
   06 · FAQ
   ─────────────────────────────────────── */
.fo-faq {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.fo-faq-item {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.55) 0%, rgba(255, 250, 243, 0.22) 100%);
  border: 1px solid var(--line);
  transition: background .25s, border-color .25s;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
.fo-faq-item:hover {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.85) 0%, rgba(255, 250, 243, 0.4) 100%);
}
.fo-faq-item.open {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.95) 0%, rgba(255, 250, 243, 0.5) 100%);
  border-color: rgba(196, 147, 74, 0.32);
}
.fo-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink);
  letter-spacing: -0.01em;
  text-align: left;
  font-weight: 500;
  background: none;
  cursor: pointer;
  border: none;
}
.fo-faq-toggle {
  color: var(--accent);
  display: flex;
  align-items: center;
  transition: transform .3s;
  flex-shrink: 0;
}
.fo-faq-vert {
  transition: opacity .25s;
  transform-origin: center;
}
.fo-faq-item.open .fo-faq-vert { opacity: 0; }
.fo-faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.fo-faq-item.open .fo-faq-a-wrap { max-height: 400px; }
.fo-faq-a {
  padding: 0 26px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 720px;
}

/* ───────────────────────────────────────
   FOOTER
   ─────────────────────────────────────── */
.fo-footer {
  position: relative;
  z-index: 2;
  padding: 80px 56px 60px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  text-align: center;
}
@media (max-width: 720px) {
  .fo-footer { padding: 56px 24px 40px; }
}
.fo-foot-promise {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--ink);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.fo-foot-promise em {
  background: linear-gradient(135deg, var(--gold) 0%, var(--aqua) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fo-foot-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-dim);
  gap: 6px;
  text-align: center;
}
.fo-foot-mark {
  color: var(--accent);
  display: inline-flex;
  margin-bottom: 10px;
}
.fo-foot-line { letter-spacing: 0.05em; }

/* ───────────────────────────────────────
   SCROLL REVEAL (IntersectionObserver via scripts.js)
   ─────────────────────────────────────── */
.js-reveal-ready .fo-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.1s cubic-bezier(.2, .7, .2, 1),
    transform 1.1s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.js-reveal-ready .fo-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* ───────────────────────────────────────
   ACCESIBILIDAD · prefers-reduced-motion
   ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js-reveal-ready .fo-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .fo-orb, .fo-ember, .fo-pulse, .fo-wordmark-mark, .fo-tribe-track {
    animation: none !important;
  }
}
