/* =========================================================
   The Speaky Club — Landing styles
   Brand Book v1 · Manual de marca
   Paleta: ver variables en :root (musgo, salvia, eucalipto,
   roto, mostaza, carbon). Todo color se usa vía var().
   Type
     Poppins  — titulares, marca, UI
     Lora     — texto de lectura / párrafos
     Caveat   — taglines y notas manuscritas
   ========================================================= */

:root {
  --musgo:     #22392E;
  --salvia:    #7C9B80;
  --eucalipto: #BFD0BC;
  --roto:      #F4F0E6;
  --mostaza:   #D9A441;
  --carbon:    #26241F;
  --carbon-mute: #6d6a60;

  --border:        rgba(34, 57, 46, 0.12);
  --border-strong: rgba(34, 57, 46, 0.24);

  --radius-card: 20px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --font-ui:    'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-read:  'Lora', Georgia, "Times New Roman", serif;
  --font-hand:  'Caveat', "Comic Sans MS", cursive;

  --max: 1280px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--roto);
  color: var(--carbon);
  font-family: var(--font-read);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--musgo); }

::selection { background: var(--musgo); color: var(--roto); }

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--carbon-mute); margin-bottom: 24px;
  font-weight: 500;
}
.eyebrow--musgo { color: var(--musgo); }
.eyebrow__dot { width: 6px; height: 6px; border-radius: 999px; background: var(--mostaza); display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 15px; font-weight: 500; letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 20px 40px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

.btn--primary { background: var(--musgo); color: var(--roto); }
.btn--primary:hover { background: var(--carbon); color: var(--roto); transform: translateY(-1px); }

.btn--mostaza { background: var(--mostaza); color: var(--musgo); }
.btn--mostaza:hover { background: var(--musgo); color: var(--mostaza); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--musgo); border-color: var(--border-strong); }
.btn--ghost:hover { background: rgba(34, 57, 46, 0.05); border-color: var(--musgo); color: var(--musgo); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 240, 230, 0.88);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid rgba(34, 57, 46, 0.08);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-ui); }
.brand:hover { color: inherit; }
.brand__logo {
  width: 44px; height: 44px; border-radius: 12px;
  object-fit: cover; display: block;
  box-shadow: 0 4px 16px -8px rgba(34, 57, 46, 0.35);
}
.brand__name {
  font-weight: 600; font-size: 18px; letter-spacing: -0.005em;
  color: var(--musgo); line-height: 1;
}
.brand__name em { font-style: normal; color: var(--mostaza); }

.nav__links { display: flex; align-items: center; gap: 30px; font-family: var(--font-ui); font-size: 15px; font-weight: 400; }
.nav__links a { color: var(--carbon); }
.nav__links a:hover { color: var(--musgo); }
.nav__toggle { display: none; background: transparent; border: 0; color: var(--musgo); padding: 8px; cursor: pointer; }
.nav__mobile {
  display: none; flex-direction: column;
  padding: 12px 32px 24px;
  border-top: 1px solid var(--border);
  background: var(--roto);
  font-family: var(--font-ui);
}
.nav__mobile a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--border); }
.nav__mobile a:last-child { border-bottom: 0; }
.nav__mobile[data-open="true"] { display: flex; }

