  @font-face {
    font-family: 'Big Noodle Titling';
    src: url('../assets/fonts/BigNoodleTitling.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Big Noodle Titling';
    src: url('../assets/fonts/BigNoodleTitling-Oblique.ttf') format('truetype');
    font-weight: 400;
    font-style: oblique;
    font-display: swap;
  }

  :root {
    --md-blue-50:  #f0f4f9;
    --md-blue-100: #dde7f1;
    --md-blue-200: #b9cbe0;
    --md-blue-500: #54749F;
    --md-blue-600: #466189;
    --md-blue-700: #394e6e;
    --md-blue-800: #2d3e57;
    --md-blue-900: #1f2c3f;
    --md-blue-950: #11192a;

    --md-green-500: #42784E;
    --md-green-600: #356340;
    --md-green-700: #2a4f33;
    --md-green-800: #1f3b27;
    --md-green-900: #14271a;
    --md-green-950: #0c1810;

    --neutral-0:   #ffffff;
    --neutral-25:  #fafbfc;
    --neutral-50:  #f4f6f8;
    --neutral-100: #e9ecf0;
    --neutral-200: #d4dae1;
    --neutral-300: #b3bcc7;
    --neutral-400: #8b96a4;
    --neutral-500: #6b7685;
    --neutral-600: #525c6a;
    --neutral-700: #3d4651;
    --neutral-800: #262d36;
    --neutral-900: #161b22;

    --bg: var(--neutral-25);
    --surface: var(--neutral-0);
    --text: var(--neutral-900);
    --text-2: var(--neutral-600);
    --text-3: var(--neutral-500);
    --border: var(--neutral-200);
    --primary: var(--md-blue-500);
    --primary-deep: var(--md-blue-900);

    --font-sans: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'Geist Mono', ui-monospace, Menlo, monospace;
    --font-display: 'Big Noodle Titling', 'Impact', system-ui, sans-serif;
    --font-serif: 'Instrument Serif', 'Times New Roman', serif;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11";
  }

  a { color: inherit; text-decoration: none; }

  /* ─── Top bar ─────────────────────────────────────── */
  .topbar {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250, 251, 252, 0.85);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--border);
  }
  .topbar-inner {
    max-width: 1240px; margin: 0 auto;
    padding: 18px clamp(20px, 4vw, 56px);
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px;
  }
  .topbar .logo { height: 22px; width: auto; display: block; }
  .topbar nav {
    display: flex; gap: 36px; justify-self: center;
    font-size: 14px; color: var(--text-2);
  }
  .topbar nav a { transition: color 160ms; }
  .topbar nav a:hover { color: var(--text); }
  .topbar .cta-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid var(--neutral-300); border-radius: 50%;
    color: var(--text-2);
    transition: background 160ms, border-color 160ms, color 160ms;
  }
  .topbar .cta-icon:hover {
    background: var(--neutral-50); border-color: var(--neutral-400);
    color: var(--text);
  }
  @media (max-width: 760px) {
    .topbar nav { display: none; }
    .topbar-inner { grid-template-columns: auto 1fr; gap: 16px; }
  }

  /* ─── Container ───────────────────────────────────── */
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
  .narrow { max-width: 880px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

  /* ─── Hero ────────────────────────────────────────── */
  .hero {
    padding: clamp(64px, 11vw, 140px) 0 clamp(72px, 10vw, 120px);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 90% 0%, color-mix(in oklab, var(--md-blue-500) 8%, transparent), transparent 70%);
    pointer-events: none;
  }
  .hero-inner { position: relative; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--text-3); margin-bottom: 32px;
  }
  .eyebrow .line { width: 32px; height: 1px; background: var(--neutral-300); }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(54px, 8.4vw, 124px);
    line-height: 0.95;
    letter-spacing: 0.005em;
    font-weight: 400;
    margin: 0 0 36px;
    color: var(--primary-deep);
    max-width: 16ch;
  }
  .hero h1 .serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--md-green-600);
    letter-spacing: -0.005em;
    /* Big Noodle is condensed/tall — pull serif visually inline */
    font-size: 0.78em;
    vertical-align: 0.04em;
    margin: 0 0.04em;
  }
  .hero h1 .dot {
    display: inline-block; width: 0.18em; height: 0.18em;
    border-radius: 50%; background: var(--md-green-500);
    vertical-align: 0.18em; margin-left: 0.04em;
  }
  .hero-lede {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.45;
    color: var(--text-2);
    max-width: 36ch;
    margin: 0 0 48px;
    font-style: italic;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px; border-radius: 4px;
    font-size: 14px; font-weight: 500;
    border: 1px solid transparent;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
    cursor: pointer; font-family: inherit;
  }
  .btn-primary { background: var(--primary-deep); color: #fff; }
  .btn-primary:hover { background: var(--md-blue-700); }
  .btn-ghost { background: transparent; color: var(--text); border-color: var(--neutral-300); }
  .btn-ghost:hover { background: var(--neutral-50); border-color: var(--neutral-500); }
  .btn .arrow { font-family: var(--font-mono); font-weight: 400; }

  .hero-meta {
    margin-top: clamp(64px, 9vw, 112px);
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border-top: 1px solid var(--border);
    padding-top: 28px;
  }
  .hero-meta .col {
    padding-right: 24px;
  }
  .hero-meta .label {
    font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-3); margin-bottom: 10px;
  }
  .hero-meta .value {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1; color: var(--primary-deep);
    letter-spacing: 0.01em;
  }
  .hero-meta .desc { font-size: 13px; color: var(--text-2); margin-top: 8px; line-height: 1.5; }
  @media (max-width: 760px) {
    .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  }

  /* ─── Section base ────────────────────────────────── */
  section { padding: clamp(80px, 11vw, 140px) 0; border-bottom: 1px solid var(--border); }
  .section-eyebrow {
    font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--md-green-600); margin-bottom: 24px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .section-eyebrow::before {
    content: ""; width: 6px; height: 6px;
    background: var(--md-green-500); border-radius: 50%;
  }
  .section-h {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.6vw, 76px);
    line-height: 1; letter-spacing: 0.01em;
    font-weight: 400; color: var(--primary-deep);
    margin: 0 0 24px; max-width: 18ch;
  }
  .section-h .serif {
    font-family: var(--font-serif); font-style: italic;
    color: var(--md-blue-600); font-size: 0.78em;
    letter-spacing: -0.005em;
  }
  .section-lede {
    font-family: var(--font-serif); font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55; color: var(--text-2);
    max-width: 56ch; margin: 0;
  }

  /* ─── Section: O problema ─────────────────────────── */
  .problem {
    background: var(--neutral-0);
  }
  .problem-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(48px, 8vw, 120px);
    align-items: start;
  }
  @media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; gap: 56px; } }

  .problem-list { margin-top: 56px; }
  .problem-item {
    display: grid; grid-template-columns: 56px 1fr;
    padding: 28px 0; border-top: 1px solid var(--border);
    align-items: baseline;
  }
  .problem-item:last-child { border-bottom: 1px solid var(--border); }
  .problem-item .num {
    font-family: var(--font-mono); font-size: 12px;
    color: var(--md-green-600); letter-spacing: 0.06em; padding-top: 6px;
  }
  .problem-item .body h4 {
    font-family: var(--font-sans); font-size: 19px;
    font-weight: 500; color: var(--text); margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .problem-item .body p {
    font-size: 15px; color: var(--text-2); margin: 0;
    line-height: 1.65; max-width: 52ch;
  }

  .problem-quote {
    position: sticky; top: 100px;
    border-left: 2px solid var(--md-green-500);
    padding: 12px 0 12px 32px;
  }
  .problem-quote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.4; color: var(--text);
    margin: 0 0 24px;
  }
  .problem-quote .source {
    font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-3);
  }

  /* ─── Section: Pedro ──────────────────────────────── */
  .pedro {
    background: var(--md-blue-950);
    color: #e9edf3; border-bottom: 0;
    position: relative; overflow: hidden;
  }
  .pedro::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 40% at 0% 100%, color-mix(in oklab, var(--md-green-500) 18%, transparent), transparent 60%),
      radial-gradient(ellipse 60% 50% at 100% 0%, color-mix(in oklab, var(--md-blue-500) 22%, transparent), transparent 65%);
    pointer-events: none;
  }
  .pedro .wrap { position: relative; }
  .pedro .section-eyebrow { color: #9bc8a4; }
  .pedro .section-eyebrow::before { background: #9bc8a4; }
  .pedro .section-h { color: #fff; }
  .pedro .section-h .serif { color: #b9cbe0; }
  .pedro .section-lede { color: #a1adbe; }

  .pedro-grid {
    margin-top: clamp(48px, 6vw, 80px);
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(48px, 8vw, 96px);
    align-items: start;
  }
  @media (max-width: 900px) { .pedro-grid { grid-template-columns: 1fr; } }

  .portrait {
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, #232c3c 0%, #141a23 100%);
    border: 1px solid #2a3445;
    border-radius: 18px;
    display: block;
    position: relative; overflow: hidden;
  }
  .portrait img {
    width: 100%; height: 100%; display: block;
    object-fit: cover; object-position: center;
  }
  .portrait::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(
      135deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 38%,
      color-mix(in oklab, var(--md-blue-950) 55%, transparent) 70%,
      color-mix(in oklab, var(--md-green-900) 88%, transparent) 100%
    );
    pointer-events: none;
  }
  .portrait-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 28px clamp(20px, 3vw, 32px);
    z-index: 1;
    display: grid; gap: 4px;
  }
  .portrait-caption .pc-line {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.0; letter-spacing: 0.01em;
    color: #fff; font-weight: 400;
  }
  .portrait-caption .pc-line.alt {
    font-family: var(--font-serif); font-style: italic;
    color: #b8d4be;
    font-size: clamp(20px, 2.2vw, 26px);
    letter-spacing: -0.005em; line-height: 1.05;
  }
  .portrait-caption .pc-mark {
    font-family: var(--font-mono); font-size: 10px;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--md-green-500);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
  }
  .portrait-caption .pc-mark::before {
    content: ""; width: 14px; height: 1px;
    background: var(--md-green-500);
  }

  .pedro-bio { display: grid; gap: 32px; }
  .pedro-bio p {
    font-size: 17px; line-height: 1.7; color: #cbd3df;
    margin: 0; max-width: 56ch;
  }
  .pedro-bio p strong { color: #fff; font-weight: 500; }

  /* ─── Section: Sistemas em produção ───────────────── */
  .sys-section { background: var(--surface); }
  .sys-list {
    margin-top: clamp(48px, 6vw, 80px);
    border-top: 1px solid var(--neutral-900);
  }
  .sys-card {
    display: grid; grid-template-columns: 80px 1.1fr 2fr 180px;
    gap: clamp(20px, 3vw, 40px);
    padding: clamp(28px, 4vw, 40px) 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }
  @media (max-width: 980px) {
    .sys-card { grid-template-columns: 56px 1fr; }
    .sys-card .sys-detail { grid-column: 2; }
    .sys-card .sys-status { grid-column: 2; }
  }
  .sys-card .sys-idx {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--md-green-600); letter-spacing: 0.08em;
    padding-top: 8px;
  }
  .sys-card .sys-head h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.05; letter-spacing: 0.01em; font-weight: 400;
    color: var(--primary-deep); margin: 0 0 8px;
  }
  .sys-card .sys-head .client {
    font-family: var(--font-serif); font-style: italic;
    font-size: 17px; color: var(--text-2);
    margin-bottom: 16px;
  }
  .sys-card .sys-head .stack {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--text-3); letter-spacing: 0.08em;
    padding-top: 8px; border-top: 1px solid var(--border);
    margin-top: 12px;
  }
  .sys-detail { display: grid; gap: 14px; }
  .sys-detail .row {
    display: grid; grid-template-columns: 92px 1fr; gap: 16px;
    font-size: 14px; line-height: 1.6;
  }
  .sys-detail .row .lbl {
    font-family: var(--font-mono); font-size: 10px;
    color: var(--text-3); letter-spacing: 0.12em;
    text-transform: uppercase; padding-top: 2px;
  }
  .sys-detail .row.solution .lbl { color: var(--md-green-600); }
  .sys-detail .row.impact .lbl { color: var(--md-green-600); }
  .sys-detail .row .txt { color: var(--text); }
  .sys-detail .row.solution .txt { color: var(--text); }
  .sys-detail .row.impact .txt { color: var(--text-2); }

  .sys-status {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 8px; padding-top: 8px;
  }
  .sys-status .badge-status {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--md-green-700); letter-spacing: 0.06em;
    background: color-mix(in oklab, var(--md-green-500) 10%, transparent);
    border: 1px solid color-mix(in oklab, var(--md-green-500) 25%, transparent);
    padding: 6px 12px; border-radius: 999px;
  }
  .sys-status .badge-status::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--md-green-500);
  }
  .sys-status .badge-status.badge-blue {
    color: var(--md-blue-700);
    background: color-mix(in oklab, var(--md-blue-500) 10%, transparent);
    border-color: color-mix(in oklab, var(--md-blue-500) 25%, transparent);
  }
  .sys-status .badge-status.badge-blue::before { background: var(--md-blue-500); }
  .sys-status .since {
    font-size: 12px; color: var(--text-3);
    font-family: var(--font-mono); letter-spacing: 0.04em;
  }

  /* ─── Section: Diagnóstico (médico) ───────────────── */
  .diag-grid {
    margin-top: clamp(48px, 6vw, 80px);
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid var(--border); border-radius: 4px;
    background: var(--surface); overflow: hidden;
  }
  @media (max-width: 760px) { .diag-grid { grid-template-columns: 1fr; } }
  .diag-col {
    padding: clamp(36px, 5vw, 56px);
    border-right: 1px solid var(--border);
  }
  .diag-col:last-child { border-right: 0; border-top: 0; }
  @media (max-width: 760px) {
    .diag-col { border-right: 0; border-bottom: 1px solid var(--border); }
    .diag-col:last-child { border-bottom: 0; }
  }
  .diag-col.muted { background: var(--neutral-50); }
  .diag-col .tag {
    font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-3); margin-bottom: 24px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .diag-col.muted .tag { color: var(--text-3); }
  .diag-col.deep .tag { color: var(--md-green-600); }
  .diag-col h3 {
    font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.05; letter-spacing: 0.01em; font-weight: 400;
    color: var(--primary-deep); margin: 0 0 24px; max-width: 14ch;
  }
  .diag-col p {
    font-size: 15px; line-height: 1.65; color: var(--text-2); margin: 0 0 16px;
  }
  .diag-col ul {
    list-style: none; padding: 0; margin: 24px 0 0;
    display: grid; gap: 12px;
  }
  .diag-col li {
    font-size: 14px; color: var(--text-2);
    padding-left: 22px; position: relative; line-height: 1.55;
  }
  .diag-col li::before {
    content: ""; position: absolute; left: 0; top: 9px;
    width: 10px; height: 1px; background: var(--neutral-400);
  }
  .diag-col.deep li::before { background: var(--md-green-500); }

  /* ─── Section: Resultados ─────────────────────────── */
  .results-grid {
    margin-top: clamp(48px, 6vw, 80px);
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  @media (max-width: 760px) { .results-grid { grid-template-columns: 1fr; } }
  .result {
    padding: clamp(36px, 4.5vw, 56px) clamp(28px, 3.5vw, 48px) clamp(36px, 4.5vw, 56px) clamp(28px, 3.5vw, 48px);
    border-right: 1px solid var(--border);
  }
  .result:first-child { padding-left: 0; }
  .result:nth-child(3n) { border-right: 0; padding-right: 0; }
  @media (max-width: 760px) {
    .result { border-right: 0; border-bottom: 1px solid var(--border); padding-right: 0; padding-left: 0; }
    .result:last-child { border-bottom: 0; }
  }
  .result .num {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.9; letter-spacing: 0.005em;
    color: var(--primary-deep); margin-bottom: 24px;
  }
  .result .num small {
    font-family: var(--font-serif); font-style: italic;
    font-size: 0.42em; color: var(--md-green-600);
    letter-spacing: -0.01em; vertical-align: 0.55em;
    margin-left: 4px;
  }
  .result h4 {
    font-size: 17px; font-weight: 500; color: var(--text);
    margin: 0 0 8px; letter-spacing: -0.01em;
  }
  .result p {
    font-size: 14px; color: var(--text-2);
    line-height: 1.6; margin: 0; max-width: 32ch;
  }

  /* ─── Section: Filosofia ──────────────────────────── */
  .philosophy {
    background: var(--neutral-50);
  }
  .philosophy-quote {
    margin-top: clamp(48px, 6vw, 80px);
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08; letter-spacing: 0.01em;
    color: var(--primary-deep);
    max-width: 22ch;
  }
  .philosophy-quote .accent {
    font-family: var(--font-serif); font-style: italic;
    color: var(--md-green-600); font-size: 0.78em;
    letter-spacing: -0.005em;
  }
  .philosophy-meta {
    margin-top: 56px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    border-top: 1px solid var(--border); padding-top: 32px;
  }
  @media (max-width: 760px) { .philosophy-meta { grid-template-columns: 1fr; gap: 24px; } }
  .philosophy-meta .item .k {
    font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-3); margin-bottom: 8px;
  }
  .philosophy-meta .item .v {
    font-size: 16px; color: var(--text); line-height: 1.5;
  }

  /* ─── Section: Como funciona ─────────────────────── */
  .process { background: var(--surface); }
  .process-grid {
    margin-top: clamp(48px, 6vw, 80px);
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  }
  @media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
  .step {
    padding: 32px 28px 32px 0;
    border-top: 1px solid var(--neutral-900);
    position: relative;
  }
  .step .order {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--md-green-600); letter-spacing: 0.12em;
    margin-bottom: 32px; display: flex; align-items: center; gap: 10px;
  }
  .step .order::after {
    content: ""; flex: 1; height: 1px; background: var(--border);
  }
  .step h4 {
    font-family: var(--font-display); font-size: 28px;
    font-weight: 400; letter-spacing: 0.01em;
    color: var(--primary-deep); margin: 0 0 12px; line-height: 1.05;
  }
  .step p {
    font-size: 14px; color: var(--text-2); margin: 0;
    line-height: 1.6; max-width: 28ch;
  }

  /* ─── CTA Section ────────────────────────────────── */
  .cta-section {
    background: var(--md-green-900);
    color: #fff; border-bottom: 0;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 40% at 100% 100%, color-mix(in oklab, var(--md-green-500) 28%, transparent), transparent 60%),
      radial-gradient(ellipse 60% 50% at 0% 0%, color-mix(in oklab, var(--md-blue-500) 16%, transparent), transparent 65%);
    pointer-events: none;
  }
  .cta-inner {
    position: relative; display: grid; grid-template-columns: 1fr auto;
    gap: 56px; align-items: end;
  }
  @media (max-width: 900px) { .cta-inner { grid-template-columns: 1fr; align-items: start; } }
  .cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px); line-height: 0.98;
    letter-spacing: 0.01em; font-weight: 400;
    color: #fff; margin: 0; max-width: 16ch;
  }
  .cta-section h2 .serif {
    font-family: var(--font-serif); font-style: italic;
    color: #b8d4be; font-size: 0.78em; letter-spacing: -0.005em;
  }
  .cta-section .cta-side {
    display: grid; gap: 20px; min-width: 280px;
  }
  .cta-section p {
    font-family: var(--font-serif); font-style: italic;
    font-size: 19px; line-height: 1.5;
    color: #b8d4be; margin: 0; max-width: 32ch;
  }
  .cta-section .btn-primary {
    background: #fff; color: var(--md-green-900);
    justify-self: start;
  }
  .cta-section .btn-primary:hover { background: #dde9df; }

  .cta-meta {
    margin-top: clamp(56px, 7vw, 96px);
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid color-mix(in oklab, #fff 16%, transparent);
    padding-top: 28px; gap: 32px;
    position: relative;
  }
  @media (max-width: 760px) { .cta-meta { grid-template-columns: 1fr; gap: 20px; } }
  .cta-meta .item .k {
    font-family: var(--font-mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: #8aa093; margin-bottom: 8px;
  }
  .cta-meta .item .v {
    font-size: 15px; color: #e9edf3; line-height: 1.5;
  }
  .cta-meta .item .v a { border-bottom: 1px solid color-mix(in oklab, #fff 30%, transparent); padding-bottom: 1px; }

  /* ─── Footer ──────────────────────────────────────── */
  footer {
    background: #0a0e16; color: #7a8699;
    padding: 56px 0 36px; font-size: 13px;
  }
  footer .wrap {
    display: grid; grid-template-columns: 1fr auto;
    gap: 24px; align-items: center;
  }
  @media (max-width: 600px) { footer .wrap { grid-template-columns: 1fr; } }
  footer img { height: 18px; opacity: 0.7; }
  footer .colophon { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }