:root{
    --ink:        #12141c;
    --ink-soft:   #1c2030;
    --indigo:     #1b2a4a;
    --paper:      #eef1f0;
    --card:       #ffffff;
    --red:        #ed1b2f;
    --teal:       #146e7a;
    --teal-soft:  #dfe9e7;
    --line:       #d6dbd8;
    --text:       #14161c;
    --text-muted: #57606a;

    --display: 'Catamaran', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --body:    'Source Serif 4', Georgia, 'Times New Roman', serif;
    --mono:    'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    --radius: 6px;
    --container: 1580px;
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; font-size:22px }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
  }
  .eyebrow{ font-family:var(--mono); font-size:0.78rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--teal); display:flex; align-items:center; gap:0.6rem; margin-bottom:0.75rem; }
  .eyebrow::before{ content:''; width:1.4rem; height:1px; background:var(--teal); display:inline-block; }

  .btn{ font-family:var(--display); font-size:0.9rem; font-weight:500; display:inline-flex; align-items:center; gap:0.5rem; text-decoration:none; cursor:pointer; border-radius:4px; padding:0.6rem 1.2rem; border:1px solid transparent; }
  .btn-ghost{ color:var(--teal); border-color:var(--teal-soft); background:var(--teal-soft); }
  .btn-ghost:hover{ background:var(--teal); border-color:var(--teal); color:#fff; }
  .btn-primary{ background:var(--ink); color:#fff; }
  .btn-primary:hover{ background:var(--teal); }
  .link{ color:var(--teal); text-decoration-color:var(--teal-soft); }
  .link:hover{ text-decoration-color:var(--teal); }
/* ===========================================================
    HEADER / NAV — same links & order as the current site
    'Space Grotesk'
=========================================================== */
.site-header{ position:sticky; top:0; z-index:40; background:rgba(18,20,28,0.94); backdrop-filter:saturate(140%) blur(6px); color:#fff; }
.site-header .container{ max-width:2120px; }
.nav-row{ display:flex; align-items:center; justify-content:space-between; padding:1rem 0; }
.brand{ display:flex; align-items:center; gap:0.75rem; font-family:var(--display); font-weight:600; font-size:1.0rem; text-decoration:none; color:#fff; }
.brand svg{ flex:none; width:30px; height:30px; }
.nav-list{ list-style:none; display:flex; gap:1.75rem; margin:0; padding:0; font-family:var(--display); font-size:1rem; align-items:center; }
.nav-list a{ text-decoration:none; color:#e7e8ec; position:relative; padding-bottom:3px; display:inline-flex; align-items:center; gap:0.35rem; white-space:nowrap; }
.nav-list a::after{ content:''; position:absolute; left:0; right:100%; bottom:0; height:1px; background:var(--red); transition:right 0.2s ease; }
.nav-list a:hover::after, .nav-list a:focus-visible::after{ right:0; }
.nav-toggle{ display:none; background:none; border:1px solid rgba(255,255,255,0.3); border-radius:4px; color:#fff; width:38px; height:34px; cursor:pointer; }

@media (max-width: 1700px){
.nav-toggle{ display:block; }
.nav-list{ position:absolute; top:100%; left:0; right:0; flex-direction:column; align-items:stretch; gap:0; background:var(--ink); max-height:0; overflow:hidden; transition:max-height 0.25s ease; }
.nav-list.open{ max-height:480px; }
.nav-list li{ border-top:1px solid rgba(255,255,255,0.08); }
.nav-list a{ display:flex; padding:0.9rem 1.5rem; }
.nav-list a::after{ display:none; }
}