/* index.css - especifico de la pagina (generado) */

.serif { font-family: var(--font-heading); font-weight: 400; letter-spacing: -0.01em; }

.sans { font-family: var(--font-body); }

.mono { font-family: var(--font-mono); }

.h1 { font-family: var(--font-heading); font-size: var(--fs-h1); line-height: var(--lh-heading); letter-spacing: -0.015em; }

.h2 { font-family: var(--font-heading); font-size: var(--fs-h2); line-height: var(--lh-heading); letter-spacing: -0.01em; }

.h3 { font-family: var(--font-heading); font-size: var(--fs-h3); line-height: var(--lh-heading); }

.body-lg { font-size: var(--fs-body-lg); line-height: 1.55; }

.caption { font-size: var(--fs-caption); color: var(--ink-muted); }

.italic { font-style: italic; }

@media (max-width: 720px) {
    .nav { display: none; }
    .nav.compact { display: flex; gap: 1.25rem; }
    .nav.compact a:not(.cta-mini) { display: none; }
  }

.hero h1 {
    font-size: var(--fs-display);
    max-width: 22ch;
    text-wrap: balance;
  }

.hero h1 em.q {
    font-style: italic;
    color: var(--accent);
  }

.prose-block.indented { margin-left: auto; max-width: 38rem; }

.figure {
    margin-top: clamp(3rem, 5vw, 4.5rem);
  }

.figure-cap {
    display: flex;
    gap: 1.25rem;
    align-items: baseline;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--rule);
  }

.figure-cap .tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
  }

.figure-cap .title {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--ink-muted);
    font-size: 1rem;
  }

.fig01 {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--rule);
  }

.fig01 .col {
    padding: 1.5rem 0 1.75rem;
    border-bottom: 1px solid var(--rule);
  }

.fig01 .col .label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.5rem;
    display: block;
  }

.fig01 .col .head {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

.fig01 .col ul {
    margin: 0; padding: 0; list-style: none;
    display: grid; gap: 0.4rem;
    font-size: 0.9375rem;
    color: var(--ink-muted);
    line-height: 1.5;
  }

.fig01 .col ul li::before {
    content: "—  ";
    color: var(--rule);
  }

@media (min-width: 820px) {
    .fig01 { grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--rule); }
    .fig01 .col { padding: 1.75rem 1.75rem 2rem; border-bottom: none; border-right: 1px solid var(--rule); }
    .fig01 .col:first-child { padding-left: 0; }
    .fig01 .col:last-child  { padding-right: 0; border-right: none; }
    .fig01 .col.causa { grid-column: 1 / -1; border-right: none; border-top: 1px solid var(--rule); padding: 1.5rem 0 0; }
  }

.fig02 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }

.fig02 .node {
    border: 1px solid var(--ink-inverse-muted);
    padding: 1.5rem;
    background: transparent;
  }

.fig02 .node .lbl {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-inverse-muted);
    margin-bottom: 0.85rem;
    display: block;
  }

.fig02 .node .hd {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    line-height: 1.2;
    color: var(--ink-inverse);
    margin-bottom: 0.6rem;
  }

.fig02 .node p {
    color: var(--ink-inverse-muted);
    font-size: 0.9375rem;
    line-height: 1.55;
  }

@media (min-width: 820px) {
    .fig02 {
      grid-template-columns: 1fr 8rem 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 1rem 1rem;
    }
    .fig02 .source { grid-row: 1 / span 2; grid-column: 1; align-self: center; }
    .fig02 .conn   { grid-row: 1 / span 2; grid-column: 2; align-self: stretch; position: relative; border: none; padding: 0; }
    .fig02 .conn::before, .fig02 .conn::after {
      content: ""; position: absolute; left: 0; right: 0; height: 1px;
      background: var(--ink-inverse-muted);
    }
    .fig02 .conn::before { top: 25%; }
    .fig02 .conn::after  { top: 75%; }
    .fig02 .conn .stem   {
      position: absolute; top: 25%; bottom: 25%; left: 0; width: 1px;
      background: var(--ink-inverse-muted);
    }
    .fig02 .a { grid-row: 1; grid-column: 3; }
    .fig02 .b { grid-row: 2; grid-column: 3; }
  }

