/* SINODE — Stylesheet compartido (sinode.org + landings)
 * v2 sans-serif universal + theme system [data-theme]
 *
 * Tipografia: Inter (universal). Variantes: dark (default) + light.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* === Vars LIVE actuales (matchear sinode.org legacy) === */
  --blue: #4a7fc4;
  --deep: #1a1a2e;
  --sage: #5e8a6e;
  --bg: #080a15;
  --bg-soft: #0f1320;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.88);
  --white-dim: rgba(255, 255, 255, 0.58);
  --rule: rgba(255, 255, 255, 0.06);
  /* Glass DARK — replicacion exacta LIVE (.tbox / .jcard) */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(255, 255, 255, 0.12);
  --glass-blur: 4px;
  /* Texto-sobre-primary (siempre blanco real) */
  --on-primary: #ffffff;
  /* Acento principal — sage (sin gold) */
  --accent: #5e8a6e;
  /* Variable retrocompatible (no usar) */
  --gold: #5e8a6e;
}

[data-theme="light"] {
  --blue: #2a5fa4;
  --deep: #1a1a2e;
  --sage: #4a7058;
  --bg: #ffffff;
  --bg-soft: #f1f4f8;
  --white: #1a1a2e;
  --white-soft: rgba(26, 26, 46, 0.88);
  --white-dim: rgba(26, 26, 46, 0.58);
  --rule: rgba(26, 26, 46, 0.10);
  /* Glass LIGHT — invertido (mismo principio: 3% sutil) */
  --glass-bg: rgba(0, 0, 0, 0.03);
  --glass-bg-hover: rgba(0, 0, 0, 0.06);
  --glass-border: rgba(0, 0, 0, 0.06);
  --glass-border-hover: rgba(0, 0, 0, 0.12);
  --glass-blur: 4px;
  --accent: #4a7058;
  --gold: #4a7058;
}

/* === Glass utility (replicacion .tbox / .jcard del LIVE) === */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: background 0.3s, border-color 0.3s;
}
.glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--white-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background 200ms ease, color 200ms ease;
}

/* === Theme toggle button (dentro de .sidebar-actions) === */
.theme-toggle {
  background: rgba(8,10,21,.6);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s, border-color 0.2s, color 0.2s, background 0.2s;
}
.theme-toggle:hover { transform: scale(1.08); border-color: var(--sage); color: var(--sage); background: rgba(94,138,110,.12); }
[data-theme="light"] .theme-toggle {
  background: rgba(255,255,255,.6);
  border-color: rgba(0,0,0,.15);
  color: rgba(26,26,46,.7);
}
[data-theme="light"] .theme-toggle:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: rgba(74,112,88,.12);
}
.theme-toggle__icon-sun,
.theme-toggle__icon-moon { display: none; line-height: 1; }
[data-theme="dark"] .theme-toggle__icon-sun,
:root:not([data-theme="light"]) .theme-toggle__icon-sun { display: block; }
[data-theme="light"] .theme-toggle__icon-moon { display: block; }

a { color: var(--blue); text-decoration: none; transition: color 180ms ease; }
a:hover { color: var(--sage); }

img { max-width: 100%; display: block; }

/* === Layout primitives === */
.section {
  padding: 80px 24px;
  position: relative;
}
/* Opt-in: aplica solo a secciones marcadas explicitamente */
.section--full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section--alt { background: var(--bg-soft); }
.section--dark { background: var(--bg); }
.container { max-width: 1100px; margin: 0 auto; }
.container--narrow { max-width: 760px; margin: 0 auto; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

/* === Headings === */
h1, h2, h3 { color: var(--white); font-weight: 400; }

h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
}

p { margin-bottom: 14px; max-width: 65ch; }

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1.5px solid var(--sage);
  color: var(--sage);
  background: transparent;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
}
.btn:hover {
  background: var(--sage);
  color: var(--on-primary);
}
.btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--on-primary);
}
.btn--primary:hover { background: var(--sage); border-color: var(--sage); color: var(--on-primary); }
.btn--gold {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--on-gold);
}
.btn--gold:hover { background: var(--blue); border-color: var(--blue); color: var(--on-primary); }
.btn--lg { font-size: 17px; padding: 18px 42px; }

/* === Versiculos === */
.verse {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--white-soft);
  border-left: 2px solid var(--sage);
  padding-left: 22px;
  margin: 24px 0;
}
.verse__ref {
  display: block;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--sage);
  margin-top: 10px;
  text-transform: uppercase;
}

