/* ==========================================================
   Home Team Foundation stylesheet
   Theme: New York Jets green. Sponsors bring their own colours.
   Brand tokens live in :root. Change them to re-skin the site.
   ========================================================== */
:root {
  --green: #115740;         /* Jets green */
  --green-dark: #0b3b2b;
  --green-deep: #06261b;
  --green-bright: #1c8a5a;
  --mint: #8fe3b5;
  --green-soft: #e6f0eb;
  --ink: #0f1512;
  --ink-soft: #3b4742;
  --muted: #6c7873;
  --cream: #f5f7f6;
  --sand: #e0e7e3;
  --line: #dfe6e2;
  --white: #ffffff;
  --warn-bg: #fff7d6;
  --warn-line: #f1e1a3;
  --warn-text: #7a5200;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(6,38,27,.06), 0 4px 14px rgba(6,38,27,.07);
  --shadow-md: 0 10px 34px rgba(6,38,27,.16);
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Barlow", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--green); text-underline-offset: 3px; }
a:hover { color: var(--green-dark); }
h1, h2, h3, h4 { color: var(--green-deep); margin: 0 0 .5em; line-height: 1.05; }
h1, h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .005em; }
h1 { font-size: clamp(2.9rem, 6.4vw, 5.2rem); line-height: .96; }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
h3 { font-size: 1.32rem; font-weight: 700; letter-spacing: -.01em; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0 0 1.1em; }
.lead { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.55; }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 800; color: var(--green-bright); margin-bottom: 1rem; }
.eyebrow::before { content: ""; width: 26px; height: 3px; background: currentColor; border-radius: 2px; }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, 820px); margin-inline: auto; }
.section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section-cream { background: var(--cream); }
.section-green { background: var(--green-dark); color: #cfe0d7; }
.section-green h2, .section-green h3 { color: #fff; }
.section-green .eyebrow { color: var(--mint); }
.section-green .lead { color: #b5cdc2; }
.section-green a:not(.btn) { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--green-deep); color: #fff; padding: .5rem 1rem; z-index: 100; }
.skip-link:focus { left: 1rem; top: 1rem; }
.hl { position: relative; display: inline-block; color: var(--green-bright); }
.hl svg { position: absolute; left: -2%; bottom: -.1em; width: 104%; height: .3em; overflow: visible; }
.hl svg path { fill: none; stroke: var(--mint); stroke-width: 7; stroke-linecap: round; }
.hero .hl { color: var(--mint); }
.hero .hl svg path { stroke: #fff; opacity: .9; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem 1.7rem; border-radius: 999px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; font-family: inherit; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s; white-space: nowrap; letter-spacing: .01em; }
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary, .btn-green { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(17,87,64,.28); }
.btn-primary:hover, .btn-green:hover { background: var(--green-dark); color: #fff; }
.btn-outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-light { background: #fff; color: var(--green-deep); }
.btn-light:hover { background: var(--cream); color: var(--green-deep); }
.btn-outline-light { border-color: rgba(255,255,255,.75); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--green-deep); }
.btn-group { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }
.btn-block { width: 100%; }
.text-link { font-weight: 700; text-decoration: none; color: var(--green); display: inline-flex; align-items: center; gap: .35rem; }
.text-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.text-link:hover svg { transform: translateX(3px); }

/* ---------- Top bar + header ---------- */
.topbar { background: var(--green-deep); color: #a7c4b7; font-size: .82rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar .sep { opacity: .4; margin-inline: .5rem; }
.topbar strong { color: #fff; font-weight: 700; }
.topbar .sponsor-line { display: inline-flex; align-items: center; gap: .45rem; }
.topbar .sponsor-line .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); display: inline-block; }
@media (max-width: 720px) { .topbar .container > span:first-child { display: none; } }
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); border-top: 4px solid var(--green); transition: box-shadow .2s; }
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; min-height: 82px; position: relative; }
.header .nav { justify-self: center; }
.header-right { justify-self: end; display: flex; align-items: center; gap: .9rem; }
.header-donate { padding: .7rem 1.3rem; box-shadow: none; }
.nav .nav-donate { display: none; }
.header-icons { display: flex; align-items: center; gap: .45rem; }
.hicon { position: relative; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--green-deep); background: var(--cream); border: 1px solid var(--line); text-decoration: none; transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .2s, color .2s, box-shadow .2s, border-color .2s; }
.hicon .hicon-img { display: grid; place-items: center; width: 22px; height: 22px; }
.hicon svg { width: 18px; height: 18px; }
.hicon img { width: 24px; height: 24px; object-fit: contain; }
.hicon .hicon-label { position: absolute; top: calc(100% + 8px); left: 50%; transform: translate(-50%, -4px) scale(.85); opacity: 0; background: var(--green-deep); color: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .55rem; border-radius: 6px; white-space: nowrap; pointer-events: none; transition: opacity .2s, transform .35s cubic-bezier(.34,1.56,.64,1); }
.hicon:hover, .hicon:focus-visible { transform: translateY(-3px) scale(1.22); background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 10px 22px rgba(17,87,64,.28); outline: none; }
.hicon:hover .hicon-label, .hicon:focus-visible .hicon-label { opacity: 1; transform: translate(-50%, 0) scale(1); }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--green-deep); }
.brand-mark { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; }
.brand-mark svg, .brand-mark img { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; text-transform: uppercase; letter-spacing: .01em; }
.brand-sub { font-size: .64rem; text-transform: uppercase; letter-spacing: .16em; color: var(--green-bright); font-weight: 800; margin-top: .3rem; }
.nav { display: flex; align-items: center; gap: .15rem; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; padding: .55rem .85rem; border-radius: 999px; transition: background .15s, color .15s; }
.nav a:hover { background: var(--green-soft); color: var(--green-deep); }
.nav a[aria-current="page"] { background: var(--green-soft); color: var(--green-deep); box-shadow: inset 0 -2px 0 var(--green-bright); }
.nav .btn { margin-left: .75rem; padding: .7rem 1.3rem; color: #fff; }
.nav .btn:hover { background: var(--green-dark); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; padding: .5rem .6rem; cursor: pointer; color: var(--green-deep); }
.nav-toggle svg { width: 22px; height: 22px; display: block; }
@media (max-width: 1020px) {
  .header .container { display: flex; justify-content: space-between; }
  .brand-name { font-size: 1.25rem; max-width: 9.5rem; }
  .header-donate { display: none; }
  .nav .nav-donate { display: inline-flex; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: .25rem; padding: .75rem 1.25rem 1.25rem; box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav a { padding: .85rem 1rem; border-radius: 10px; }
  .nav .btn { margin: .5rem 0 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; background: var(--green-deep); }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(95deg, rgba(6,38,27,.96) 0%, rgba(6,38,27,.9) 42%, rgba(6,38,27,.6) 70%, rgba(6,38,27,.4) 100%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 12px; background: linear-gradient(#fff 0 4px, var(--green-bright) 4px 8px, #fff 8px 12px); }
.hero .container { padding-block: clamp(4rem, 8vw, 6.5rem); display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-inner p { color: #d6e4dc; font-size: 1.22rem; max-width: 560px; margin-bottom: 2rem; }
.hero-note { margin-top: 1.75rem; display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: #b5cdc2; }
.hero-note svg { width: 18px; height: 18px; color: var(--mint); flex-shrink: 0; }
.affiliation { display: inline-flex; align-items: center; gap: .7rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: .35rem 1.05rem .35rem .45rem; color: #fff; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.4rem; }
.affiliation a { display: contents; color: inherit; text-decoration: none; }
.affiliation img { height: 32px; width: auto; }
.affiliation:empty { display: none; }
.quick-donate { background: #fff; color: var(--ink); border-radius: 18px; padding: 1.75rem; box-shadow: var(--shadow-md); border-top: 6px solid var(--green); }
.quick-donate h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.8rem; font-weight: 800; margin-bottom: .25rem; }
.quick-donate .qd-sub { color: var(--muted); font-size: .92rem; margin-bottom: 1.1rem; }
.qd-freq { display: flex; gap: .5rem; margin-bottom: 1rem; }
.qd-freq button { flex: 1; background: var(--cream); border: 0; padding: .55rem; border-radius: 999px; font: inherit; font-weight: 700; color: var(--muted); cursor: pointer; }
.qd-freq button.active { background: var(--green); color: #fff; }
.qd-amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin-bottom: .75rem; }
.qd-amounts button { border: 2px solid var(--line); background: #fff; border-radius: 10px; padding: .8rem .25rem; cursor: pointer; font: inherit; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--green-deep); transition: border-color .15s, background .15s, color .15s; }
.qd-amounts button:hover { border-color: var(--green-bright); }
.qd-amounts button.active { border-color: var(--green); background: var(--green-soft); color: var(--green-deep); }
.qd-impact { background: var(--green-soft); border-radius: 10px; padding: .7rem .9rem; font-size: .9rem; font-weight: 600; color: var(--green-deep); margin-bottom: 1rem; min-height: 2.6rem; }
.qd-foot { font-size: .78rem; color: var(--muted); margin: .8rem 0 0; text-align: center; }
@media (max-width: 900px) { .hero .container { grid-template-columns: 1fr; } .quick-donate { max-width: 520px; } }

/* Sponsor strip: founder + official partners, each logo once */
.sponsor-strip { background: #fff; border-bottom: 1px solid var(--line); }
.sponsor-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 2.5rem; flex-wrap: wrap; padding-block: 1.1rem; }
.sponsor-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; color: var(--muted); }
.sponsor-strip .text-link { font-size: .92rem; margin-left: auto; }
.sponsor-groups { display: flex; align-items: center; gap: 1.5rem 2.5rem; flex-wrap: wrap; }
.sg { display: flex; align-items: center; gap: 1.1rem; }
.sg + .sg { border-left: 1px solid var(--line); padding-left: 2.5rem; }
@media (max-width: 720px) { .sg + .sg { border-left: 0; padding-left: 0; } }
.sponsor-logos { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }
.sponsor-logos a, .sponsor-logos div { display: block; }
.sponsor-logos img { height: 50px; width: auto; }

/* Sponsor slider */
.sponsor-slider { position: relative; }
.ss-viewport { overflow: hidden; border-radius: 18px; box-shadow: var(--shadow-md); }
.ss-track { display: flex; transition: transform .65s var(--ease); }
.ss-slide { flex: 0 0 100%; min-width: 100%; display: grid; grid-template-columns: .8fr 1.2fr; background: #fff; color: var(--ink); }
.ss-logo { background: var(--cream); display: grid; place-items: center; padding: 2.5rem; border-right: 1px solid var(--line); }
.ss-logo img { max-height: 120px; max-width: min(280px, 100%); width: auto; height: auto; object-fit: contain; }
.ss-slide-founder .ss-logo { background: var(--green); border-right-color: var(--green); }
.ss-slide-founder .ss-logo img { max-height: 150px; }
.ss-body { padding: 2.25rem 2.5rem; display: flex; flex-direction: column; gap: .9rem; }
.ss-kicker { display: inline-flex; align-items: center; gap: .6rem; text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 800; color: var(--green-bright); }
.ss-kicker::before { content: ""; width: 22px; height: 3px; background: currentColor; border-radius: 2px; }
.section-green .ss-body h3, .ss-body h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 2.3rem; font-weight: 800; margin: 0; color: var(--green-deep); line-height: 1; }
.ss-body p { margin: 0; color: var(--ink-soft); }
.ss-body .checklist { margin: 0; }
.section-green .ss-slide .checklist li::before { background: var(--green-soft); }
.section-green .ss-slide .checklist li::after { border-color: var(--green); }
.section-green .ss-slide a:not(.btn) { color: var(--green); }
.ss-body .text-link { margin-top: .25rem; }
.ss-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.25rem; }
.ss-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .15s, color .15s; }
.ss-btn svg { width: 20px; height: 20px; }
.ss-btn:hover { background: #fff; color: var(--green-deep); }
.ss-dots { display: flex; gap: .5rem; align-items: center; }
.ss-dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; transition: width .2s, background .2s; }
.ss-dots button[aria-selected="true"] { background: #fff; width: 28px; }
@media (max-width: 860px) { .ss-slide { grid-template-columns: 1fr; } .ss-logo { border-right: 0; border-bottom: 1px solid var(--line); padding: 1.75rem; } .ss-logo img { max-height: 80px; } .ss-body { padding: 1.75rem; } }

/* Page hero (inner pages) */
.page-hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; background: var(--green-dark); }
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(95deg, rgba(6,38,27,.96) 0%, rgba(6,38,27,.85) 50%, rgba(6,38,27,.55) 100%); }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 12px; background: linear-gradient(#fff 0 4px, var(--green-bright) 4px 8px, #fff 8px 12px); }
.page-hero .container { padding-block: 4.5rem; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; font-size: clamp(2.6rem, 5.4vw, 4.2rem); }
.page-hero p { color: #cfe0d7; font-size: 1.15rem; max-width: 640px; margin: 0; }
.breadcrumb { font-size: .82rem; color: #9cbcad; margin-bottom: 1.25rem; display: flex; gap: .5rem; align-items: center; }
.breadcrumb a { color: #fff; text-decoration: none; }

/* ---------- Impact strip ---------- */
.impact-strip { background: var(--green-deep); color: #fff; }
.impact-card { display: grid; grid-template-columns: repeat(4, 1fr); }
.impact-card > div { padding: 2rem 1.75rem; border-right: 1px solid rgba(255,255,255,.1); }
.impact-card > div:last-child { border-right: 0; }
.impact-value { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; color: var(--mint); line-height: 1; text-transform: uppercase; }
.impact-label { color: #b5cdc2; font-size: .9rem; margin-top: .5rem; font-weight: 600; }
@media (max-width: 900px) { .impact-card { grid-template-columns: 1fr 1fr; } .impact-card > div:nth-child(2) { border-right: 0; } .impact-card > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); } }
@media (max-width: 480px) { .impact-card { grid-template-columns: 1fr; } .impact-card > div { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.1); } .impact-card > div:last-child { border-bottom: 0; } }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; transition: transform .25s var(--ease), box-shadow .25s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { margin-top: .25rem; }
.card p:last-child { margin-bottom: 0; }
.icon { width: 52px; height: 52px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 1.25rem; }
.icon svg { width: 26px; height: 26px; }
.icon-accent { background: #dff5ea; color: var(--green-bright); }
.icon-gold { background: var(--warn-bg); color: var(--warn-text); }

/* Programme cards */
.prog-card { text-decoration: none; color: inherit; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s; position: relative; }
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prog-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.prog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.prog-card:hover .prog-media img { transform: scale(1.04); }
.prog-body { padding: 1.6rem 1.6rem 1.4rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.prog-body h3 { margin: 0; font-family: var(--font-display); text-transform: uppercase; font-size: 1.8rem; font-weight: 800; }
.prog-body p { margin: 0; color: var(--ink-soft); }
.prog-meta { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: .85rem; color: var(--muted); font-weight: 600; gap: 1rem; }
.prog-meta strong { color: var(--green-deep); }
.prog-grid .prog-meta { flex-direction: column; align-items: flex-start; gap: .2rem; }
.sponsored { position: absolute; top: 1rem; left: 1rem; background: #fff; color: var(--green-deep); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: .4rem .7rem; border-radius: 999px; box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: .4rem; }
.sponsored::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #f96302; }
.sponsored.alt::before { background: #ffe01b; box-shadow: inset 0 0 0 1px rgba(0,0,0,.25); }
.sponsored.jets::before { background: var(--green); }

/* Tags */
.tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: .35rem .7rem; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); }
.tag-us { background: #dff5ea; color: var(--green-bright); }
.tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } }
.photo { border-radius: var(--radius); overflow: hidden; position: relative; }
.photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.photo-caption { position: absolute; left: 1rem; bottom: 1rem; background: rgba(255,255,255,.95); border-radius: 10px; padding: .75rem 1rem; font-size: .85rem; box-shadow: var(--shadow-sm); max-width: 80%; }
.photo-caption strong { color: var(--green-deep); display: block; }
.photo-stack { position: relative; }
.photo-stack .badge { position: absolute; right: -1rem; bottom: -1rem; background: var(--green); color: #fff; border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-md); max-width: 250px; }
.photo-stack .badge .big { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; line-height: 1; text-transform: uppercase; color: var(--mint); }
.photo-stack .badge .small { color: #d6e4dc; font-size: .9rem; }
@media (max-width: 860px) { .photo-stack .badge { right: 1rem; bottom: 1rem; } }

.checklist { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .7rem; }
.checklist li { padding-left: 2.1rem; position: relative; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .2rem; width: 1.35rem; height: 1.35rem; border-radius: 50%; background: var(--green-soft); }
.checklist li::after { content: ""; position: absolute; left: .42rem; top: .5rem; width: .4rem; height: .7rem; border: solid var(--green); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.section-green .checklist li::before { background: rgba(255,255,255,.12); }
.section-green .checklist li::after { border-color: var(--mint); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; counter-reset: step; }
.steps::before { content: ""; position: absolute; left: 6%; right: 6%; top: 26px; height: 2px; background: var(--sand); }
.step { position: relative; padding-top: .5rem; }
.step-num { counter-increment: step; width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; margin-bottom: 1.25rem; border: 4px solid #fff; box-shadow: 0 0 0 1px var(--sand); position: relative; }
.step-num::before { content: counter(step); }
.section-cream .step-num { border-color: var(--cream); }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } .steps::before { display: none; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Partners ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1rem; }
.logo-tile { background: #fff; border: 1px solid var(--line); border-radius: 12px; min-height: 120px; display: grid; place-items: center; padding: 1.25rem; text-decoration: none; color: inherit; transition: box-shadow .2s, transform .2s var(--ease); }
.logo-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.logo-tile img { max-height: 64px; width: auto; max-width: 180px; object-fit: contain; }
.logo-tile.placeholder { background: var(--cream); border-style: dashed; border-color: var(--sand); }
.logo-tile.placeholder .ph { text-align: center; color: var(--muted); font-size: .8rem; font-weight: 600; display: grid; gap: .35rem; justify-items: center; }
.logo-tile.placeholder .ph svg { width: 26px; height: 26px; opacity: .55; }
.logo-tile .lt-name { font-weight: 700; color: var(--green-deep); text-align: center; font-size: .95rem; }
.logo-tile .lt-role { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .25rem; }
.partner-tier { margin-top: 3rem; }
.partner-tier:first-child { margin-top: 0; }
.partner-tier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.partner-tier-head h3 { margin: 0; }
.partner-tier-head p { margin: 0; color: var(--muted); font-size: .9rem; }
.logo-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.logo-strip .logo-tile { min-height: 100px; }

/* ---------- Appeal ---------- */
.appeal { background: #fff; border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow-md); display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; }
@media (max-width: 860px) { .appeal { grid-template-columns: 1fr; } }
.appeal-media { position: relative; min-height: 300px; }
.appeal-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.appeal-body { padding: 2.25rem; display: flex; flex-direction: column; gap: 1rem; }
.appeal-body h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 2.3rem; font-weight: 800; margin: 0; line-height: 1; }
.appeal-body p { margin: 0; color: var(--ink-soft); }
.progress { height: 14px; background: var(--sand); border-radius: 999px; overflow: hidden; }
.progress > span { display: block; height: 100%; background: linear-gradient(90deg, var(--green), var(--green-bright)); border-radius: 999px; width: 0; transition: width 1.2s var(--ease); }
.progress-meta { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; color: var(--muted); font-weight: 600; flex-wrap: wrap; align-items: baseline; }
.progress-meta strong { color: var(--green-deep); font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; }
.appeal-body .btn-group { margin-top: .5rem; }

/* ---------- Ways to help ---------- */
.help-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 1000px) { .help-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .help-grid { grid-template-columns: 1fr; } }
.help { background: #fff; border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--line); text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: .75rem; transition: transform .25s var(--ease), box-shadow .25s; border-top: 5px solid var(--green); }
.help:nth-child(even) { border-top-color: var(--green-bright); }
.help:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.help h3 { margin: 0; font-family: var(--font-display); text-transform: uppercase; font-size: 1.7rem; font-weight: 800; }
.help p { margin: 0; color: var(--ink-soft); font-size: .97rem; }
.help .text-link { margin-top: auto; padding-top: .5rem; }

/* ---------- Story ---------- */
.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } }
.story blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 2.7rem); line-height: 1.1; font-weight: 700; color: #fff; }
.story blockquote::before { content: "\201C"; color: var(--mint); }
.story blockquote::after { content: "\201D"; color: var(--mint); }
.story cite { display: block; margin-top: 1.25rem; font-style: normal; color: #b5cdc2; font-size: .95rem; }
.story cite strong { color: #fff; }

/* ---------- People ---------- */
.person { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.5rem; }
.avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1rem; background: var(--green-soft); display: grid; place-items: center; color: var(--green); font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.person h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.person-role { color: var(--muted); font-size: .88rem; font-weight: 600; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
th, td { text-align: left; padding: .9rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
tr:last-child td { border-bottom: 0; }
thead th { background: var(--cream); font-weight: 800; color: var(--green-deep); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
tbody th { font-weight: 700; color: var(--green-deep); background: var(--cream); width: 36%; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }
tr.total td, tr.total th { font-weight: 800; color: var(--green-deep); background: var(--green-soft); }

/* ---------- Donate ---------- */
.donate-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.25rem; box-shadow: var(--shadow-md); border-top: 6px solid var(--green); }
.donate-box h3 { margin-bottom: 1.25rem; font-family: var(--font-display); text-transform: uppercase; font-size: 1.9rem; font-weight: 800; }
.toggle-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.toggle { display: inline-flex; background: var(--cream); border-radius: 999px; padding: 4px; }
.toggle button { background: transparent; border: 0; padding: .55rem 1.1rem; cursor: pointer; font: inherit; font-weight: 700; color: var(--muted); border-radius: 999px; transition: background .15s, color .15s; }
.toggle button.active { background: var(--green); color: #fff; }
.amounts { display: grid; grid-template-columns: repeat(auto-fit, minmax(84px, 1fr)); gap: .6rem; margin-bottom: 1rem; }
.amounts button { border: 2px solid var(--line); background: #fff; border-radius: 10px; padding: .8rem .5rem; cursor: pointer; font: inherit; font-family: var(--font-display); font-weight: 800; color: var(--green-deep); font-size: 1.4rem; transition: border-color .15s, background .15s; }
.amounts button:hover { border-color: var(--green-bright); }
.amounts button.active { border-color: var(--green); background: var(--green-soft); color: var(--green-deep); }
.custom-amount { display: flex; align-items: center; border: 2px solid var(--line); border-radius: 10px; overflow: hidden; }
.custom-amount span { padding: 0 1rem; font-weight: 800; color: var(--green-deep); background: var(--cream); align-self: stretch; display: grid; place-items: center; }
.custom-amount input { border: 0; padding: .85rem; font: inherit; width: 100%; outline: none; }
.impact-note { background: var(--green-soft); border-left: 4px solid var(--green); padding: .9rem 1.1rem; border-radius: 8px; font-size: .95rem; margin: 1.25rem 0; font-weight: 600; color: var(--green-deep); }
.impact-table td:first-child { white-space: nowrap; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--green); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.25rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
label { font-weight: 700; font-size: .9rem; color: var(--green-deep); display: block; margin-bottom: .4rem; }
.hint { font-weight: 500; color: var(--muted); font-size: .8rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], select, textarea { width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--sand); border-radius: 10px; font: inherit; background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green-bright); box-shadow: 0 0 0 4px rgba(28,138,90,.18); }
textarea { min-height: 140px; resize: vertical; }
fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.75rem 1.75rem; margin: 0; display: grid; gap: 1.1rem; background: #fff; }
legend { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; color: var(--green-deep); padding: 0 .6rem; font-size: 1.35rem; }
.check { display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; font-size: .95rem; color: var(--ink); }
.check input { margin-top: .3rem; accent-color: var(--green); width: 18px; height: 18px; flex-shrink: 0; }
.form-note { font-size: .85rem; color: var(--muted); }
.form-success { display: none; background: var(--green-soft); border: 1px solid #b9d5c7; color: var(--green-dark); padding: 1rem 1.25rem; border-radius: 10px; font-weight: 600; }
.form-success.show { display: block; }

/* ---------- FAQ ---------- */
details { border: 1px solid var(--line); border-radius: 12px; padding: 0 1.4rem; margin-bottom: .75rem; background: #fff; }
summary { cursor: pointer; font-weight: 700; color: var(--green-deep); padding: 1.1rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: ""; width: 10px; height: 10px; border: solid var(--green-bright); border-width: 0 2px 2px 0; transform: rotate(45deg); transition: transform .2s; flex-shrink: 0; margin-right: .3rem; }
details[open] summary::after { transform: rotate(-135deg); }
details p { padding-bottom: 1.2rem; color: var(--ink-soft); margin: 0; }

/* ---------- Callouts & bands ---------- */
.notice { display: flex; gap: 1rem; align-items: flex-start; background: var(--warn-bg); border: 1px solid var(--warn-line); border-radius: 12px; padding: 1.1rem 1.35rem; font-size: .95rem; }
.notice svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--warn-text); margin-top: .15rem; }
.notice strong { color: var(--warn-text); }
.notice p { margin: 0; }
.quote { font-family: var(--font-display); font-size: clamp(1.6rem, 2.8vw, 2.3rem); line-height: 1.2; color: var(--green-deep); font-weight: 700; max-width: 900px; }
.cta-band { background: linear-gradient(120deg, var(--green-dark), var(--green-bright)); color: #fff; padding-block: 4rem; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,.1); pointer-events: none; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; }
.cta-band h2 { color: #fff; margin-bottom: .35rem; }
.cta-band p { margin: 0; color: #d6e4dc; font-size: 1.05rem; }
.cta-band .btn-light { color: var(--green-deep); }
.trust-row { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.trust-item svg { width: 20px; height: 20px; color: var(--green-bright); }

/* Feature list */
.feature-list { display: grid; gap: 1.5rem; }
.feature { display: grid; grid-template-columns: 52px 1fr; gap: 1.1rem; align-items: start; }
.feature .icon { margin: 0; }
.feature h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.feature p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* Stat blocks */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.75rem; }
.stat-value { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--mint); line-height: 1; }
.stat-label { color: #c9dcd2; font-size: .9rem; margin-top: .5rem; font-weight: 600; }
.stat-light { background: #fff; border: 1px solid var(--line); }
.stat-light .stat-value { color: var(--green); }
.stat-light .stat-label { color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--green-deep); color: #a7c4b7; padding-block: 4rem 2rem; font-size: .92rem; border-top: 6px solid var(--green-bright); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 1.1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .6rem; }
.footer a { color: #d7e5dd; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer .brand { color: #fff; margin-bottom: 1.25rem; }
.footer .brand-sub { color: var(--mint); }
.footer-sponsors, .footer-affiliation { margin-top: 1.5rem; }
.footer-sponsors .sponsor-label, .footer-affiliation .sponsor-label { color: #8fb0a1; display: block; margin-bottom: .6rem; }
.footer-sponsors .sponsor-logos a, .footer-sponsors .sponsor-logos div { background: #fff; border-radius: 8px; padding: .45rem .7rem; display: inline-flex; align-items: center; }
.footer-sponsors .sponsor-logos img { height: 34px; width: auto; }
.footer .founder-line, .footer .founder-line a { display: inline-flex; align-items: center; gap: .65rem; color: #fff; text-decoration: none; font-weight: 700; font-size: .9rem; }
.footer .founder-line img { height: 40px; width: auto; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding-top: 1.5rem; font-size: .8rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: #8fb0a1; }
.reg-line { font-size: .82rem; color: #8fb0a1; line-height: 1.7; }
.newsletter { display: flex; gap: .5rem; margin-top: .5rem; }
.newsletter input { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; padding: .7rem .9rem; border-radius: 10px; }
.newsletter input::placeholder { color: #8fb0a1; }
.newsletter input:focus { border-color: var(--mint); box-shadow: none; }
.newsletter .btn { padding: .7rem 1.1rem; box-shadow: none; background: var(--green-bright); }

/* ---------- Checkout ---------- */
[hidden] { display: none !important; }
.page-hero-compact .container { padding-block: 3rem; }
.checkout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .checkout { grid-template-columns: 1fr; } .checkout-side { order: -1; } }
.co-steps { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.co-step { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: .4rem .8rem; border-radius: 999px; background: var(--cream); color: var(--muted); }
.co-step.done { background: var(--green-soft); color: var(--green); }
.co-step.active { background: var(--green); color: #fff; }
.pay-methods { display: flex; gap: .5rem; flex-wrap: wrap; }
.pay-method { display: inline-flex; align-items: center; gap: .45rem; border: 2px solid var(--line); background: #fff; border-radius: 10px; padding: .6rem 1rem; font: inherit; font-weight: 700; color: var(--green-deep); cursor: pointer; }
.pay-method svg { width: 18px; height: 18px; }
.pay-method.active { border-color: var(--green); background: var(--green-soft); }
.pay-method:disabled { opacity: .5; cursor: not-allowed; }
.card-input { position: relative; }
.card-input input { padding-right: 6.5rem; font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.card-brand { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); font-size: .68rem; font-weight: 800; letter-spacing: .08em; color: var(--green-deep); background: var(--green-soft); border-radius: 6px; padding: .3rem .5rem; }
.card-brand:empty { display: none; }
input.invalid, select.invalid { border-color: #c62828; box-shadow: 0 0 0 4px rgba(198,40,40,.12); }
.pay-error { background: #fdecec; border: 1px solid #f3b8b8; color: #8a1c1c; padding: .9rem 1.1rem; border-radius: 10px; font-weight: 600; font-size: .95rem; }
.btn-lg { padding: 1.1rem 1.8rem; font-size: 1.1rem; }
.btn.is-loading { opacity: .85; pointer-events: none; }
.spinner { width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); border-top: 6px solid var(--green); }
.summary h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.6rem; font-weight: 800; margin-bottom: .75rem; }
.sum-amount { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--green-deep); line-height: 1; }
.sum-freq { font-family: var(--font-body); font-size: .8rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.sum-impact { background: var(--green-soft); border-radius: 10px; padding: .7rem .9rem; font-size: .9rem; font-weight: 600; color: var(--green-deep); margin: 1rem 0; }
.sum-impact:empty { display: none; }
.sum-list { margin: 0 0 1rem; display: grid; gap: .55rem; }
.sum-list > div { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; }
.sum-list dt { color: var(--muted); font-weight: 600; }
.sum-list dd { margin: 0; font-weight: 700; color: var(--green-deep); text-align: right; }
.sum-list .total { border-top: 1px solid var(--line); padding-top: .6rem; margin-top: .3rem; font-size: 1.05rem; }
.sum-trust { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .6rem; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.sum-trust li { display: flex; align-items: center; gap: .6rem; }
.sum-trust svg { width: 18px; height: 18px; color: var(--green-bright); flex-shrink: 0; }
.sum-partners { margin-top: 1.5rem; }
.sum-partners .sponsor-label { display: block; margin-bottom: .5rem; }
.sum-partners .founder-line, .sum-partners .founder-line a { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--green-deep); text-decoration: none; font-size: .9rem; }
.sum-partners .founder-line img { height: 34px; width: auto; }
.test-notice { margin-bottom: 1.5rem; }
.test-notice code { background: rgba(0,0,0,.06); padding: .1rem .35rem; border-radius: 4px; font-size: .85em; }
.success-card { max-width: 720px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 3rem; box-shadow: var(--shadow-md); text-align: center; }
.success-icon { width: 84px; height: 84px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin: 0 auto 1.25rem; }
.success-icon svg { width: 44px; height: 44px; }
.success-card .eyebrow::before { display: none; }
.success-card .sum-list { max-width: 420px; margin: 1.5rem auto; text-align: left; }
.success-card .btn-group { justify-content: center; }
@media (max-width: 520px) { .success-card { padding: 2rem 1.25rem; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .btn:hover { transform: none; } .progress > span { transition: none; } .ss-track { transition: none; } }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 1rem; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.center { text-align: center; }
.divider { height: 1px; background: var(--line); margin-block: 3rem; border: 0; }
.prose { max-width: 780px; }
.prose h2 { margin-top: 3rem; font-size: 2rem; }
.prose h3 { margin-top: 2rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .5rem; }
.prose p, .prose li { color: var(--ink-soft); }
