  :root {
    --ink: #101d33;
    --ink-soft: #44506a;
    --paper: #fafaf8;
    --white: #ffffff;
    --star: #ffc629;
    --star-soft: #ffe9a8;
    --blue: #2e5cff;
    --line: #e4e4de;
    --navy: #0c1c33;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Instrument Sans', sans-serif;
    background: var(--paper); color: var(--ink);
    line-height: 1.6; -webkit-font-smoothing: antialiased;
  }
  .disp { font-family: 'Bricolage Grotesque', sans-serif; }
  .mono { font-family: 'IBM Plex Mono', monospace; }
  .wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
  section { padding: 100px 0; }
  a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .marquee-track { animation: none !important; }
    html { scroll-behavior: auto; }
  }

  .hl {
    background-image: linear-gradient(transparent 56%, var(--star) 56%, var(--star) 94%, transparent 94%);
    background-repeat: no-repeat;
    padding: 0 0.08em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  /* ---------- announcement bar ---------- */
  .anbar {
    position: relative; background: var(--ink); color: #fff;
    display: flex; align-items: center; justify-content: center;
    padding: 9px 46px 9px 18px; text-align: center; line-height: 1.35;
  }
  .anbar.is-hidden { display: none; }
  .anbar-link { color: rgba(255,255,255,0.86); text-decoration: none; font-size: 14px; font-weight: 500; }
  .anbar-cta { color: var(--star); font-weight: 600; white-space: nowrap; }
  .anbar-cta .arw { display: inline-block; transition: transform .15s ease; }
  .anbar-link:hover .anbar-cta { text-decoration: underline; }
  .anbar-link:hover .arw { transform: translateX(3px); }
  .anbar-x {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: transparent; border: 0; color: rgba(255,255,255,0.55);
    font-size: 21px; line-height: 1; cursor: pointer; padding: 4px 8px;
  }
  .anbar-x:hover { color: #fff; }
  @media (max-width: 480px) { .anbar-link { font-size: 13px; } }

  /* ---------- nav ---------- */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,250,248,0.92); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-in { display: flex; align-items: center; justify-content: space-between; height: 70px; }
  .wordmark {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 21px;
    color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 7px;
  }
  .wordmark .spark { color: var(--star); font-size: 24px; line-height: 1; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500; }
  .nav-links a:hover { color: var(--ink); }
  .btn {
    display: inline-block; text-decoration: none; font-weight: 600; font-size: 16px;
    padding: 14px 28px; border-radius: 100px; transition: transform .15s ease, box-shadow .15s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-ink { background: var(--ink); color: #fff; box-shadow: 0 2px 0 rgba(16,29,51,0.3); }
  .btn-star { background: var(--star); color: var(--ink); box-shadow: 0 2px 0 rgba(16,29,51,0.15); }
  .btn-ghost { border: 2px solid var(--ink); color: var(--ink); }
  .nav-links .btn { padding: 10px 20px; font-size: 14px; }
  .nav-links a.btn-ink { color: #fff; }
  .nav-links a.btn-ink:hover { color: #fff; }
  section, header.hero { scroll-margin-top: 84px; }
  @media (max-width: 780px) { .nav-links a:not(.btn) { display: none; } }

  /* ---------- hero ---------- */
  .hero { padding: 110px 0 70px; position: relative; overflow: hidden; }
  .hero h1 {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
    font-size: clamp(42px, 6.4vw, 78px); line-height: 1.04; letter-spacing: -0.025em;
    max-width: 900px;
  }
  .hero .sub { font-size: 20px; color: var(--ink-soft); max-width: 640px; margin-top: 28px; }
  .hero .sub strong { color: var(--ink); }
  .hero-cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .hero-note { font-size: 14px; color: var(--ink-soft); }

  /* marquee */
  .marquee {
    border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
    background: var(--star); overflow: hidden; padding: 14px 0; margin-top: 80px;
  }
  .marquee-track {
    display: flex; gap: 0; width: max-content;
    animation: scroll 28s linear infinite;
  }
  .marquee span {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px;
    white-space: nowrap; padding: 0 18px; display: flex; align-items: center; gap: 36px;
  }
  .marquee span::after { content: "✦"; font-size: 13px; }
  @keyframes scroll { to { transform: translateX(-50%); } }

  /* ---------- shared headings ---------- */
  .tag {
    display: inline-block; background: var(--ink); color: var(--star);
    font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 6px 14px; border-radius: 4px; margin-bottom: 22px;
  }
  h2.big {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
    font-size: clamp(32px, 4.6vw, 52px); line-height: 1.08; letter-spacing: -0.02em;
    max-width: 760px;
  }
  .lede { font-size: 18px; color: var(--ink-soft); max-width: 600px; margin-top: 20px; }

  /* ---------- problem + receipt ---------- */
  .problem .grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
  .problem p.body { color: var(--ink-soft); margin-top: 20px; font-size: 17px; }
  .problem p.body strong { color: var(--ink); }

  .receipt-tilt { transform: rotate(1.5deg); transition: transform .3s ease; }
  .receipt-tilt:hover { transform: rotate(0deg) scale(1.01); }
  .receipt {
    background: var(--white); max-width: 420px; margin: 0 auto;
    box-shadow: 0 14px 40px rgba(16,29,51,0.14);
    font-family: 'IBM Plex Mono', monospace; font-size: 14px;
    padding: 32px 28px 26px;
    -webkit-mask: linear-gradient(to bottom, #000 calc(100% - 12px), transparent calc(100% - 12px)),
      radial-gradient(circle at 8px 100%, transparent 7px, #000 7.5px);
    -webkit-mask-size: 100% 100%, 16px 14px;
    -webkit-mask-position: 0 0, 0 100%;
    -webkit-mask-repeat: no-repeat, repeat-x;
    mask: linear-gradient(to bottom, #000 calc(100% - 12px), transparent calc(100% - 12px)),
      radial-gradient(circle at 8px 100%, transparent 7px, #000 7.5px);
    mask-size: 100% 100%, 16px 14px;
    mask-position: 0 0, 0 100%;
    mask-repeat: no-repeat, repeat-x;
    padding-bottom: 40px;
  }
  .receipt .r-head { text-align: center; border-bottom: 1.5px dashed var(--ink); padding-bottom: 16px; margin-bottom: 16px; }
  .receipt .r-head .r-title { font-weight: 500; font-size: 15px; letter-spacing: 0.04em; }
  .receipt .r-head .r-sub { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }
  .receipt .r-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; }
  .receipt .r-row .r-amt { color: #c2402a; font-weight: 500; white-space: nowrap; }
  .receipt .r-total {
    border-top: 1.5px dashed var(--ink); margin-top: 14px; padding-top: 14px;
    display: flex; justify-content: space-between; font-weight: 500; font-size: 15px;
  }
  .receipt .r-foot { text-align: center; font-size: 11.5px; color: var(--ink-soft); margin-top: 18px; }
  @media (max-width: 880px) { .problem .grid { grid-template-columns: 1fr; gap: 56px; } }

  /* ---------- what you get (dark) ---------- */
  .get { background: var(--navy); color: #fff; position: relative; overflow: hidden; border-radius: 40px; margin: 0 16px; }
  .get .stars { position: absolute; inset: 0; pointer-events: none; opacity: 0.6; }
  .get .tag { background: var(--star); color: var(--ink); }
  .get h2.big { color: #fff; }
  .get .lede { color: rgba(255,255,255,0.7); }
  .gcards { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .gcard {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 28px 26px; transition: transform .2s ease, background .2s ease;
  }
  .gcard:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
  .gcard .icon { display: block; margin-bottom: 16px; }
  .gcard .icon svg { width: 30px; height: 30px; stroke: var(--star); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .gcard h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 8px; color: var(--star); }
  .gcard p { font-size: 15px; color: rgba(255,255,255,0.75); }
  @media (max-width: 920px) { .gcards { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .gcards { grid-template-columns: 1fr; } .get { border-radius: 24px; margin: 0 8px; } }
  .get-testi {
    margin-top: 40px; background: rgba(255,255,255,0.04); color: #fff;
    border: 1.5px solid rgba(255,255,255,0.16);
    border-radius: 24px; padding: 40px 44px 34px; position: relative; max-width: 960px;
  }
  .get-testi .gt-mark {
    position: absolute; top: 14px; left: 30px;
    font-family: Georgia, serif; font-size: 64px; color: var(--star); line-height: 1;
  }
  .gt-quote { position: relative; font-size: 19px; line-height: 1.55; color: rgba(255,255,255,0.92); }
  .gt-em { font-weight: 700; color: var(--star); }
  .gt-attr { margin-top: 24px; padding-top: 18px; border-top: 1.5px dashed rgba(255,255,255,0.18); }
  .gt-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px; color: #fff; display: block; }
  .gt-role { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-top: 3px; }
  @media (max-width: 600px) { .get-testi { padding: 32px 26px 28px; } .gt-quote { font-size: 17px; } }

  /* ---------- backing vs bureaucracy ---------- */
  .backing { background: var(--paper); }
  .backing-grid { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
  .bcol { background: var(--white); border: 1.5px solid var(--ink); border-radius: 20px; overflow: hidden; box-shadow: 0 3px 0 var(--ink); }
  .bcol .bhead { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 18px; padding: 15px 24px; border-bottom: 1.5px solid var(--ink); display: flex; align-items: center; gap: 10px; }
  .bcol.yes .bhead { background: var(--star); color: var(--ink); }
  .bcol.no .bhead { background: var(--ink); color: var(--star); }
  .bcol ul { list-style: none; padding: 6px 24px 20px; }
  .bcol li { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1.5px dashed var(--line); font-size: 15.5px; line-height: 1.5; color: var(--ink-soft); }
  .bcol li:last-child { border-bottom: none; }
  .bcol li .mk { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 12px; margin-top: 1px; }
  .bcol.yes li .mk { background: var(--star); border: 1.5px solid var(--ink); color: var(--ink); }
  .bcol.no li .mk { background: var(--ink); color: var(--star); }
  .bcol li strong { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; color: var(--ink); }
  .bcol.no li { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; color: var(--ink); font-size: 16px; }
  .backing-foot { margin-top: 30px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(19px, 2.5vw, 25px); letter-spacing: -0.01em; color: var(--ink); max-width: 740px; line-height: 1.3; }
  .backing-foot .hl-y { background: linear-gradient(180deg, transparent 58%, var(--star) 58%); -webkit-box-decoration-break: clone; box-decoration-break: clone; }
  @media (max-width: 760px) { .backing-grid { grid-template-columns: 1fr; } }

  /* ---------- about (inline) ---------- */
  .about { background: var(--white); border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); }
  .about-head { text-align: center; }
  .about-head h2.big { margin: 0 auto; }
  .about .lede { max-width: 780px; }
  .snapshot { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .snap { background: var(--navy); border-radius: 20px; padding: 26px 24px; color: #fff; position: relative; overflow: hidden; }
  .snap .snum {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 42px;
    color: var(--star); line-height: 1; letter-spacing: -0.02em;
  }
  .snap .snum .u { font-size: 26px; }
  .snap .slabel { font-size: 13.5px; color: rgba(255,255,255,0.72); margin-top: 12px; line-height: 1.45; }
  .partner-line { margin-top: 40px; max-width: 760px; border-left: 3px solid var(--star); padding-left: 22px; }
  .partner-line p { font-size: 18px; line-height: 1.5; color: var(--ink); font-style: italic; }
  .partner-line .pl-attr { display: block; margin-top: 12px; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
  .partner-center { max-width: 800px; margin: 64px auto 0; text-align: center; }
  .partner-center .pq-mark { font-family: Georgia, serif; font-size: 64px; color: var(--star); line-height: 0.7; display: block; margin-bottom: 6px; }
  .partner-center p { font-size: clamp(18px, 2.1vw, 23px); line-height: 1.5; color: var(--ink); font-style: italic; }
  .partner-center .pl-attr { display: block; margin-top: 20px; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); font-style: normal; }
  @media (max-width: 600px) { .partner-center { margin-top: 44px; } .partner-center .pq-mark { font-size: 52px; } }

  /* founder note + video */
  .founder { margin: 64px auto 0; max-width: 720px; text-align: center; }
  .founder-video {
    position: relative; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
    background: var(--navy); border: 1.5px solid var(--ink);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
    margin-bottom: 40px;
  }
  .founder-video .fv-play {
    width: 62px; height: 62px; border-radius: 50%; background: var(--star); color: var(--ink);
    display: grid; place-items: center; font-size: 22px; padding-left: 4px; border: 1.5px solid var(--ink);
  }
  .founder-video .fv-label { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
  .founder-kicker { display: block; margin-bottom: 14px; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
  .founder-quote { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(24px, 3vw, 33px); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); margin: 0 auto 24px; max-width: 660px; }
  .founder-body { font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); max-width: 620px; margin: 0 auto; text-align: left; }
  .founder-body p { margin-bottom: 16px; }
  .founder-body p:last-child { margin-bottom: 0; }
  .founder-body a { color: var(--ink); font-weight: 600; text-decoration: none; box-shadow: inset 0 -8px 0 var(--star-soft); }
  .founder-body a:hover { box-shadow: inset 0 -10px 0 var(--star); }
  .founder-sign { margin-top: 28px; }
  .founder-sign .fs-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); display: block; }
  .founder-sign .fs-role { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
  @media (max-width: 600px) { .founder-quote { font-size: 23px; } }

  /* team grid */
  .team-intro { margin-top: 72px; }
  .team-h { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-top: 14px; }
  .team-grid { margin-top: 36px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .tcard { flex: 0 1 calc(25% - 12px); background: var(--white); border: 1.5px solid var(--ink); border-radius: 18px; overflow: hidden; box-shadow: 0 3px 0 var(--ink); transition: transform .15s ease, box-shadow .15s ease; }
  .tcard:hover { transform: translate(-2px,-2px); box-shadow: 5px 8px 0 var(--ink); }
  .tphoto { aspect-ratio: 1 / 1; background: var(--star-soft); border-bottom: 1.5px solid var(--ink); }
  .tphoto img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .tphoto-swap { position: relative; }
  .tphoto-swap img { position: absolute; inset: 0; transition: opacity .25s ease; }
  .tphoto-swap .ph-hover { opacity: 0; }
  .tcard:hover .tphoto-swap .ph-hover { opacity: 1; }
  .tbody { padding: 16px 16px 18px; }
  .tname { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); display: block; line-height: 1.15; }
  .trole { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue); display: block; margin-top: 4px; }
  .tline { font-size: 13px; line-height: 1.45; color: var(--ink-soft); margin-top: 10px; }
  @media (max-width: 1000px) { .tcard { flex-basis: calc(33.333% - 11px); } }
  @media (max-width: 640px) { .tcard { flex-basis: calc(50% - 8px); } }
  @media (max-width: 420px) { .tcard { flex-basis: 100%; } }
  @media (max-width: 880px) { .snapshot { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .snapshot { grid-template-columns: 1fr; } }

  /* ---------- how ---------- */
  .steps { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .step {
    background: var(--white); border: 1.5px solid var(--ink); border-radius: 20px;
    padding: 28px 24px; position: relative;
    box-shadow: 0 3px 0 var(--ink); transition: transform .15s ease, box-shadow .15s ease;
  }
  .step:hover { transform: translate(-2px,-2px); box-shadow: 5px 8px 0 var(--ink); }
  .step .n {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 36px;
    color: var(--star); -webkit-text-stroke: 1.5px var(--ink); margin-bottom: 14px; line-height: 1;
  }
  .step h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 8px; }
  .step p { font-size: 14.5px; color: var(--ink-soft); }
  .step .step-link {
    display: inline-block; margin-top: 14px;
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 14px;
    color: var(--ink); text-decoration: none; box-shadow: inset 0 -8px 0 var(--star-soft);
  }
  .step .step-link:hover { box-shadow: inset 0 -10px 0 var(--star); }
  @media (max-width: 920px) { .steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

  /* ---------- router (self-select) ---------- */
  .router .r-intro { max-width: 760px; }
  .router-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .rcard {
    display: flex; flex-direction: column; gap: 12px;
    background: var(--white); border: 1.5px solid var(--ink); border-radius: 20px;
    padding: 32px 30px; color: var(--ink);
    box-shadow: 0 3px 0 var(--ink); transition: transform .15s ease, box-shadow .15s ease;
  }
  .rcard:hover { transform: translate(-2px,-2px); box-shadow: 5px 8px 0 var(--ink); }
  .rcard .who-tag {
    font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--blue);
  }
  .rcard h4 {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 24px;
    letter-spacing: -0.01em; line-height: 1.12;
  }
  .rcard p { font-size: 15.5px; color: var(--ink-soft); }
  .rcard-actions {
    margin-top: auto; padding-top: 18px; border-top: 1.5px dashed var(--line);
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
  }
  .r-see {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 15px;
    color: var(--ink); text-decoration: none;
  }
  .r-see .arw { display: inline-block; transition: transform .15s ease; }
  .r-see:hover .arw { transform: translateX(5px); }
  .r-book {
    flex-shrink: 0;
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 14px;
    color: var(--ink); text-decoration: none;
    border: 1.5px solid var(--ink); border-radius: 100px; padding: 8px 16px;
    transition: background .15s ease, color .15s ease;
  }
  .r-book:hover { background: var(--ink); color: #fff; }
  @media (max-width: 760px) { .router-grid { grid-template-columns: 1fr; } }
  @media (max-width: 400px) { .rcard-actions { flex-direction: column; align-items: flex-start; gap: 14px; } }

  /* ---------- no pitch ---------- */
  .nopitch { text-align: center; }
  .nopitch h2.big { margin: 0 auto; }
  .nopitch .lede { margin-left: auto; margin-right: auto; }
  .agenda-list { margin: 48px auto 0; max-width: 760px; text-align: left; }
  .al-item { display: flex; gap: 18px; align-items: baseline; padding: 18px 0; border-bottom: 1.5px dashed var(--line); }
  .al-item:last-child { border-bottom: none; }
  .al-num { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--blue); flex-shrink: 0; padding-top: 2px; }
  .al-body { font-size: 16px; color: var(--ink-soft); line-height: 1.55; }
  .al-body strong { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; color: var(--ink); }
  @media (max-width: 560px) { .al-item { gap: 12px; } }

  /* ---------- faq ---------- */
  .faq details {
    background: var(--white); border: 1.5px solid var(--line); border-radius: 18px;
    margin-top: 14px; overflow: hidden; transition: border-color .2s;
  }
  .faq details[open] { border-color: var(--ink); }
  .faq summary {
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 18px;
    padding: 22px 26px; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+"; font-size: 26px; font-weight: 400; color: var(--ink);
    width: 34px; height: 34px; border-radius: 50%; background: var(--star);
    display: grid; place-items: center; flex-shrink: 0; line-height: 1;
  }
  .faq details[open] summary::after { content: "–"; }
  .faq .a { padding: 0 26px 24px; color: var(--ink-soft); font-size: 16px; max-width: 720px; }
  .faq .faq-list { margin-top: 44px; }

  /* ---------- contact (light) ---------- */
  .contact { background: var(--paper); }
  .contact .cal-embed { margin-top: 44px; width: 100%; }
  .contact .cal-embed iframe { display: block; width: 100%; min-height: 700px; border: 0; }
  .contact .reach { margin-top: 40px; }
  .contact .reach-label {
    font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--ink); margin-bottom: 4px;
  }
  .contact .reach-line { margin-top: 14px; font-size: 16px; line-height: 1.6; color: var(--ink-soft); max-width: 560px; }
  .contact .reach-line a { color: var(--ink); text-decoration: none; font-weight: 600; box-shadow: inset 0 -8px 0 var(--star-soft); }
  .contact .reach-line a:hover { box-shadow: inset 0 -10px 0 var(--star); }
  @media (max-width: 600px) { .people { grid-template-columns: 1fr; } }

  /* ---------- footer ---------- */
  footer { background: var(--navy); padding: 64px 0 56px; color: rgba(255,255,255,0.7); font-size: 14px; position: relative; overflow: hidden; }
  .foot-stars { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }
  .foot-stars span { position: absolute; color: rgba(255,198,41,0.55); font-size: 11px; }
  .foot-brand { display: flex; align-items: center; gap: 9px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 20px; color: var(--ink); margin-bottom: 8px; }
  .foot-brand .spark { color: var(--star); font-size: 23px; line-height: 1; }
  .foot-tagline { font-size: 14px; color: var(--ink-soft); margin-bottom: 40px; max-width: 380px; }
  .foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
  .foot-col h4 { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--star); margin-bottom: 16px; }
  .foot-col ul { list-style: none; }
  .foot-col li { margin-bottom: 10px; line-height: 1.5; color: rgba(255,255,255,0.7); }
  .foot-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color .15s ease; }
  .foot-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--star); text-decoration-thickness: 2px; }
  .foot-col .ci { color: var(--ink-soft); line-height: 1.7; }
  .foot-col .ci strong { color: var(--ink); font-weight: 700; font-family: 'Bricolage Grotesque', sans-serif; }
  .foot-bottom { margin-top: 44px; padding-top: 24px; border-top: 1.5px dashed var(--line); display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
  .foot-bottom .legal { max-width: 640px; line-height: 1.7; font-size: 12.5px; }
  .foot-bottom .copy { font-size: 12.5px; white-space: nowrap; }
  @media (max-width: 760px) { .foot-cols { grid-template-columns: 1fr; gap: 30px; } .foot-bottom { flex-direction: column; gap: 16px; } }
