/* ============================================
   Landing page — hero, trust, features, plans, testimonials, footer
   ============================================ */

/* Hero */
.landing-hero {
  position: relative;
  padding: 96px 32px 80px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 88% 30%, var(--accent-wash) 0%, transparent 60%),
    radial-gradient(1100px 700px at 10% 110%, var(--glow-neutral) 0%, transparent 60%);
  pointer-events: none;
}
.landing-hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Layout utilities — desktop defaults; responsive.css colapsa en móvil */
.split-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.profile-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.landing-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.2vw, 88px);
  letter-spacing: -0.028em;
  line-height: 0.98;
  margin: 18px 0 24px;
  color: var(--ivory-0);
}
.landing-hero h1 em { font-style: italic; color: var(--accent); }
.landing-hero p.lede {
  font-size: 18px;
  color: var(--ivory-2);
  max-width: 56ch;
  line-height: 1.55;
  margin: 0 0 32px;
}
.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-3);
}
.landing-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* Hero visual: chat sample */
.hero-sample {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-3);
  padding: 18px;
  box-shadow: var(--shadow-pop);
}
.hero-sample__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.hero-sample__head .id {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ivory-4);
  letter-spacing: 0.08em;
}
.sample-msg {
  font-size: 13.5px;
  line-height: 1.6;
  padding: 12px 14px;
  border-radius: var(--r-2);
  background: var(--ink-2);
  border: 1px solid var(--rule-faint);
  color: var(--ivory-2);
  margin-bottom: 10px;
}
.sample-msg .who {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-4);
  margin-bottom: 4px;
}
.sample-msg.from-ai { background: var(--tint-cool); border-color: var(--rule); }
.sample-msg.from-ai .who { color: var(--accent); }
.sample-msg cite {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ivory-4);
  font-style: normal;
  border-top: 1px dashed var(--rule);
  padding-top: 6px;
}

/* Trust strip */
.trust-strip {
  border-bottom: 1px solid var(--rule);
  padding: 22px 32px;
  background: var(--ink-0);
}
.trust-strip__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-strip .item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ivory-3);
  font-size: 13px;
}
.trust-strip .item .n {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ivory-0);
  letter-spacing: -0.02em;
}

/* Section frames */
.section-frame {
  border-bottom: 1px solid var(--rule);
  padding: 96px 32px;
}
.section-frame__inner { max-width: var(--maxw); margin: 0 auto; }
.section-frame__head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.section-frame__head .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-4);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-frame__head .kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.section-frame__head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.4vw, 58px);
  letter-spacing: -0.022em;
  line-height: 1.02;
  color: var(--ivory-0);
  margin: 14px 0 0;
}
.section-frame__head p.lede {
  color: var(--ivory-2);
  font-size: 17px;
  max-width: 56ch;
  line-height: 1.6;
  margin: 0;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.feature-cell {
  background: var(--ink-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  min-width: 0;
  position: relative;
}
.feature-cell .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ivory-4);
  letter-spacing: 0.14em;
}
.feature-cell h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.018em;
  color: var(--ivory-0);
  margin: 0;
  line-height: 1.1;
}
.feature-cell p { color: var(--ivory-2); font-size: 14px; margin: 0; line-height: 1.6; }
.feature-cell .demo {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ivory-3);
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: var(--r-2);
  background: var(--ink-0);
  line-height: 1.5;
}
.feature-cell .demo .accent { color: var(--accent); }
.feature-cell.span-6 { grid-column: span 6; }
.feature-cell.span-4 { grid-column: span 4; }
.feature-cell.span-8 { grid-column: span 8; }
.feature-cell.span-12 { grid-column: span 12; }

