/* =========================================================
   HERO: copy + picker on the left, app window on the right
   ========================================================= */
.lead {
  position: relative;
  padding: 48px 0 64px;
  background:
    radial-gradient(circle at 1px 1px, rgba(0, 51, 102, 0.08) 1px, transparent 1.5px) 0 0 / 28px 28px,
    linear-gradient(180deg, #ffffff 0%, var(--color-paper) 100%);
}
.lead__grid { display: grid; gap: 40px; }
@media (min-width: 1000px) {
  .lead { padding: 72px 0 96px; }
  .lead__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 56px; align-items: start; }
}
.lead__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-deep);
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  margin-bottom: 20px;
}
.lead__date::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22a06b;
  box-shadow: 0 0 0 3px rgba(34, 160, 107, 0.2);
}
.lead__date span::first-letter { text-transform: uppercase; }
.lead__copy h1 { max-width: 15ch; animation: lead-rise 0.6s var(--ease-out) both; }
.lead__copy .lede { animation: lead-rise 0.6s 0.08s var(--ease-out) both; margin-bottom: 28px; }
.lead__picker {
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px;
}
@media (min-width: 640px) {
  .lead__picker { padding: 24px; }
}
.lead__picker-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.lead__picker-head strong { font-family: var(--ff-display); font-size: 1.0625rem; color: var(--color-deep); }
.lead__picker-head span { font-size: 0.8125rem; color: var(--color-muted); }
.lead__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.lead__actions small { font-size: 0.8125rem; color: var(--color-muted); }
.lead__stats { margin-top: 32px; }
@keyframes lead-rise {
  from { transform: translateY(12px); }
  to { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lead__copy h1,
  .lead__copy .lede { animation: none; }
}

/* ---------- app window ---------- */
.app {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-window);
  overflow: hidden;
}
.app__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f1f3f6;
  border-bottom: 1px solid var(--color-soft-line);
  font-size: 0.8125rem;
  color: var(--color-muted);
}
.app__dots { display: flex; gap: 6px; }
.app__dots i { width: 10px; height: 10px; border-radius: 50%; background: #d3d8df; }
.app__title { flex: 1; text-align: center; font-weight: 600; color: var(--color-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app__time { font-variant-numeric: tabular-nums; }
.app__body {
  position: relative;
  min-height: 520px;
  max-height: 640px;
  overflow: auto;
  scrollbar-width: thin;
}
.app.is-locked .app__body { overflow: hidden; }
.app__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 12px;
}
.app__head h2 { font-size: 1.0625rem; margin: 0; }
.app__head span { font-size: 0.8125rem; color: var(--color-muted); }
.app__feed {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
  display: grid;
  gap: 10px;
  transition: filter 0.5s var(--ease-out);
}
.app.is-locked .app__feed {
  filter: blur(7px) saturate(0.8);
  pointer-events: none;
  user-select: none;
}
.app__card {
  padding: 14px 16px;
  border: 1px solid var(--color-soft-line);
  border-radius: 10px;
  background: var(--color-white);
}
.app__card[hidden] { display: none; }
.app__card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.app__card-top small { font-size: 0.75rem; color: var(--color-muted); }
.app__card h3 { font-size: 1rem; margin: 0 0 6px; line-height: 1.3; }
.app__card p { font-size: 0.875rem; color: #3d4654; margin: 0 0 8px; }
.app__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 0.75rem;
  color: var(--color-muted);
}
.app__card-meta b { color: var(--color-deep); font-weight: 600; }
.app__card-meta a { color: var(--color-accent); font-weight: 600; text-decoration: none; }
.app__veil {
  position: absolute;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 72px 24px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.86) 45%, rgba(255, 255, 255, 0.96) 100%);
}
.app__veil[hidden] { display: none; }
.app__state {
  width: 100%;
  max-width: 380px;
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  text-align: center;
}
.app__state[hidden] { display: none; }
.app__state h3 { margin-bottom: 6px; }
.app__state p { font-size: 0.9375rem; color: var(--color-muted); }
.app__glyph {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: var(--color-panel);
  color: var(--color-deep);
  display: grid;
  place-items: center;
}
.app__glyph .ico { width: 26px; height: 26px; }
.app__state .btn { margin-top: 16px; }
.app__state small { display: block; margin-top: 10px; font-size: 0.8125rem; color: var(--color-muted); }

/* state panels pop in */
.app__state { animation: state-in 0.3s var(--ease-out) both; }
@keyframes state-in {
  from { transform: translateY(10px) scale(0.98); }
  to { transform: none; }
}

/* run state: live log */
.run { text-align: left; max-width: 420px; }
.run__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.run__head strong { font-family: var(--ff-display); font-size: 1.0625rem; color: var(--color-deep); white-space: nowrap; }
.run__phase {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}
.run__spin {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: none;
  background: conic-gradient(var(--color-accent) 0 25%, var(--color-panel) 25% 100%);
  -webkit-mask: radial-gradient(circle, transparent 52%, #000 56%);
  mask: radial-gradient(circle, transparent 52%, #000 56%);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.run__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.run__metrics > div {
  background: var(--color-paper);
  border: 1px solid var(--color-soft-line);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
}
.run__metrics b {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-deep);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.run__metrics span { display: block; font-size: 0.625rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-muted); margin-top: 2px; }
.run__metrics > div.is-pop { animation: metric-pop 0.4s var(--ease-out); border-color: var(--color-accent); background: var(--color-panel); }
@keyframes metric-pop {
  0% { transform: scale(0.9); }
  60% { transform: scale(1.06); }
  100% { transform: none; }
}
.run__log {
  list-style: none;
  padding: 10px 12px;
  margin: 0 0 12px;
  height: 128px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-deeper);
  color: #c9dbea;
  font-family: ui-monospace, "Cascadia Mono", "SF Mono", Consolas, monospace;
  font-size: 0.6875rem;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.run__log li {
  display: flex;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: log-in 0.22s var(--ease-out) both;
}
.run__log .run__stamp { color: #6f8aa6; flex: none; }
.run__log li span:last-child::before { margin-right: 6px; }
.run__log li.is-ok span:last-child::before { content: "\2713 "; color: #4fc38a; }
.run__log li.is-work span:last-child::before { content: "\203A "; color: var(--color-accent); }
.run__log li.is-done span:last-child { color: var(--color-white); font-weight: 600; }
.run__log li.is-done span:last-child::before { content: "\2713 "; color: #4fc38a; }
@keyframes log-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.run__eta {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: var(--color-muted);
}
.run__eta b { color: var(--color-deep); font-variant-numeric: tabular-nums; }
.chip:disabled { cursor: default; opacity: 0.7; }
.btn:disabled { cursor: default; opacity: 0.75; }
.progress__bar {
  height: 6px;
  border-radius: 3px;
  background: var(--color-panel);
  overflow: hidden;
}
.progress__bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-deep), var(--color-accent), #8fd3f4, var(--color-accent), var(--color-deep));
  background-size: 200% 100%;
  animation: shimmer 1.1s linear infinite;
  transition: width 0.2s linear;
}
@keyframes shimmer {
  from { background-position: 0 0; }
  to { background-position: 200% 0; }
}

/* scan line + card hits under the blur while the demo runs */
.app.is-running .app__body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  box-shadow: 0 0 24px 4px rgba(51, 153, 204, 0.45);
  animation: scan 1.05s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scan {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.app__card { transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out); }
.app__card.is-hit {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(51, 153, 204, 0.35), 0 8px 24px rgba(51, 153, 204, 0.25);
  transform: scale(1.015);
}
@media (prefers-reduced-motion: reduce) {
  .run__spin, .progress__bar i, .app.is-running .app__body::before { animation: none; }
}

/* lock summary */
.lock__facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--color-muted);
}
.lock__facts b { color: var(--color-deep); }

/* =========================================================
   SOURCES BAR
   ========================================================= */
