/* ==========================================================================
   LYNQ landing page
   Palette and type carried over from docs/lynq-prototype.html so the marketing
   site and the product read as one thing.
   ========================================================================== */

:root {
  --navy: #152A52;
  --navy-2: #1E3A6E;
  --navy-deep: #0E1D3A;
  --gold: #C9A227;
  --gold-soft: #E6C767;
  --bg: #F7F4EC;
  --bg-warm: #F2EEE3;
  --card: #FFFFFF;
  --ink: #152A52;
  --ink-dim: #6B7280;
  --ink-mute: #8A93A3;
  --line: rgba(21, 42, 82, 0.12);
  --line-soft: rgba(21, 42, 82, 0.07);
  --success: #2E7D46;

  --shadow-sm: 0 1px 2px rgba(21, 42, 82, .06), 0 2px 8px rgba(21, 42, 82, .05);
  --shadow-md: 0 4px 12px rgba(21, 42, 82, .07), 0 12px 32px rgba(21, 42, 82, .07);
  --shadow-lg: 0 8px 24px rgba(21, 42, 82, .09), 0 32px 64px rgba(21, 42, 82, .11);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --wrap: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Sticky nav must not cover the heading of a jumped-to section. */
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.9vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); }
p  { margin: 0; text-wrap: pretty; }

.script { font-style: italic; color: var(--gold); font-weight: 600; }
.mono { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-variant-ligatures: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.sr-only, .skip:not(:focus) {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip:focus {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  background: var(--navy); color: #fff; padding: 10px 16px;
  border-radius: var(--r-sm); font-weight: 600;
}

:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- brand mark ---------------------------------------------------------- */

.mark {
  width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--navy);
  display: grid; place-items: center;
  position: relative;
}
.mark::after {
  content: ''; position: absolute; inset: 4px;
  border-radius: 50%; border: 1.5px solid var(--gold-soft); opacity: .55;
}
.mark span {
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: var(--gold-soft); font-size: 15px; line-height: 1;
}
.mark.small { width: 34px; height: 34px; flex-basis: 34px; border-width: 2.5px; }
.mark.small span { font-size: 13px; }

.brand-name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 20px; line-height: 1; color: var(--navy); display: block;
}
.brand-tag {
  font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 4px; display: block;
}

/* --- buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px;
  border: 1.5px solid transparent; border-radius: 999px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); background: rgba(21, 42, 82, .04); transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn:active { transform: translateY(0); }

/* --- nav ----------------------------------------------------------------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 244, 236, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line-soft); box-shadow: 0 1px 20px rgba(21, 42, 82, .05); }

.nav-inner { display: flex; align-items: center; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 500; color: var(--ink-dim);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--navy); background: rgba(21, 42, 82, .05); }

.nav-toggle {
  display: none; width: 42px; height: 42px;
  background: none; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer; padding: 11px 10px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px 24px 22px; border-top: 1px solid var(--line-soft);
}
.nav-mobile a { padding: 13px 4px; font-size: 16px; font-weight: 500; color: var(--ink-dim); }
.nav-mobile a.btn { margin-top: 10px; color: #fff; justify-content: center; }

/* --- hero ---------------------------------------------------------------- */

.hero { position: relative; padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 104px); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; z-index: 0;
  top: -220px; right: -180px; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(201, 162, 39, .16) 0%, rgba(201, 162, 39, 0) 68%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 18px;
}
.eyebrow.gold { color: var(--gold); }

.hero h1 { margin-bottom: 22px; }

.lede { font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--ink-dim); max-width: 54ch; }
.hero .lede { margin-bottom: 32px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.hero-note { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink-mute); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); flex: 0 0 7px; }

/* hero art: membership card with floating chips */
.card-3d { position: relative; perspective: 1200px; padding: 26px 18px; max-width: 400px; margin-inline: auto; }

.mcard {
  background: linear-gradient(150deg, var(--navy-2) 0%, var(--navy) 45%, var(--navy-deep) 100%);
  border-radius: var(--r-lg);
  padding: 26px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-11deg) rotateX(5deg) rotateZ(-1.5deg);
  transform-style: preserve-3d;
  position: relative; overflow: hidden;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}
.mcard::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 42%);
  pointer-events: none;
}
.card-3d:hover .mcard { transform: rotateY(-5deg) rotateX(2deg); }