/* Plans table */
.plans {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  border: 1px solid var(--rule);
  background: var(--ink-2);
}
.plans__cell {
  padding: 22px 24px;
  border-right: 1px solid var(--rule-faint);
  border-bottom: 1px solid var(--rule-faint);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 64px;
  justify-content: center;
  font-size: 13.5px;
  color: var(--ivory-2);
}
.plans__cell:nth-child(4n) { border-right: 0; }
.btn.is-current {
  background: var(--ink-0) !important;
  color: var(--ivory-3) !important;
  border: 1px dashed var(--rule) !important;
  cursor: default;
  pointer-events: none;
}
.btn.is-disabled {
  background: transparent !important;
  color: var(--ivory-4) !important;
  border: 1px dashed var(--rule-faint) !important;
  cursor: not-allowed;
  pointer-events: none;
  font-size: 12px;
  font-weight: 400;
}
.plans__cell.head { background: var(--ink-2); }
.plans__cell.label {
  background: var(--ink-0);
  color: var(--ivory-3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.plans__cell .price {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--ivory-0);
  letter-spacing: -0.022em;
}
.plans__cell .price small {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ivory-3);
  letter-spacing: 0;
}
.plans__cell .plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ivory-0);
}
.plans__cell.is-featured {
  background: var(--accent-wash);
  position: relative;
}
.plans__cell.is-featured.head::after {
  content: "RECOMENDADO";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 4px 0;
}
.plans__cell.is-featured.head { padding-top: 36px; }
.plans__check { color: var(--accent); }
.plans__dash { color: var(--ivory-5); }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.testi {
  background: var(--ink-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
}
.testi blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.4;
  color: var(--ivory-1);
  letter-spacing: -0.012em;
}
.testi__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testi__who .av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 1px solid var(--rule-strong);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ivory-0);
  flex-shrink: 0;
}
.testi__who .name { font-size: 13.5px; color: var(--ivory-1); }
.testi__who .meta { font-family: var(--font-mono); font-size: 11px; color: var(--ivory-4); letter-spacing: 0.06em; }

/* ——————————————————————————————————————————
   Fuentes verificadas (Acción 3)
   —————————————————————————————————————————— */
.sources-section { background: var(--ink-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.sources-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.sources-badge-wrap { display: flex; justify-content: flex-end; }
.sources-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-2);
  background: var(--ink-0);
  max-width: 280px;
}
.sources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.source-card {
  padding: 20px 22px;
  border: 1px solid var(--rule);
  border-radius: var(--r-2);
  background: var(--ink-0);
  transition: border-color .15s;
}
.source-card:hover { border-color: var(--rule-strong); }
.source-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--c) 14%, transparent);
  color: color-mix(in srgb, var(--c) 80%, var(--ivory-0));
  border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
  margin-bottom: 12px;
}
.source-card__title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ivory-0);
  margin-bottom: 6px;
  line-height: 1.3;
}
.source-card__desc { font-size: 12.5px; color: var(--ivory-3); line-height: 1.55; }

/* ——————————————————————————————————————————
   Landing Coach IA
   —————————————————————————————————————————— */
.coachland-hero { padding: 96px 32px 80px; background: var(--ink-0); border-bottom: 1px solid var(--rule); }
.coachland-hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: start;
}
.coachland-tools-nav {
  background: var(--ink-2); border: 1px solid var(--rule-strong);
  border-radius: var(--r-3); overflow: hidden;
}
.coachland-tools-nav__head {
  padding: 12px 18px; background: var(--ink-0);
  border-bottom: 1px solid var(--rule);
}
.coachland-tools-nav__label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ivory-4);
}
.coachland-tools-nav__item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 18px; border-bottom: 1px solid var(--rule);
  text-decoration: none; transition: background .12s;
}
.coachland-tools-nav__item:last-child { border-bottom: 0; }
.coachland-tools-nav__item:hover { background: var(--ink-0); }
.coachland-tools-nav__item-name { font-size: 13px; color: var(--ivory-1); }
.coachland-tools-nav__item-cost {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  color: var(--accent); flex-shrink: 0; margin-left: 8px;
}

/* Feature highlight — Programación */
.coachland-feature-highlight { }
.coachland-highlight-head { margin-bottom: 48px; }
.coachland-highlight-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: var(--r-pill);
  background: oklch(0.515 0.180 27 / 0.10); border: 1px solid var(--accent-deep);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.coachland-prog-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.coachland-prog-sections { display: flex; flex-direction: column; gap: 0; }
