/* ─── Design Tokens ─────────────────────────────────────────────────────── */
    :root {
      --midnight:   #004E89;
      --cerulean:   #0096C7;
      --sky:        #90E0EF;
      --sky-tint:   #E8F8FC;
      --deep-ink:   #1A1A2E;
      --red-orange: #F0622A;
      --white:      #FFFFFF;
      --off-white:  #F9F9FB;
      --border:     rgba(26, 26, 46, 0.10);

      --font-head:  'Manrope', Arial, sans-serif;
      --font-body:  'Source Serif 4', Georgia, serif;

      /* 8px grid */
      --space-1:  8px;
      --space-2:  16px;
      --space-3:  24px;
      --space-4:  32px;
      --space-5:  40px;
      --space-6:  48px;
      --space-7:  56px;
      --space-8:  64px;
      --space-10: 80px;
      --space-12: 96px;
      --space-16: 128px;

      --radius:    8px;
      --radius-sm: 4px;
      --max-w: 1200px;
      --nav-h: 88px;
      --ease: cubic-bezier(.22,.68,0,1.2);

      /* Accessible text tokens. The raw brand colours fail WCAG AA when they
         carry text: cerulean is 3.39:1 on white and white on red-orange is
         3.24:1. These derived values pass, and the brand colours stay
         untouched for icons, borders, bars and decorative fills.
         Verify any change with scripts/contrast-check.py. */
      --cerulean-text: #007A9E;   /* 4.91:1 on white */
      --cta-fill:      #C74A18;   /* white text = 4.75:1 */
      --cta-fill-hover:#A83C12;   /* white text = 6.33:1 */
    }

    /* ─── Reset & Base ──────────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      font-size: 15px;
      line-height: 1.65;
      color: var(--deep-ink);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: var(--cerulean-text); text-decoration: none; }
    a:hover { text-decoration: underline; }
    svg { display: block; }

    /* ─── Typography ────────────────────────────────────────────────────────── */
    .eyebrow {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--cerulean-text);
    }
    .eyebrow--light { color: var(--sky); }
    .eyebrow--ink   { color: var(--deep-ink); opacity: 0.5; }

    h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
    h1 { font-size: clamp(38px, 5vw, 56px); font-weight: 800; }
    h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 700; }
    h3 { font-size: clamp(20px, 2.5vw, 24px); font-weight: 600; }
    h4 { font-size: 16px; font-weight: 600; }

    .lead {
      font-family: var(--font-body);
      font-size: clamp(16px, 1.5vw, 19px);
      line-height: 1.7;
    }
    .caption {
      font-family: var(--font-body);
      font-size: 12px;
      opacity: 0.55;
    }

    /* ─── Layout Helpers ────────────────────────────────────────────────────── */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-5);
    }
    .section {
      padding: var(--space-12) 0;
    }
    .section--lg {
      padding: var(--space-16) 0;
    }

    /* ─── Scroll Reveal ─────────────────────────────────────────────────────── */
    .js .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }
    .js .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-d1 { transition-delay: 0.08s; }
    .reveal-d2 { transition-delay: 0.16s; }
    .reveal-d3 { transition-delay: 0.24s; }
    .reveal-d4 { transition-delay: 0.32s; }

    /* ─── Hover-lift utility (cards) ────────────────────────────────────────── */
    .lift {
      transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
    }
    .lift:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(0,78,137,0.14);
      border-color: rgba(0,150,199,0.35);
    }

    /* ─── Navigation ────────────────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      z-index: 100;
      transition: box-shadow 0.3s, border-color 0.3s;
    }
    .nav.scrolled {
      box-shadow: 0 4px 28px rgba(0,78,137,0.10);
      border-bottom-color: transparent;
    }
    /* The container must fill the bar, or .nav__inner's height:100% resolves
       against an auto-height parent, collapses to content height, and pins
       everything to the top. That is what made align-items:center look broken
       and left all the empty space below the logo. */
    .nav > .container { height: 100%; }
    /* Links sit beside the wordmark rather than floating in the centre, so the
       bar reads as one deliberate group instead of three drifting parts. The
       1fr spacer sits between the links and the CTA, which keeps the links
       anchored left however wide the screen gets. */
    .nav__inner {
      height: 100%;
      display: grid;
      grid-template-columns: auto auto 1fr;
      align-items: center;
      gap: var(--space-5);
    }
    .nav__wordmark {
      font-family: var(--font-head);
      font-size: 19px;
      font-weight: 800;
      letter-spacing: 3px;
      color: var(--midnight);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .nav__wordmark:hover { text-decoration: none; }
    .nav__links {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: var(--space-4);
      list-style: none;
    }
    /* Current page gets a persistent underline, so the nav tells you where
       you are rather than only responding to hover. */
    .nav__links a[aria-current="page"] { color: var(--midnight); }
    .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
    .nav__links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 600;
      color: var(--deep-ink);
      letter-spacing: 0.1px;
      white-space: nowrap;
    }
    .nav__links a::after {
      content: '';
      position: absolute;
      left: 0; bottom: 6px;
      width: 100%;
      height: 2px;
      background: var(--cerulean);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.2s var(--ease);
    }
    .nav__links a:hover::after { transform: scaleX(1); }
    .nav__links a:hover { color: var(--midnight); text-decoration: none; }
    .nav__actions {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      justify-self: end;
    }
    .nav__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 22px;
      background: var(--cta-fill);
      color: var(--white) !important;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 6px;
      font-family: var(--font-head);
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: 0.2px;
      line-height: 1;
      white-space: nowrap;
      box-shadow: 0 1px 2px rgba(26,26,46,0.16), 0 4px 12px rgba(199,74,24,0.22);
      transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
    }
    .nav__cta svg { width: 13px; height: 13px; transition: transform 0.18s ease; }
    .nav__cta:hover {
      background: var(--cta-fill-hover);
      transform: translateY(-1px);
      box-shadow: 0 2px 4px rgba(26,26,46,0.18), 0 8px 20px rgba(199,74,24,0.30);
      text-decoration: none !important;
    }
    .nav__cta:hover svg { transform: translateX(3px); }
    /* Pressed state: the button settles back down, so a click feels physical
       rather than only changing colour. */
    .nav__cta:active {
      transform: translateY(0);
      box-shadow: 0 1px 2px rgba(26,26,46,0.2);
    }
    .nav__cta:focus-visible {
      outline: 2px solid var(--midnight);
      outline-offset: 3px;
    }
    .nav a:focus-visible,
    .nav button:focus-visible {
      outline: 2px solid var(--cerulean);
      outline-offset: 3px;
      border-radius: 2px;
    }
    .nav__hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      flex-direction: column;
      gap: 5px;
    }
    .nav__hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: var(--deep-ink);
      border-radius: 2px;
      transition: all 0.25s;
    }

    /* ─── Hero ──────────────────────────────────────────────────────────────── */
    .hero {
      background-color: var(--midnight);
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: var(--nav-h);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.025) 40px,
        rgba(255,255,255,0.025) 41px
      );
    }
    .hero::after {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 6px;
      background: var(--red-orange);
    }
    .hero__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: var(--space-10);
      align-items: center;
      padding: var(--space-12) 0;
    }
    .hero__eyebrow { margin-bottom: var(--space-3); }
    .hero__title {
      color: var(--white);
      margin-bottom: var(--space-4);
    }
    .hero__title em {
      font-style: normal;
      color: var(--sky);
    }
    .hero__sub {
      color: rgba(255,255,255,0.72);
      font-size: clamp(15px, 1.5vw, 18px);
      line-height: 1.7;
      max-width: 580px;
      margin-bottom: var(--space-6);
    }
    .hero__panel {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      padding: var(--space-5);
    }
    .hero__panel-label {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: var(--space-2);
    }
    .hero__panel-title {
      color: var(--white);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: var(--space-2);
    }
    .hero__panel-body {
      color: rgba(255,255,255,0.72);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: var(--space-4);
    }
    .hero__tracks {
      display: flex;
      flex-direction: column;
      gap: var(--space-2);
    }
    .hero__track {
      display: flex;
      align-items: flex-start;
      gap: var(--space-2);
      padding: var(--space-2);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.04);
      transition: background 0.2s;
    }
    .hero__track:hover { background: rgba(255,255,255,0.09); }
    .hero__track-icon {
      width: 34px; height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero__track-icon--site { background: rgba(144,224,239,0.2); color: var(--sky); }
    .hero__track-icon--auto { background: rgba(144,224,239,0.22); color: var(--sky); }
    .hero__track-icon svg { width: 17px; height: 17px; }
    .hero__track-text strong {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      display: block;
    }
    .hero__track-text span {
      font-size: 12px;
      color: rgba(255,255,255,0.72);
    }
    .hero__cta-group {
      display: flex;
      gap: var(--space-2);
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }
    .btn svg { width: 14px; height: 14px; transition: transform 0.2s; }
    .btn:hover svg { transform: translateX(3px); }
    .btn--primary {
      background: var(--cta-fill);
      color: var(--white);
    }
    .btn--primary:hover { background: #d9541f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,98,42,0.35); text-decoration: none; }
    .btn--outline-white {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.4);
    }
    .btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.06); text-decoration: none; }
    .hero__scroll {
      position: absolute;
      bottom: var(--space-4);
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.72);
      font-family: var(--font-head);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .hero__scroll-line {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,0.2);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; transform: scaleY(1); }
      50%       { opacity: 0.8; transform: scaleY(1.2); }
    }

    /* ─── Statement Bar ─────────────────────────────────────────────────────── */
    .statement-bar {
      background: var(--sky-tint);
      border-top: 1px solid rgba(0,150,199,0.15);
      border-bottom: 1px solid rgba(0,150,199,0.15);
      padding: var(--space-6) 0;
      position: relative;
      overflow: hidden;
    }
    .statement-bar__motif {
      position: absolute;
      left: 0; right: 0; bottom: -6px;
      height: 60px;
      color: var(--cerulean-text);
      opacity: 0.15;
      pointer-events: none;
    }
    .statement-bar__motif svg { width: 100%; height: 100%; }
    .statement-bar__inner {
      position: relative;
      z-index: 1;
      max-width: 780px;
      margin: 0 auto;
      padding: 0 var(--space-5);
      text-align: center;
    }
    .statement-bar p {
      font-family: var(--font-body);
      font-size: clamp(17px, 2vw, 22px);
      font-style: italic;
      line-height: 1.6;
      color: var(--midnight);
    }

    /* ─── Pain / Proof section ──────────────────────────────────────────────── */
    .why-now { background: var(--white); }
    .section__header { margin-bottom: var(--space-8); }
    .section__header .eyebrow { margin-bottom: var(--space-2); }
    .section__header h2 { max-width: 620px; }
    .section__header p {
      margin-top: var(--space-3);
      max-width: 580px;
      color: rgba(26,26,46,0.7);
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-3);
    }
    .why-card {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: var(--space-4);
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--midnight);
    }
    .why-card__icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--sky-tint);
      color: var(--midnight);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: var(--space-3);
    }
    .why-card__icon svg { width: 18px; height: 18px; }
    .why-card h4 {
      color: var(--deep-ink);
      margin-bottom: var(--space-1);
    }
    .why-card p {
      font-size: 13.5px;
      line-height: 1.6;
      color: rgba(26,26,46,0.65);
      margin-bottom: var(--space-3);
    }
    .why-card__proof {
      border-top: 1px solid var(--border);
      padding-top: var(--space-2);
      font-size: 11.5px;
      color: rgba(26,26,46,0.65);
      line-height: 1.5;
    }
    .why-card__proof strong {
      color: var(--midnight);
      font-family: var(--font-head);
      font-weight: 700;
    }

    /* ─── Offering ──────────────────────────────────────────────────────────── */
    .offering { background: var(--off-white); }
    .offering__intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-10);
      margin-bottom: var(--space-8);
      align-items: end;
    }
    .offering__intro p { color: rgba(26,26,46,0.7); margin-top: var(--space-3); }
    .offering__split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 4px 40px rgba(0,78,137,0.08);
    }
    .track-card {
      background: var(--white);
      padding: var(--space-7) var(--space-6);
      position: relative;
      transition: background 0.25s;
    }
    .track-card--site {
      border-top: 5px solid var(--midnight);
    }
    .track-card--auto {
      border-top: 5px solid var(--cerulean);
    }
    .track-card:hover { background: var(--off-white); }
    .track-card__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--sky-tint);
      border: 1px solid rgba(0,150,199,0.2);
      border-radius: 20px;
      padding: 5px 14px 5px 8px;
      margin-bottom: var(--space-3);
    }
    .track-card__badge--auto {
      background: var(--sky-tint);
      border-color: rgba(0,150,199,0.28);
    }
    .track-card__badge-icon {
      width: 18px; height: 18px;
      display: flex; align-items: center; justify-content: center;
      color: var(--midnight);
    }
    .track-card__badge--auto .track-card__badge-icon { color: var(--cerulean-text); }
    .track-card__badge-icon svg { width: 12px; height: 12px; }
    .track-card__badge span {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--midnight);
    }
    .track-card__badge--auto span { color: var(--cerulean-text); }
    .track-card h3 { margin-bottom: var(--space-1); }
    .track-card__led {
      font-family: var(--font-head);
      font-size: 12px;
      font-weight: 600;
      color: var(--cerulean-text);
      letter-spacing: 0.5px;
      margin-bottom: var(--space-3);
    }
    .track-card__body {
      font-size: 15px;
      line-height: 1.65;
      color: rgba(26,26,46,0.75);
      margin-bottom: var(--space-4);
    }
    .track-card__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: var(--space-5);
    }
    .track-card__list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      line-height: 1.5;
      color: var(--deep-ink);
    }
    .track-card__list li::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--midnight);
      margin-top: 7px;
      flex-shrink: 0;
    }
    .track-card--auto .track-card__list li::before { background: var(--cerulean); }
    .track-card__ideal {
      background: var(--sky-tint);
      border-radius: var(--radius-sm);
      padding: var(--space-3);
    }
    .track-card--auto .track-card__ideal {
      background: var(--sky-tint);
    }
    .track-card__ideal strong {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--midnight);
      display: block;
      margin-bottom: 4px;
    }
    .track-card--auto .track-card__ideal strong { color: var(--cerulean-text); }
    .track-card__ideal p {
      font-size: 13.5px;
      line-height: 1.55;
      color: rgba(26,26,46,0.75);
    }
    .track-card__note {
      margin-top: var(--space-3);
      padding-top: var(--space-3);
      border-top: 1px dashed var(--border);
    }
    .track-card__note strong {
      font-family: var(--font-head);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(26,26,46,0.65);
      display: block;
      margin-bottom: 4px;
    }
    .track-card__note p {
      font-size: 13px;
      line-height: 1.55;
      color: rgba(26,26,46,0.65);
    }
    .offering__together {
      margin-top: var(--space-8);
      background: var(--midnight);
      border-radius: var(--radius);
      padding: var(--space-6) var(--space-7);
      display: flex;
      align-items: center;
      gap: var(--space-8);
    }
    .offering__together-text { flex: 1; }
    .offering__together-text .eyebrow { margin-bottom: var(--space-2); }
    .offering__together-text h3 { color: var(--white); margin-bottom: var(--space-2); }
    .offering__together-text p { color: rgba(255,255,255,0.72); font-size: 15px; }
    .offering__together-icon {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      color: var(--sky);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .offering__together-icon svg { width: 26px; height: 26px; }


    /* ─── Who We Serve ──────────────────────────────────────────────────────── */
    .who { background: var(--off-white); }
    .who__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-3);
    }
    .who-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: var(--space-5);
      position: relative;
    }
    .who-card__track {
      display: flex;
      justify-content: flex-end;
      margin-bottom: var(--space-3);
    }
    .track-tag {
      display: inline-block;
      font-family: var(--font-head);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 3px;
    }
    .track-tag--site { background: var(--sky-tint); color: var(--midnight); }
    .track-tag--auto { background: var(--sky-tint); color: var(--cerulean-text); }
    .who-card h3 { margin-bottom: var(--space-1); color: var(--midnight); font-size: 20px; }
    .who-card__profile-line {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 600;
      color: var(--cerulean-text);
      margin-bottom: var(--space-3);
    }
    .who-card p { font-size: 14px; line-height: 1.6; color: rgba(26,26,46,0.7); margin-bottom: var(--space-3); }
    .who-card__trigger {
      background: var(--off-white);
      border-left: 3px solid var(--midnight);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: var(--space-2) var(--space-3);
    }
    .who-card:nth-child(2) .who-card__trigger,
    .who-card:nth-child(3) .who-card__trigger { border-color: var(--cerulean); }
    .who-card__trigger strong {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--midnight);
      display: block;
      margin-bottom: 2px;
    }
    .who-card:nth-child(2) .who-card__trigger strong,
    .who-card:nth-child(3) .who-card__trigger strong { color: var(--cerulean-text); }
    .who-card__trigger p { font-size: 13px; margin: 0; }
    .who-card__source {
      margin-top: var(--space-3);
      font-size: 13px;
      color: rgba(26,26,46,0.65);
      font-style: italic;
    }

    /* ─── Founders ──────────────────────────────────────────────────────────── */
    .founders { background: var(--white); }
    .founders__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-4);
    }
    .founder-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .founder-card__header {
      background: var(--midnight);
      padding: var(--space-5) var(--space-5) var(--space-4);
      position: relative;
    }
    .founder-card:nth-child(2) .founder-card__header {
      background: var(--deep-ink);
    }
    .founder-card__avatar {
      width: 72px; height: 72px;
      border-radius: 50%;
      border: 3px solid rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: var(--space-3);
      overflow: hidden;
    }
    .founder-card__avatar img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .cta-section__track-btn-avatar {
      width: 34px; height: 34px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 2px solid rgba(255,255,255,0.25);
    }
    .cta-section__track-btn-avatar img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .founder-card__name {
      color: var(--white);
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .founder-card__title {
      font-family: var(--font-head);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--sky);
    }
    .founder-card:nth-child(2) .founder-card__title { color: var(--cerulean-text); }
    .founder-card__body { padding: var(--space-5); }
    .founder-card__body p {
      font-size: 14.5px;
      line-height: 1.65;
      color: rgba(26,26,46,0.75);
      margin-bottom: var(--space-4);
    }
    .founder-card__credentials {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: var(--space-4);
    }
    .founder-card__credentials li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 500;
      color: var(--deep-ink);
    }
    .founder-card__credentials li svg {
      width: 14px; height: 14px;
      color: var(--cerulean-text);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .founder-card__footnote {
      display: flex;
      gap: var(--space-3);
      align-items: flex-start;
      background: var(--sky-tint);
      border-left: 3px solid var(--cerulean);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: var(--space-3) var(--space-4);
      font-size: 13.5px;
      line-height: 1.6;
      color: rgba(26,26,46,0.72);
    }
    .founder-card:nth-child(2) .founder-card__footnote {
      background: #fff3ef;
      border-left-color: var(--cerulean);
    }
    .founder-card__footnote-icon {
      width: 26px; height: 26px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--white);
      color: var(--cerulean-text);
      display: flex; align-items: center; justify-content: center;
      margin-top: 2px;
    }
    .founder-card:nth-child(2) .founder-card__footnote-icon { color: var(--cerulean-text); }
    .founder-card__footnote-icon svg { width: 13px; height: 13px; }
    .founder-card__footnote strong {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: var(--midnight);
      display: block;
      margin-bottom: 4px;
    }
    .founders__note {
      margin-top: var(--space-6);
      text-align: center;
      font-size: 14px;
      color: rgba(26,26,46,0.65);
    }

    /* ─── CTA Section ───────────────────────────────────────────────────────── */
    .cta-section {
      background: var(--midnight);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.02) 40px,
        rgba(255,255,255,0.02) 41px
      );
    }
    .cta-section__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: var(--space-10);
      align-items: center;
    }
    .cta-section .eyebrow { margin-bottom: var(--space-3); }
    .cta-section h2 { color: var(--white); margin-bottom: var(--space-3); max-width: 520px; }
    .cta-section p { color: rgba(255,255,255,0.72); max-width: 480px; line-height: 1.65; }
    .cta-section__panel {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      padding: var(--space-5);
      min-width: 320px;
      text-align: center;
    }
    .cta-section__panel > p {
      color: rgba(255,255,255,0.72);
      font-size: 13px;
      margin-bottom: var(--space-4);
      max-width: none;
    }
    .cta-section__track-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      width: 100%;
      text-align: left;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      margin-bottom: 10px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      transition: background 0.2s, transform 0.15s;
    }
    .cta-section__track-btn:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); text-decoration: none; }
    .cta-section__track-btn strong {
      display: block;
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
    }
    .cta-section__track-btn-text { flex: 1; min-width: 0; }
    .cta-section__track-btn-text span {
      display: block;
      font-size: 11.5px;
      color: rgba(255,255,255,0.72);
      margin-top: 2px;
    }
    .cta-section__track-btn svg { width: 14px; height: 14px; color: rgba(255,255,255,0.72); flex-shrink: 0; transition: transform 0.2s; }
    .cta-section__track-btn:hover svg { transform: translateX(3px); }
    .cta-section__or {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
      text-align: center;
      margin: var(--space-2) 0;
    }
    .cta-section__email {
      font-family: var(--font-head);
      font-size: 13px;
      color: var(--sky);
      text-align: center;
      display: block;
    }
    .cta-section__phones {
      font-size: 12.5px;
      color: rgba(255,255,255,0.72);
      text-align: center;
      margin-top: var(--space-2);
    }
    .cta-section__phones a {
      color: rgba(255,255,255,0.85);
      font-weight: 600;
    }
    .cta-section__phones a:hover { color: var(--sky); }

    /* ─── FAQ Accordion ─────────────────────────────────────────────────────── */
    .faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 10px; }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item.open { border-color: rgba(0,150,199,0.35); }
    .faq-item__q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-3);
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      padding: var(--space-4);
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 600;
      color: var(--deep-ink);
    }
    .faq-item__icon {
      width: 22px; height: 22px;
      flex-shrink: 0;
      color: var(--cerulean-text);
      transition: transform 0.25s var(--ease);
    }
    .faq-item.open .faq-item__icon { transform: rotate(45deg); color: var(--cerulean-text); }
    /* Only collapse when JS is running to expand it again. Without JS every
       answer stays open rather than being permanently unreadable. */
    .js .faq-item__a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s var(--ease);
    }
    .faq-item__a p {
      padding: 0 var(--space-4) var(--space-4);
      font-size: 14px;
      line-height: 1.65;
      color: rgba(26,26,46,0.7);
    }

    /* ─── Footer ────────────────────────────────────────────────────────────── */
    .footer {
      background: var(--deep-ink);
      padding: var(--space-8) 0 var(--space-5);
    }
    .footer__inner {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: var(--space-6);
      margin-bottom: var(--space-6);
    }
    .footer__wordmark {
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 3px;
      color: var(--white);
      display: block;
      margin-bottom: 8px;
    }
    .footer__tagline {
      font-family: var(--font-body);
      font-style: italic;
      font-size: 13px;
      color: var(--sky);
      line-height: 1.5;
    }
    .footer__col-head {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
      margin-bottom: var(--space-3);
    }
    .footer__links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer__links a {
      font-size: 14px;
      color: rgba(255,255,255,0.72);
    }
    .footer__links a:hover { color: var(--white); text-decoration: none; }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: var(--space-4);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--space-3);
    }
    .footer__bottom-links {
      display: flex;
      align-items: center;
      gap: var(--space-3);
    }
    .footer__bottom p {
      font-size: 12px;
      color: rgba(255,255,255,0.72);
    }
    .footer__bottom a {
      color: rgba(255,255,255,0.72);
      font-size: 12px;
    }
    .footer__legal {
      margin-top: var(--space-3);
      font-size: 11px;
      line-height: 1.6;
      color: rgba(255,255,255,0.72);
      max-width: 760px;
    }

    /* ─── Mobile Nav ─────────────────────────────────────────────────────────── */
    .nav__mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: var(--space-3) var(--space-5) var(--space-4);
      flex-direction: column;
      gap: var(--space-2);
      z-index: 99;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }
    .nav__mobile-menu.open { display: flex; }
    .nav__mobile-menu a {
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 600;
      color: var(--deep-ink);
      padding: var(--space-1) 0;
      border-bottom: 1px solid var(--border);
    }
    .nav__mobile-menu a:last-child { border-bottom: none; }

    /* ─── Responsive ────────────────────────────────────────────────────────── */
    @media (max-width: 960px) {
      .hero__inner {
        grid-template-columns: 1fr;
      }
      /* Restacked, not hidden. This panel carries the two-track proposition,
         which is the core of the page and must not vanish on phones. */
      .hero__panel { margin-top: var(--space-5); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .offering__intro { grid-template-columns: 1fr; gap: var(--space-3); }
      .offering__split { grid-template-columns: 1fr; }
      .founders__grid { grid-template-columns: 1fr; }
      .cta-section__inner { grid-template-columns: 1fr; }
      .cta-section__panel { min-width: auto; }
      .footer__inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      /* The links are removed from the grid at this width, so the two
         remaining items would sit side by side against the logo. Reset to a
         two-column layout to push the hamburger to the far right. */
      .nav__inner { grid-template-columns: 1fr auto; }
      .nav__links { display: none; }
      .nav__cta { display: none; }
      .nav__hamburger { display: flex; }
      .why-grid { grid-template-columns: 1fr; }
      .who__grid { grid-template-columns: 1fr; }
      .footer__inner { grid-template-columns: 1fr; }
      .footer__bottom { flex-direction: column; gap: var(--space-2); text-align: center; }
      h1 { font-size: 32px; }
      h2 { font-size: 24px; }
      .section { padding: var(--space-8) 0; }
      .section--lg { padding: var(--space-10) 0; }
      .offering__together { flex-direction: column; gap: var(--space-3); }

      /* The nav CTA is hidden at this width, so the sticky bar takes over.
         Pad the page so it never covers the footer's last line.
         The .mobile-cta display rule lives at the end of this file, after the
         component's own `display: none` default, or it would be overridden. */
      body { padding-bottom: 72px; }
    }

    /* ─── Skip link ─────────────────────────────────────────────────────────── */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      z-index: 200;
      background: var(--midnight);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 600;
      padding: 12px 20px;
      border-radius: 0 0 var(--radius) 0;
    }
    .skip-link:focus {
      left: 0;
      text-decoration: none;
    }
    main:focus { outline: none; }

    /* ─── Global keyboard focus ─────────────────────────────────────────────── */
    a:focus-visible,
    button:focus-visible,
    [tabindex]:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--cerulean-text);
      outline-offset: 3px;
      border-radius: 2px;
    }
    .cta-section a:focus-visible,
    .footer a:focus-visible,
    .hero a:focus-visible,
    .offering__together a:focus-visible {
      outline-color: var(--sky);
    }

    /* Scrollable table region needs a visible focus ring of its own. */

    /* ─── Sticky mobile CTA ─────────────────────────────────────────────────── */
    /* The nav CTA is hidden below 640px, which otherwise leaves phones with no
       call to action until the very bottom of the page. */
    .mobile-cta {
      display: none;
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 90;
      padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-top: 1px solid var(--border);
    }
    .mobile-cta a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--cta-fill);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 700;
      padding: 13px 20px;
      border-radius: var(--radius-sm);
      text-decoration: none;
    }
    .mobile-cta a:hover { background: var(--cta-fill-hover); text-decoration: none; }
    .mobile-cta svg { width: 14px; height: 14px; }

    /* ─── Reduced motion ────────────────────────────────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .js .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ─── Utilities ─────────────────────────────────────────────────────────── */
    .visually-hidden {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
      border: 0;
    }
    .container.narrow { max-width: 820px; }

    /* ─── Inner page hero ───────────────────────────────────────────────────── */
    .page-hero {
      position: relative;
      background: var(--midnight);
      color: var(--white);
      padding: calc(var(--nav-h) + var(--space-10)) 0 var(--space-10);
      overflow: hidden;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        135deg,
        transparent 0,
        transparent 40px,
        rgba(255,255,255,0.025) 40px,
        rgba(255,255,255,0.025) 41px
      );
      pointer-events: none;
    }
    .page-hero > .container { position: relative; z-index: 1; max-width: 900px; }
    .page-hero--slim { padding: calc(var(--nav-h) + var(--space-8)) 0 var(--space-8); }
    .page-hero h1 { margin: var(--space-2) 0 var(--space-3); }
    .page-hero__sub {
      font-size: clamp(16px, 1.6vw, 19px);
      line-height: 1.7;
      color: rgba(255,255,255,0.85);
      max-width: 60ch;
    }
    .page-hero__cta {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-2);
      margin-top: var(--space-5);
    }

    /* ─── Scope cards ───────────────────────────────────────────────────────── */
    .scope-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: var(--space-3);
    }
    .scope-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: var(--space-4);
    }
    .scope-card__icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--sky-tint);
      color: var(--cerulean-text);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-2);
    }
    .scope-card__icon svg { width: 20px; height: 20px; }
    .scope-card h3 { font-size: 17px; margin-bottom: 8px; }
    .scope-card p { font-size: 14px; line-height: 1.6; color: rgba(26,26,46,0.72); }

    /* ─── Callout panel ─────────────────────────────────────────────────────── */
    .callout-panel {
      background: var(--sky-tint);
      border-left: 3px solid var(--cerulean);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: var(--space-4) var(--space-5);
    }
    .callout-panel--flush { margin-top: 0; }
    .callout-panel h2 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: var(--space-2); color: var(--midnight); }
    .callout-panel p { margin-bottom: var(--space-2); }
    .callout-panel p:last-child { margin-bottom: 0; }
    .callout {
      background: var(--sky-tint);
      border-left: 3px solid var(--cerulean);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: var(--space-3) var(--space-4);
      font-size: 14.5px;
      margin: var(--space-5) 0 0;
    }

    /* ─── Fit list ──────────────────────────────────────────────────────────── */
    .fit-list { list-style: none; display: grid; gap: 14px; }
    .fit-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 16px;
      line-height: 1.6;
    }
    .fit-list svg {
      width: 18px; height: 18px;
      flex-shrink: 0;
      margin-top: 4px;
      color: var(--cerulean-text);
    }
    .fit-note {
      margin-top: var(--space-4);
      font-size: 14.5px;
      color: rgba(26,26,46,0.72);
    }

    /* ─── Prose ─────────────────────────────────────────────────────────────── */
    .prose p { margin-bottom: var(--space-2); }
    .prose h2 {
      font-size: 21px;
      color: var(--midnight);
      margin-top: var(--space-5);
      margin-bottom: var(--space-1);
    }
    .prose ul { padding-left: 22px; margin-bottom: var(--space-2); }
    .prose li { margin-bottom: 8px; }

    /* ─── Proof strip ───────────────────────────────────────────────────────── */
    .proof__grid {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: var(--space-3);
    }
    .proof__item {
      border-top: 3px solid var(--cerulean);
      padding-top: var(--space-2);
    }
    .proof__figure {
      display: block;
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 800;
      color: var(--midnight);
      margin-bottom: 6px;
    }
    .proof__label {
      display: block;
      font-size: 14px;
      line-height: 1.55;
      color: rgba(26,26,46,0.72);
    }
    .proof__verify {
      margin-top: var(--space-5);
      font-family: var(--font-head);
      font-size: 14px;
      color: rgba(26,26,46,0.72);
    }
    .proof__verify a { font-weight: 600; }

    /* ─── Steps ─────────────────────────────────────────────────────────────── */
    .steps__list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: var(--space-4);
      counter-reset: step;
    }
    .steps__list--stacked { grid-template-columns: 1fr; gap: var(--space-5); }
    .steps__item {
      border-top: 1px solid var(--border);
      padding-top: var(--space-3);
    }
    .steps__num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px; height: 30px;
      border-radius: 50%;
      background: var(--midnight);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: var(--space-2);
    }
    .steps__item h3 { font-size: 18px; margin-bottom: 8px; }
    .steps__item p {
      font-size: 14.5px;
      line-height: 1.65;
      color: rgba(26,26,46,0.72);
      margin-bottom: 10px;
    }
    .steps__item p:last-child { margin-bottom: 0; }
    .steps__more {
      margin-top: var(--space-5);
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 600;
    }
    .steps__more a { display: inline-flex; align-items: center; gap: 8px; }
    .steps__more svg { width: 14px; height: 14px; }

    /* ─── Misc page bits ────────────────────────────────────────────────────── */
    .offering__aside {
      color: rgba(26,26,46,0.72);
      font-size: 14px;
      line-height: 1.7;
    }
    .track-card__more {
      margin-top: var(--space-3);
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 600;
    }
    .track-card__more a { display: inline-flex; align-items: center; gap: 8px; }
    .track-card__more svg { width: 14px; height: 14px; }
    .founder-card__link {
      margin-top: var(--space-3);
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 600;
    }
    .founder-card__link a { display: inline-flex; align-items: center; gap: 8px; }
    .founder-card__link svg { width: 14px; height: 14px; }

    @media (max-width: 640px) {
      .page-hero { padding: calc(var(--nav-h) + var(--space-6)) 0 var(--space-6); }
      .callout-panel { padding: var(--space-3); }
    }

    /* ─── No-JavaScript fallbacks ───────────────────────────────────────────── */
    /* The hamburger needs JS to do anything, so without JS we hide it and show
       the menu inline instead. Otherwise phone users get no navigation at all. */
    html:not(.js) .nav__hamburger { display: none !important; }
    html:not(.js) .faq-item__icon { display: none; }
    @media (max-width: 640px) {
      html:not(.js) .nav__mobile-menu {
        display: flex;
        position: static;
        box-shadow: none;
        padding: var(--space-2) var(--space-5) var(--space-3);
      }
      html:not(.js) .nav { position: static; height: auto; }
      html:not(.js) body { padding-top: 0 !important; }
    }

    /* Must come after .mobile-cta's `display: none` default above. */
    @media (max-width: 640px) {
      .mobile-cta { display: block; }
    }

    /* ─── Contact blocks (email + that founder's own phone) ─────────────────── */
    .contact-block { margin-bottom: var(--space-3); }
    .contact-block:last-of-type { margin-bottom: var(--space-2); }
    .contact-block .cta-section__track-btn { margin-bottom: 0; }
    .contact-block__phone {
      margin: 8px 0 0;
      padding-left: 4px;
      font-family: var(--font-head);
      font-size: 13px;
      color: rgba(255,255,255,0.72);
    }
    .contact-block__phone a {
      color: var(--sky);
      font-weight: 600;
      white-space: nowrap;
    }

    /* ─── Decorative motifs ─────────────────────────────────────────────────── */
    /* Hero: scattered lines resolving into ordered ones, behind the content. */
    .hero__motif {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 62%;
      max-width: 900px;
      color: var(--sky);
      opacity: 0.12;
      pointer-events: none;
      z-index: 0;
    }
    .hero__motif svg { width: 100%; height: auto; }
    .hero .container { position: relative; z-index: 1; }

    /* Track card headers: a small mark that distinguishes the two tracks at a
       glance, which is the homepage's main job. */
    .track-card__motif {
      width: 100px;
      height: 25px;
      margin-bottom: var(--space-2);
    }
    .track-card__motif svg { width: 100%; height: 100%; }
    .track-card--site .track-card__motif { color: var(--midnight); opacity: 0.55; }
    .track-card--auto .track-card__motif { color: var(--cerulean); opacity: 0.7; }

    /* The Handoff: two circles meeting. */
    .offering__together-icon svg { width: 100%; height: auto; }
    .offering__together-motif {
      flex-shrink: 0;
      width: 132px;
      color: var(--sky);
    }
    .offering__together-motif svg { width: 100%; height: auto; }

    @media (max-width: 960px) {
      .hero__motif { width: 100%; opacity: 0.08; }
    }

    /* Shorter bar on phones: 88px is generous on a desktop and wasteful on a
       375px screen where vertical space is the scarce resource. */
    @media (max-width: 640px) {
      :root { --nav-h: 68px; }
    }

    /* ─── Visible contact address ───────────────────────────────────────────── */
    /* Shown as text, not only behind a mailto link, so a missing mail handler
       is never a dead end. */
    .contact-address {
      margin-bottom: var(--space-2);
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .contact-address a {
      color: var(--sky);
      word-break: break-all;
    }
    .copy-email {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--white);
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 4px;
      padding: 5px 10px;
      cursor: pointer;
      transition: background 0.15s ease;
    }
    .copy-email:hover { background: rgba(255,255,255,0.2); }
    .copy-email[data-copied] { background: var(--sky); color: var(--midnight); border-color: var(--sky); }
    .contact-lead {
      margin-bottom: var(--space-3);
      color: rgba(255,255,255,0.72);
    }

    /* ─── Mobile refinements ────────────────────────────────────────────────── */
    @media (max-width: 640px) {
      /* 40px of side padding costs 21% of a 375px screen. 24px keeps the
         text comfortable while giving the content meaningfully more room. */
      .container { padding: 0 24px; }

      /* The hamburger was 38x32. Anything interactive needs at least 44x44
         to be reliably tappable. */
      .nav__hamburger {
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        margin-right: -8px;   /* keep the icon optically aligned to the edge */
      }
    }