.sources {
  padding: 28px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-soft-line);
  border-bottom: 1px solid var(--color-soft-line);
}
.sources__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}
.sources__label { font-size: 0.8125rem; font-weight: 600; color: var(--color-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.sources__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: #7a8594;
}

/* =========================================================
   HOW IT WORKS (dark, three mini UIs)
   ========================================================= */
.how__grid { display: grid; gap: 24px; }
@media (min-width: 900px) {
  .how__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.how__step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.how__num {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: #8fc7e8;
  margin-bottom: 14px;
}
.how__ui {
  background: var(--color-white);
  border-radius: 10px;
  padding: 14px;
  color: var(--color-ink);
  min-height: 150px;
  margin-bottom: 18px;
  font-size: 0.8125rem;
}
.how__step h3 { margin-bottom: 6px; }
.how__step p { font-size: 0.9375rem; color: #b9c8d6; }
.ui-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ui-chips span {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 0.75rem;
}
.ui-chips span.on { background: var(--color-deep); color: var(--color-white); border-color: var(--color-deep); }
.ui-label { font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 8px; }
.ui-lines { display: grid; gap: 5px; margin-top: 10px; }
.ui-lines i { display: block; height: 7px; border-radius: 4px; background: #e6eaef; }
.ui-lines i:nth-child(2) { width: 82%; }
.ui-lines i:nth-child(3) { width: 64%; }
.ui-merge { display: grid; grid-template-columns: 1fr 24px 1fr; align-items: center; gap: 8px; }
.ui-merge .ico { color: var(--color-accent); }
.ui-merge__in { display: grid; gap: 4px; }
.ui-merge__in i { display: block; height: 6px; border-radius: 3px; background: #e6eaef; }
.ui-merge__out {
  border: 1px solid #bcd6e8;
  background: var(--color-panel);
  border-radius: 8px;
  padding: 8px;
}
.ui-merge__out b { display: block; font-size: 0.75rem; color: var(--color-deep); margin-bottom: 4px; }
.ui-merge__out i { display: block; height: 5px; border-radius: 3px; background: #c9dfee; margin-top: 3px; }
.ui-mail { border: 1px solid var(--color-soft-line); border-radius: 8px; overflow: hidden; }
.ui-mail__head { display: flex; justify-content: space-between; padding: 8px 10px; background: #f1f3f6; font-weight: 600; font-size: 0.75rem; }
.ui-mail__body { padding: 10px; }
.ui-mail__body b { display: block; font-size: 0.8125rem; color: var(--color-deep); margin-bottom: 4px; }
.ui-mail__chan { display: flex; gap: 6px; margin-top: 10px; }
.ui-mail__chan span { font-size: 0.6875rem; padding: 3px 8px; border-radius: 999px; background: var(--color-panel); color: var(--color-deep); font-weight: 600; }

/* =========================================================
   ABOUT (what the service is)
   ========================================================= */
.about__grid { display: grid; gap: 40px; }
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: start; }
}
.about__copy p { color: #3d4654; }
.about__copy p + p { margin-top: 1em; }
.about__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.about__list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  border-radius: 12px;
}
.about__list .ico-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-panel);
  color: var(--color-deep);
  display: grid;
  place-items: center;
}
.about__list strong { display: block; font-family: var(--ff-display); color: var(--color-deep); margin-bottom: 2px; }
.about__list span { font-size: 0.9375rem; color: var(--color-muted); }

/* =========================================================
   FEATURES
   ========================================================= */
.features__grid {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .features__grid > li:nth-child(3n + 2) { transform: translateY(20px); }
}
.feature {
  height: 100%;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.feature:hover { box-shadow: var(--shadow-card); border-color: #bcd6e8; }
.feature .ico-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-deep);
  color: var(--color-white);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature .ico-box .ico { width: 22px; height: 22px; }
.feature h3 { font-size: 1.125rem; margin-bottom: 6px; }
.feature p { font-size: 0.9375rem; color: var(--color-muted); }
.feature .tag { margin-left: 8px; vertical-align: middle; }

/* =========================================================
   THEMES (links to the five topic pages)
   ========================================================= */
.themes__grid {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) { .themes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .themes__grid { grid-template-columns: repeat(5, 1fr); } }
.theme-card {
  display: block;
  height: 100%;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-ink);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, border-color 0.2s;
}
.theme-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: #bcd6e8; color: var(--color-ink); }
.theme-card .ico { color: var(--color-accent); width: 24px; height: 24px; margin-bottom: 14px; }
.theme-card h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.theme-card p { font-size: 0.875rem; color: var(--color-muted); margin-bottom: 12px; }
.theme-card span { font-size: 0.875rem; font-weight: 600; color: var(--color-deep); }

/* =========================================================
   PLANS (three cards)
   ========================================================= */
.plans__grid { display: grid; gap: 20px; }
@media (min-width: 900px) {
  .plans__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
}
.plan {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.plan--hot {
  border-color: var(--color-deep);
  box-shadow: var(--shadow-window);
}
@media (min-width: 900px) { .plan--hot { margin-top: -16px; } }
.plan__badge {
  position: absolute;
  top: -13px;
  left: 26px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-deep);
  color: var(--color-white);
  padding: 5px 10px;
  border-radius: 999px;
}
.plan h3 { font-size: 1.25rem; margin-bottom: 4px; }
.plan__for { font-size: 0.9375rem; color: var(--color-muted); min-height: 3em; }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 18px 0 4px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  color: var(--color-deep);
  line-height: 1;
}
.plan__price small { font-family: var(--ff-body); font-size: 0.9375rem; font-weight: 400; color: var(--color-muted); letter-spacing: 0; }
.plan__note { font-size: 0.8125rem; color: var(--color-muted); margin-bottom: 20px; }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  font-size: 0.9375rem;
  flex: 1;
}
.plan li { display: flex; gap: 10px; align-items: flex-start; }
.plan li .ico { width: 18px; height: 18px; color: var(--color-accent); margin-top: 3px; }
.plan li.plan__off { color: var(--color-muted); }
.plan li.plan__off .ico { color: var(--color-line); }
.plans__terms {
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 76ch;
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) { .trust { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.trust li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.trust .ico-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  color: var(--color-deep);
  display: grid;
  place-items: center;
}
.trust strong { display: block; font-family: var(--ff-display); color: var(--color-deep); margin-bottom: 2px; }
.trust span { font-size: 0.9375rem; color: var(--color-muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq__grid { display: grid; gap: 40px; }
@media (min-width: 900px) {
  .faq__grid { grid-template-columns: 1fr 1.6fr; gap: 72px; }
}
.faq details { border-top: 1px solid var(--color-soft-line); }
.faq details:last-child { border-bottom: 1px solid var(--color-soft-line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 44px 18px 0;
  position: relative;
  font-family: var(--ff-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(225deg); top: 26px; }
.faq details p { padding: 0 0 20px; max-width: 62ch; color: #3d4654; }

/* =========================================================
   CLOSING CTA
   ========================================================= */
.closing { text-align: center; max-width: 720px; margin-inline: auto; }
.band--deep a.btn--light { color: var(--color-deep); }
.band--deep a.btn--light:hover { color: var(--color-deep); }
.band--deep a.btn--ghost { color: var(--color-white); border-color: rgba(255, 255, 255, 0.45); }
.band--deep a.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: var(--color-white); }
.closing p { color: #b9c8d6; font-size: 1.125rem; }
.closing__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.closing small { display: block; margin-top: 16px; font-size: 0.875rem; color: #8fa3b8; }

/* =========================================================
   TEMA PAGES
   ========================================================= */
.crumbs { font-size: 0.875rem; color: var(--color-muted); margin: 0 0 18px; }
.crumbs a { color: var(--color-muted); }
.crumbs span { margin: 0 6px; }
.tema-cover__grid { display: grid; gap: 40px; }
@media (min-width: 1000px) {
  .tema-cover__grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 64px; align-items: start; }
  .rail { position: sticky; top: 92px; }
}
.cover-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 640px) { .cover-list { grid-template-columns: 1fr 1fr; } }
.cover-list li {
  padding: 14px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  border-radius: 10px;
  font-size: 0.9375rem;
  color: var(--color-muted);
}
.cover-list strong { display: block; color: var(--color-deep); margin-bottom: 2px; }
.tema-more {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tema-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 16px;
  border: 1.5px solid var(--color-soft-line);
  border-radius: 999px;
  background: var(--color-white);
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 500;
  font-size: 0.9375rem;
}
.tema-more a .ico { width: 16px; height: 16px; color: var(--color-accent); }
.tema-more a:hover { border-color: var(--color-accent); color: var(--color-deep); }

/* =========================================================
   CONTACTO
   ========================================================= */
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
}
.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 14px;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-card p { margin-bottom: 4px; font-size: 0.9375rem; }
.contact-card address { font-style: normal; }
.people { list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; }
@media (min-width: 640px) { .people { grid-template-columns: 1fr 1fr; } }
.people li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--color-white);
  border: 1px solid var(--color-soft-line);
  border-radius: 12px;
  padding: 18px;
}
.people img { width: 96px; height: 96px; border-radius: 12px; object-fit: cover; }
.people h3 { font-size: 1.0625rem; margin: 0 0 2px; }
.people .role { font-size: 0.8125rem; color: var(--color-accent); font-weight: 600; margin-bottom: 8px; }
.people p { font-size: 0.875rem; color: var(--color-muted); }

/* =========================================================
   LEGAL / 404
   ========================================================= */
.legal { max-width: 74ch; }
.legal h1 { font-size: clamp(2rem, 1.4rem + 2vw, 2.75rem); }
.legal h2 { font-size: 1.375rem; margin-top: 40px; }
.legal p, .legal li { color: #3d4654; }
.legal .updated { font-size: 0.875rem; color: var(--color-muted); }
.legal table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; background: var(--color-white); }
.legal th, .legal td { text-align: left; padding: 10px 12px; border: 1px solid var(--color-soft-line); vertical-align: top; }
.legal thead th { background: var(--color-panel); }
.lost {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.lost h1 { font-size: clamp(3rem, 2rem + 6vw, 7rem); color: var(--color-accent); margin-bottom: 8px; }
.lost .lede { margin-inline: auto; }