/* ---------- Hero ---------- */
.hero { padding: 88px 32px 96px; position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
}
.hero__hand {
  font-family: var(--font-hand);
  font-size: 40px;
  color: var(--mostaza);
  line-height: 1;
  margin: 0 0 20px;
  transform: rotate(-2deg);
  display: inline-block;
}
.hero__title {
  font-family: var(--font-ui);
  font-size: 68px; line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 600; margin: 0 0 24px; text-wrap: balance;
  color: var(--musgo);
}
.hero__title em { color: var(--mostaza); font-style: normal; font-weight: 600; }
.hero__sub {
  font-family: var(--font-read);
  font-size: 19px; line-height: 1.6; color: var(--carbon); margin: 0 0 40px; max-width: 520px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__note {
  font-family: var(--font-hand);
  font-size: 26px; color: var(--musgo);
  transform: rotate(-3deg);
  padding-left: 6px;
  display: inline-flex; align-items: center; gap: 6px;
}
.hero__art { position: relative; aspect-ratio: 1 / 0.95; width: 100%; }
.hero__art-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(19%) sepia(15%) saturate(1200%) hue-rotate(93deg) brightness(94%) contrast(88%);
  animation: floaty 8s ease-in-out infinite;
}
.hero__art-img--photo {
  filter: none;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -50px rgba(34, 57, 46, 0.5);
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---------- Trust ---------- */
.trust {
  background: var(--eucalipto);
  border-top: 1px solid rgba(34, 57, 46, 0.06);
  border-bottom: 1px solid rgba(34, 57, 46, 0.06);
}
.trust__inner {
  padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.trust__label {
  margin: 0; font-family: var(--font-ui);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--musgo); opacity: 0.75; font-weight: 500;
}
.trust__logos {
  display: flex; flex-wrap: wrap; gap: 32px 56px; align-items: center; justify-content: center;
  color: var(--musgo);
  font-family: var(--font-ui);
}
.logo-word { font-size: 20px; font-weight: 500; }
.logo-word--sans   { font-weight: 600; }
.logo-word--italic { font-style: italic; font-family: var(--font-read); }
.logo-word--tracked{ letter-spacing: 0.24em; font-weight: 600; }
.logo-word--bold   { font-weight: 700; }
.logo-word--diamond{ font-weight: 600; }

/* ---------- Section ---------- */
.section { padding: 120px 32px 60px; }
.section__head { max-width: 720px; margin-bottom: 64px; }
.section__title {
  font-family: var(--font-ui);
  font-size: 52px; line-height: 1.08; letter-spacing: -0.02em;
  font-weight: 600; margin: 0 0 20px; text-wrap: balance;
  color: var(--musgo);
}
.section__title em { color: var(--mostaza); font-style: normal; font-weight: 600; }
.section__sub {
  font-family: var(--font-read);
  font-size: 18px; line-height: 1.6; color: var(--carbon); margin: 0; max-width: 560px;
}

/* ---------- Manifesto strip ---------- */
.manifesto {
  background: var(--musgo);
  color: var(--roto);
  padding: 96px 32px;
}
.manifesto__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.manifesto__hand {
  font-family: var(--font-hand);
  font-size: 34px; color: var(--mostaza); line-height: 1;
  margin: 0 0 20px;
  transform: rotate(-2deg); display: inline-block;
}
.manifesto__quote {
  font-family: var(--font-read);
  font-style: italic;
  font-size: 32px; line-height: 1.35;
  margin: 0 0 24px; text-wrap: balance;
  color: var(--roto);
}
.manifesto__attr {
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--eucalipto); opacity: 0.8; font-weight: 500;
}