.fig03 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

.fig03 .step {
    padding: 1.5rem 0;
    border-bottom: 1px dashed var(--rule);
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
    align-items: baseline;
  }

.fig03 .step:last-child { border-bottom: none; }

.fig03 .step .n {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
  }

.fig03 .step .t {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    line-height: 1.35;
  }

.fig03 .step .sub {
    font-size: 0.875rem;
    color: var(--ink-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
    display: block;
    margin-top: 0.25rem;
  }

@media (min-width: 900px) {
    .fig03 {
      grid-template-columns: repeat(5, 1fr);
      border-bottom: 1px solid var(--rule);
    }
    .fig03 .step {
      padding: 1.5rem 1.25rem 1.75rem;
      border-bottom: none;
      border-right: 1px solid var(--rule);
      grid-template-columns: 1fr;
      gap: 0.65rem;
      align-items: start;
    }
    .fig03 .step:last-child { border-right: none; }
    .fig03 .step:first-child { padding-left: 0; }
    .fig03 .step:last-child  { padding-right: 0; }
    .fig03 .step .t { font-size: 1.0625rem; }
  }

.differentiators {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 3vw, 3rem);
  }

.diff {
    padding-top: 1.25rem;
    border-top: 1px solid var(--ink);
  }

.diff .nbig {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.5rem;
    display: block;
  }

.diff:nth-child(2) .nbig { color: var(--accent); }

.diff h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    max-width: 24ch;
    text-wrap: balance;
  }

.diff p {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.6;
    max-width: 32ch;
  }

@media (min-width: 900px) {
    .differentiators { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 4rem); }
  }

.dark .muted { color: var(--ink-inverse-muted); }

.dark .figure-cap { border-color: #2a2a2a; }

.dark .figure-cap .tag { color: var(--ink-inverse); }

.dark .figure-cap .title { color: var(--ink-inverse-muted); }

.dark .prose a {
    text-decoration-color: var(--ink-inverse);
  }

.dark .prose a:hover { color: var(--ink-inverse); text-decoration-thickness: 2px; }

.ref-table {
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--rule);
    margin-top: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

.ref-table .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule);
  }

.ref-table .row:last-child { border-bottom: none; }

.ref-table .row .k {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

.ref-table .row .v {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.5;
  }

.ref-table .row .v strong { font-weight: 500; }

.ref-table .ref-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--accent);
  }

@media (min-width: 720px) {
    .ref-table .row { grid-template-columns: 14rem 1fr; }
  }

.creds {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: clamp(2.5rem, 4vw, 3rem);
  }

.creds .c { padding-top: 1rem; border-top: 1px solid var(--rule); }

.creds .c .lbl {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.5rem;
    display: block;
  }

.creds .c p { font-size: 0.9375rem; line-height: 1.55; color: var(--ink); }

@media (min-width: 820px) {
    .creds { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  }

.inline-links {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2.5rem;
    font-size: 0.9375rem;
    color: var(--ink-muted);
  }

.closing {
    padding-top: clamp(5rem, 9vw, 9rem);
    padding-bottom: clamp(5rem, 9vw, 9rem);
  }

.closing .quote {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.2vw, 3.75rem);
    line-height: 1.12;
    letter-spacing: -0.018em;
    max-width: 22ch;
    text-wrap: balance;
    margin-top: clamp(2rem, 4vw, 3rem);
  }

.cta-block {
    margin-top: clamp(3rem, 6vw, 5rem);
    display: grid;
    gap: 1rem;
    align-items: baseline;
  }

.smallcaps-mono {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }
