/* ============================================================
   ChatCEO — style.css
   Color, type and spacing tokens lifted from the ChatCEO
   brand bundle (navy / gold / cream).
   ============================================================ */

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter.woff2") format("woff2");
  font-weight: 400 700; font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo.woff2") format("woff2");
  font-weight: 500 900; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair.woff2") format("woff2");
  font-weight: 700; font-display: swap;
}

:root {
  --navy:          #0D182A;
  --navy-900:      #0A1320;
  --navy-700:      #1F2B45;
  --navy-600:      #2A3957;
  --surface-navy:  #172238;
  --cream:         #F1EEE8;
  --cream-soft:    #E6E1D7;
  --gold:          #C89C43;
  --gold-hover:    #D4A957;
  --gold-press:    #B68A38;
  --gold-a-15:     rgba(200,156,67,0.15);
  --gold-a-25:     rgba(200,156,67,0.25);
  --deep-gold:     #957951;
  --badge-ink:     #271002;
  --muted-blue:    #7698B1;

  --border:        var(--navy-700);
  --border-strong: rgba(241,238,232,0.18);
  --fg:            var(--cream);
  --fg-muted:      var(--muted-blue);

  --focus-ring:    rgba(200,156,67,0.30);
  --easing:        cubic-bezier(0.2, 0.7, 0.2, 1);

  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-archivo: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-mono:    ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --fg-subtle:    rgba(118,152,177,0.7);

  --maxw: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-archivo); font-weight: 800; margin: 0; }
a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; display: block; }

.text-gold { color: var(--gold); }
.link-gold {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-family: var(--font-archivo); font-weight: 700;
  font-size: 16px; border-bottom: 2px solid var(--gold); padding-bottom: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-archivo); font-weight: 700; letter-spacing: 0.01em;
  border: none; border-radius: 10px; cursor: pointer;
  padding: 14px 22px; font-size: 15.5px;
  transition: background 160ms var(--easing), transform 80ms var(--easing);
}
.btn--gold { background: var(--gold); color: var(--badge-ink); }
.btn--gold:hover { background: var(--gold-hover); }
.btn--gold:active { background: var(--gold-press); transform: translateY(1px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,24,42,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: inline-flex; }
.nav__logo { height: 26px; width: auto; color: var(--cream); display: block; }
.nav__brand:hover .nav__logo { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { color: var(--fg-muted); font-size: 15px; font-family: var(--font-sans); }
.nav__links a:hover { color: var(--cream); }
.nav__cta { color: var(--badge-ink) !important; padding: 10px 18px; }

/* ---------- Hero ---------- */
.hero { padding: 80px 64px 100px; position: relative; overflow: hidden; }
.hero__triangles {
  position: absolute;
  left: 50%; top: 44.5%;
  width: auto;
  height: 300%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  opacity: 0.35; color: var(--muted-blue);
  pointer-events: none; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr);
  gap: 72px; align-items: center;
}
.hero__title {
  font-size: 80px; line-height: 0.98; letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero__sub {
  font-size: 20px; line-height: 1.55; color: var(--fg-muted);
  max-width: 560px; margin: 28px 0 0;
}

/* ---------- Apply card / form ---------- */
.apply-card {
  background: var(--surface-navy);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
}
.apply-card__title { font-size: 26px; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 8px; }
.apply-card__note { font-size: 13.5px; line-height: 1.5; color: var(--fg-muted); margin: 0 0 18px; }

.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; gap: 14px; }
.form__row--2  { grid-template-columns: 1fr 1fr; }
.form__row--21 { grid-template-columns: 2fr 1fr; }

.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field__label {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.field__input {
  font-family: var(--font-sans); font-size: 15px; color: var(--cream);
  background: rgba(241,238,232,0.06);
  border: 1px solid var(--border-strong);
  border-radius: 6px; padding: 11px 14px; width: 100%;
  outline: none; transition: border-color 140ms var(--easing), box-shadow 140ms var(--easing);
}
.field__input::placeholder { color: rgba(241,238,232,0.45); }
.field__input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px var(--focus-ring); }

.select { position: relative; display: block; width: 100%; }
.select select { -webkit-appearance: none; -moz-appearance: none; appearance: none; padding-right: 38px; cursor: pointer; }
.select__chev { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--gold); pointer-events: none; }