/* ---------- Método ---------- */
.method__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.method-card {
  background: var(--roto);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.method-card:hover {
  transform: translateY(-4px);
  border-color: var(--salvia);
  box-shadow: 0 20px 40px -24px rgba(34, 57, 46, 0.25);
}
.method-card__art {
  aspect-ratio: 1.3 / 1;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(191, 208, 188, 0.25);
}
.method-card__art svg { max-width: 150px; width: 100%; height: auto; }
.method-card__row { display: flex; align-items: baseline; gap: 10px; }
.method-card__num {
  font-family: var(--font-hand);
  font-size: 26px; color: var(--mostaza); font-weight: 500; line-height: 1;
  transform: rotate(-3deg); display: inline-block;
}
.method-card__title {
  margin: 0; font-family: var(--font-ui);
  font-size: 20px; font-weight: 600; letter-spacing: -0.01em; color: var(--musgo);
}
.method-card__body {
  margin: 0; font-family: var(--font-read);
  font-size: 15px; line-height: 1.6; color: var(--carbon);
}

/* ---------- Precios ---------- */
.pricing__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch;
}
.price-card {
  background: var(--roto);
  border: 1px solid rgba(34, 57, 46, 0.14);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.price-card--featured {
  border: 2px solid var(--musgo);
  box-shadow: 0 30px 60px -40px rgba(34, 57, 46, 0.35);
}
.price-card__badge {
  position: absolute; top: -14px; left: 32px;
  background: var(--mostaza); color: var(--musgo);
  font-family: var(--font-hand);
  font-size: 20px; letter-spacing: 0.01em;
  padding: 4px 16px; border-radius: var(--radius-pill); font-weight: 600;
  transform: rotate(-2deg);
}
.price-card__head { display: flex; align-items: center; justify-content: space-between; }
.price-card__kicker {
  font-family: var(--font-ui);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--carbon-mute);
  font-weight: 500;
}
.price-card__kicker--strong { color: var(--musgo); font-weight: 600; }
.price-card__note { font-family: var(--font-ui); font-size: 12px; color: var(--carbon-mute); }
.price-card__price { display: flex; align-items: baseline; gap: 8px; }
.price-card__from { font-family: var(--font-ui); font-size: 20px; color: var(--carbon-mute); }
.price-card__amount {
  font-family: var(--font-ui);
  font-size: 64px; font-weight: 600; letter-spacing: -0.03em; line-height: 1;
  color: var(--musgo);
}
.price-card__unit { font-family: var(--font-ui); font-size: 15px; color: var(--carbon-mute); }
.price-card__desc {
  margin: 0; font-family: var(--font-read);
  font-size: 15px; color: var(--carbon); line-height: 1.6;
}
.price-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.price-card__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-read); font-size: 15px; color: var(--carbon);
}
.tick { flex-shrink: 0; margin-top: 3px; width: 18px; height: 18px; }
.hr { border: 0; height: 1px; background: var(--border); margin: 4px 0; }
.price-card > .btn { margin-top: auto; }

/* ---------- Calendar ---------- */
.calendar__head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.calendar {
  background: var(--roto);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 30px 60px -40px rgba(34, 57, 46, 0.3);
  overflow: hidden;
}
.calendar__toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding: 0 4px; }
.calendar__title { display: flex; align-items: center; gap: 14px; }
.calendar__title strong { font-family: var(--font-ui); font-size: 17px; font-weight: 600; color: var(--musgo); }
.calendar__title span { font-family: var(--font-ui); font-size: 13px; color: var(--carbon-mute); }
.calendar__ctrls { display: flex; gap: 6px; }
.calendar__ctrls button {
  height: 34px; padding: 0 14px;
  border-radius: 10px; background: transparent;
  border: 1px solid rgba(34, 57, 46, 0.14);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--musgo); font-family: var(--font-ui); font-size: 13px; cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.calendar__ctrls button[aria-label] { width: 34px; padding: 0; }
.calendar__ctrls button:hover { background: rgba(34, 57, 46, 0.05); border-color: var(--border-strong); }

.calendar__grid {
  display: grid;
  grid-template-columns: 60px repeat(7, minmax(0, 1fr));
  border-top: 1px solid rgba(34, 57, 46, 0.08);
  border-left: 1px solid rgba(34, 57, 46, 0.08);
  border-radius: 14px;
  overflow: hidden;
}
.cal-head, .cal-time, .cal-cell {
  border-right: 1px solid rgba(34, 57, 46, 0.08);
  border-bottom: 1px solid rgba(34, 57, 46, 0.08);
}
.cal-head {
  padding: 12px 10px;
  background: var(--eucalipto);
  display: flex; flex-direction: column;
  font-family: var(--font-ui);
}
.cal-head--empty { padding: 0; }
.cal-head__label { font-size: 11px; color: var(--musgo); opacity: .7; letter-spacing: 0.1em; text-transform: uppercase; }
.cal-head__num   { font-size: 15px; font-weight: 500; color: var(--musgo); }
.cal-head--today .cal-head__label { color: var(--mostaza); font-weight: 600; opacity: 1; }
.cal-head--today .cal-head__num   { color: var(--mostaza); font-weight: 700; }

.cal-time { padding: 8px; font-family: var(--font-ui); font-size: 11px; color: var(--carbon-mute); }
.cal-cell { min-height: 64px; padding: 6px; }
.cal-cell--today { background: rgba(217, 164, 65, 0.06); }