.coachland-prog-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--rule);
}
.coachland-prog-item:first-of-type { padding-top: 0; }
.coachland-prog-item__check { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.coachland-prog-item__title { font-size: 13.5px; color: var(--ivory-0); font-weight: 500; margin-bottom: 2px; }
.coachland-prog-item__desc { font-size: 12.5px; color: var(--ivory-3); line-height: 1.5; }

.coachland-chat-demo {
  background: var(--ink-2); border: 1px solid var(--rule-strong);
  border-radius: var(--r-3); overflow: hidden; box-shadow: var(--shadow-pop);
}
.coachland-chat-demo__head {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid var(--rule); background: var(--ink-0);
}
.coachland-chat-demo__body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.demo-msg { padding: 11px 14px; border-radius: var(--r-2); font-size: 13px; line-height: 1.6; }
.demo-msg--user {
  background: var(--ink-0); color: var(--ivory-2); border: 1px solid var(--rule); margin-left: 15%;
}
.demo-msg--ai {
  background: oklch(0.515 0.180 27 / 0.06); border: 1px solid oklch(0.515 0.180 27 / 0.18);
  color: var(--ivory-1);
}
.demo-msg--ai p { margin: 0 0 8px; }
.demo-msg--ai p:last-of-type { margin: 0; }
.demo-msg--ai ol { margin: 6px 0 8px 18px; padding: 0; }
.demo-msg--ai li { margin-bottom: 4px; }
.demo-msg--ai cite {
  display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--ivory-4); margin-top: 10px; font-style: normal;
  border-top: 1px solid var(--rule); padding-top: 8px;
}

/* Grid herramientas */
.coachland-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.coachland-tool-card {
  padding: 24px 22px; border: 1px solid var(--rule);
  border-radius: var(--r-3); background: var(--ink-0);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .15s;
}
.coachland-tool-card:hover { border-color: var(--rule-strong); }
.coachland-tool-card--wide { grid-column: span 2; }
.coachland-tool-card--wide .coachland-tool-card__demo { display: flex; flex-direction: column; gap: 6px; }
.coachland-tool-card__top { display: flex; justify-content: space-between; align-items: center; }
.coachland-tool-card__num {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ivory-4);
}
.coachland-tool-card__cost {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--accent);
  padding: 3px 10px; border-radius: var(--r-pill);
  background: oklch(0.515 0.180 27 / 0.08); border: 1px solid oklch(0.515 0.180 27 / 0.20);
}
.coachland-tool-card__title { font-size: 15px; font-weight: 600; color: var(--ivory-0); margin: 0; line-height: 1.3; }
.coachland-tool-card__desc { font-size: 13px; color: var(--ivory-3); line-height: 1.6; margin: 0; flex: 1; }
.coachland-tool-card__demo {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; line-height: 1.7;
  color: var(--ivory-4); background: var(--ink-2); border-radius: var(--r-1);
  padding: 12px 14px; border: 1px solid var(--rule); margin-top: 2px;
}
.coachland-tool-card__cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 4px;
  font-size: 12.5px; font-weight: 500; color: var(--accent); text-decoration: none;
  font-family: var(--font-mono); letter-spacing: 0.06em;
}
.coachland-tool-card__cta:hover { text-decoration: underline; }

/* Tabla costes */
.coachland-costs-table {
  border: 1px solid var(--rule); border-radius: var(--r-2); overflow: hidden;
}
.coachland-costs-head {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 12px 20px; background: var(--ink-2); border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ivory-4); gap: 8px;
}
.coachland-costs-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 13px 20px; border-bottom: 1px solid var(--rule);
  align-items: center; gap: 8px; background: var(--ink-0);
}
.coachland-costs-row:last-child { border-bottom: 0; }
.coachland-costs-row--highlight { background: oklch(0.515 0.180 27 / 0.05); border-left: 2px solid var(--accent-deep); }
.coachland-costs-row__name { font-size: 13.5px; color: var(--ivory-1); display: flex; align-items: center; gap: 8px; }
.coachland-costs-row__badge {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 2px 7px; border-radius: var(--r-pill); background: var(--accent); color: #fff;
}
.coachland-costs-row__cost { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }
.coachland-costs-row__uses { font-family: var(--font-mono); font-size: 12px; color: var(--ivory-3); }

/* Responsive coach landing */
@media (max-width: 960px) {
  .coachland-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .coachland-tools-nav { display: none; }
  .coachland-prog-grid { grid-template-columns: 1fr; gap: 40px; }
  .coachland-tools-grid { grid-template-columns: 1fr 1fr; }
  .coachland-tool-card--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .coachland-tools-grid { grid-template-columns: 1fr; }
  .coachland-tool-card--wide { grid-column: span 1; }
  .coachland-costs-head { display: none; }
  .coachland-costs-row { grid-template-columns: 1fr auto; gap: 4px; }
  .coachland-costs-row__uses:first-of-type { display: none; }
  .coachland-costs-row__uses:last-of-type { display: none; }
}