/* === Cards === */
.cards {
  display: grid;
  gap: 24px;
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--6 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--2x2 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 640px) { .cards--2x2 { grid-template-columns: 1fr; } }

/* === Waitlist form (Atrio) === */
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 24px auto 0;
  align-items: stretch;
}
.waitlist-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--glass-bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
}
.waitlist-form input[type="email"]::placeholder { color: var(--white-dim); }
.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--blue);
}
.waitlist-form button { white-space: nowrap; }
.waitlist-feedback {
  margin-top: 16px;
  font-size: 14px;
  color: var(--sage);
  text-align: center;
}
@media (max-width: 540px) {
  .waitlist-form { flex-direction: column; }
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
  transition: all 240ms ease;
  text-decoration: none;
  color: var(--white-soft);
}
.card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--sage);
  transform: translateY(-3px);
}
.card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--sage);
}
.card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
}
.card__teaser {
  font-size: 14px;
  line-height: 1.55;
  color: var(--white-dim);
}

/* === Persona buttons (S2) === */
.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.persona-card {
  display: block;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  text-decoration: none;
  transition: all 240ms ease;
}
.persona-card:hover {
  background: rgba(74, 127, 196, 0.1);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.persona-card__title {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 8px;
}
.persona-card__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--sage);
  text-transform: uppercase;
}

/* === FAQ === */
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.faq-a { color: var(--white-dim); font-size: 16px; line-height: 1.6; }

/* === Email subscribe === */
.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto 0;
}
.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--white);
}
.subscribe-form input::placeholder { color: var(--white-dim); }
.subscribe-form input:focus { outline: none; border-color: var(--sage); }

/* === Footer === */
.footer {
  background: var(--footer-bg, #050709);
  padding: 70px 24px 30px;
  border-top: 1px solid var(--rule);
  color: var(--white-soft);
}
[data-theme="light"] .footer {
  --footer-bg: #1a1a2e;
  color: rgba(255,255,255,.85);
}
[data-theme="light"] .footer .footer__title,
[data-theme="light"] .footer .footer__heading,
[data-theme="light"] .footer h3,
[data-theme="light"] .footer a {
  color: rgba(255,255,255,.92);
}
[data-theme="light"] .footer .footer__list a { color: rgba(255,255,255,.65); }
[data-theme="light"] .footer .footer__list a:hover { color: var(--sage); }
[data-theme="light"] .footer .footer__bottom { color: rgba(255,255,255,.55); }
[data-theme="light"] .footer .footer__heading { color: var(--sage); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 50px;
}
.footer__title {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__tagline {
  font-style: italic;
  color: var(--white-dim);
  font-size: 14px;
}
.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__list { list-style: none; }
.footer__list li { margin-bottom: 8px; font-size: 14px; }
.footer__list a { color: var(--white-dim); }
.footer__list a:hover { color: var(--sage); }
.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--white-dim);
}
.footer__plausible {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--sage);
}

/* === Hero === */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #080a15 0%, #1a1a2e 60%, #0f1320 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/sinode1.png');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
  overflow: hidden;
}
.hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  /* Vignette LIVE replicado — IGUAL en ambos temas */
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 45%, rgba(8,10,21,.55) 0%, rgba(8,10,21,.94) 70%);
  z-index: 1;
}

/* === Hero stack: 3 cajas-cristal + boton (replica LIVE) === */
.hero__stack {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.hero__card {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.4rem 2.2rem;
}
.hero__card--title {
  padding: 1.5rem 2.5rem 1.2rem;
  border-color: rgba(74,127,196,.12);
}
.hero__card--brand {
  border-color: rgba(94,138,110,.12);
}
.hero__brand-line {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 0.15rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.hero__brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: rgba(255,255,255,.35);
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.hero__sep {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage), var(--blue), transparent);
  margin: 0 auto;
}
.hero__verse {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.4;
  color: rgba(255,255,255,.6);
}
.hero__verse-ref {
  margin-top: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--sage);
  font-weight: 600;
}
.hero__brand {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: clamp(.6em, 3vw, 1.8em);
  color: rgba(255,255,255,.92);
  margin: 0;
  padding-left: clamp(.6em, 3vw, 1.8em); /* compensa letter-spacing trailing */
}
.hero__cta-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid rgba(94,138,110,.3);
  border-radius: 30px;
  background: transparent;
  color: var(--sage);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.hero__cta-btn:hover {
  background: rgba(94,138,110,.1);
  border-color: var(--sage);
  color: var(--sage);
}

