  @font-face {
    font-family: 'Fraunces Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(/fonts/fraunces-600.woff2) format('woff2');
  }
  @font-face {
    font-family: 'Fraunces Display';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url(/fonts/fraunces-italic500.woff2) format('woff2');
  }
  @font-face {
    font-family: 'Plex Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(/fonts/plexsans-400.woff2) format('woff2');
  }
  @font-face {
    font-family: 'Plex Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(/fonts/plexsans-500.woff2) format('woff2');
  }
  @font-face {
    font-family: 'Plex Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(/fonts/plexsans-600.woff2) format('woff2');
  }
  @font-face {
    font-family: 'Plex Mono';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(/fonts/plexmono-500.woff2) format('woff2');
  }
  @font-face {
    font-family: 'Plex Mono';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(/fonts/plexmono-600.woff2) format('woff2');
  }

  :root {
    --ink: #f2f1ec;
    --ink-soft: #c3c6dc;
    --ink-faint: #8b90b3;
    --paper: #080c24;
    --surface: #121741;
    --surface-2: #1a2054;
    --brass: #e6bd6e;
    --brass-ink: #f0cd8a;
    --brass-deep: #c2933f;
    --brass-bg: #121741;
    --brass-grad: linear-gradient(135deg, #f6dba6 0%, #e0b563 45%, #c2933f 100%);
    --border: rgba(242, 241, 236, 0.13);
    --border-strong: rgba(242, 241, 236, 0.26);
    --border-gold: rgba(230, 189, 110, 0.34);
    --shadow-card: 0 18px 44px -18px rgba(0, 0, 0, 0.75);
    --shadow-lift: 0 26px 60px -20px rgba(0, 0, 0, 0.85);
    color-scheme: dark;
  }

  * { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Plex Sans', ui-sans-serif, system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img, svg { max-width: 100%; display: block; }

  a { color: inherit; }
  a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
  }

  .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: clamp(22px, 5vw, 60px);
    padding-right: clamp(22px, 5vw, 60px);
  }

  /* Gold gradient text, used sparingly on the loudest numbers/phrases */
  .gold-grad {
    background: var(--brass-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .eyebrow {
    font-family: 'Plex Mono', ui-monospace, monospace;
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass-ink);
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
  }
  .eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--brass-grad);
    display: inline-block;
    border-radius: 2px;
  }

  h1, h2, h3 {
    font-family: 'Fraunces Display', Georgia, serif;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    text-wrap: balance;
    letter-spacing: -0.01em;
  }
  em.accent {
    font-family: 'Fraunces Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--brass-ink);
  }

  p { margin: 0; }
  .lede {
    font-size: 1.2rem;
    color: var(--ink-soft);
    max-width: 52ch;
    line-height: 1.62;
  }

  /* ---------- Nav ---------- */
  header.site {
    position: sticky;
    top: 0;
    z-index: 40;
    background: color-mix(in srgb, var(--paper) 82%, transparent);
    backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--border);
  }
  .nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .wordmark {
    display: block;
    line-height: 0;
    transition: transform 0.2s ease;
  }
  .wordmark:hover { transform: translateY(-1px); }
  .wordmark img {
    height: 72px;
    width: auto;
    display: block;
    filter: drop-shadow(0 3px 14px rgba(230, 189, 110, 0.24));
  }
  .nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 8px;
  }
  .nav-links a {
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 2px;
    background: var(--brass-grad);
    border-radius: 2px;
    transition: right 0.25s ease;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { right: 0; }
  @media (max-width: 900px) { .nav-links { display: none; } }

  .foot-logo img {
    height: 58px;
    width: auto;
    display: block;
  }

  .btn {
    font-family: 'Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.005em;
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 0.95em 1.7em;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  }
  .btn-primary {
    background: var(--brass-grad);
    color: #180f02;
    box-shadow: 0 10px 30px -10px rgba(230, 189, 110, 0.6);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -12px rgba(230, 189, 110, 0.75);
  }
  .btn-ghost {
    background: transparent;
    border-color: var(--border-strong);
    color: var(--ink);
  }
  .btn-ghost:hover { border-color: var(--brass); color: var(--brass-ink); transform: translateY(-2px); }
  .btn-nav { padding: 0.72em 1.3em; font-size: 0.92rem; }
  .btn-arrow { transition: transform 0.18s ease; }
  .btn:hover .btn-arrow { transform: translateX(4px); }

  .chain-line {
    --dash: 10;
    height: 2px;
    width: 100%;
    max-width: 420px;
    background: repeating-linear-gradient(
      90deg,
      var(--brass) 0, var(--brass) calc(var(--dash) * 1px),
      transparent calc(var(--dash) * 1px), transparent calc(var(--dash) * 2px)
    );
    transform-origin: left center;
  }
  .chain-line.solid { background: var(--brass); }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    padding-top: clamp(56px, 7vw, 92px);
    padding-bottom: clamp(64px, 8vw, 104px);
    overflow: hidden;
    /* layered light: warm gold glow behind the artwork, cool depth bottom-left */
    background:
      radial-gradient(900px 620px at 78% 32%, rgba(230, 189, 110, 0.13), transparent 62%),
      radial-gradient(760px 520px at 8% 88%, rgba(60, 78, 190, 0.16), transparent 66%);
  }
  .hero::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  }
  .motif {
    position: absolute;
    pointer-events: none;
    color: var(--ink);
  }
  .motif svg { display: block; width: 100%; height: 100%; }
  .motif .fill { fill: currentColor; }
  .motif .stroke { fill: none; stroke: currentColor; }

  /* Faint scales-of-justice watermark, echoed behind the hero for depth */
  .hero-motif {
    width: 460px;
    height: 498px;
    top: -90px;
    right: -110px;
    opacity: 0.05;
    transform: rotate(9deg);
  }
  @media (max-width: 940px) {
    .hero-motif { width: 300px; height: 325px; top: -40px; right: -70px; }
  }

  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 5vw, 68px);
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 5.2vw, 4.4rem);
    line-height: 1.02;
    margin-top: 24px;
    letter-spacing: -0.022em;
  }
  .hero .lede { margin-top: 26px; }
  .hero-cta {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
  }
  .link-inline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 3px;
    transition: color 0.18s ease, border-color 0.18s ease;
  }
  .link-inline:hover { color: var(--brass-ink); border-color: var(--brass); }

  /* Hero artwork: the brand icon, lit from behind */
  .hero-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-art::before {
    content: "";
    position: absolute;
    width: 118%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 189, 110, 0.2) 0%, rgba(230, 189, 110, 0.07) 42%, transparent 68%);
    filter: blur(6px);
  }
  .hero-art img {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 26px 54px rgba(0, 0, 0, 0.62));
  }
  /* Rings sit behind and around the artwork, so they must out-scale it */
  .hero-art .ring {
    position: absolute;
    width: 126%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    opacity: 0.45;
  }
  .hero-art .ring.r2 { width: 100%; opacity: 0.26; }

  /* Trust chips */
  .hero-chips {
    margin-top: 34px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ink-soft);
    backdrop-filter: blur(4px);
  }
  .chip svg { width: 15px; height: 15px; flex-shrink: 0; }
  .chip svg path, .chip svg circle { stroke: var(--brass); }

  .hero-foot {
    margin-top: 46px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  @media (max-width: 940px) {
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-art { order: -1; max-width: 440px; margin: 0 auto; }
    .hero .lede { max-width: 58ch; }
  }
  @media (max-width: 620px) {
    /* keep the decorative rings inside the viewport on narrow screens */
    .hero-art { max-width: 300px; }
    .hero-art .ring { width: 112%; }
    .hero-art .ring.r2 { width: 88%; }
  }
  .hero-foot .cap {
    font-family: 'Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    white-space: nowrap;
  }

  /* ---------- Stats band ---------- */
  .stats-band {
    padding-top: clamp(44px, 5vw, 62px);
    padding-bottom: clamp(44px, 5vw, 62px);
    border-bottom: 1px solid var(--border);
    position: relative;
    background:
      radial-gradient(700px 200px at 50% 0%, rgba(230, 189, 110, 0.09), transparent 70%),
      var(--surface);
  }
  .stats-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: clamp(20px, 4vw, 48px);
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Fraunces Display', Georgia, serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 5vw, 3.7rem);
    line-height: 1;
    letter-spacing: -0.028em;
    background: var(--brass-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .stat-label {
    margin-top: 12px;
    font-family: 'Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .stat-divider {
    width: 1px;
    height: 62px;
    background: linear-gradient(180deg, transparent, var(--border-gold), transparent);
  }
  @media (max-width: 720px) {
    .stats-row { grid-template-columns: 1fr; gap: 30px; }
    .stat-divider { width: 64px; height: 1px; justify-self: center; background: linear-gradient(90deg, transparent, var(--border-gold), transparent); }
  }

  /* ---------- Sections ---------- */
  section { padding-top: clamp(66px, 8.5vw, 116px); padding-bottom: clamp(66px, 8.5vw, 116px); }
  .section-head { max-width: 66ch; }
  .section-head h2 {
    font-size: clamp(1.95rem, 3.5vw, 2.9rem);
    margin-top: 20px;
    line-height: 1.12;
    letter-spacing: -0.018em;
  }
  .section-head .lede { margin-top: 14px; }

  .surface-band { background: var(--surface); }

  /* ---------- Obstacle cards, split into the two problems ---------- */
  .obstacle-groups {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
  .ogroup-title {
    font-family: 'Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 1.12rem;
    letter-spacing: normal;
    color: var(--brass-ink);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-gold);
  }
  .clauses {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  @media (max-width: 860px) {
    .obstacle-groups { grid-template-columns: 1fr; gap: 32px; }
  }
  .clause {
    position: relative;
    padding: 30px 30px 30px 28px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }
  .clause::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--brass-grad);
    opacity: 0.75;
  }
  .clause:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lift);
  }
  .clause .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--border-gold);
    background: rgba(230, 189, 110, 0.09);
    font-family: 'Plex Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brass-ink);
    letter-spacing: 0.06em;
  }
  .clause h3 {
    font-family: 'Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 1.16rem;
    margin-top: 16px;
    margin-bottom: 8px;
    letter-spacing: normal;
  }
  .clause p { color: var(--ink-soft); font-size: 1.02rem; }

  .clauses-note {
    margin-top: 30px;
    font-size: 1.12rem;
    color: var(--ink-soft);
    font-style: italic;
    font-family: 'Fraunces Display', Georgia, serif;
    padding-left: 20px;
    border-left: 2px solid var(--brass);
    max-width: 74ch;
  }

  /* ---------- Service sub-pages: breadcrumb, pricing, back-link ---------- */
  .crumb {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--border-gold);
  }
  .crumb:hover { color: var(--brass-ink); }
  .pricing-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .pricing-grid.single { grid-template-columns: 1fr; }
  .pricing-grid.triple { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  @media (max-width: 980px) { .pricing-grid.triple { grid-template-columns: 1fr; } }
  .pricing-card {
    position: relative;
    padding: 34px 32px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(165deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
    box-shadow: var(--shadow-card);
  }
  .pricing-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brass-grad);
  }
  .pricing-card.wide { max-width: 74ch; }
  .pricing-tag {
    font-family: 'Plex Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brass-ink);
  }
  .pricing-card h3 {
    font-size: 1.28rem;
    margin-top: 12px;
    letter-spacing: -0.012em;
  }
  .pricing-num {
    font-family: 'Fraunces Display', Georgia, serif;
    font-weight: 600;
    font-size: 2.1rem;
    margin-top: 10px;
    background: var(--brass-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .pricing-card p {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 1.02rem;
  }
  .svc-back { margin-top: 30px; }
  @media (max-width: 700px) {
    .pricing-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Glossary / long-form article pages ---------- */
  .byline-row {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .byline {
    font-family: 'Plex Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--ink-faint);
  }
  .byline strong { color: var(--ink-soft); font-weight: 500; }

  .toc {
    margin-top: 40px;
    padding: 26px 28px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(165deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
    max-width: 60ch;
  }
  .toc-title {
    font-family: 'Plex Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brass-ink);
  }
  .toc ol {
    margin: 16px 0 0;
    padding: 0 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .toc a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.98rem;
    border-bottom: 1px solid transparent;
  }
  .toc a:hover { color: var(--brass-ink); border-color: var(--brass); }

  .prose {
    margin-top: 20px;
    max-width: 68ch;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.05rem;
    line-height: 1.72;
    color: var(--ink-soft);
  }
  .prose h3 {
    font-family: 'Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--ink);
    letter-spacing: normal;
    margin-top: 6px;
  }
  .prose strong { color: var(--ink); font-weight: 600; }
  .prose ul, .prose ol.plain {
    margin: 0;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .prose li::marker { color: var(--brass-ink); }
  .prose .callout {
    padding: 18px 22px;
    border-left: 2px solid var(--brass);
    background: rgba(230, 189, 110, 0.06);
    border-radius: 0 6px 6px 0;
    font-size: 1rem;
  }
  .article-section {
    margin-top: 56px;
    scroll-margin-top: 90px;
  }
  .article-section:first-of-type { margin-top: 44px; }

  .glossary-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .glossary-card {
    padding: 32px 30px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(165deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
    box-shadow: var(--shadow-card);
    text-decoration: none;
    display: block;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }
  .glossary-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lift);
  }
  .glossary-card .eyebrow { margin-bottom: 4px; }
  .glossary-card h3 {
    font-size: 1.3rem;
    margin-top: 14px;
    letter-spacing: -0.012em;
  }
  .glossary-card p {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 1.02rem;
  }
  .glossary-card .read-more {
    display: inline-flex;
    margin-top: 20px;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--brass-ink);
  }
  @media (max-width: 780px) {
    .glossary-grid { grid-template-columns: 1fr; }
  }

  .learn-more-box {
    margin-top: 46px;
    padding: 26px 28px;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    background: rgba(230, 189, 110, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .learn-more-box p { color: var(--ink-soft); font-size: 1rem; max-width: 46ch; }
  .learn-more-box strong { color: var(--ink); }

  /* ---------- Two service pillars ---------- */
  .services-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .service-pillar {
    position: relative;
    padding: 38px 34px 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(165deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }
  .service-pillar::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brass-grad);
  }
  .service-pillar:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lift);
  }
  .pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-gold);
    background: rgba(230, 189, 110, 0.1);
    margin-bottom: 20px;
  }
  .pillar-icon svg { width: 26px; height: 26px; }
  .pillar-icon svg path, .pillar-icon svg rect, .pillar-icon svg circle, .pillar-icon svg line {
    stroke: var(--brass-ink);
  }
  .service-pillar .pillar-label {
    font-family: 'Plex Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brass-ink);
  }
  .service-pillar h3 {
    font-size: clamp(1.72rem, 2.5vw, 2.05rem);
    margin-top: 12px;
    line-height: 1.14;
    letter-spacing: -0.016em;
  }
  .pillar-title-link {
    color: inherit;
    text-decoration: none;
    background: linear-gradient(var(--brass), var(--brass)) no-repeat right bottom / 0% 2px;
    transition: color 0.18s ease, background-size 0.25s ease;
  }
  .pillar-title-link:hover {
    color: var(--brass-ink);
    background-position: left bottom;
    background-size: 100% 2px;
  }
  .pillar-more {
    display: inline-flex;
    margin-top: 22px;
    font-size: 0.94rem;
  }
  .service-pillar ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
  }
  .service-pillar li {
    position: relative;
    padding-left: 28px;
    font-size: 1.04rem;
    color: var(--ink-soft);
  }
  .service-pillar li + li { margin-top: 15px; }
  .service-pillar li::before {
    content: "§";
    position: absolute;
    left: 0;
    top: -0.02em;
    font-family: 'Plex Mono', monospace;
    font-weight: 600;
    font-size: 1.08em;
    color: var(--brass-ink);
  }
  .services-note {
    margin-top: 30px;
    font-size: 1.04rem;
    color: var(--ink-soft);
  }
  /* Per-service CTA: each pillar carries the offer that is true for it */
  .pillar-cta {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .pillar-cta .btn { width: 100%; justify-content: center; }
  .pillar-cta .fine {
    font-size: 0.88rem;
    color: var(--ink-faint);
  }
  @media (max-width: 780px) {
    .services-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Método (dos tracks en zigzag) ---------- */
  .method-tracks {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 104px;
  }
  .track-label {
    display: block;
    font-family: 'Fraunces Display', Georgia, serif;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 600;
    letter-spacing: -0.012em;
    color: var(--brass-ink);
    margin-bottom: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-gold);
  }
  .zigzag {
    position: relative;
    display: flex;
    margin-top: 50px;
  }
  .zigzag::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--border-strong);
  }
  .zstep {
    flex: 1 1 0;
    position: relative;
    height: 320px;
    padding: 0 26px;
  }
  .zstep:first-child { padding-left: 0; }
  .zstep:last-child { padding-right: 0; }
  .zstep .dot {
    position: absolute;
    left: 26px;
    top: 50%;
    width: 15px;
    height: 15px;
    margin-top: -7.5px;
    margin-left: -7.5px;
    border-radius: 50%;
    background: var(--brass-grad);
    box-shadow: 0 0 0 5px rgba(230, 189, 110, 0.14), 0 0 18px rgba(230, 189, 110, 0.5);
    z-index: 1;
  }
  .zstep:first-child .dot { left: 0; margin-left: -7.5px; }
  .zstep .content {
    position: absolute;
    left: 26px;
    right: 26px;
  }
  .zstep:first-child .content { left: 0; }
  .zstep:last-child .content { right: 0; }
  .zstep:nth-child(odd) .content { bottom: calc(50% + 36px); }
  .zstep:nth-child(even) .content { top: calc(50% + 36px); }
  .zstep .tag {
    font-family: 'Plex Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brass-ink);
  }
  .zstep h3 {
    font-family: 'Plex Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: normal;
  }
  .zstep p {
    font-size: 0.99rem;
    color: var(--ink-soft);
    margin-top: 8px;
  }

  /* ---------- Differential grid ---------- */
  .principles {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .principle {
    padding: 32px 30px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(165deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }
  .principle:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lift);
  }
  .principle .mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
    background: rgba(230, 189, 110, 0.1);
  }
  .principle .mark svg { width: 26px; height: 26px; }
  .principle .mark svg path, .principle .mark svg rect, .principle .mark svg circle, .principle .mark svg line {
    stroke: var(--brass-ink);
  }
  .principle h3 {
    font-family: 'Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 20px;
    letter-spacing: normal;
  }
  .principle p {
    margin-top: 10px;
    font-size: 1.02rem;
    color: var(--ink-soft);
  }

  /* ---------- Team ---------- */
  .team-grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .team-card {
    display: grid;
    grid-template-columns: 168px 1fr;
    gap: 28px;
    align-items: start;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(165deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }
  .team-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lift);
  }
  .team-card .photo {
    position: relative;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    overflow: hidden;
    padding: 3px;
    background: var(--brass-grad);
    flex-shrink: 0;
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.7);
  }
  .team-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
  }
  @media (max-width: 1040px) {
    .team-card { grid-template-columns: 1fr; gap: 20px; }
  }
  .team-card .name-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
  }
  .team-card .name {
    font-family: 'Fraunces Display', serif;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.012em;
  }
  .team-card .li {
    font-family: 'Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-decoration: none;
    border-bottom: 1px solid var(--border-strong);
    transition: color 0.18s ease, border-color 0.18s ease;
  }
  .team-card .li:hover { color: var(--brass-ink); border-color: var(--brass); }
  .team-card .role {
    font-family: 'Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brass-ink);
    margin-top: 7px;
  }
  .team-card .bio {
    margin-top: 15px;
    color: var(--ink-soft);
    font-size: 1.02rem;
    max-width: 54ch;
  }
  .team-quote {
    margin-top: 52px;
    font-family: 'Fraunces Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: var(--ink);
    max-width: 30ch;
    line-height: 1.34;
    padding-left: 26px;
    border-left: 3px solid var(--brass);
  }
  .team-quote .accent { display: block; }
  .team-loc {
    margin-top: 24px;
    font-size: 0.86rem;
    color: var(--ink-faint);
    font-family: 'Plex Mono', monospace;
    letter-spacing: 0.06em;
  }
  @media (max-width: 560px) {
    .team-card .photo { width: 132px; height: 132px; }
  }

  /* ---------- FAQ ---------- */
  .faq-list {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    background: linear-gradient(165deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
    padding: 0 26px;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .faq-item:hover { border-color: var(--border-gold); }
  .faq-item[open] {
    border-color: var(--border-gold);
    background: linear-gradient(165deg, rgba(230,189,110,0.07), rgba(255,255,255,0.012));
  }
  .faq-item summary {
    display: grid;
    grid-template-columns: 1fr 28px;
    align-items: start;
    gap: 18px;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    font-family: 'Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 1.14rem;
    color: var(--ink);
    transition: color 0.15s ease;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--brass-ink); }
  .faq-item summary:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
  }
  .faq-sign {
    justify-self: end;
    position: relative;
    width: 14px;
    height: 14px;
    margin-top: 5px;
    flex-shrink: 0;
  }
  .faq-sign::before,
  .faq-sign::after {
    content: "";
    position: absolute;
    background: var(--brass);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .faq-sign::before { top: 6px; left: 0; width: 14px; height: 2px; }
  .faq-sign::after { left: 6px; top: 0; width: 2px; height: 14px; }
  .faq-item[open] .faq-sign::after { transform: scaleY(0); opacity: 0; }
  .faq-answer {
    padding: 0 46px 26px 0;
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 78ch;
    line-height: 1.7;
  }
  .faq-answer strong { color: var(--ink); font-weight: 600; }
  .faq-note {
    margin-top: 30px;
    font-size: 0.92rem;
    color: var(--ink-faint);
    max-width: 78ch;
    line-height: 1.62;
  }
  @media (prefers-reduced-motion: reduce) {
    .faq-sign::before, .faq-sign::after { transition: none; }
  }

  /* ---------- Final CTA ---------- */
  .cta-band {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid var(--border-gold);
    background:
      radial-gradient(760px 460px at 50% 0%, rgba(230, 189, 110, 0.2), transparent 68%),
      linear-gradient(180deg, #141a4a 0%, #0a0f2e 100%);
  }
  .cta-band .motif {
    color: #f2f1ec;
    width: 460px;
    height: 498px;
    bottom: -60px;
    left: -60px;
    opacity: 0.07;
    transform: rotate(-6deg);
  }
  .cta-band .wrap { position: relative; }
  .cta-band .eyebrow { justify-content: center; }
  .cta-band h2 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    margin: 22px auto 0;
    max-width: 22ch;
    letter-spacing: -0.02em;
  }
  .cta-band .lede {
    margin: 20px auto 0;
    max-width: 60ch;
  }
  .cta-band .hero-cta { margin-top: 40px; justify-content: center; }
  .cta-contact {
    margin-top: 30px;
    display: flex;
    gap: 10px 22px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 0.98rem;
  }
  .cta-contact span { color: var(--ink-faint); }
  .cta-contact a {
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--border-strong);
    transition: color 0.18s ease, border-color 0.18s ease;
  }
  .cta-contact a:hover { color: var(--brass-ink); border-color: var(--brass); }

  /* ---------- Footer ---------- */
  footer.site {
    padding: 32px 0;
    border-top: 1px solid var(--border);
  }
  .foot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
  }
  .foot-row .meta {
    font-family: 'Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .foot-contact {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }
  .foot-contact a {
    font-family: 'Plex Sans', sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid transparent;
  }
  .foot-contact a:hover { color: var(--brass-ink); border-color: var(--brass); }

  /* ---------- Reveal-on-scroll ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .btn, .btn .btn-arrow { transition: none; }
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1000px) {
    .cta-band .motif { width: 320px; height: 347px; left: -70px; }
  }
  @media (max-width: 880px) {
    .cta-band .motif { width: 220px; height: 238px; left: -50px; bottom: -30px; }
    .zigzag { flex-direction: column; }
    .zigzag::before { display: none; }
    .zstep {
      height: auto;
      padding: 0 0 0 20px;
      margin-bottom: 22px;
    }
    .zstep:last-child { margin-bottom: 0; }
    .zstep .dot { left: 0; top: 6px; margin-top: 0; }
    .zstep .content {
      position: static;
      left: auto; right: auto; bottom: auto; top: auto;
    }
    .principles { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; gap: 32px; }
    .nav-row .btn-nav span.full { display: none; }
  }