/* ——————————————————————————————————————————
   Tabla comparativa vs competencia (Acción 1)
   —————————————————————————————————————————— */
.vs-table-wrap { overflow-x: auto; }
.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  border: 1px solid var(--rule);
  border-radius: var(--r-2);
  overflow: hidden;
}
.vs-table thead tr { background: var(--ink-0); }
.vs-table th, .vs-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.vs-table__feat {
  color: var(--ivory-2);
  font-weight: 400;
  width: 35%;
}
.vs-table thead .vs-table__feat { color: var(--ivory-4); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; }
.vs-table__them { color: var(--ivory-4); width: 30%; background: var(--ink-2); }
.vs-table__them--lose { color: var(--ivory-4); }
.vs-table thead .vs-table__them { color: var(--ivory-3); font-size: 13px; font-weight: 500; }
.vs-table__us { color: var(--ivory-1); width: 35%; background: oklch(0.515 0.180 27 / 0.04); font-weight: 500; }
.vs-table__us--win { color: var(--accent); font-weight: 600; }
.vs-table thead .vs-table__us {
  color: var(--ivory-0);
  font-size: 13px;
  font-weight: 600;
  background: oklch(0.515 0.180 27 / 0.08);
  border-left: 2px solid var(--accent-deep);
}
.vs-table tbody .vs-table__us { border-left: 2px solid var(--accent-deep); }
.vs-table tbody tr:last-child td { border-bottom: 0; }
.vs-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #fff;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 400;
}
.vs-disclaimer { font-family: var(--font-mono); font-size: 11px; color: var(--ivory-5); letter-spacing: 0.06em; margin-top: 16px; }

/* ——————————————————————————————————————————
   Plan Gratis destacado (Acción 2)
   —————————————————————————————————————————— */
.free-plan-section {
  background:
    radial-gradient(600px 400px at 10% 60%, oklch(0.515 0.180 27 / 0.06) 0%, transparent 70%),
    var(--ink-0);
  border-top: 1px solid var(--rule);
}
.free-plan-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.free-plan-badge-col { display: flex; justify-content: center; }
.free-plan-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.515 0.180 27 / 0.15) 0%, oklch(0.515 0.180 27 / 0.04) 100%);
  border: 2px solid var(--accent-deep);
  box-shadow: 0 0 0 8px oklch(0.515 0.180 27 / 0.06), 0 0 0 16px oklch(0.515 0.180 27 / 0.03);
}
.free-plan-badge__label {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.free-plan-badge__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-top: 4px;
}

/* ——————————————————————————————————————————
   Landing Temario
   —————————————————————————————————————————— */
.temland-hero {
  padding: 96px 32px 80px;
  background:
    radial-gradient(900px 500px at 80% 25%, oklch(0.515 0.180 27 / 0.07) 0%, transparent 60%),
    radial-gradient(700px 500px at 5% 90%, var(--glow-neutral) 0%, transparent 60%),
    var(--ink-0);
  border-bottom: 1px solid var(--rule);
}
.temland-hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
.temland-h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 5vw, 64px); letter-spacing: -0.025em;
  line-height: 1.05; color: var(--ivory-0); margin: 16px 0 20px;
}
.temland-h1 em { font-style: italic; color: var(--accent); }
.temland-lede { font-size: 15.5px; color: var(--ivory-2); line-height: 1.7; max-width: 54ch; margin: 0; }

.temland-hero__mockup {
  background: var(--ink-2); border: 1px solid var(--rule-strong);
  border-radius: var(--r-3); overflow: hidden; box-shadow: var(--shadow-pop);
}
.temland-mockup-head {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid var(--rule); background: var(--ink-0);
}
.temland-mockup-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.temland-msg { padding: 11px 14px; border-radius: var(--r-2); font-size: 13px; line-height: 1.6; }
.temland-msg--user {
  background: var(--ink-0); color: var(--ivory-2); border: 1px solid var(--rule); margin-left: 15%;
}
.temland-msg--ai {
  background: oklch(0.515 0.180 27 / 0.06); border: 1px solid oklch(0.515 0.180 27 / 0.18); color: var(--ivory-1);
}
.temland-msg--ai p { margin: 0 0 8px; }
.temland-msg--ai ol { margin: 6px 0 8px 18px; padding: 0; }
.temland-msg--ai li { margin-bottom: 3px; }
.temland-msg--ai cite {
  display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--ivory-4); margin-top: 10px; font-style: normal;
  border-top: 1px solid var(--rule); padding-top: 8px;
}

