:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0a0a0c;
  --bg-elev: #111114;
  --text: #f6f5f1;
  --muted: #8f8f96;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --gold: #eccf95;
  --gold-2: #b88a4f;
  --violet: #6b4d7a;
  --max: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body { cursor: none; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #111; }

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 9998;
  background: rgba(255,255,255,0.05);
}
.progress__bar {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform-origin: 0 50%; transform: scaleX(0);
}

/* ---------- Cursor ---------- */
.cursor {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot, .cursor__ring {
  position: fixed; top: 0; left: 0;
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0); will-change: transform;
}
.cursor__dot { width: 6px; height: 6px; background: #fff; }
.cursor__ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.85);
  display: grid; place-items: center;
  transition: width .3s var(--ease), height .3s var(--ease),
    background .3s var(--ease), border-color .3s var(--ease);
}
.cursor__label {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: #111;
  opacity: 0; transition: opacity .25s var(--ease); font-weight: 600;
}
.cursor.is-hover .cursor__ring {
  width: 60px; height: 60px;
  background: rgba(236,207,149,0.2); border-color: rgba(236,207,149,0.7);
}
.cursor.has-label .cursor__ring {
  width: 88px; height: 88px;
  background: var(--gold); border-color: var(--gold);
}
.cursor.has-label .cursor__label { opacity: 1; }
@media (hover: none) { body { cursor: auto; } .cursor { display: none; } }