.cal-slot {
  padding: 8px 10px;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--musgo);
  border-left: 3px solid var(--salvia);
  display: flex; flex-direction: column; gap: 2px;
}
.cal-slot b    { font-weight: 600; }
.cal-slot span { opacity: 0.75; font-size: 11px; font-weight: 400; }

.cal-slot--salvia    { background: rgba(124, 155, 128, 0.28); }
.cal-slot--eucalipto { background: var(--eucalipto); }
.cal-slot--musgo     { background: var(--musgo); color: var(--roto); border-left-color: var(--mostaza); }
.cal-slot--mostaza   { background: rgba(217, 164, 65, 0.22); border-left-color: var(--mostaza); }
.cal-slot--free      { background: rgba(244, 240, 230, 0.6); border: 1px dashed var(--salvia); border-left: 3px dashed var(--mostaza); color: var(--carbon-mute); }

/* ---------- Flashcard ---------- */
.flash__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.flash__stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 32px; }
.flash__num {
  font-family: var(--font-ui);
  font-size: 40px; font-weight: 600; color: var(--musgo); letter-spacing: -0.02em; line-height: 1;
}
.flash__lbl { font-family: var(--font-ui); font-size: 13px; color: var(--carbon-mute); margin-top: 6px; }

.flashcard-wrap { perspective: 1200px; width: 100%; max-width: 460px; margin: 0 auto; position: relative; }
.flashcard { width: 100%; aspect-ratio: 1.35 / 1; cursor: pointer; outline: none; }
.flashcard__inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .7s var(--ease);
}
.flashcard:hover .flashcard__inner,
.flashcard:focus .flashcard__inner,
.flashcard.is-flipped .flashcard__inner {
  transform: rotateY(180deg);
}
.flashcard__face {
  position: absolute; inset: 0;
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex; flex-direction: column;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  box-shadow: 0 30px 60px -30px rgba(34, 57, 46, 0.3);
}
.flashcard__face--front { background: var(--roto); border: 1px solid var(--salvia); color: var(--carbon); }
.flashcard__face--back  { background: var(--musgo); border: 1px solid var(--musgo); color: var(--roto); transform: rotateY(180deg); }
.flashcard__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-family: var(--font-ui); }
.flashcard__row--foot { margin-bottom: 0; margin-top: auto; font-size: 12px; color: var(--carbon-mute); }
.flashcard__tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--carbon-mute); font-weight: 500; }
.flashcard__tag--light { color: rgba(244, 240, 230, 0.7); }
.flashcard__level {
  font-family: var(--font-ui);
  font-size: 11px; padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--mostaza); color: var(--musgo); font-weight: 600; letter-spacing: 0.08em;
}
.flashcard__main { flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; }
.flashcard__main h3 {
  margin: 0; font-family: var(--font-ui);
  font-size: 44px; font-weight: 600; letter-spacing: -0.02em; color: var(--musgo);
}
.flashcard__main--back { flex-direction: column; align-items: flex-start; justify-content: center; gap: 16px; text-align: left; }
.flashcard__translation {
  margin: 0; font-family: var(--font-read);
  font-size: 24px; font-weight: 500; line-height: 1.3; color: var(--roto);
}
.flashcard__example {
  margin: 0; font-family: var(--font-read);
  font-size: 15px; color: rgba(244, 240, 230, 0.8); line-height: 1.6; font-style: italic;
}
.flashcard__foot-note { font-family: var(--font-ui); font-size: 12px; color: rgba(244, 240, 230, 0.5); margin-top: auto; }

/* ---------- Final CTA ---------- */
.cta-final { background: var(--musgo); color: var(--roto); margin-top: 40px; position: relative; overflow: hidden; }
.cta-final__inner { padding: 120px 32px; text-align: center; max-width: 1000px; position: relative; z-index: 1; }
.cta-final__hand {
  font-family: var(--font-hand);
  font-size: 40px; color: var(--mostaza); line-height: 1;
  margin: 0 0 20px;
  transform: rotate(-2deg); display: inline-block;
}
.cta-final__title {
  font-family: var(--font-ui);
  font-size: 64px; line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 600; margin: 0 0 20px; color: var(--roto); text-wrap: balance;
}
.cta-final__sub {
  font-family: var(--font-read);
  font-size: 19px; line-height: 1.55; color: rgba(244, 240, 230, 0.75); margin: 0 0 40px;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.cta-final .btn--mostaza:hover { background: var(--roto); color: var(--musgo); }

/* Variante clara: para cuando la sección anterior ya es musgo (ej. manifiesto en index) */
.cta-final--light { background: var(--roto); color: var(--musgo); margin-top: 0; }
.cta-final--light .cta-final__title { color: var(--musgo); }
.cta-final--light .cta-final__sub { color: var(--carbon); }
.cta-final--light .btn--mostaza:hover { background: var(--musgo); color: var(--mostaza); }

/* ---------- Footer ---------- */
.footer { background: var(--roto); color: var(--musgo); border-top: 1px solid rgba(34, 57, 46, 0.08); }
.footer .container { padding-top: 80px; padding-bottom: 40px; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px;
}
.footer__brand .brand { margin-bottom: 20px; }
.footer__desc {
  margin: 0; font-family: var(--font-read);
  font-size: 14px; color: var(--carbon); line-height: 1.6; max-width: 300px;
}
.footer__hand {
  display: inline-block; margin-top: 20px;
  font-family: var(--font-hand); font-size: 28px; color: var(--mostaza);
  transform: rotate(-3deg);
}
.footer__title {
  margin: 0 0 16px; font-family: var(--font-ui);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--carbon-mute); font-weight: 600;
}
.footer__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  font-family: var(--font-ui); font-size: 15px;
}
.footer__list a { display: inline-flex; align-items: center; gap: 10px; color: var(--carbon); }
.footer__list a:hover { color: var(--musgo); }
.social { width: 16px; height: 16px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(34, 57, 46, 0.08);
  font-family: var(--font-ui); font-size: 13px; color: var(--carbon-mute); flex-wrap: wrap; gap: 16px;
}
.footer__made { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 6px; height: 6px; border-radius: 999px; background: var(--mostaza); }

/* ---------- Stub pages ---------- */
.stub {
  padding: 120px 0;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.stub__hand {
  font-family: var(--font-hand);
  font-size: 32px; color: var(--mostaza); line-height: 1;
  transform: rotate(-3deg); display: inline-block;
  margin-bottom: 16px;
}
.stub h1 {
  font-family: var(--font-ui);
  font-size: 44px; line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 600; color: var(--musgo);
  margin: 0 0 20px; text-wrap: balance;
}
.stub p {
  font-family: var(--font-read);
  font-size: 18px; line-height: 1.6; color: var(--carbon);
  margin: 0 0 36px;
}

/* ---------- Page hero (páginas interiores) ---------- */
.page-hero {
  padding: 88px 32px 56px;
  max-width: 860px; margin: 0 auto;
  text-align: center;
}
.page-hero__hand {
  font-family: var(--font-hand);
  font-size: 34px; color: var(--mostaza); line-height: 1;
  transform: rotate(-2deg); display: inline-block;
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-ui);
  font-size: 52px; line-height: 1.08; letter-spacing: -0.02em;
  font-weight: 600; color: var(--musgo);
  margin: 0 0 20px; text-wrap: balance;
}
.page-hero__title em { color: var(--mostaza); font-style: normal; }
.page-hero__sub {
  font-family: var(--font-read);
  font-size: 19px; line-height: 1.6; color: var(--carbon);
  margin: 0 auto; max-width: 640px;
}

/* ---------- Feature cards (clases, recursos) ---------- */
.feature__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.feature-card {
  background: var(--roto);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--salvia);
  box-shadow: 0 20px 40px -24px rgba(34, 57, 46, 0.25);
}
.feature-card__icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(191, 208, 188, 0.25);
  display: flex; align-items: center; justify-content: center;
}
.feature-card__icon svg { width: 36px; height: 36px; }
.feature-card__title {
  margin: 0; font-family: var(--font-ui);
  font-size: 20px; font-weight: 600; letter-spacing: -0.01em; color: var(--musgo);
}
.feature-card__body {
  margin: 0; font-family: var(--font-read);
  font-size: 15px; line-height: 1.6; color: var(--carbon);
}
.feature-card__meta {
  margin-top: auto; padding-top: 10px;
  font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--carbon-mute); font-weight: 500;
}

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  color: var(--musgo);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
}
.chip--full { background: var(--musgo); color: var(--roto); border-color: var(--musgo); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  font-family: var(--font-ui); font-size: 17px; font-weight: 600; color: var(--musgo);
  padding: 22px 36px 22px 4px;
  cursor: pointer; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-hand); font-size: 28px; color: var(--mostaza);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  margin: 0; padding: 0 4px 24px;
  font-family: var(--font-read); font-size: 16px; line-height: 1.6; color: var(--carbon);
  max-width: 680px;
}

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; }
.compare {
  width: 100%; border-collapse: collapse;
  font-family: var(--font-ui); font-size: 15px;
  background: var(--roto);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare thead th {
  background: var(--eucalipto); color: var(--musgo);
  font-weight: 600; font-size: 14px;
}
.compare tbody th {
  font-weight: 500; color: var(--carbon); font-family: var(--font-read);
}
.compare td { color: var(--musgo); font-weight: 500; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }

/* ---------- Blog ---------- */
.post__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.post-card {
  background: var(--roto);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--salvia);
  box-shadow: 0 20px 40px -24px rgba(34, 57, 46, 0.25);
}
.post-card__art {
  aspect-ratio: 16 / 9;
  background: rgba(191, 208, 188, 0.25);
  display: flex; align-items: center; justify-content: center;
}
.post-card__art svg { width: 96px; height: 96px; }
.post-card__body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__meta {
  font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--carbon-mute); font-weight: 500;
  display: flex; gap: 10px; align-items: center;
}
.post-card__meta b { color: var(--musgo); font-weight: 600; }
.post-card__title {
  margin: 0; font-family: var(--font-ui);
  font-size: 19px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3;
  color: var(--musgo);
}
.post-card__excerpt {
  margin: 0; font-family: var(--font-read);
  font-size: 15px; line-height: 1.6; color: var(--carbon);
}
.post-card--featured { grid-column: 1 / -1; flex-direction: row; }
.post-card--featured .post-card__art { aspect-ratio: auto; flex: 0 0 42%; }
.post-card--featured .post-card__body { padding: 40px; justify-content: center; gap: 14px; }
.post-card--featured .post-card__title { font-size: 28px; }
@media (max-width: 900px) {
  .post-card--featured { flex-direction: column; }
  .post-card--featured .post-card__art { aspect-ratio: 16 / 9; flex: none; }
}

/* ---------- Forms (mock, sin envío) ---------- */
.form-card {
  background: var(--roto);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 60px -40px rgba(34, 57, 46, 0.3);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500; color: var(--musgo);
}
.field input, .field select, .field textarea {
  font-family: var(--font-ui); font-size: 15px; color: var(--carbon);
  background: rgba(244, 240, 230, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none; width: 100%;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--salvia); }
.field textarea { resize: vertical; min-height: 120px; font-family: var(--font-read); }
.field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.field--check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--musgo); }
.field--check label { font-weight: 400; font-size: 13px; color: var(--carbon); line-height: 1.5; }
.form-note {
  margin: 16px 0 0; font-family: var(--font-ui);
  font-size: 12px; color: var(--carbon-mute); text-align: center;
}

/* ---------- Split layout (registro, contacto) ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.split__aside .section__title { font-size: 40px; }
.aside-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 18px; }
.aside-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-family: var(--font-read); font-size: 16px; line-height: 1.5; color: var(--carbon);
}
.aside-list li b { font-family: var(--font-ui); font-weight: 600; color: var(--musgo); }
.aside-list .tick { margin-top: 4px; }

/* ---------- Contact channels ---------- */
.channel {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  font-family: var(--font-ui); font-size: 15px; color: var(--carbon);
}
.channel:last-child { border-bottom: 0; }
.channel svg { width: 20px; height: 20px; flex-shrink: 0; }
.channel b { font-weight: 600; color: var(--musgo); }

