    :root {
      --teal: #45B8AC;
      --teal-dark: #339990;
      --cream: #FDF8F2;
      --text: #1a1a1a;
      --muted: #6b7280;
      --card-bg: #ffffff;
      --border: #e5e7eb;
      /* Added for the ported nav: these pages had no soft-teal or shadow token. */
      --teal-soft: #e8f8f6;
      --shadow: 0 18px 50px rgba(21, 32, 31, 0.12);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--cream); color: var(--text); }

    /* Site nav — matches index.html so every page shares one layout and one breakpoint. The nav
       this replaced was a teal bar with a hard-coded height: 56px flex row and no media query
       anywhere in the file, so on a phone the links and the language pill wrapped inside that fixed
       height and collided. Below 640px .nav-inner stacks into a column, as the landing page does.
       Colours use this page's own variable names (--text/--border), not index.html's
       (--ink/--line); the two pages define different sets, per CLAUDE.md. */
    .wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
    .nav { position: sticky; top: 0; z-index: 50; background: rgba(253, 248, 242, 0.88); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(231, 236, 235, 0.8); }
    .nav-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; }
    .brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
    .brand-mark { width: 38px; height: 38px; border-radius: 11px; object-fit: cover; box-shadow: 0 8px 20px rgba(69, 184, 172, 0.3); }
    .nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 650; color: var(--muted); }
    /* Explicit colour + no-underline: these pages set a global `a { color: var(--teal) }` and
       `a:hover { text-decoration: underline }`, which index.html does not. */
    .nav-links a { color: var(--muted); }
    .nav-links a:hover { color: var(--teal-dark); text-decoration: none; }

    .lang-switch { position: relative; margin-inline-start: 4px; padding-inline-start: 16px; border-inline-start: 1px solid var(--border); }
    .lang-switch summary { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; list-style: none; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-size: 13px; font-weight: 700; color: var(--muted); }
    .lang-switch summary::-webkit-details-marker { display: none; }
    .lang-switch summary::marker { content: ""; }
    .lang-switch summary:hover, .lang-switch[open] summary { color: var(--teal-dark); border-color: var(--teal); }
    .lang-menu { position: absolute; inset-inline-end: 0; top: calc(100% + 8px); z-index: 60; display: flex; flex-direction: column; gap: 2px; min-width: 160px; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); padding: 8px; }
    .lang-menu a { padding: 9px 12px; border-radius: 9px; font-size: 14px; font-weight: 650; color: var(--text); }
    .lang-menu a:hover { background: var(--teal-soft); text-decoration: none; }
    .lang-menu a[aria-current="page"] { color: var(--teal-dark); font-weight: 800; background: var(--teal-soft); pointer-events: none; }

    .page-header { background: var(--teal); color: #fff; padding: 48px 24px 40px; text-align: center; }
    .page-header h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
    .page-header p { font-size: 16px; opacity: 0.88; }

    .content { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }

    .tl-dr { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px; padding: 20px 24px; margin-bottom: 40px; }
    .tl-dr h2 { font-size: 16px; font-weight: 700; color: #15803d; margin-bottom: 10px; }
    .tl-dr ul { padding-left: 20px; }
    .tl-dr li { font-size: 15px; color: #166534; line-height: 1.7; }

    h2 { font-size: 20px; font-weight: 700; margin: 36px 0 12px; color: var(--text); }
    h2:first-of-type { margin-top: 0; }
    p { font-size: 15px; color: #374151; line-height: 1.7; margin-bottom: 12px; }
    ul { padding-left: 22px; margin-bottom: 12px; }
    li { font-size: 15px; color: #374151; line-height: 1.7; }
    a { color: var(--teal); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .updated { font-size: 13px; color: var(--muted); margin-bottom: 32px; }

    footer { background: #1a1a1a; color: rgba(255,255,255,0.6); text-align: center; padding: 32px 24px; font-size: 14px; }
    footer a { color: rgba(255,255,255,0.75); text-decoration: none; margin: 0 12px; }
    footer a:hover { color: var(--teal); }
    footer .copyright { margin-top: 12px; font-size: 13px; opacity: 0.5; }

    /* The sub-pages previously had no @media rules at all — this breakpoint is what stops the nav
       collapsing in on itself on a phone. flex-wrap on .nav-links additionally keeps the longer
       translated labels (fr/es/tr) from overflowing horizontally. */
    @media (max-width: 640px) {
      .wrap { width: min(100% - 28px, 1120px); }
      .nav-inner { height: auto; padding: 14px 0; align-items: flex-start; gap: 14px; flex-direction: column; }
      .nav-links { gap: 16px; flex-wrap: wrap; }
    }