/* === Hero variant para landings (sin foto, altura natural compacta) === */
.hero--landing {
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--rule);
  min-height: auto !important;
  padding: 70px 24px 50px;
}
.hero--landing .hero__content {
  /* Reset glass para landings — textos directos sobre gradient */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  max-width: 880px;
}
[data-theme="light"] .hero--landing {
  background: linear-gradient(160deg, #ffffff 0%, #f1f4f8 100%);
}

/* === Sidebar atajos: theme toggle (arriba) + canal links (abajo) === */
.sidebar-actions {
  position: fixed;
  top: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.sidebar-actions > * { pointer-events: auto; }
.channel-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto; /* empuja al fondo */
  align-items: center;
}
.channel-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8,10,21,.6);
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s, border-color 0.2s, color 0.2s, background 0.2s;
}
.channel-link:hover {
  transform: scale(1.08);
  border-color: var(--sage);
  color: var(--sage);
  background: rgba(94,138,110,.12);
}
.channel-link svg { width: 20px; height: 20px; }
[data-theme="light"] .channel-link {
  background: rgba(255,255,255,.6);
  border-color: rgba(0,0,0,.15);
  color: rgba(26,26,46,.7);
}
[data-theme="light"] .channel-link:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: rgba(74,112,88,.12);
}

/* === Blog grid (live feed via CF Worker) === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.blog-loading,
.blog-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--white-dim);
  font-style: italic;
}
.blog-error { color: var(--sage); }
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}
.blog-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}
.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg);
}
.blog-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(94,138,110,0.15), rgba(196,160,74,0.08));
  color: var(--sage);
  font-size: 32px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
}
.blog-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card__category {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.3;
}
.blog-card__desc {
  font-size: 14px;
  color: var(--white-dim);
  margin: 0 0 16px;
  line-height: 1.55;
  flex-grow: 1;
}
.blog-card__meta {
  font-size: 12px;
  color: var(--sage);
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-cta {
  text-align: center;
  margin-top: 16px;
}

/* === Community channels grid === */
.section-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--white-soft);
  font-family: 'Inter', sans-serif;
  font-style: italic;
}
.community-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.community-card {
  display: block;
  padding: 26px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}
.community-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}
.community-card__eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.community-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.3;
}
.community-card p {
  font-size: 15px;
  color: var(--white-dim);
  margin: 0;
  line-height: 1.55;
}
.community-cta {
  text-align: center;
  margin-top: 16px;
}

/* === Atrio block === */
.atrio-block {
  background: linear-gradient(135deg, rgba(196, 160, 74, 0.1), rgba(94, 138, 110, 0.06));
  border: 1px solid rgba(196, 160, 74, 0.25);
  border-radius: 10px;
  padding: 50px 40px;
  text-align: center;
}
.atrio-block h2 { color: var(--sage); }

/* === Resource cards === */
.resource-card {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  transition: all 240ms ease;
}
.resource-card:hover {
  background: rgba(196, 160, 74, 0.08);
  border-color: var(--sage);
}
.resource-card__type {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.resource-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.resource-card__pages {
  font-size: 13px;
  color: var(--white-dim);
}

/* === Empty fallback (S9, S10) === */
.empty-fallback {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--rule);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  color: var(--white-dim);
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
}
.empty-fallback__cta {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 1px;
  color: var(--blue);
  text-transform: uppercase;
}

/* === Section headers === */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head--left { text-align: left; }

/* === Spotlight (S3) === */
.spotlight {
  text-align: center;
  padding: 60px 0;
}
.spotlight__quote {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.3;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}
.spotlight__quote em { color: var(--sage); font-style: italic; }

/* === Form embed wrapper (landings) === */
.form-embed {
  max-width: 600px;
  margin: 30px auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 14px;
}
.form-embed iframe {
  width: 100%;
  min-height: 480px;
  border: none;
  border-radius: 4px;
  display: block;
}

/* === Mid-page CTA strip (cierre, S19) === */
.cta-strip {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(74, 127, 196, 0.12), rgba(196, 160, 74, 0.08));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* === Mientras tanto block (landings) === */
.mientras-tanto {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.mientras-tanto__title {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 24px;
  color: var(--sage);
  text-align: center;
  margin-bottom: 28px;
}

/* === Responsive === */
@media (max-width: 900px) {
  .section { padding: 70px 22px; }
  .cards--3, .cards--6 { grid-template-columns: 1fr 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 60px 18px; }
  .cards--3, .cards--6 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .verse { font-size: 19px; padding-left: 18px; }
  .hero { min-height: 80vh; padding: 100px 18px 60px; }
}