/* ---------- Calendar legend ---------- */
.cal-legend {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  margin-top: 20px; padding: 0 4px;
  font-family: var(--font-ui); font-size: 13px; color: var(--carbon);
}
.cal-legend span { display: inline-flex; align-items: center; gap: 8px; }
.cal-legend i {
  width: 14px; height: 14px; border-radius: 4px; display: inline-block;
}
.cal-legend i.l-salvia    { background: rgba(124, 155, 128, 0.28); }
.cal-legend i.l-eucalipto { background: var(--eucalipto); }
.cal-legend i.l-musgo     { background: var(--musgo); }
.cal-legend i.l-mostaza   { background: rgba(217, 164, 65, 0.22); }
.cal-legend i.l-free      { background: rgba(244, 240, 230, 0.6); border: 1px dashed var(--salvia); }

/* ---------- Prose (legal) ---------- */
.prose { max-width: 720px; margin: 0 auto; padding-bottom: 40px; }
.prose h2 {
  font-family: var(--font-ui); font-size: 24px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--musgo);
  margin: 48px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li {
  font-family: var(--font-read); font-size: 16px; line-height: 1.7; color: var(--carbon);
  margin: 0 0 14px;
}
.prose ul { padding-left: 22px; margin: 0 0 14px; }
.prose .prose__updated {
  font-family: var(--font-ui); font-size: 13px; color: var(--carbon-mute);
  margin-bottom: 32px;
}

/* ---------- Steps (método detalle) ---------- */
.steps { display: flex; flex-direction: column; gap: 24px; max-width: 860px; margin: 0 auto; }
.step {
  display: grid; grid-template-columns: 96px 1fr; gap: 28px; align-items: start;
  background: var(--roto);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 40px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--salvia);
  box-shadow: 0 20px 40px -24px rgba(34, 57, 46, 0.25);
}
.step__num {
  font-family: var(--font-hand);
  font-size: 56px; color: var(--mostaza); font-weight: 500; line-height: 1;
  transform: rotate(-3deg);
}
.step__title {
  margin: 0 0 10px; font-family: var(--font-ui);
  font-size: 24px; font-weight: 600; letter-spacing: -0.01em; color: var(--musgo);
}
.step__body {
  margin: 0; font-family: var(--font-read);
  font-size: 16px; line-height: 1.65; color: var(--carbon);
}
.step__tag {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--carbon-mute); font-weight: 500;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .page-hero__title { font-size: 36px; }
  .step { grid-template-columns: 64px 1fr; padding: 28px; }
  .step__num { font-size: 44px; }
}
@media (max-width: 560px) {
  .page-hero__title { font-size: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .step { grid-template-columns: 1fr; gap: 12px; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__inner > .btn { display: none; }

  .hero { padding: 56px 32px 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__title { font-size: 44px; }
  .hero__hand { font-size: 32px; }
  .hero__sub  { font-size: 17px; }
  .hero__art  { max-width: 520px; margin: 0 auto; }

  .manifesto { padding: 72px 24px; }
  .manifesto__quote { font-size: 24px; }

  .section { padding: 80px 32px 40px; }
  .section__title { font-size: 36px; }
  .section__head  { margin-bottom: 40px; }
  .method__grid   { grid-template-columns: 1fr 1fr; }
  .pricing__grid  { grid-template-columns: 1fr; }
  .flash__grid    { grid-template-columns: 1fr; gap: 48px; }

  .cta-final__inner { padding: 80px 24px; }
  .cta-final__title { font-size: 40px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }

  .calendar__grid {
    grid-template-columns: 56px repeat(7, minmax(120px, 1fr));
    min-width: 900px;
  }
  .calendar { overflow-x: auto; }
}

@media (max-width: 560px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .nav__inner { padding: 14px 20px; }
  .hero { padding: 40px 20px 60px; }
  .hero__title { font-size: 36px; }
  .hero__ctas .btn { width: 100%; }
  .section { padding: 64px 20px 24px; }
  .section__title { font-size: 32px; }
  .method__grid { grid-template-columns: 1fr; }
  .price-card { padding: 32px 24px; }
  .price-card__amount { font-size: 52px; }
  .cta-final__title { font-size: 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { justify-content: flex-start; }
}