/* Pasos cómo funciona */
.temland-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.temland-step {
  padding: 28px 24px; border: 1px solid var(--rule); border-radius: var(--r-3);
  background: var(--ink-0);
}
.temland-step__num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block;
}
.temland-step__title { font-size: 16px; font-weight: 600; color: var(--ivory-0); margin: 0 0 10px; }
.temland-step__desc { font-size: 13px; color: var(--ivory-3); line-height: 1.65; margin: 0 0 16px; }
.temland-step__demo {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; line-height: 1.7;
  color: var(--ivory-4); background: var(--ink-2); border-radius: var(--r-1);
  padding: 10px 12px; border: 1px solid var(--rule);
}

/* Grid temas */
.temland-temas-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule); border-radius: var(--r-2); overflow: hidden;
}
.temland-tema-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
  background: var(--ink-0); text-decoration: none; transition: background .12s;
}
.temland-tema-item:hover { background: var(--ink-2); }
.temland-tema-item__num {
  font-family: var(--font-display); font-size: 22px; color: var(--ivory-5);
  letter-spacing: -0.02em; line-height: 1; flex-shrink: 0; min-width: 28px;
}
.temland-tema-item__title { font-size: 13px; color: var(--ivory-2); line-height: 1.5; flex: 1; }
.temland-tema-item:hover .temland-tema-item__title { color: var(--ivory-0); }
.temland-tema-item__cta { color: var(--accent); flex-shrink: 0; opacity: 0; transition: opacity .12s; }
.temland-tema-item:hover .temland-tema-item__cta { opacity: 1; }
.temland-tema-more {
  grid-column: span 2; padding: 24px 18px; background: var(--ink-2);
  display: flex; flex-direction: column; align-items: flex-start;
}
.temland-tema-more__label {
  font-family: var(--font-display); font-size: 22px; color: var(--ivory-0); letter-spacing: -0.015em;
}

/* ——————————————————————————————————————————
   Responsive — secciones nuevas
   —————————————————————————————————————————— */
@media (max-width: 900px) {
  .temland-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .temland-steps { grid-template-columns: 1fr; }
  .temland-temas-grid { grid-template-columns: 1fr; }
  .temland-tema-more { grid-column: span 1; }
}
@media (max-width: 768px) {
  .sources-header { grid-template-columns: 1fr; }
  .sources-badge-wrap { justify-content: flex-start; }
  .sources-grid { grid-template-columns: 1fr 1fr; }
  .free-plan-inner { grid-template-columns: 1fr; gap: 32px; }
  .free-plan-badge-col { display: none; }
  .vs-table__feat { width: 40%; }
  .vs-table th, .vs-table td { padding: 10px 12px; font-size: 12.5px; }
}
@media (max-width: 480px) {
  .sources-grid { grid-template-columns: 1fr; }
}

/* Final CTA */
.final-cta {
  padding: 120px 32px;
  text-align: center;
  background:
    radial-gradient(700px 380px at 50% 50%, var(--accent-wash) 0%, transparent 60%),
    var(--ink-0);
  border-bottom: 1px solid var(--rule);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ivory-0);
  line-height: 1;
}
.final-cta h2 em { color: var(--accent); font-style: italic; }
.final-cta p { color: var(--ivory-2); font-size: 17px; max-width: 56ch; margin: 0 auto 32px; }

/* Footer */
.foot {
  padding: 56px 32px 32px;
  background: var(--ink-0);
}
.foot__inner { max-width: var(--maxw); margin: 0 auto; }
.foot__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.foot__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ivory-4);
  margin: 0 0 14px;
}
.foot__col a {
  display: block;
  font-size: 13.5px;
  color: var(--ivory-2);
  padding: 4px 0;
  cursor: pointer;
}
.foot__col a:hover { color: var(--ivory-0); }
.foot__legal {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--ivory-4);
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}
