    :root {
      --navy: #10162C;
      --navy-deep: #0A0E1F;
      --navy-link: #204B7D;
      --sky: #70BDEA;
      --sky-soft: #A8D4F0;
      --sky-tint: #E3EFFF;
      --off-white: #F2F6FB;
      --near-white: #FBFCFD;
      --body: #77808E;
      --body-dark: #4A5568;
      --rule: rgba(255,255,255,0.14);
      --rule-dark: rgba(16,22,44,0.10);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 130px; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      font-weight: 300;
      font-size: 17px;
      line-height: 1.65;
      color: var(--body);
      background: var(--near-white);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    img { max-width: 100%; display: block; }

    .wrap { max-width: 1320px; margin: 0 auto; padding: 0 6%; }
    .wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 6%; }

    /* Typography baseline */
    h1, h2, h3, h4, .display {
      font-family: 'Noto Serif Display', Georgia, serif;
      font-weight: 400;
      color: var(--navy);
      letter-spacing: -0.015em;
      line-height: 1.08;
    }
    em { font-style: italic; font-weight: 400; }
    p { margin-bottom: 1.2em; }
    p:last-child { margin-bottom: 0; }

    a { color: var(--navy-link); text-decoration: none; transition: color .2s; }
    a:hover { color: var(--sky); }

    .eyebrow {
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sky);
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }
    .eyebrow::before {
      content: "";
      display: inline-block;
      width: 28px;
      height: 1px;
      background: var(--sky);
    }
    .eyebrow.dark { color: var(--navy-link); }
    .eyebrow.dark::before { background: var(--navy-link); }

    /* ---------- HEADER ---------- */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 22px 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background .35s ease, padding .25s ease, border-color .25s ease;
      border-bottom: 1px solid transparent;
    }
    header.scrolled {
      background: rgba(10, 14, 31, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 14px 6%;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0;
      text-decoration: none;
    }
    /* Header logo: clip the original 2:1 lockup to show only the top half (wordmark + checker mark) */
    .brand-logo-wrap {
      width: 220px;
      height: 110px;
      display: block;
      flex-shrink: 0;
      transition: width .25s ease, height .25s ease;
    }
    .brand-logo {
      width: 220px;
      height: 110px;
      display: block;
      transition: width .25s ease;
    }
    header.scrolled .brand-logo-wrap { width: 180px; height: 90px; }
    header.scrolled .brand-logo { width: 180px; height: 90px; }

    /* Footer uses the full logo lockup (incl. tagline strip) */
    .brand-logo-full {
      width: 280px;
      height: auto;
      display: block;
      margin-bottom: 24px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: clamp(18px, 2.2vw, 40px);
      align-items: center;
      flex-wrap: nowrap;
    }
    nav a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 13.5px;
      letter-spacing: 0.04em;
      font-weight: 400;
      transition: color .2s;
      white-space: nowrap;          /* never break a label onto two lines */
      max-width: 16ch;
      overflow: hidden;
      text-overflow: ellipsis;       /* worst-case crop instead of wrapping */
    }
    nav a:hover { color: var(--sky); }

    .lang-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border: 1px solid rgba(255,255,255,0.18);
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
    }
    /* both items: identical fixed box so the active highlight never shifts the layout */
    .lang-toggle a {
      display: inline-block;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: background .2s, color .2s;
      padding: 5px 5px;
      line-height: 1.4;
      border-radius: 0;
      max-width: none;
    }
    .lang-toggle a:hover { color: white; }
    .lang-toggle .sep { color: rgba(255,255,255,0.2); }

    .btn {
      display: inline-block;
      padding: 12px 22px;
      background: var(--sky);
      color: var(--navy);
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 12.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid var(--sky);
      border-radius: 30px;
      box-shadow: 0 4px 14px rgba(112, 189, 234, 0.3);
      cursor: pointer;
      transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .btn:hover {
      background: white;
      border-color: white;
      color: var(--navy);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(112, 189, 234, 0.4);
    }
    .btn-ghost {
      background: rgba(16, 22, 44, 0.32);   /* navy ~32% — readable over any hero image */
      color: white;
      border-color: rgba(255,255,255,0.55);
      box-shadow: none;                      /* drop the inherited sky glow */
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
    }
    .btn-ghost:hover {
      background: white; color: var(--navy); border-color: white;
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }
    .btn-dark {
      background: var(--navy);
      color: white;
      border-color: var(--navy);
    }
    .btn-dark:hover { background: var(--navy-link); border-color: var(--navy-link); }
    .btn-large { padding: 18px 32px; font-size: 13px; }

    /* ---------- HERO ---------- */
    .hero {
      position: relative;
      min-height: 100vh;
      background: var(--navy-deep);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .hero-image {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 40%;
      filter: saturate(0.85);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10,14,31,0.55) 0%, rgba(10,14,31,0.15) 35%, rgba(10,14,31,0.85) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 200px 6% 70px;
      max-width: 1440px;
      margin: 0 auto;
      width: 100%;
    }
    .hero-date {
      color: var(--sky);
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      margin-bottom: 36px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }
    .hero-date::before, .hero-date::after {
      content: "";
      display: block;
      width: 36px;
      height: 1px;
      background: var(--sky);
    }
    .hero h1 {
      font-family: 'Noto Serif Display', serif;
      font-weight: 300;
      font-size: clamp(36px, 5.6vw, 86px);
      line-height: 1.04;
      color: white;
      max-width: 1140px;
      margin-bottom: 36px;
      letter-spacing: -0.025em;
    }
    .hero h1 em { font-style: italic; color: var(--sky-soft); font-weight: 300; }
    .hero-subhead {
      color: rgba(255,255,255,0.78);
      font-size: 18px;
      line-height: 1.6;
      max-width: 540px;
      margin-bottom: 44px;
      font-weight: 300;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    /* Logbook strip at bottom of hero */
    .logbook {
      position: relative;
      z-index: 2;
      border-top: 1px solid var(--rule);
      padding: 36px 6%;
      max-width: 1440px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 32px;
    }
    .logbook-item {
      padding-left: 24px;
      border-left: 1px solid var(--rule);
    }
    .logbook-item:first-child { border-left: none; padding-left: 0; }
    .logbook-label {
      color: rgba(255,255,255,0.5);
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      margin-bottom: 10px;
      font-weight: 500;
    }
    .logbook-value {
      color: white;
      font-family: 'Noto Serif Display', serif;
      font-weight: 400;
      font-size: clamp(20px, 1.6vw, 26px);
      letter-spacing: -0.01em;
      line-height: 1;
    }
    .logbook-value em { font-style: italic; color: var(--sky-soft); }

    /* ---------- MISSION ---------- */
    .mission {
      background: var(--near-white);
      padding: 160px 0 140px;
      position: relative;
    }
    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 100px;
      align-items: start;
    }
    .mission h2 {
      font-size: clamp(32px, 3.4vw, 56px);
      font-weight: 300;
      color: var(--navy);
      margin-bottom: 30px;
    }
    .mission h2 em { color: var(--navy-link); }
    .mission .lead {
      font-family: 'Noto Serif Display', serif;
      font-weight: 300;
      font-style: italic;
      font-size: clamp(20px, 1.7vw, 26px);
      line-height: 1.45;
      color: var(--body-dark);
      margin-bottom: 32px;
    }
    .mission p {
      font-size: 17px;
      line-height: 1.75;
      color: var(--body);
      max-width: 640px;
    }
    .mission p strong { color: var(--navy); font-weight: 500; }
    .mission-side .eyebrow { margin-bottom: 24px; }
    .mission-side {
      position: sticky;
      top: 110px;
    }
    .mission-side .quote-mark {
      font-family: 'Noto Serif Display', serif;
      font-style: italic;
      font-size: 120px;
      line-height: 0.8;
      color: var(--sky);
      margin-bottom: 20px;
      display: block;
    }
    .mission-side h3 {
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 14px;
    }
    .mission-side .meta {
      font-size: 13px;
      color: var(--body);
    }

    /* ---------- STORY (split) ---------- */
    .story {
      background: var(--navy);
      color: rgba(255,255,255,0.85);
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    .story-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 0;
      min-height: 720px;
    }
    .story-image {
      position: relative;
      overflow: hidden;
      background: var(--navy-deep);
    }
    .story-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.7) brightness(0.95);
    }
    .story-image .img-caption {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      color: rgba(255,255,255,0.6);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      line-height: 1.5;
    }
    .story-image .img-caption span { color: var(--sky); }
    .story-text {
      padding: 120px 7% 120px;
    }
    .story-text .eyebrow { color: var(--sky); }
    .story-text .eyebrow::before { background: var(--sky); }
    .story-text h2 {
      color: white;
      font-size: clamp(32px, 3.6vw, 60px);
      font-weight: 300;
      margin-bottom: 36px;
      max-width: 580px;
    }
    .story-text h2 em { color: var(--sky-soft); }
    .story-text p {
      color: rgba(255,255,255,0.75);
      font-size: 16.5px;
      line-height: 1.8;
      margin-bottom: 1.4em;
      max-width: 560px;
    }
    .story-text p:first-of-type::first-letter {
      font-family: 'Noto Serif Display', serif;
      font-size: 56px;
      line-height: 0.85;
      float: left;
      padding-right: 12px;
      padding-top: 6px;
      color: var(--sky);
      font-weight: 300;
    }
    .story-stats {
      margin-top: 50px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 580px;
      padding-top: 36px;
      border-top: 1px solid var(--rule);
    }
    .story-stats .stat-num {
      font-family: 'Noto Serif Display', serif;
      font-weight: 300;
      font-style: italic;
      font-size: 36px;
      color: var(--sky);
      line-height: 1;
      margin-bottom: 8px;
    }
    .story-stats .stat-lbl {
      color: rgba(255,255,255,0.55);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .story-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 44px;
      color: var(--sky);
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
      border-bottom: 1px solid var(--sky);
      padding-bottom: 8px;
      transition: gap .2s;
    }
    .story-link:hover { gap: 18px; color: white; border-color: white; }

    /* ---------- WATER DIVIDER ---------- */
    .water-divider {
      position: relative;
      height: 320px;
      overflow: hidden;
    }
    .water-divider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .water-divider .quote-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(16,22,44,0.4) 0%, rgba(16,22,44,0.2) 50%, rgba(16,22,44,0.4) 100%);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 40px 6%;
    }
    .water-divider blockquote {
      font-family: 'Noto Serif Display', serif;
      font-style: italic;
      font-weight: 300;
      font-size: clamp(28px, 3.2vw, 52px);
      color: white;
      line-height: 1.15;
      max-width: 1000px;
      letter-spacing: -0.01em;
    }
    .water-divider .attribution {
      font-family: 'Inter', sans-serif;
      font-style: normal;
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--sky);
      margin-top: 28px;
      display: block;
    }

    /* ---------- PANDEMIC SECTION ---------- */
    .pandemic {
      background: var(--off-white);
      padding: 160px 0 140px;
    }
    .pandemic-head {
      max-width: 1100px;
      margin: 0 auto 100px;
      padding: 0 6%;
    }
    .pandemic-head h2 {
      font-size: clamp(32px, 4vw, 64px);
      font-weight: 300;
      margin-bottom: 32px;
      letter-spacing: -0.02em;
    }
    .pandemic-head h2 em { color: var(--navy-link); }
    .pandemic-head .lead {
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      font-size: 18px;
      line-height: 1.7;
      max-width: 700px;
      color: var(--body-dark);
    }
    .counter-block {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 6%;
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: center;
    }
    .counter-display {
      background: var(--navy);
      color: white;
      padding: 70px 56px;
      position: relative;
    }
    .counter-display::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 4px;
      height: 100%;
      background: var(--sky);
    }
    .counter-display .label {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sky);
      font-weight: 500;
      margin-bottom: 18px;
    }
    .counter-display .number {
      font-family: 'Noto Serif Display', serif;
      font-weight: 300;
      font-size: clamp(48px, 5.5vw, 88px);
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
      color: white;
    }
    .counter-display .number em { color: var(--sky); font-style: italic; }
    .counter-display .desc {
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      line-height: 1.6;
    }
    .counter-tally {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--rule);
    }
    .counter-tally .tally-num {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 22px;
      color: var(--sky);
      letter-spacing: 0.02em;
    }
    .counter-tally .tally-label {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }
    .pandemic-text h3 {
      font-family: 'Noto Serif Display', serif;
      font-weight: 300;
      font-size: 28px;
      color: var(--navy);
      margin-bottom: 24px;
      line-height: 1.25;
    }
    .pandemic-text p {
      color: var(--body);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 1.2em;
    }
    .pandemic-text p strong { color: var(--navy); font-weight: 500; }

    /* ---------- PILLARS ---------- */
    .pillars {
      background: var(--near-white);
      padding: 160px 0;
    }
    .pillars-head {
      max-width: 1440px;
      margin: 0 auto 90px;
      padding: 0 6%;
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: end;
    }
    .pillars-head h2 {
      font-size: clamp(32px, 3.6vw, 56px);
      font-weight: 300;
      margin-bottom: 0;
      letter-spacing: -0.02em;
    }
    .pillars-head h2 em { color: var(--navy-link); }
    .pillars-head .lead {
      font-size: 17px;
      line-height: 1.75;
      color: var(--body);
    }
    .pillars-grid {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 6%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid var(--rule-dark);
    }
    .pillar {
      padding: 56px 40px 56px 0;
      border-right: 1px solid var(--rule-dark);
      position: relative;
    }
    .pillar:last-child { border-right: none; }
    .pillar:not(:first-child) { padding-left: 40px; }
    .pillar .roman {
      font-family: 'Noto Serif Display', serif;
      font-style: italic;
      font-weight: 300;
      color: var(--sky);
      font-size: 15px;
      letter-spacing: 0.16em;
      margin-bottom: 28px;
      display: block;
    }
    .pillar h3 {
      font-family: 'Noto Serif Display', serif;
      font-weight: 400;
      font-size: 32px;
      color: var(--navy);
      margin-bottom: 20px;
      line-height: 1.15;
    }
    .pillar h3 em { color: var(--navy-link); }
    .pillar p {
      font-size: 15px;
      line-height: 1.75;
      color: var(--body);
      margin-bottom: 24px;
    }
    .pillar .pillar-tag {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--navy-link);
      font-weight: 500;
    }

    /* ---------- PROGRAM (color photo) ---------- */
    .program {
      position: relative;
      background: var(--navy);
      color: white;
    }
    .program-grid {
      display: grid;
      grid-template-columns: 7fr 5fr;
      gap: 0;
    }
    .program-image {
      position: relative;
      min-height: 600px;
    }
    .program-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .program-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 60%, var(--navy) 100%);
    }
    .program-text {
      padding: 120px 7%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .program-text .eyebrow { color: var(--sky); }
    .program-text .eyebrow::before { background: var(--sky); }
    .program-text h2 {
      color: white;
      font-size: clamp(30px, 3.4vw, 52px);
      font-weight: 300;
      margin-bottom: 32px;
      max-width: 480px;
    }
    .program-text h2 em { color: var(--sky-soft); }
    .program-text p {
      color: rgba(255,255,255,0.75);
      font-size: 16px;
      line-height: 1.75;
      max-width: 460px;
      margin-bottom: 1.4em;
    }
    .program-link {
      margin-top: 32px;
      align-self: flex-start;
    }

    /* ---------- ROADMAP ---------- */
    .roadmap {
      background: var(--off-white);
      padding: 160px 0 140px;
    }
    .roadmap-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 6%;
    }
    .roadmap-head {
      max-width: 720px;
      margin-bottom: 90px;
    }
    .roadmap-head h2 {
      font-size: clamp(32px, 3.6vw, 56px);
      font-weight: 300;
      margin-bottom: 28px;
      letter-spacing: -0.02em;
    }
    .roadmap-head h2 em { color: var(--navy-link); }
    .roadmap-head p {
      font-size: 17px;
      line-height: 1.75;
      color: var(--body);
    }
    .roadmap-list {
      list-style: none;
      counter-reset: phase;
    }
    .roadmap-list li {
      display: grid;
      grid-template-columns: 80px 1fr 2fr 1fr;
      gap: 40px;
      padding: 36px 0;
      border-top: 1px solid var(--rule-dark);
      align-items: start;
      counter-increment: phase;
    }
    .roadmap-list li:last-child { border-bottom: 1px solid var(--rule-dark); }
    .roadmap-list .phase {
      font-family: 'Noto Serif Display', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 30px;
      color: var(--sky);
      line-height: 1;
    }
    .roadmap-list .phase-label {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 500;
      margin-top: 8px;
    }
    .roadmap-list h4 {
      font-family: 'Noto Serif Display', serif;
      font-weight: 400;
      font-size: 22px;
      color: var(--navy);
      margin-bottom: 6px;
      line-height: 1.25;
    }
    .roadmap-list .desc {
      font-size: 15px;
      line-height: 1.7;
      color: var(--body);
      margin-top: 8px;
    }
    .roadmap-list .meta {
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--navy-link);
      font-weight: 500;
      text-align: right;
    }

    /* ---------- T-R-U-D-Y CORE FIELD (homepage section) ---------- */
    .trudy-core {
      background: var(--navy);
      color: rgba(255,255,255,0.85);
      padding: 160px 0 140px;
      position: relative;
      overflow: hidden;
    }
    .trudy-core::before {
      content: ""; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 80% 25%, rgba(112,189,234,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 75%, rgba(112,189,234,0.08) 0%, transparent 50%);
      pointer-events: none;
    }
    .trudy-core-grid {
      max-width: 1440px; margin: 0 auto; padding: 0 6%;
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 5fr 7fr; gap: 80px;
      align-items: start;
    }
    .trudy-core .eyebrow { color: var(--sky); }
    .trudy-core .eyebrow::before { background: var(--sky); }
    .trudy-core h2 {
      color: white;
      font-size: clamp(38px, 4.6vw, 80px);
      font-weight: 300;
      letter-spacing: -0.025em;
      line-height: 1.04;
    }
    .trudy-core h2 em { color: var(--sky-soft); }
    .trudy-core .body { padding-top: 18px; }
    .trudy-core .body p {
      color: rgba(255,255,255,0.78);
      font-size: 18px; line-height: 1.78;
      margin-bottom: 1.2em;
      max-width: 640px;
      font-weight: 300;
    }
    .trudy-core .body p strong { color: white; font-weight: 500; }
    .trudy-core-letters {
      max-width: 1440px; margin: 56px auto 0; padding: 0 6%;
      position: relative; z-index: 2;
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
      border-top: 1px solid rgba(255,255,255,0.18);
    }
    .core-letter {
      padding: 28px 24px 28px 0;
      border-right: 1px solid rgba(255,255,255,0.10);
    }
    .core-letter:last-child { border-right: 0; padding-right: 0; }
    .core-letter:not(:first-child) { padding-left: 24px; }
    .core-letter .mark {
      font-family: 'Noto Serif Display', serif;
      font-weight: 300;
      font-size: 38px;
      line-height: 1;
      color: var(--sky);
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }
    .core-letter .name {
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sky);
      font-weight: 500;
      margin-bottom: 10px;
    }
    .core-letter .desc {
      font-size: 13px; line-height: 1.55;
      color: rgba(255,255,255,0.72);
      margin: 0;
    }
    .trudy-core-cta {
      max-width: 1440px; margin: 60px auto 0; padding: 0 6%;
      position: relative; z-index: 2;
      display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    }
    .trudy-core-cta .meta {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      font-weight: 500;
    }
    @media (max-width: 1024px) {
      .trudy-core-grid { grid-template-columns: 1fr; gap: 40px; }
      .trudy-core-letters { grid-template-columns: 1fr 1fr; }
      .core-letter { border-right: 1px solid rgba(255,255,255,0.10); padding-right: 24px !important; }
      .core-letter:nth-child(2n) { border-right: 0; padding-right: 0 !important; }
    }
    @media (max-width: 720px) {
      .trudy-core { padding: 100px 0 80px; }
      .trudy-core-letters { grid-template-columns: 1fr; }
      .core-letter { padding: 22px 0 !important; border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.10); }
      .core-letter:last-child { border-bottom: 0; }
    }

    /* ---------- PROGRAMS / STATUS MATRIX ---------- */
    .programs-matrix {
      background: var(--near-white);
      padding: 160px 0 140px;
      position: relative;
    }
    .matrix-head {
      max-width: 1440px;
      margin: 0 auto 50px;
      padding: 0 6%;
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: end;
    }
    .matrix-head h2 {
      font-size: clamp(32px, 3.6vw, 56px);
      font-weight: 300;
      margin-bottom: 0;
      letter-spacing: -0.02em;
    }
    .matrix-head h2 em { color: var(--navy-link); }
    .matrix-head .lead {
      font-size: 17px;
      line-height: 1.75;
      color: var(--body);
    }
    .status-legend {
      max-width: 1440px;
      margin: 0 auto 0;
      padding: 22px 6%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      border-top: 1px solid var(--rule-dark);
      border-bottom: 1px solid var(--rule-dark);
    }
    .status-legend-label {
      font-family: 'Inter', sans-serif;
      font-size: 10.5px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 500;
      margin-right: 10px;
    }
    .status-legend-note {
      font-family: 'Inter', sans-serif;
      font-style: italic;
      font-size: 12.5px;
      color: var(--body);
      margin-left: auto;
      max-width: 460px;
      text-align: right;
      line-height: 1.55;
    }
    @media (max-width: 720px) {
      .status-legend-note { margin-left: 0; text-align: left; max-width: none; }
    }
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 10.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 6px 12px;
      border: 1px solid;
      border-radius: 999px;
    }
    .status-badge::before {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    .status-active     { color: #1F5F5B; border-color: rgba(31,95,91,0.35); background: rgba(31,95,91,0.06); }
    .status-active::before { background: #1F5F5B; }
    .status-buildup    { color: var(--navy-link); border-color: rgba(32,75,125,0.35); background: rgba(32,75,125,0.06); }
    .status-buildup::before { background: var(--navy-link); }
    .status-prep       { color: #6A4F1F; border-color: rgba(106,79,31,0.35); background: rgba(106,79,31,0.05); }
    .status-prep::before { background: #B08A3E; }
    .status-option     { color: var(--body-dark); border-color: rgba(74,85,104,0.35); background: rgba(74,85,104,0.05); }
    .status-option::before { background: var(--body-dark); }

    .matrix-grid {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 6%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .matrix-card {
      padding: 40px 36px 40px;
      border-right: 1px solid var(--rule-dark);
      border-bottom: 1px solid var(--rule-dark);
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .matrix-card:nth-child(3n) { border-right: none; }
    .matrix-card-head {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 24px;
    }
    .matrix-card .roman {
      font-family: 'Noto Serif Display', serif;
      font-style: italic;
      font-weight: 300;
      color: var(--sky);
      font-size: 15px;
      letter-spacing: 0.16em;
      display: block;
      margin-bottom: 4px;
    }
    .matrix-card h3 {
      font-family: 'Noto Serif Display', serif;
      font-weight: 400;
      font-size: 26px;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 4px;
    }
    .matrix-card h3 em { color: var(--navy-link); }
    .matrix-card .card-subtitle {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--navy-link);
      font-weight: 500;
      margin-bottom: 14px;
    }
    .programs-architecture-note {
      max-width: 1440px;
      margin: 0 auto 40px;
      padding: 0 6%;
    }
    .programs-architecture-note > div {
      background: var(--navy);
      color: rgba(255,255,255,0.92);
      padding: 28px 36px;
      border-left: 4px solid var(--sky);
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
    }
    .programs-architecture-note .label {
      font-family: 'Inter', sans-serif;
      font-size: 10.5px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sky);
      font-weight: 500;
    }
    .programs-architecture-note p {
      font-family: 'Noto Serif Display', serif;
      font-style: italic;
      font-weight: 300;
      font-size: 19px;
      line-height: 1.5;
      color: white;
      margin: 0;
      max-width: 920px;
    }
    .programs-architecture-note p strong {
      font-style: normal;
      font-weight: 500;
      color: white;
    }
    .matrix-card .desc {
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--body);
      margin-bottom: 26px;
    }
    @media (min-width: 1025px) {
      .matrix-card-head { min-height: 160px; }
      .matrix-card .desc { min-height: 180px; }
    }
    .matrix-meta {
      display: flex;
      flex-direction: column;
    }
    .matrix-meta-row {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 16px;
      font-size: 13px;
      line-height: 1.55;
      padding: 16px 0;
      border-top: 1px solid var(--rule-dark);
    }
    @media (min-width: 1025px) {
      .matrix-meta-row:nth-child(1) { min-height: 125px; }
      .matrix-meta-row:nth-child(2) { min-height: 110px; }
      .matrix-meta-row:nth-child(3) { min-height: 110px; }
      .matrix-meta-row:nth-child(4) { min-height: 100px; }
      .matrix-meta-row:nth-child(5) { min-height: 80px; }
      .matrix-meta-row:nth-child(6) { min-height: 80px; }
      .matrix-meta-row:nth-child(7) { min-height: 100px; }
    }
    .matrix-meta-row .lbl {
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 500;
      padding-top: 2px;
    }
    .matrix-meta-row .val { color: var(--body); }
    .matrix-card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid var(--rule-dark);
      font-family: 'Inter', sans-serif;
      font-size: 11.5px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--navy-link);
      transition: color .2s, gap .2s;
    }
    .matrix-card-link::after {
      content: "→";
      font-family: 'Noto Serif Display', serif;
      font-style: italic;
      font-size: 14px;
      transition: transform .2s;
    }
    .matrix-card-link:hover {
      color: var(--sky);
      gap: 14px;
    }
    .matrix-card-link:hover::after { transform: translateX(2px); }

    .matrix-disclaimer {
      max-width: 1440px;
      margin: 50px auto 0;
      padding: 30px 36px;
      background: var(--off-white);
      border-left: 3px solid var(--sky);
    }
    .matrix-disclaimer h4 {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 500;
      margin-bottom: 12px;
    }
    .matrix-disclaimer p {
      font-size: 14.5px;
      line-height: 1.75;
      color: var(--body-dark);
      max-width: 980px;
      margin: 0;
    }

    /* ---------- GOVERNANCE ---------- */
    .governance {
      background: var(--off-white);
      padding: 160px 0 140px;
    }
    .governance-inner { max-width: 1320px; margin: 0 auto; padding: 0 6%; }
    .governance-head {
      max-width: 880px;
      margin-bottom: 80px;
    }
    .governance-head h2 {
      font-size: clamp(32px, 3.6vw, 56px);
      font-weight: 300;
      margin-bottom: 28px;
      letter-spacing: -0.02em;
    }
    .governance-head h2 em { color: var(--navy-link); }
    .governance-head p {
      font-size: 17px;
      line-height: 1.75;
      color: var(--body);
    }
    .governance-grid {
      display: grid;
      grid-template-columns: 7fr 5fr;
      gap: 80px;
      align-items: start;
    }
    .principles {
      list-style: none;
      counter-reset: pn;
    }
    .principles li {
      counter-increment: pn;
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 28px;
      padding: 30px 0;
      border-top: 1px solid var(--rule-dark);
    }
    .principles li:last-child { border-bottom: 1px solid var(--rule-dark); }
    .principles li::before {
      content: "0" counter(pn);
      font-family: 'Noto Serif Display', serif;
      font-style: italic;
      font-weight: 300;
      color: var(--sky);
      font-size: 26px;
      line-height: 1;
      letter-spacing: 0.04em;
    }
    .principles h4 {
      font-family: 'Noto Serif Display', serif;
      font-weight: 400;
      font-size: 22px;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 8px;
    }
    .principles p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--body);
      margin-bottom: 0;
    }
    .gov-sidebar {
      position: sticky;
      top: 110px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .gov-card {
      background: white;
      padding: 36px 32px;
      border-left: 3px solid var(--sky);
      box-shadow: 0 1px 0 rgba(16,22,44,0.04);
    }
    .gov-card h4 {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 500;
      margin-bottom: 14px;
    }
    .gov-card p {
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--body-dark);
      margin-bottom: 0;
    }
    .gov-card p + p { margin-top: 14px; }
    .gov-card .accent {
      font-family: 'Noto Serif Display', serif;
      font-style: italic;
      color: var(--navy-link);
    }

    /* ---------- DONOR FLOW (inside CTA) ---------- */
    .donor-flow {
      margin-top: 70px;
      padding-top: 60px;
      border-top: 1px solid var(--rule);
    }
    .donor-flow-head {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 36px;
    }
    .donor-flow h3 {
      color: white;
      font-family: 'Noto Serif Display', serif;
      font-weight: 300;
      font-size: clamp(26px, 2.6vw, 38px);
      letter-spacing: -0.015em;
      line-height: 1.15;
      margin-bottom: 0;
    }
    .donor-flow h3 em { color: var(--sky); }
    .donor-flow .flow-lead {
      color: rgba(255,255,255,0.7);
      font-size: 15px;
      line-height: 1.7;
    }
    .flow-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid var(--rule);
    }
    .flow-step {
      padding: 28px 24px 24px 0;
      border-right: 1px solid var(--rule);
      position: relative;
    }
    .flow-step:last-child { border-right: none; }
    .flow-step:not(:first-child) { padding-left: 24px; }
    .flow-step .n {
      font-family: 'Inter', sans-serif;
      color: var(--sky);
      font-size: 12px;
      letter-spacing: 0.18em;
      font-weight: 400;
      margin-bottom: 14px;
      display: block;
    }
    .flow-step h4 {
      font-family: 'Noto Serif Display', serif;
      font-weight: 400;
      font-size: 17px;
      color: white;
      line-height: 1.3;
      margin-bottom: 8px;
    }
    .flow-step p {
      font-size: 13px;
      line-height: 1.6;
      color: rgba(255,255,255,0.6);
      margin: 0;
    }
    .partnership-disclosure {
      margin-top: 50px;
      padding: 28px 30px;
      background: rgba(255,255,255,0.04);
      border-left: 3px solid var(--sky);
    }
    .partnership-disclosure h4 {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sky);
      font-weight: 500;
      margin-bottom: 12px;
    }
    .partnership-disclosure p {
      font-size: 14px;
      line-height: 1.75;
      color: rgba(255,255,255,0.72);
      max-width: 980px;
      margin: 0;
    }

    /* ---------- CTA ---------- */
    .cta {
      background: var(--navy-deep);
      color: white;
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 70% 40%, rgba(112,189,234,0.10) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 140px 6%;
      position: relative;
      z-index: 2;
    }
    .cta h2 {
      color: white;
      font-size: clamp(36px, 5vw, 80px);
      font-weight: 300;
      letter-spacing: -0.025em;
      max-width: 1100px;
      margin-bottom: 28px;
      line-height: 1.05;
    }
    .cta h2 em { color: var(--sky); }
    .cta-sub {
      font-size: 18px;
      color: rgba(255,255,255,0.7);
      max-width: 640px;
      margin-bottom: 70px;
      line-height: 1.7;
    }
    .cta-paths {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 60px;
      border-top: 1px solid var(--rule);
      padding-top: 60px;
    }
    .cta-path {
      padding-right: 20px;
    }
    .cta-path .num {
      font-family: 'Noto Serif Display', serif;
      font-style: italic;
      font-weight: 300;
      color: var(--sky);
      font-size: 18px;
      letter-spacing: 0.1em;
      margin-bottom: 22px;
      display: block;
    }
    .cta-path h3 {
      font-family: 'Noto Serif Display', serif;
      font-weight: 400;
      font-size: 26px;
      color: white;
      margin-bottom: 14px;
      line-height: 1.2;
    }
    .cta-path p {
      color: rgba(255,255,255,0.65);
      font-size: 14.5px;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .cta-path a {
      color: var(--sky);
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
      border-bottom: 1px solid var(--sky);
      padding-bottom: 4px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap .2s;
    }
    .cta-path a:hover { gap: 14px; color: white; border-color: white; }

    /* ---------- FOOTER ---------- */
    footer {
      background: var(--navy-deep);
      color: rgba(255,255,255,0.6);
      padding: 90px 0 50px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 6%;
    }
    .footer-grid {
      display: grid;
      /* 4 blocks: Contact · Foundation · Programs · Brand (brand widest, on the right) */
      grid-template-columns: 1.1fr 1fr 1.2fr 1.6fr;
      gap: 48px;
      padding-bottom: 60px;
      border-bottom: 1px solid var(--rule);
    }
    /* ===== Letters & Updates · Footer Mini-Form ===== */
    .letters-mini .letters-status {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sky);
      font-weight: 500;
      margin-bottom: 10px;
      display: inline-block;
      padding: 3px 9px;
      border-radius: 999px;
      background: rgba(112, 189, 234, 0.14);
      border: 1px solid rgba(112, 189, 234, 0.28);
    }
    .letters-mini p.intro {
      font-size: 13px;
      line-height: 1.6;
      color: rgba(255,255,255,0.55);
      margin-bottom: 14px;
      max-width: 280px;
    }
    .letters-mini form.mini {
      display: flex;
      gap: 6px;
      margin-bottom: 12px;
      max-width: 320px;
    }
    .letters-mini form.mini input[type="email"] {
      flex: 1;
      padding: 9px 12px;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.06);
      color: white;
      font-size: 13px;
      border-radius: 4px;
      font-family: 'Inter', sans-serif;
    }
    .letters-mini form.mini input[type="email"]:focus {
      outline: none;
      border-color: var(--sky);
      background: rgba(255,255,255,0.10);
    }
    .letters-mini form.mini input[type="email"]::placeholder {
      color: rgba(255,255,255,0.4);
    }
    .letters-mini form.mini button {
      padding: 9px 14px;
      background: var(--sky);
      color: var(--navy-deep);
      border: none;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.04em;
      border-radius: 4px;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: background 0.2s;
    }
    .letters-mini form.mini button:hover { background: white; }
    .letters-mini .letters-link {
      display: inline-block;
      color: var(--sky);
      font-size: 12.5px;
      text-decoration: none;
      margin-bottom: 12px;
    }
    .letters-mini .letters-link:hover { color: white; }
    .letters-mini .letters-disclaimer {
      font-size: 11.5px;
      line-height: 1.55;
      color: rgba(255,255,255,0.4);
      font-style: italic;
      max-width: 280px;
    }
    .legal-pending {
      font-size: 12px;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.4);
      font-style: italic;
    }
    .footer-brand .brand {
      margin-bottom: 24px;
    }
    .footer-brand p {
      font-size: 13.5px;
      line-height: 1.7;
      color: rgba(255,255,255,0.55);
      max-width: 320px;
      margin-bottom: 24px;
    }
    .footer-brand .signature {
      font-family: 'Noto Serif Display', serif;
      font-style: italic;
      color: var(--sky);
      font-size: 14px;
    }
    footer h5 {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: white;
      font-weight: 500;
      margin-bottom: 20px;
    }
    footer ul {
      list-style: none;
    }
    footer ul li {
      margin-bottom: 10px;
    }
    footer ul a {
      color: rgba(255,255,255,0.55);
      font-size: 13.5px;
      text-decoration: none;
      transition: color .2s;
    }
    footer ul a:hover { color: var(--sky); }
    .footer-bottom {
      padding-top: 36px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.04em;
    }
    .footer-bottom .legal {
      display: flex;
      gap: 28px;
    }
    .footer-bottom .legal a {
      color: rgba(255,255,255,0.55);
      font-size: 12px;
    }
    .footer-bottom .legal a:hover { color: var(--sky); }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 1024px) {
      .mission-grid, .counter-block, .pillars-head, .program-grid, .story-grid, .footer-grid,
      .matrix-head, .governance-grid, .donor-flow-head {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      .matrix-grid { grid-template-columns: repeat(2, 1fr); }
      .matrix-card:nth-child(3n) { border-right: 1px solid var(--rule-dark); padding-right: 36px; }
      .matrix-card:nth-child(2n) { border-right: none; padding-right: 0; }
      .matrix-card:not(:nth-child(3n+1)) { padding-left: 0; }
      .matrix-card:nth-child(2n) { padding-left: 36px; }
      .flow-steps { grid-template-columns: repeat(2, 1fr); }
      .flow-step:nth-child(2n) { border-right: none; }
      .gov-sidebar { position: static; }
      .program-image { min-height: 400px; }
      .program-image::after {
        background: linear-gradient(180deg, transparent 60%, var(--navy) 100%);
      }
      .pillars-grid {
        grid-template-columns: 1fr;
      }
      .pillar {
        border-right: none;
        border-bottom: 1px solid var(--rule-dark);
        padding: 36px 0;
      }
      .pillar:not(:first-child) { padding-left: 0; }
      .pillar:last-child { border-bottom: none; }
      .cta-paths {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .roadmap-list li {
        grid-template-columns: 60px 1fr;
        gap: 24px;
      }
      .roadmap-list .meta { grid-column: 2; text-align: left; }
      .roadmap-list .desc-cell { grid-column: 2; }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
      /* clean 2×2 on tablet (Contact·Foundation / Programs·Brand) — no empty cell */
      .footer-brand { grid-column: auto; }
    }

    @media (max-width: 720px) {
      nav ul { display: none; }
      .lang-toggle { display: none; }
      .hero-content { padding: 160px 6% 50px; }
      .logbook { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px 6%; }
      .logbook-item { padding-left: 16px; }
      .logbook-item:nth-child(odd) { border-left: none; padding-left: 0; }
      .logbook-item:nth-child(3) { border-top: 1px solid var(--rule); padding-top: 20px; }
      .logbook-item:nth-child(4) { border-top: 1px solid var(--rule); padding-top: 20px; }
      .logbook-item:nth-child(5) { border-top: 1px solid var(--rule); padding-top: 20px; grid-column: 1 / -1; }
      .mission, .pandemic, .pillars, .roadmap { padding: 70px 0 50px; }
      .story-text, .program-text, .cta-inner { padding: 50px 7%; }
      .footer-grid { grid-template-columns: 1fr; }
      .story-stats { grid-template-columns: 1fr 1fr; }
      .matrix-grid { grid-template-columns: 1fr; }
      .matrix-card { padding: 36px 0 32px !important; border-right: none !important; }
      .matrix-card:not(:last-child) { border-bottom: 1px solid var(--rule-dark); }
      .flow-steps { grid-template-columns: 1fr; }
      .flow-step { border-right: none; border-bottom: 1px solid var(--rule); padding: 24px 0; }
      .flow-step:not(:first-child) { padding-left: 0; }
      .flow-step:last-child { border-bottom: none; }
      .principles li { grid-template-columns: 50px 1fr; gap: 18px; }
    }
  
    /* --- MOBILE MENU OVERRIDES --- */
    .mobile-menu-toggle { display: none; background: transparent; border: none; font-size: 28px; color: white; cursor: pointer; z-index: 1001; position: relative; padding: 0 10px; line-height: 1; }
    .mobile-menu-toggle:focus { outline: none; }
    @media (max-width: 900px) {
      .mobile-menu-toggle { display: block; }
      header nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(10, 14, 31, 0.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 100px 6% 40px; transition: right 0.35s ease; z-index: 1000; overflow-y: auto; display: flex !important; flex-direction: column; }
      header nav.open { right: 0; }
      header nav ul { display: flex !important; flex-direction: column; gap: 24px; align-items: flex-start; width: 100%; }
      header nav ul li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 12px; }
      header nav ul li:last-child { border-bottom: none; }
      header nav a { font-size: 18px; color: white; }
      .lang-toggle { display: inline-flex !important; margin-top: 10px; }
    }

    .footer-brand { order: 5; }
    .footer-grid > div:last-of-type { order: -1; }

    /* ===================================================================
       GLOBAL PREMIUM EXTRAS (merged from global-premium.css)
       glass panels · hero glow · cookie banner · language popup
       =================================================================== */
    .glass-panel, .ts-letter {
      background: var(--glass-bg);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border: var(--glass-border);
      box-shadow: var(--glass-shadow);
      border-radius: 16px;
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s ease;
    }
    .glass-panel:hover, .ts-letter:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-6px);
      box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.3);
    }

    .hero::before, .ts-hero::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%; width: 200%; height: 200%;
      background: radial-gradient(circle at 50% 50%, rgba(112, 189, 234, 0.15) 0%, transparent 60%);
      animation: slowGlow 15s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: 0;
    }
    @keyframes slowGlow {
      0% { transform: scale(1) translate(0,0); }
      100% { transform: scale(1.1) translate(2%, 2%); }
    }

    /* --- COOKIE BANNER --- */
    .cookie-banner {
      position: fixed;
      bottom: 20px; left: 50%; transform: translateX(-50%);
      width: 90%; max-width: 600px;
      background: var(--navy-deep);
      color: white;
      padding: 24px;
      border-radius: 12px;
      box-shadow: var(--glass-shadow);
      border: 1px solid rgba(255,255,255,0.1);
      z-index: 9999;
      display: flex; justify-content: space-between; align-items: center; gap: 20px;
      font-family: 'Inter', sans-serif;
    }
    .cookie-content p { margin: 0; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.7); }
    .cookie-content p strong { color: white; display: block; margin-bottom: 4px; font-size: 14px; }
    .cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
    .cookie-actions .btn { padding: 10px 20px; font-size: 12px; }
    .cookie-actions .btn-secondary {
      padding: 10px 20px; font-size: 12px;
      background: transparent; color: white;
      border: 1px solid rgba(255,255,255,0.2); border-radius: 30px;
      cursor: pointer; text-transform: uppercase; font-weight: 500; letter-spacing: 0.02em;
      transition: all 0.3s;
    }
    .cookie-actions .btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }

    /* --- LANGUAGE POPUP --- */
    .lang-popup {
      position: fixed; top: 100px; right: -400px;
      background: white; color: var(--navy);
      padding: 16px 24px; border-radius: 8px 0 0 8px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.15);
      border-left: 4px solid var(--sky);
      z-index: 9998;
      transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .lang-popup.visible { right: 0; }
    .lang-popup-content { display: flex; align-items: center; gap: 16px; }
    .lang-popup-content span { font-size: 13px; font-weight: 500; }
    .lang-popup-content .btn-text {
      font-size: 12px; font-weight: 600; color: var(--sky);
      text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none;
      border-bottom: 1px solid var(--sky); padding-bottom: 2px; transition: color 0.2s;
    }
    .lang-popup-content .btn-text:hover { color: var(--navy); border-color: var(--navy); }
    .lang-popup-content .btn-close {
      background: none; border: none; font-size: 20px; color: var(--body); cursor: pointer; padding: 0 4px;
    }
    .lang-popup-content .btn-close:hover { color: var(--navy); }

    @media (max-width: 720px) {
      .cookie-banner {
        flex-direction: column; align-items: flex-start;
        border-radius: 12px 12px 0 0; bottom: 0; width: 100%; max-width: none;
      }
      .cookie-actions { width: 100%; }
      .cookie-actions button { flex: 1; }
      .lang-popup {
        top: auto; bottom: -100px; right: 0; left: 0;
        border-radius: 12px 12px 0 0; border-left: none; border-top: 4px solid var(--sky);
        transition: bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      }
      .lang-popup.visible { bottom: 0; right: 0; }
      .lang-popup-content { flex-direction: row; justify-content: space-between; }
    }

    /* Active nav state (standardized — replaces drifted .current/.active) */
    nav a.is-active { color: var(--sky); }
    /* selected language: filled trudy-light-blue SHARP square; same box metrics as
       the inactive item (same padding/weight) so the header never shifts on switch */
    .lang-toggle a.is-active,
    .lang-toggle a.is-active:hover {
      background: var(--sky);
      color: var(--navy);
      border-radius: 0;
    }

    /* Footer contact block (was inline styles) */
    .footer-contact {
      font-size: 13px; color: rgba(255,255,255,0.6);
      line-height: 1.6; margin-top: 12px; margin-bottom: 12px;
    }
    .footer-contact a { color: #70BDEA; text-decoration: none; }
    .footer-domains-note {
      font-size: 11px; color: rgba(255,255,255,0.4);
      line-height: 1.5; font-style: italic; margin-bottom: 0;
    }

    /* Language suggestion banner (was per-page inline <style>) */
    .lang-banner {
      position: fixed; bottom: 24px; left: 50%;
      transform: translateX(-50%) translateY(140px);
      z-index: 200; background: #10162C; color: #fff;
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 24px 60px rgba(10,14,31,0.5);
      opacity: 0; transition: opacity .35s ease, transform .4s ease;
      max-width: 600px; width: calc(100% - 48px);
      font-family: 'Inter', system-ui, sans-serif;
    }
    .lang-banner.shown { opacity: 1; transform: translateX(-50%) translateY(0); }
    .lang-banner-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; padding: 18px 22px; position: relative; }
    .lang-banner-text { display: flex; flex-direction: column; gap: 4px; }
    .lang-banner-eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #70BDEA; font-weight: 500; }
    .lang-banner-message { font-size: 14px; line-height: 1.45; color: rgba(255,255,255,0.88); font-weight: 300; }
    .lang-banner-btn { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; color: #70BDEA; text-decoration: none; border-bottom: 1px solid #70BDEA; padding-bottom: 4px; transition: color .2s, border-color .2s; white-space: nowrap; }
    .lang-banner-btn:hover { color: #fff; border-color: #fff; }
    .lang-banner-dismiss { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 22px; line-height: 1; cursor: pointer; padding: 0 4px; transition: color .2s; font-family: inherit; font-weight: 300; }
    .lang-banner-dismiss:hover { color: #fff; }
    @media (max-width: 560px) {
      .lang-banner { bottom: 14px; }
      .lang-banner-inner { grid-template-columns: 1fr; gap: 12px; padding: 18px 18px 16px; padding-right: 40px; }
      .lang-banner-btn { justify-self: start; }
      .lang-banner-dismiss { position: absolute; top: 8px; right: 8px; }
    }