.form__submit { margin-top: 6px; width: 100%; }
.form__submit-arrow { font-family: var(--font-display); }
.form__msg { font-size: 13.5px; line-height: 1.5; margin: 0; min-height: 1em; }
.form__msg.is-ok  { color: #7fd8a8; }
.form__msg.is-err { color: #ff9a9a; }

/* ---------- Featured band ---------- */
.featured { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--navy-900); }
.featured__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 28px 64px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.featured__row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.featured__ft {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  color: var(--gold); text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 1px;
  letter-spacing: -0.01em;
}
.featured__ft span { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-left: 4px; }
.featured__eyebrow {
  font-family: var(--font-archivo); font-weight: 700;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-muted);
}
.featured__eyebrow--sub {
  font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.18em;
  color: var(--fg-subtle);
  transform: translateY(3px);
}
.featured__pub { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--cream); opacity: 0.85; letter-spacing: -0.01em; }

/* ---------- System section ---------- */
.system { padding: 120px 64px; }
.system__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.4fr);
  gap: 80px; align-items: center;
}
.system__title { font-size: 60px; line-height: 1; letter-spacing: -0.035em; margin: 0 0 24px; text-wrap: balance; }
.system__lead { color: var(--fg-muted); font-size: 17.5px; line-height: 1.6; margin: 0 0 28px; }
.system__art { display: flex; justify-content: center; }

/* ---------- Testimonials ---------- */
.tst { padding: 120px 64px; background: var(--navy-900); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tst__inner { max-width: 1200px; margin: 0 auto; }
.tst__head { text-align: center; margin-bottom: 56px; }
.tst__title { font-size: 48px; line-height: 1.05; letter-spacing: -0.03em; margin: 0 auto 18px; max-width: 880px; text-wrap: balance; }
.tst__sub { color: var(--fg-muted); font-size: 16px; max-width: 720px; margin: 0 auto; }
.tst__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

.tcard { margin: 0; display: flex; flex-direction: column; gap: 18px; background: var(--surface-navy); border: 1px solid var(--border); border-radius: 14px; padding: 26px 28px; height: 100%; }
.tcard__quote { font-size: 16px; line-height: 1.6; color: var(--cream); margin: 0; }
.tcard__person { display: flex; align-items: center; gap: 14px; }
.tcard__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-strong); flex: none; }
.tcard__name { font-weight: 600; font-size: 14.5px; color: var(--cream); }
.tcard__meta { font-size: 12.5px; color: var(--fg-muted); }

/* ---------- FAQ ---------- */
.faq { padding: 120px 64px; }
.faq__inner { max-width: 860px; margin: 0 auto; }
.faq__title { font-size: 48px; letter-spacing: -0.03em; text-align: center; margin: 0 0 48px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--surface-navy); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 200ms var(--easing); }
.faq__item.is-open { border-color: var(--border-strong); }
.faq__q {
  width: 100%; display: flex; align-items: center; gap: 18px;
  padding: 22px 26px; background: transparent; border: none; cursor: pointer; text-align: left;
}
.faq__q-text { flex: 1; font-family: var(--font-archivo); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; color: var(--gold); line-height: 1.2; }
.faq__icon { width: 28px; height: 28px; border-radius: 999px; border: 1px solid var(--border-strong); display: grid; place-items: center; color: var(--gold); flex: none; transition: transform 200ms var(--easing); }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__body { max-height: 0; overflow: hidden; transition: max-height 360ms var(--easing); }
.faq__item.is-open .faq__body { max-height: 600px; }
.faq__body-inner { padding: 0 26px 28px; }
.faq__lead { font-family: var(--font-archivo); font-weight: 700; font-size: 20px; line-height: 1.3; color: var(--cream); margin: 0 0 16px; }
.faq__a { color: var(--fg-muted); font-size: 15px; line-height: 1.65; margin: 0 0 12px; max-width: 720px; }
.faq__bio { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: start; }
.faq__bio-photo { width: 180px; height: 220px; border-radius: 12px; object-fit: cover; object-position: center 15%; border: 1px solid var(--border-strong); }