/* ---------- Background FX ---------- */
.grain {
  position: fixed; inset: -10%; z-index: -3; opacity: 0.07;
  background-image: radial-gradient(rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  animation: grainShift 9s steps(6) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 1%); }
  40% { transform: translate(1%, -2%); }
  60% { transform: translate(-1%, 2%); }
  80% { transform: translate(2%, 1%); }
  100% { transform: translate(0, 0); }
}
.glow {
  position: fixed; width: 44rem; height: 44rem; border-radius: 999px;
  filter: blur(110px); opacity: 0.55; z-index: -2; pointer-events: none;
}
.glow--gold { top: -14rem; left: -12rem; background: radial-gradient(closest-side, rgba(236,207,149,0.5), transparent 70%); }
.glow--violet { right: -16rem; bottom: -14rem; background: radial-gradient(closest-side, rgba(107,77,122,0.5), transparent 70%); }
.aurora {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 40% at 30% 20%, rgba(236,207,149,0.07), transparent 60%),
    radial-gradient(50% 40% at 80% 70%, rgba(107,77,122,0.10), transparent 60%);
  opacity: 0.9;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1rem 1.6rem;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease),
    border-color .4s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6,6,6,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding-block: 0.6rem;
}
.nav__brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 600; }
.nav__avatar { width: 32px; height: 32px; border-radius: 999px; object-fit: cover; border: 1px solid var(--line-strong); }
.nav__brand-name { font-size: 0.94rem; }
.nav__links { display: flex; gap: 1.5rem; font-size: 0.86rem; color: var(--muted); }
.nav__links a { position: relative; transition: color .3s var(--ease); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  border-radius: 999px; border: 1px solid var(--line-strong);
  padding: 0.55rem 0.95rem; font-size: 0.85rem; font-weight: 500;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.nav__cta:hover { background: var(--text); color: #0a0a0a; border-color: var(--text); }
@media (max-width: 900px) { .nav__links { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.94rem; line-height: 1;
  transition: transform .35s var(--ease), background .25s var(--ease),
    color .25s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn--solid {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: #100c08; box-shadow: 0 10px 30px rgba(236,207,149,0.18);
}
.btn--solid:hover { box-shadow: 0 14px 40px rgba(236,207,149,0.32); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.btn--lg { padding: 1.15rem 1.7rem; font-size: 1rem; }

/* ---------- Typography ---------- */
.eyebrow {
  margin: 0; text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.74rem; color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--gold);
  box-shadow: 0 0 0 3px rgba(236,207,149,0.18);
}
h1, h2, h3,
.hero__title, .about__title, .plan__title, .community__title,
.results__title, .reels__title, .mantra__quote, .bento__title,
.cta__title, .cta__card h3, .community__pillars h3 {
  font-family: "Fraunces", serif; font-weight: 500;
  letter-spacing: -0.025em; line-height: 0.98; margin: 0;
}
.hero__title-accent, .about__title-accent, .plan__title-accent,
.community__title-accent, .results__accent, .reels__title-accent,
.mantra__accent, .bento__title-accent, .cta__title-accent {
  color: var(--gold); font-style: italic; font-weight: 400;
}
[data-split-line] { display: block; overflow: hidden; }

/* ---------- HERO (clean, no superpositions) ---------- */
.hero {
  position: relative; min-height: 100vh; padding: 0 1.6rem 4rem;
  display: flex; align-items: center; overflow: hidden;
}
.hero__side {
  position: absolute; top: 50%; left: 1.6rem;
  transform: translateY(-50%) rotate(-90deg) translateY(-100%);
  transform-origin: top left;
  font-size: 0.7rem; letter-spacing: 0.42em;
  color: rgba(245,245,243,0.32); white-space: nowrap;
}
.hero__grid {
  max-width: var(--max); width: 100%; margin: 0 auto;
  padding-top: 8rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem;
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; }

/* ---------- Hero ER monogram logo ---------- */
.hero__logo {
  width: 72px; height: 72px;
  margin: 0 0 1.2rem;
  position: relative;
  filter: drop-shadow(0 6px 18px rgba(184,138,79,0.18));
}
.hero__logo svg { width: 100%; height: 100%; display: block; }
.hero__logo .logo-ring {
  transform-box: view-box; transform-origin: 60px 60px;
  animation: logoRingSpin 28s linear infinite;
}
.hero__logo .logo-arc {
  transform-box: view-box; transform-origin: 60px 60px;
  animation: logoArcPulse 4s ease-in-out infinite;
}
@keyframes logoRingSpin { to { transform: rotate(360deg); } }
@keyframes logoArcPulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.hero__brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 0.9rem 0.55rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
  font-family: "Fraunces", serif; font-style: italic;
  color: var(--gold); letter-spacing: 0.02em;
  font-size: 0.92rem;
}
.hero__brand-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(236,207,149,0.55);
}
.hero__title {
  font-size: clamp(3rem, 10.2vw, 8.4rem); margin-top: 1.6rem;
  letter-spacing: -0.035em;
}
.hero__sub {
  margin-top: 1.6rem; color: rgba(245,245,243,0.8);
  max-width: 48ch; font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.55;
  font-family: "Fraunces", serif; font-weight: 300; letter-spacing: -0.005em;
}
.hero__cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ---------- Visually hidden (SEO) ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Hero clips (CapCut-style sliding track) ---------- */
.hero__cartoon {
  width: 100%;
  position: relative;
  align-self: stretch;
}
.hero__cartoon::before {
  content: ""; position: absolute; inset: -8%;
  background: radial-gradient(55% 55% at 50% 50%, rgba(236,207,149,0.16), transparent 72%);
  filter: blur(10px);
  z-index: -1; pointer-events: none;
}
.hero__clips {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 12;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #050505;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.04);
  isolation: isolate;
}
.hero__clips-track {
  display: flex;
  width: 100%; height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.75s cubic-bezier(.78, .02, .2, 1);
  will-change: transform;
}
.hero__clips-track.is-snapping { transition: none; }
.hero__clip {
  position: relative;
  flex: 0 0 100%;
  width: 100%; height: 100%;
  overflow: hidden;
}
.hero__clip video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero__clip::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55));
  pointer-events: none;
}
.hero__clips-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay; opacity: 0.5; pointer-events: none; z-index: 4;
}
.hero__clips-flash {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: translateX(-110%);
  pointer-events: none; z-index: 5;
  mix-blend-mode: screen;
}
.hero__clips-flash.is-firing {
  animation: clipFlash 0.5s cubic-bezier(.7,0,.2,1) forwards;
}
@keyframes clipFlash {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}
.hero__clips-tag {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  font-size: 0.62rem; letter-spacing: 0.18em; font-weight: 600;
  color: var(--text);
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  z-index: 6;
}
.hero__clips-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff4a59;
  box-shadow: 0 0 0 3px rgba(255,74,89,0.18);
  animation: clipLive 1.6s ease-in-out infinite;
}
@keyframes clipLive {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.82); }
}
.hero__clips-bar {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  z-index: 6;
}
.hero__clips-bar span {
  height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.18);
  position: relative; overflow: hidden;
}
.hero__clips-bar span::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform-origin: left center;
  transform: scaleX(0);
}
.hero__clips-bar span.is-filling::after {
  animation: clipFill var(--clip-dur, 3.8s) linear forwards;
}
.hero__clips-bar span.is-done::after { transform: scaleX(1); }
.hero__clips.is-paused .hero__clips-bar span.is-filling::after { animation-play-state: paused; }
@keyframes clipFill {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
.hero__ring-caption {
  margin: 0.75rem 0 0; text-align: center;
  font-family: "Fraunces", serif;
  font-size: 1rem; letter-spacing: -0.005em;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.hero__ring-caption span {
  font-weight: 500; color: var(--text); font-style: italic;
}
.hero__ring-caption em {
  font-style: italic; color: var(--gold);
  font-size: 0.85rem; letter-spacing: 0.02em;
}
@media (max-width: 540px) {
  .hero__clips { aspect-ratio: 9 / 14; }
  .hero__clips-tag { font-size: 0.56rem; }
}

/* ---------- Hero slogan (quote capsule) ---------- */
.hero__slogan {
  margin-top: 1.8rem;
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0.95rem 1.4rem 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 1.4rem;
  background:
    radial-gradient(80% 200% at 0% 50%, rgba(236,207,149,0.16), transparent 70%),
    rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.hero__slogan::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(236,207,149,0.18), transparent);
  transform: translateX(-100%);
  animation: sloganShine 5.5s ease-in-out infinite;
}
@keyframes sloganShine {
  0%, 60% { transform: translateX(-100%); }
  80% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.hero__hearts {
  width: 70px; height: auto;
  display: block; flex-shrink: 0;
}
.hero__hearts .heart {
  transform-box: fill-box; transform-origin: center;
  animation: heartBeat 1.6s ease-in-out infinite;
}
.hero__hearts .h1 { animation-delay: 0s; }
.hero__hearts .h2 { animation-delay: 0.18s; }
.hero__hearts .h3 { animation-delay: 0.36s; }
@keyframes heartBeat {
  0%, 80%, 100% { transform: scale(1); filter: brightness(1); }
  12% { transform: scale(1.22); filter: brightness(1.15); }
  20% { transform: scale(1); }
  32% { transform: scale(1.18); }
  40% { transform: scale(1); }
}
.hero__slogan-quote {
  margin: 0; position: relative; z-index: 1;
  font-family: "Fraunces", serif; font-style: italic; font-weight: 400;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.4; letter-spacing: -0.005em;
  color: rgba(245,245,243,0.92);
  max-width: 36ch;
}
.hero__slogan-quote span { display: block; }
.hero__slogan-quote span:last-child { color: var(--gold); }
@media (max-width: 540px) {
  .hero__slogan { padding: 0.85rem 1.1rem 0.85rem 0.9rem; gap: 0.8rem; }
  .hero__hearts { width: 56px; }
  .hero__slogan-quote { font-size: 0.92rem; }
}

.hero__meta {
  margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 2.2rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.hero__meta strong {
  display: block; font-family: "Fraunces", serif; font-style: italic;
  color: var(--gold); font-weight: 500; font-size: 1.05rem; line-height: 1;
}
.hero__meta span {
  color: var(--muted); font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-top: 0.4rem; display: block;
}


.hero__scroll {
  position: absolute; bottom: 1.6rem; right: 1.6rem; z-index: 2;
  color: var(--muted); font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.6rem;
  writing-mode: vertical-rl;
}
.hero__scroll span {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; padding-top: 7rem; }
  .hero__cartoon { max-width: 460px; margin-inline: auto; }
  .hero__clips { aspect-ratio: 4 / 5; }
}
@media (max-width: 640px) { .hero__side { display: none; } }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden; padding: 1.2rem 0;
}
.marquee__track {
  display: inline-flex; align-items: center;
  white-space: nowrap; gap: 1.8rem;
  animation: marquee 50s linear infinite;
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  font-style: italic;
  color: rgba(245,245,243,0.88);
}
.marquee__track i { color: var(--gold); font-style: normal; }
.marquee__chip {
  width: 52px; height: 52px; border-radius: 999px;
  object-fit: cover; border: 1px solid var(--line-strong);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Transformación (SVG) ---------- */
.transform {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  padding: 7rem 1.6rem 4rem;
  text-align: center;
}
.transform .eyebrow { justify-content: center; }
.transform__head { max-width: 820px; margin: 0 auto 3rem; }
.transform__title {
  margin-top: 1rem; font-size: clamp(2.2rem, 6.4vw, 4.6rem);
}
.transform__title-accent {
  color: var(--gold); font-style: italic; font-weight: 400;
}
.transform__lead {
  margin: 1.4rem auto 0; max-width: 56ch; color: var(--muted);
  font-family: "Fraunces", serif; font-weight: 300;
  line-height: 1.65; font-size: clamp(1rem, 1.3vw, 1.14rem);
}
.transform__stage {
  position: relative;
  margin: 0 auto;
  padding: 2rem 0 1rem;
  background:
    radial-gradient(60% 70% at 50% 60%, rgba(236,207,149,0.10), transparent 70%),
    radial-gradient(60% 70% at 50% 100%, rgba(107,77,122,0.15), transparent 70%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.transform__svg {
  width: 100%; max-width: 920px; height: auto; margin: 0 auto;
  display: block;
}
.transform__captions {
  display: flex; justify-content: center; gap: 2rem;
  margin-top: 1.4rem;
  font-family: "Fraunces", serif; font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.18rem);
}
.transform__caption {
  opacity: 0;
  color: rgba(245,245,243,0.85);
  letter-spacing: -0.005em;
  transition: opacity .35s var(--ease);
}
.transform__caption.is-active { opacity: 1; color: var(--gold); }
@media (max-width: 640px) {
  .transform__captions { flex-direction: column; gap: 0.3rem; }
}

/* SVG figures transforms */
.tfg-head, .tfg-body, .tfg-arm, .tfg-leg {
  transform-box: fill-box;
}
.tfg-arm-l, .tfg-arm-r {
  transform-origin: 0px -30px; /* shoulder */
}
.tfg-leg-l, .tfg-leg-r {
  transform-origin: 0px 40px; /* hip */
}

/* ---------- About ---------- */
.about {
  max-width: var(--max); margin: 0 auto;
  padding: 9rem 1.6rem 6rem;
}
.about__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem; align-items: center;
}
.about__title { font-size: clamp(2.4rem, 7vw, 5.4rem); margin-top: 1rem; }
.about__lead {
  margin-top: 1.4rem; color: var(--muted); line-height: 1.7;
  font-family: "Fraunces", serif; font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  max-width: 50ch; letter-spacing: -0.005em;
}
.about__visual {
  aspect-ratio: 4/5;
  border-radius: 1.6rem; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.about__visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 1.5s var(--ease);
}
.about__visual:hover img { transform: scale(1.05); }
@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---------- Plan 1:1 ---------- */
.plan {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.plan__bg {
  position: absolute; inset: 0; pointer-events: none;
  display: grid; place-items: center; overflow: hidden;
}
.plan__outline {
  font-family: "Fraunces", serif; font-weight: 700;
  font-size: clamp(8rem, 26vw, 22rem);
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236,207,149,0.16);
  white-space: nowrap; line-height: 1;
}
.plan__grid {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 8rem 1.6rem;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem; align-items: center;
}
.plan__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.6rem; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
}
.plan__visual video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}
.plan__tag {
  position: absolute; left: 1rem; bottom: 1rem;
  padding: 0.55rem 0.95rem; border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);
  font-size: 0.78rem; letter-spacing: 0.1em;
  border: 1px solid var(--line-strong);
}
.plan__title { font-size: clamp(2.4rem, 7vw, 5.2rem); margin-top: 1rem; }
.plan__lead {
  margin-top: 1.4rem; color: var(--muted); line-height: 1.7;
  max-width: 50ch;
  font-family: "Fraunces", serif; font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}
.plan__list {
  list-style: none; padding: 0; margin: 2.4rem 0;
  display: grid; gap: 0;
}
.plan__list li {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.2rem 0; border-top: 1px solid var(--line);
}
.plan__list li:last-child { border-bottom: 1px solid var(--line); }
.plan__bullet {
  font-family: "Fraunces", serif; font-style: italic;
  color: var(--gold); font-size: 1.1rem;
  min-width: 36px;
}
.plan__list li strong {
  display: block;
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: 1.15rem; letter-spacing: -0.01em;
}
.plan__list li p {
  margin: 0.35rem 0 0;
  color: var(--muted); line-height: 1.55;
  font-size: 0.95rem;
}
@media (max-width: 960px) {
  .plan__grid { grid-template-columns: 1fr; gap: 3rem; padding-block: 5rem; }
}

/* ---------- Community ---------- */
.community {
  position: relative;
  padding: 9rem 1.6rem 8rem;
  background:
    radial-gradient(60% 50% at 20% 20%, rgba(107,77,122,0.18), transparent 65%),
    radial-gradient(60% 50% at 90% 80%, rgba(236,207,149,0.10), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.community__outline {
  position: absolute; top: 4%; left: -3%; right: -3%;
  pointer-events: none; z-index: 0;
  text-align: center;
}
.community__outline span {
  font-family: "Fraunces", serif; font-weight: 700;
  font-size: clamp(7rem, 20vw, 18rem);
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236,207,149,0.16);
  line-height: 0.85;
}
.community__head {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto 3.2rem; text-align: center;
}
.community .eyebrow { justify-content: center; }
.community__title {
  margin-top: 1rem; font-size: clamp(2.6rem, 9vw, 7rem);
}
.community__lead {
  margin: 1.6rem auto 0; max-width: 58ch; color: var(--muted);
  font-family: "Fraunces", serif; font-weight: 300;
  line-height: 1.7; font-size: clamp(1rem, 1.3vw, 1.14rem);
}
.community__pillars {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto 3.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.community__pillars article {
  border: 1px solid var(--line); border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.005));
  padding: 1.8rem;
  transition: border-color .4s var(--ease), box-shadow .5s var(--ease);
}
.community__pillars article:hover {
  border-color: var(--line-strong);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.community__pillar-num {
  display: inline-block; padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(236,207,149,0.12);
  color: var(--gold);
  font-family: "Fraunces", serif; font-style: italic;
  font-size: 0.85rem; letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.community__pillars h3 {
  font-size: 1.45rem; margin: 0 0 0.7rem; letter-spacing: -0.015em;
}
.community__pillars p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 0.96rem; }

.community__visuals {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto 3rem;
  display: grid; grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.2rem;
}
.community__visual {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: 1.4rem; border: 1px solid var(--line);
  background: var(--bg-elev);
  transition: border-color .4s var(--ease), box-shadow .5s var(--ease);
}
.community__visual:hover { border-color: var(--line-strong); box-shadow: 0 30px 70px rgba(0,0,0,0.55); }
.community__visual img, .community__visual video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 1.4s var(--ease);
}
.community__visual:hover img,
.community__visual:hover video { transform: scale(1.05); }
.community__visual--video { aspect-ratio: 9/14; }
.community__cta {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}
@media (max-width: 960px) {
  .community__pillars { grid-template-columns: 1fr; }
  .community__visuals { grid-template-columns: 1fr 1fr; }
  .community__visual--video { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 560px) {
  .community__visuals { grid-template-columns: 1fr; }
  .community__visual--video { grid-column: auto; aspect-ratio: 9/14; }
}

/* ---------- Results / acompañamiento ---------- */
.results {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.results__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 8rem 1.6rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.results__title { font-size: clamp(2.4rem, 7vw, 5.4rem); margin-top: 1rem; }
.results__lead {
  margin-top: 1.6rem; color: var(--muted);
  font-family: "Fraunces", serif; font-weight: 300;
  line-height: 1.7; max-width: 50ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}
.results__visual {
  aspect-ratio: 4/5;
  border-radius: 1.6rem; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
}
.results__visual video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}
@media (max-width: 960px) {
  .results__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---------- Reels ---------- */
.reels {
  max-width: var(--max); margin: 0 auto;
  padding: 8rem 1.6rem 6rem;
}
.reels__head { margin-bottom: 3rem; max-width: 720px; }
.reels__title { font-size: clamp(2rem, 6vw, 4.4rem); margin-top: 1rem; }
.reels__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.reel {
  position: relative; aspect-ratio: 9 / 16;
  border-radius: 1.3rem; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-elev);
  transform-style: preserve-3d;
  transition: border-color .4s var(--ease), box-shadow .5s var(--ease);
}
.reel:hover { border-color: var(--line-strong); box-shadow: 0 30px 70px rgba(0,0,0,0.55); }
.reel video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transition: transform .8s var(--ease), filter .4s var(--ease);
}
.reel:hover video { transform: scale(1.05); filter: saturate(1.1) contrast(1.08) brightness(1.05); }
.reel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55));
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0; transition: opacity .4s var(--ease);
}
.reel:hover .reel__overlay { opacity: 1; }
.reel__play {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px; border-radius: 999px;
  background: var(--gold); color: #0c0a06;
  box-shadow: 0 8px 24px rgba(236,207,149,0.4);
  transform: scale(0.85); transition: transform .35s var(--ease);
}
.reel:hover .reel__play { transform: scale(1); }
.reels__more {
  margin-top: 2.5rem; display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--text); border-bottom: 1px solid var(--gold);
  padding-bottom: 0.35rem; transition: color .3s var(--ease);
}
.reels__more:hover { color: var(--gold); }
@media (max-width: 760px) { .reels__grid { grid-template-columns: 1fr; } }

/* ---------- Mantra ---------- */
.mantra {
  max-width: 1100px; margin: 0 auto;
  padding: 6rem 1.6rem; text-align: center;
}
.mantra__quote { font-size: clamp(2.4rem, 8vw, 6rem); line-height: 1; }
.mantra__author {
  margin-top: 1.4rem; color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.8rem;
}

/* ---------- Bento (galería) ---------- */
.bento {
  max-width: var(--max); margin: 0 auto;
  padding: 2rem 1.6rem 6rem;
}
.bento__head { margin-bottom: 3rem; max-width: 720px; }
.bento__title { font-size: clamp(2rem, 6vw, 4.4rem); margin-top: 1rem; }
.bento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.bento__tile {
  position: relative; overflow: hidden;
  border-radius: 1.3rem; border: 1px solid var(--line);
  background: var(--bg-elev);
  transition: border-color .4s var(--ease), box-shadow .5s var(--ease);
}
.bento__tile:hover { border-color: var(--line-strong); box-shadow: 0 24px 60px rgba(0,0,0,0.55); }
.bento__tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 1.2s var(--ease), filter .4s var(--ease);
}
.bento__tile:hover img { transform: scale(1.06); filter: saturate(1.1) contrast(1.08) brightness(1.05); }
.bento__tile--xl { grid-column: span 2; grid-row: span 2; }
.bento__tile--wide { grid-column: span 2; }
@media (max-width: 960px) {
  .bento__grid { grid-template-columns: repeat(2, 1fr); }
  .bento__tile--xl, .bento__tile--wide { grid-column: span 2; }
  .bento__tile--xl { grid-row: span 2; }
}
@media (max-width: 560px) {
  .bento__grid { grid-template-columns: 1fr; }
  .bento__tile--xl, .bento__tile--wide { grid-column: span 1; grid-row: auto; aspect-ratio: 1 / 1; }
}

/* ---------- CTA ---------- */
.cta {
  position: relative; padding: 9rem 1.6rem; text-align: center; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: -1px;
  background: radial-gradient(60% 60% at 50% 50%, rgba(236,207,149,0.16), transparent 70%);
  pointer-events: none;
}
.cta__inner { position: relative; max-width: 880px; margin: 0 auto; }
.cta__title { margin: 1.2rem 0 2.5rem; font-size: clamp(2.4rem, 8vw, 5.4rem); }
.cta .eyebrow { justify-content: center; }
.cta__cards {
  position: relative; z-index: 1;
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
  text-align: left;
}
.cta__card {
  padding: 2.2rem;
  border-radius: 1.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.005));
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .4s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease);
}
.cta__card:hover { border-color: var(--line-strong); box-shadow: 0 30px 70px rgba(0,0,0,0.55); }
.cta__card--solid {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(236,207,149,0.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}
.cta__chip {
  display: inline-block; padding: 0.4rem 0.8rem; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.7rem; color: var(--muted); margin: 0 0 0.5rem;
  width: max-content;
}
.cta__card h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0; letter-spacing: -0.02em;
}
.cta__card > p {
  margin: 0; color: var(--muted); line-height: 1.6;
}
.cta__card .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 760px) {
  .cta__cards { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  position: relative; overflow: hidden;
  padding: 4rem 1.6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer__hero {
  display: flex; justify-content: center; align-items: center;
  pointer-events: none;
  margin: 0 auto 2rem;
  max-width: var(--max);
}
.footer__hero span {
  font-family: "Fraunces", serif; font-weight: 700;
  font-size: clamp(5rem, 22vw, 18rem);
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(245,245,243,0.22), rgba(245,245,243,0.02));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.85;
}
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: center;
  padding-bottom: 2.2rem; border-bottom: 1px solid var(--line);
}
.footer__brand-wrap { display: flex; align-items: center; gap: 0.8rem; }
.footer__brand-wrap img { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; border: 1px solid var(--line-strong); }
.footer__brand { font-family: "Fraunces", serif; font-size: 1.4rem; margin: 0; }
.footer__tag {
  margin: 0.25rem 0 0; color: var(--muted);
  letter-spacing: 0.14em; font-size: 0.74rem; text-transform: uppercase;
}
.footer__links { display: flex; gap: 1.6rem; font-size: 0.92rem; color: var(--muted); }
.footer__links a:hover { color: var(--text); }
.footer__legal-wrap {
  margin: 1.6rem 0 0;
  text-align: center;
  display: flex; flex-direction: column; gap: 0.45rem;
  align-items: center;
}
.footer__legal {
  margin: 0; color: var(--muted); font-size: 0.84rem;
  letter-spacing: 0.06em;
}
.footer__legal strong { color: var(--text); font-weight: 600; }
.footer__legal-sub {
  margin: 0; color: var(--muted); font-size: 0.74rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 0.45rem;
}
.footer__legal-sub span:nth-child(even) { color: var(--gold); }

/* ---------- Reveals ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); filter: blur(6px); }
[data-reveal-mask] {
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
  transform: translateY(24px);
}
[data-split-line] .line-inner {
  display: block; transform: translateY(105%); will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  [data-reveal-mask] { clip-path: none !important; -webkit-clip-path: none !important; transform: none !important; }
  [data-split-line] .line-inner { transform: none !important; }
}