.mcard-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 26px; }
.mcard-top .mark { border-color: var(--gold-soft); background: rgba(255,255,255,.08); }
.mcard-tier {
  font-size: 9px; font-weight: 600; letter-spacing: .16em;
  color: var(--gold-soft); border: 1px solid rgba(230, 199, 103, .4);
  padding: 5px 10px; border-radius: 999px; white-space: nowrap;
}
.mcard-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.mcard-code { font-size: 12.5px; letter-spacing: .1em; color: rgba(255,255,255,.62); margin-bottom: 22px; }
.mcard-qr { width: 108px; background: #fff; padding: 8px; border-radius: 10px; box-shadow: 0 4px 14px rgba(0,0,0,.22); }

.float-chip {
  position: absolute; background: var(--card);
  border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 11px 16px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 1px;
  animation: bob 5.5s ease-in-out infinite;
}
.float-chip strong { font-size: 17px; font-family: 'Playfair Display', serif; color: var(--navy); }
.float-chip span { font-size: 11.5px; color: var(--ink-mute); white-space: nowrap; }
.chip-1 { top: -16px; left: -22px; }
.chip-2 { bottom: 10px; right: -12px; animation-delay: -2.6s; }
.chip-2 strong { color: var(--success); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* --- facts strip --------------------------------------------------------- */

.facts { padding: clamp(28px, 4vw, 40px) 0; border-block: 1px solid var(--line-soft); background: var(--bg-warm); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.fact { text-align: center; }
.fact-num {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 10px;
}
.fact p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.5; }

/* --- sections ------------------------------------------------------------ */

.section { padding: clamp(64px, 9vw, 116px) 0; }
.section-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { margin-bottom: 16px; }
.section-lede { font-size: clamp(1rem, 1.4vw, 1.1rem); color: var(--ink-dim); }

/* --- steps --------------------------------------------------------------- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 34px); }
.step {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: 32px 28px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-n {
  display: block; font-size: 13px; font-weight: 600; color: var(--gold);
  letter-spacing: .12em; margin-bottom: 18px;
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: 15px; color: var(--ink-dim); }

/* --- give-back ----------------------------------------------------------- */

.giveback { background: var(--bg-warm); border-block: 1px solid var(--line-soft); }

.causes { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 26px); margin-bottom: clamp(40px, 5vw, 64px); }
.cause {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); padding: 26px 22px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cause:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201, 162, 39, .4); }
.cause-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(201, 162, 39, .12); color: var(--gold);
  display: grid; place-items: center; margin-bottom: 18px;
}
.cause-ico svg { width: 23px; height: 23px; }
.cause h3 { font-size: 1.06rem; margin-bottom: 9px; }
.cause p { font-size: 14px; color: var(--ink-dim); }

.ledger {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.ledger-copy h3 { margin-bottom: 14px; }
.ledger-copy p { font-size: 15px; color: var(--ink-dim); }

.ledger-rows { display: flex; flex-direction: column; gap: 10px; }
.lrow {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 14px; align-items: center;
  background: var(--bg); border: 1px solid var(--line-soft);
  border-radius: var(--r-sm); padding: 14px 16px;
}
.ltag {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  padding: 4px 8px; border-radius: 5px;
}
.ltag.in { background: rgba(46, 125, 70, .12); color: var(--success); }
.ltag.out { background: rgba(21, 42, 82, .1); color: var(--navy-2); }
.ldesc { font-size: 13px; color: var(--ink-dim); min-width: 0; }
.ldesc em { font-style: normal; color: var(--ink-mute); }
.lamt { font-size: 14px; font-weight: 600; color: var(--navy); white-space: nowrap; }

/* --- partners ------------------------------------------------------------ */

.partners-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.partners-copy h2 { margin-bottom: 16px; }
.partners-copy .section-lede { margin-bottom: 26px; }

.ticks { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.ticks li { position: relative; padding-left: 32px; font-size: 15px; color: var(--ink-dim); }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(201, 162, 39, .16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}

.partners-art { position: relative; display: flex; justify-content: center; padding-bottom: 128px; }
.counter-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 30px 28px;
  box-shadow: var(--shadow-lg); text-align: center; max-width: 300px;
}
.cc-label { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 16px; }
.cc-qr { width: 156px; margin: 0 auto 18px; padding: 10px; border: 1px solid var(--line-soft); border-radius: 12px; }
.cc-offer { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.cc-sub { font-size: 12.5px; color: var(--ink-mute); }

.sms-toast {
  position: absolute; bottom: 0; right: 0; max-width: 300px;
  background: var(--navy); color: #fff;
  border-radius: var(--r-md); padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  animation: bob 6s ease-in-out infinite; animation-delay: -1.4s;
}
.sms-head { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 6px; }
.sms-toast p { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.86); }

/* --- join form ----------------------------------------------------------- */

.join { background: var(--bg-warm); border-block: 1px solid var(--line-soft); }
.join-card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  padding: clamp(30px, 5vw, 60px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px); align-items: start;
}
.join-head h2 { margin-bottom: 14px; }

.join-form { display: flex; flex-direction: column; gap: 16px; }

.seg {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  background: var(--bg); border: 1px solid var(--line-soft);
  border-radius: 999px; padding: 5px; margin: 0;
}
.seg-opt { position: relative; }
.seg-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg-opt span {
  display: block; text-align: center; padding: 10px 8px;
  border-radius: 999px; font-size: 14px; font-weight: 600;
  color: var(--ink-dim); cursor: pointer; transition: background .16s ease, color .16s ease;
}
.seg-opt input:checked + span { background: var(--navy); color: #fff; }
.seg-opt input:focus-visible + span { outline: 2.5px solid var(--gold); outline-offset: 2px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field .opt { font-weight: 400; color: var(--ink-mute); }
.field input {
  font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 13px 15px; background: var(--bg);
  border: 1.5px solid var(--line-soft); border-radius: var(--r-sm);
  transition: border-color .16s ease, background .16s ease;
  width: 100%;
}
.field input::placeholder { color: var(--ink-mute); opacity: .7; }
.field input:focus { outline: none; border-color: var(--gold); background: var(--card); }
.field input:user-invalid { border-color: #B3261E; }

/* Honeypot: off-screen rather than display:none, which some bots skip. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: 14px; font-weight: 500; min-height: 1px; }
.form-note.ok { color: var(--success); }
.form-note.err { color: #B3261E; }
.fineprint { font-size: 12.5px; color: var(--ink-mute); }

.btn[aria-busy="true"] { opacity: .72; pointer-events: none; }

/* --- faq ----------------------------------------------------------------- */

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-list details {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); padding: 4px 24px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq-list details[open] { border-color: var(--line); box-shadow: var(--shadow-sm); }
.faq-list summary {
  list-style: none; cursor: pointer;
  padding: 20px 34px 20px 0; position: relative;
  font-size: 16.5px; font-weight: 600; color: var(--navy);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ''; position: absolute; right: 2px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq-list details p { padding: 0 0 22px; font-size: 15px; color: var(--ink-dim); max-width: 68ch; }

/* --- closer -------------------------------------------------------------- */

.closer {
  background: linear-gradient(150deg, var(--navy-2) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  color: #fff; padding: clamp(64px, 9vw, 108px) 0; text-align: center;
  position: relative; overflow: hidden;
}
.closer::before {
  content: ''; position: absolute; top: -160px; left: 50%; width: 620px; height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 162, 39, .2) 0%, rgba(201, 162, 39, 0) 66%);
}
.closer-inner { position: relative; z-index: 1; }
.closer h2 { margin-bottom: 32px; }

/* --- footer -------------------------------------------------------------- */

.foot { background: var(--navy-deep); color: rgba(255,255,255,.66); padding: 48px 0 40px; }
.foot-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-tag { color: rgba(255,255,255,.44); }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; }
.foot-links a { font-size: 14px; transition: color .15s ease; }
.foot-links a:hover { color: var(--gold-soft); }
.foot-legal { font-size: 13px; color: rgba(255,255,255,.44); white-space: nowrap; }

/* --- reveal animation ---------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* --- responsive ---------------------------------------------------------- */

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 400px; margin: 0 auto; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .steps { grid-template-columns: 1fr; }
  .causes { grid-template-columns: repeat(2, 1fr); }
  .ledger { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .partners-art { padding-bottom: 136px; }
  .sms-toast { right: 50%; transform: translateX(50%); }
  .join-card { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: none; }
  .nav-mobile.open { display: flex; }
  .brand-tag { display: none; }
  .hero-actions .btn { flex: 1 1 100%; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .facts-grid { grid-template-columns: 1fr; }
  .causes { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .faq-list details { padding-inline: 18px; }
}

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

@media print {
  .nav, .nav-mobile, .hero-art, .partners-art, .closer, .join { display: none; }
  body { background: #fff; }
}

.gb-link { margin-bottom: 22px; }
.gb-link a { font-size: 14.5px; font-weight: 600; color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.gb-link a:hover { color: var(--gold); }