/* ---------- Founding CTA ---------- */
.founding { padding: 120px 64px 140px; border-top: 1px solid var(--border); text-align: center; }
.founding__inner { max-width: 640px; margin: 0 auto; }
.founding__title { font-size: 64px; line-height: 0.98; letter-spacing: -0.035em; margin: 0 0 22px; text-wrap: balance; }
.founding__sub { color: var(--fg-muted); font-size: 17.5px; line-height: 1.65; margin: 0 auto 36px; max-width: 460px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 32px 64px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.footer__row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer__row--top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.footer__row--top .footer__logo { justify-self: start; }
.footer__row--top .footer__links { justify-self: end; }
.footer__row--bot { justify-content: center; }
.footer__logo { height: 22px; width: auto; color: var(--cream); opacity: 0.9; flex: none; }
.footer__tag { color: var(--fg-muted); font-size: 14px; margin: 0; display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.footer__tag--motto { font-family: var(--font-archivo); font-weight: 700; font-style: italic; color: var(--cream); opacity: 0.9; }
.footer__xpertloop { height: 13px; width: auto; color: var(--cream); opacity: 0.85; vertical-align: middle; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner, .system__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__title { font-size: 56px; }
  .system__title, .founding__title { font-size: 44px; }
  .tst__grid { grid-template-columns: 1fr 1fr; }
  .system__art { display: none; }
}
@media (max-width: 760px) {
  .nav__inner, .hero, .featured__inner, .system, .tst, .faq, .founding, .footer { padding-left: 24px; padding-right: 24px; }
  .nav__links { gap: 18px; }
  .nav__links a:not(.nav__cta) { display: none; }
  .hero { padding-top: 48px; }
  .hero__title { font-size: 44px; }
  .tst__grid { grid-template-columns: 1fr; }
  .tst__title, .faq__title { font-size: 34px; }
  .faq__bio { grid-template-columns: 1fr; }
  .faq__bio-photo { width: 140px; height: 170px; }
}

/* ---------- Footer legal links ---------- */
.footer__links { display: flex; gap: 20px; }
.footer__links a { color: var(--fg-muted); font-size: 14px; }
.footer__links a:hover { color: var(--gold); }

/* ---------- Modals (privacy / terms) ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(10,19,32,0.92);
  z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-backdrop.active { display: flex; }
.modal {
  background: var(--cream); color: var(--navy); border-radius: 12px;
  max-width: 800px; width: 100%; max-height: 85vh; display: flex; flex-direction: column;
}
.modal header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 32px; border-bottom: 1px solid var(--muted-blue);
}
.modal header h2 { font-size: 24px; color: var(--navy); margin: 0; font-family: var(--font-archivo); }
.modal .close { background: transparent; border: 0; color: var(--navy); padding: 8px; cursor: pointer; }
.modal .close:hover { color: var(--gold); }
.modal-body { padding: 32px; overflow-y: auto; color: var(--navy); }
.modal-body p, .modal-body li { color: var(--navy); margin-bottom: 16px; line-height: 1.6; }
.modal-body h3 { color: var(--navy); margin: 24px 0 8px; font-size: 18px; font-family: var(--font-archivo); }
.modal-body h3:first-of-type { margin-top: 0; }
.modal-body ul { margin: 0 0 16px 24px; }
.modal-body a { color: var(--deep-gold); }
.modal-body a:hover { color: var(--gold); }
.modal-body .meta { color: var(--muted-blue); margin-bottom: 24px; }
body.modal-open { overflow: hidden; }

/* ---------- Daily Brief ---------- */
.brief { padding: 120px 64px; }
.brief__inner { max-width: 1100px; margin: 0 auto; }
.brief__head { text-align: center; margin-bottom: 56px; }
.brief__title { font-size: 48px; line-height: 1.05; letter-spacing: -0.03em; margin: 0 auto 18px; max-width: 820px; text-wrap: balance; }
.brief__sub { color: var(--fg-muted); font-size: 17px; line-height: 1.6; max-width: 720px; margin: 0 auto; }
.brief__card { display: flex; gap: 0; background: var(--surface-navy); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; max-width: 760px; margin: 0 auto; }
.brief__rail { writing-mode: vertical-rl; text-orientation: mixed; padding: 24px 14px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); background: var(--navy-900); border-right: 1px solid var(--border); white-space: nowrap; }
.brief__body { flex: 1; padding: 32px 36px; }
.brief__group { padding: 18px 0; border-bottom: 1px solid var(--border); }
.brief__group:last-of-type { border-bottom: none; }
.brief__eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 14px; }
.brief__event { display: flex; gap: 18px; align-items: baseline; padding: 8px 0; }
.brief__time { font-family: var(--font-archivo); font-weight: 700; font-size: 20px; color: var(--gold); min-width: 92px; }
.brief__time span { font-size: 11px; margin-left: 2px; }
.brief__time em { display: block; font-style: normal; font-size: 11px; color: var(--fg-muted); margin-top: 2px; }
.brief__event-title { font-weight: 600; font-size: 15px; color: var(--cream); }
.brief__event-sub { font-size: 12.5px; color: var(--fg-muted); margin-top: 3px; }
.brief__goal { padding: 12px 16px; border-radius: 10px; border: 1px solid var(--border); margin-bottom: 10px; border-left: 3px solid var(--muted-blue); }
.brief__goal--ok { border-left-color: #5dcaa5; }
.brief__goal--lag { border-left-color: var(--gold); }
.brief__goal-name { font-weight: 600; font-size: 14.5px; color: var(--cream); }
.brief__goal-target { font-size: 12.5px; color: var(--fg-muted); margin-top: 2px; }
.brief__goal-detail { font-size: 12.5px; color: var(--muted-blue); margin-top: 6px; }
.brief__ask { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-family: var(--font-archivo); font-weight: 700; font-size: 15px; }
.brief__stamp { font-family: var(--font-mono, monospace); font-size: 10.5px; color: var(--fg-muted); margin-top: 18px; opacity: 0.7; }

/* ---------- Pull Quote ---------- */
.pull { padding: 100px 64px; background: var(--navy-900); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.pull__triangles {
  position: absolute;
  left: 50%; top: 44.5%;
  width: auto; height: 300%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  opacity: 0.35; color: var(--muted-blue);
  pointer-events: none; z-index: 0;
}
.pull__inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.pull__quote { font-family: var(--font-archivo); font-weight: 700; font-size: 40px; line-height: 1.18; letter-spacing: -0.025em; color: var(--cream); margin: 0; text-wrap: balance; }
.pull__muted { color: var(--fg-muted); }
.pull__foot { font-size: 16px; color: var(--fg-muted); font-style: italic; text-align: right; margin: 24px 0 0; }

@media (max-width: 760px) {
  .brief, .pull { padding-left: 24px; padding-right: 24px; }
  .brief__title { font-size: 34px; }
  .brief__card { flex-direction: column; }
  .brief__rail { writing-mode: horizontal-tb; border-right: none; border-bottom: 1px solid var(--border); }
  .pull__quote { font-size: 28px; }
  .pull__foot { text-align: left; }
}

/* ---------- CEO Operating System orbit ---------- */
.system__art { display: flex; justify-content: center; }
.orbit { position: relative; width: 580px; height: 580px; }
.orbit__ring { position: absolute; inset: 0; border: 1px solid var(--border-strong); border-radius: 50%; }
.orbit__sun {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 220px; height: 220px; border-radius: 50%;
  background: var(--gold); color: var(--badge-ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-archivo); font-weight: 800; font-size: 23px; line-height: 1.15;
  box-shadow: 0 0 0 12px rgba(200,156,67,0.10);
  z-index: 2;
  padding: 0 22px;
}
.orbit__sun-the {
  font-family: var(--font-archivo); font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-style: normal;
  margin-bottom: 6px; opacity: 0.85;
}
.orbit__sun-name {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 26px; line-height: 1.1; letter-spacing: -0.01em;
}
.orbit__node {
  position: absolute; left: 50%; top: 50%;
  width: 216px; height: 76px;
  background: var(--surface-navy);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  display: flex; align-items: center;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.45), inset 0 1px 0 0 rgba(241,238,232,0.04);
}
.orbit__node-badge {
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid var(--gold-a-25);
  background: var(--gold-a-15);
  color: var(--gold);
  display: grid; place-items: center;
  margin: 0 12px 0 16px;
  flex: 0 0 auto;
}
.orbit__node-text { flex: 1 1 0; min-width: 0; padding-right: 14px; }
.orbit__node-num {
  display: block;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  color: var(--deep-gold); letter-spacing: 0.08em; margin-bottom: 2px;
}
.orbit__node-label {
  display: block;
  font-family: var(--font-archivo); font-weight: 700; font-size: 15.5px;
  color: var(--cream); line-height: 1.15; letter-spacing: -0.01em;
}
.orbit__node--1 { transform: translate(-50%, -50%) rotate(0deg)   translateY(-270px) rotate(0deg); }
.orbit__node--2 { transform: translate(-50%, -50%) rotate(72deg)  translateY(-270px) rotate(-72deg); }
.orbit__node--3 { transform: translate(-50%, -50%) rotate(144deg) translateY(-270px) rotate(-144deg); }
.orbit__node--4 { transform: translate(-50%, -50%) rotate(216deg) translateY(-270px) rotate(-216deg); }
.orbit__node--5 { transform: translate(-50%, -50%) rotate(288deg) translateY(-270px) rotate(-288deg); }

@media (max-width: 980px) { .system__art { display: none; } }

/* ─────────── LEGAL PAGES (privacy / terms) ─────────── */
.legal { max-width: 820px; margin: 0 auto; padding: 72px 24px 96px; }
.legal__inner { background: var(--surface-navy); border: 1px solid var(--border); border-radius: 14px; padding: 40px 44px; }
.legal__title { font-family: var(--font-archivo); font-weight: 800; font-size: 40px; letter-spacing: -0.02em; color: var(--cream); margin: 0 0 24px; }
.legal__inner .meta { font-family: var(--font-mono); font-size: 13px; color: var(--gold); letter-spacing: 0.04em; margin: 0 0 28px; }
.legal__inner h3 { font-family: var(--font-archivo); font-weight: 700; font-size: 19px; color: var(--cream); margin: 28px 0 10px; }
.legal__inner h3:first-of-type { margin-top: 0; }
.legal__inner p { color: var(--fg-muted); font-size: 15px; line-height: 1.65; margin: 0 0 16px; }
.legal__inner ul { margin: 0 0 16px 22px; }
.legal__inner li { color: var(--fg-muted); font-size: 15px; line-height: 1.65; margin-bottom: 10px; }
.legal__inner a { color: var(--gold); }

/* Dropdown option list readability (open state renders on OS-default light bg) */
.select select option { color: var(--navy); background: #ffffff; }
.select select option:disabled { color: rgba(13,24,42,0.5); }
