/* ================================================
   BibleSoul Foundation — Donor Proposal Stylesheet
   ================================================ */

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

:root {
    --navy:      #1B2F4E;
    --navy-2:    #1E3A5F;
    --navy-deep: #0d1b35;
    --gold:      #C9A227;
    --gold-2:    #e0b830;
    --blue:      #2E6DA4;
    --teal:      #0D7377;
    --text:      #22223b;
    --text-mut:  #6b6485;
    --border:    #e2e8f0;
    --surface:   #f7f9fc;
    --grad:      linear-gradient(135deg, #1B2F4E 0%, #2E6DA4 100%);
    --grad-hero: linear-gradient(135deg, #C9A227 0%, #f59e0b 60%, #2E6DA4 100%);
    --trans:     .28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--surface);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Font Awesome safeguard (overrides any global font-family reset) ── */
.fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands' !important;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
}
.fas, .fa-solid { font-weight: 900 !important; }
.far, .fa-regular { font-weight: 400 !important; }

/* ── Scroll reveal ── */
.sr { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.sr.in { opacity: 1; transform: translateY(0); }
.sr.d1 { transition-delay: .10s; }
.sr.d2 { transition-delay: .20s; }
.sr.d3 { transition-delay: .30s; }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; border-radius: 10px;
    font-size: 14px; font-weight: 700;
    cursor: pointer; border: none; text-decoration: none;
    transition: transform var(--trans), box-shadow var(--trans);
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy);
    box-shadow: 0 4px 18px rgba(201,162,39,.4);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(201,162,39,.55); }
.btn-ghost {
    background: rgba(255,255,255,.18); color: var(--navy);
    border: 2px solid rgba(27,47,78,.22);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.35); }
.btn-lg { padding: 12px 28px; font-size: 15px; }

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    padding: clamp(18px, 2.5vw, 32px) 0 clamp(20px, 2.5vw, 34px);
    overflow: hidden;
    background: linear-gradient(180deg, #f0f4ff 0%, #fdf8f0 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: .55;
    animation: blobFloat 14s ease-in-out infinite;
}
.blob.b1 { width:420px; height:420px; background:#a5b4fc; top:-100px; left:-100px; }
.blob.b2 { width:500px; height:500px; background:#fcd34d; top:20%; right:-160px; animation-delay:-4s; }
.blob.b3 { width:360px; height:360px; background:#6ee7b7; bottom:-140px; left:30%; animation-delay:-8s; }
@keyframes blobFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(30px,-40px) scale(1.08); }
}

.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(27,47,78,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27,47,78,.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr 1fr;
    align-items: center; gap: 32px;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.hero-left { padding-left: clamp(0px, 4vw, 40px); }

@keyframes hIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { opacity: 0; animation: hIn .55s ease-out forwards; }
.hero-left > .h-badge  { animation-delay: .08s; }
.hero-left > .h-title  { animation-delay: .16s; }
.hero-left > .h-sub    { animation-delay: .24s; }
.hero-left > .h-ctas   { animation-delay: .32s; }
.hero-left > .h-stats  { animation-delay: .40s; }

.h-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 4px 13px; background: rgba(255,255,255,.75);
    border: 1px solid var(--border); border-radius: 999px;
    font-size: 11.5px; color: var(--text); font-weight: 500;
    backdrop-filter: blur(10px); margin-bottom: 12px;
}
.pulse-dot {
    display: inline-block; width: 8px; height: 8px;
    background: #22c55e; border-radius: 50%;
    animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
    70%  { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.h-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.1; margin: 0 0 12px;
    font-weight: 800; letter-spacing: -.8px; color: var(--text);
}
.grad-text {
    background: var(--grad-hero);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.h-sub { font-size: 13.5px; color: var(--text-mut); max-width: 480px; margin: 0 0 18px; line-height: 1.65; }
.h-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.h-stats { display: flex; gap: 22px; flex-wrap: wrap; }
.h-stats > div { display: flex; flex-direction: column; }
.h-stats strong {
    font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800;
    background: var(--grad-hero);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.h-stats span { font-size: 11px; color: var(--text-mut); margin-top: 1px; }

.hero-right {
    position: relative; height: clamp(200px, 20vw, 280px);
    display: flex; align-items: center; justify-content: center;
    animation: fadeUp 1.1s ease .15s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.orbit { position: relative; width: 260px; height: 260px; }
.ring {
    position: absolute; top: 50%; left: 50%;
    border: 2px dashed rgba(27,47,78,.2); border-radius: 50%;
    transform: translate(-50%, -50%);
}
.ring.r1 { width:180px; height:180px; animation: spinRing 30s linear infinite; }
.ring.r2 { width:260px; height:260px; animation: spinRing 60s linear infinite reverse; }
@keyframes spinRing { to { transform: translate(-50%,-50%) rotate(360deg); } }

.planet-main {
    position: absolute; top:50%; left:50%;
    transform: translate(-50%,-50%);
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 36px rgba(27,47,78,.4);
    animation: bobPlanet 4s ease-in-out infinite;
}
.planet-main i { font-size: 28px; color: var(--gold); }
@keyframes bobPlanet {
    0%,100% { transform: translate(-50%,-50%); }
    50%     { transform: translate(-50%,-58%); }
}

.satellite {
    position: absolute; top:50%; left:50%;
    width: 34px; height: 34px; border-radius: 50%;
    background: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(20,10,50,.09); font-size: 14px;
}
.satellite.s1 { animation: satOrbit 20s linear infinite; }
.satellite.s2 { animation: satOrbit 20s linear infinite -3.3s; }
.satellite.s3 { animation: satOrbit 20s linear infinite -6.6s; }
.satellite.s4 { animation: satOrbit 28s linear infinite reverse; }
.satellite.s5 { animation: satOrbit 28s linear infinite reverse -9s; }
.satellite.s6 { animation: satOrbit 28s linear infinite reverse -18s; }
@keyframes satOrbit {
    from { transform: translate(-50%,-50%) rotate(0deg)   translateY(-90px) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg) translateY(-90px) rotate(-360deg); }
}

.floating-card {
    position: absolute; display: flex; align-items: center; gap: 8px;
    background: #fff; padding: 7px 11px; border-radius: 10px;
    box-shadow: 0 20px 55px rgba(27,47,78,.16); font-size: 11px;
    animation: bobCard 5s ease-in-out infinite; white-space: nowrap;
}
.floating-card strong { display: block; font-size: 11px; font-weight: 700; color: var(--text); }
.floating-card small  { color: var(--text-mut); font-size: 10px; }
.fc-avatar {
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 11px; flex-shrink: 0;
}
.fc1 { top: 10px;    left: -8px;   animation-delay: -1s; }
.fc2 { bottom: 14px; right: -12px; animation-delay: -3s; }
@keyframes bobCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ================================================
   ①  LETTERHEAD  (TABLE 0 — bg #1B2F4E)
   ================================================ */
.sec-letterhead {
    background: #1B2F4E;
    padding: 52px 28px 46px;
    text-align: center;
    position: relative; overflow: hidden;
    margin: -52px -24px 0;
}
.sec-letterhead::before {
    content: '\f6d7'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: -20px; bottom: -30px;
    font-size: 220px; color: rgba(201,162,39,.04);
    pointer-events: none; line-height: 1;
}
.lh-logo {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 4.5vw, 34px); font-weight: 900;
    letter-spacing: 10px; color: #C9A227;
    margin-bottom: 4px;
}
.lh-org    { font-size: 10.5px; font-weight: 600; color: #D6E8F7; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.lh-rule   { border: none; height: 1px; background: linear-gradient(90deg, transparent, #2E6DA4, transparent); margin: 14px auto; max-width: 560px; }
.lh-ctitle { font-size: clamp(13px,2.5vw,18px); font-weight: 700; color: #fff; margin-bottom: 3px; }
.lh-csub   { font-size: 10.5px; font-weight: 600; color: #C9A227; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.lh-hl     { font-family: 'Playfair Display', serif; font-size: clamp(12px,2.3vw,16px); font-weight: 700; color: #fff; line-height: 1.5; margin-bottom: 5px; }
.lh-hlsub  { font-size: 11px; color: #D6E8F7; margin-bottom: 16px; }
.lh-contact { font-size: 10px; color: #D6E8F7; line-height: 2; }
.lh-contact a { color: #D6E8F7; }
.lh-contact a:hover { color: #C9A227; text-decoration: none; }
.lh-verse  { margin-top: 16px; font-size: 11.5px; font-style: italic; color: #C9A227; line-height: 1.6; }

/* ================================================
   ②  SUBJECT LINE
   ================================================ */
.sec-subject {
    margin-top: 40px;
    padding: 16px 20px;
    border-left: 4px solid var(--blue);
    background: linear-gradient(90deg, #eef5ff, transparent);
    font-size: 14.5px; font-weight: 700; color: var(--navy-2);
    line-height: 1.5;
}
.subject-label {
    display: block; font-size: 9.5px; font-weight: 800;
    color: var(--blue); letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 4px;
}

/* ================================================
   ③  LETTER BODY
   ================================================ */
.sec-letter-body { padding: 8px 0 4px; }

.body-p {
    font-size: 15px; color: #3a3a55; line-height: 1.95;
    margin-bottom: 16px;
}
.body-p strong { color: #1A1A2E; }
.body-p:last-child { margin-bottom: 0; }

/* ================================================
   ④  YELLOW HIGHLIGHT  (TABLE 1 — bg #FFF3CD)
   ================================================ */
.body-highlight {
    background: #FFF3CD;
    border-left: 5px solid #C9A227;
    padding: 22px 26px; margin: 28px 0;
}
.body-highlight p {
    font-size: 15px; font-weight: 600; color: #3a2800; line-height: 1.85; margin: 0;
}

/* ================================================
   ⑤  PLATFORM INFO  (2 columns)
   ================================================ */
.sec-platform {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; margin: 36px 0 0;
    border-top: 2px solid var(--border);
    padding-top: 32px;
}

.platform-col { padding-right: 40px; }
.platform-col:last-child { padding-right: 0; padding-left: 32px; border-left: 1px solid var(--border); }

.platform-heading {
    font-size: 12px; font-weight: 800; color: var(--blue);
    text-transform: uppercase; letter-spacing: 1.2px;
    margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.platform-heading i { font-size: 14px; }

.platform-list { list-style: none; }
.platform-list li {
    font-size: 14px; color: #3a3a55;
    padding: 9px 0 9px 24px;
    border-bottom: 1px solid #eef2f8;
    position: relative; line-height: 1.5;
}
.platform-list li:last-child { border-bottom: none; }
.platform-list li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 8px; color: var(--blue);
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
}
.platform-list--who li::before {
    content: '\f007'; color: var(--teal);
}

/* ================================================
   ⑥  GIFT TIERS  (simple list)
   ================================================ */
.sec-gifts {
    margin: 36px 0 0;
    padding: 32px 0 0;
    border-top: 2px solid var(--border);
}

.gifts-heading {
    font-size: 12px; font-weight: 800; color: var(--blue);
    text-transform: uppercase; letter-spacing: 1.2px;
    margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.gifts-heading i { font-size: 14px; }

.gift-list { list-style: none; margin-bottom: 24px; }
.gift-list li {
    display: flex; align-items: baseline; gap: 12px;
    font-size: 14.5px; color: #3a3a55;
    padding: 11px 0;
    border-bottom: 1px solid #eef2f8;
    line-height: 1.5;
}
.gift-list li:last-child { border-bottom: none; }

.gift-amt {
    font-family: 'Poppins', sans-serif;
    font-size: 16px; font-weight: 900;
    color: var(--navy-2); flex-shrink: 0;
    min-width: 60px; text-decoration: none;
    transition: color .2s;
}
a.gift-amt:hover {
    color: var(--blue);
    text-decoration: underline;
}

.transparency-note {
    font-size: 13px; color: #5a5a72; line-height: 1.85;
    padding: 14px 18px;
    border-left: 3px solid rgba(46,109,164,.35);
    background: #f0f5ff;
}
.transparency-note strong { color: var(--navy); }

/* ================================================
   ⑦  STATS ROW  (TABLE 2 — 4 colored cells)
   ================================================ */
.sec-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    margin: 40px -24px 0;
}
.stat-cell {
    padding: 42px 18px; text-align: center;
    position: relative; overflow: hidden;
    transition: filter .2s;
}
.stat-cell:hover { filter: brightness(1.08); }
.sc1 { background: #1E3A5F; }
.sc2 { background: #2E6DA4; }
.sc3 { background: #0D7377; }
.sc4 { background: #C9A227; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 42px); font-weight: 900;
    color: #fff; line-height: 1; margin-bottom: 10px;
}
.sc4 .stat-num { color: #1B2F4E; }
.stat-lbl { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.82); letter-spacing: 1px; text-transform: uppercase; }
.sc4 .stat-lbl { color: rgba(27,47,78,.78); }

/* ================================================
   ⑧  CLOSING
   ================================================ */
.sec-closing {
    padding-top: 44px;
}
.sec-closing .body-p { color: #3a3a55; }

.give-link-wrap {
    margin: 28px 0 32px;
    text-align: center;
}
.give-link {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #f5c518 0%, #e8a800 50%, #ffdc5e 100%);
    color: #1a0e00; font-weight: 900; font-size: 15px; letter-spacing: .3px;
    padding: 14px 36px; border-radius: 50px; text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.55);
    box-shadow:
        0 6px 24px rgba(232,168,0,.45),
        0 2px 8px rgba(232,168,0,.25),
        inset 0 1px 0 rgba(255,255,255,.6),
        inset 0 -1px 0 rgba(0,0,0,.08);
    position: relative; overflow: hidden;
    transition: box-shadow .22s, transform .22s, filter .22s;
}
.give-link::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
    border-radius: 50px 50px 0 0; pointer-events: none;
}
.give-link:hover {
    box-shadow:
        0 10px 36px rgba(232,168,0,.6),
        0 4px 12px rgba(232,168,0,.3),
        inset 0 1px 0 rgba(255,255,255,.7),
        inset 0 -1px 0 rgba(0,0,0,.08);
    transform: translateY(-2px);
    filter: brightness(1.06);
    color: #1a0e00; text-decoration: none;
}
.give-link:active { transform: translateY(0); filter: brightness(.97); }
.give-link i { font-size: 15px; color: #c0392b; filter: drop-shadow(0 1px 2px rgba(0,0,0,.15)); }

.sig-block { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.sig-opener { margin-bottom: 10px !important; }
.sig-name { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.sig-contact { font-size: 13px; color: var(--text-mut); line-height: 2.1; }
.sig-contact a { color: var(--blue); }
.sig-contact a:hover { color: var(--navy); text-decoration: none; }

.ps-note {
    margin-top: 28px; padding: 16px 20px;
    border-left: 4px solid #C9A227;
    background: #fffbea;
    font-size: 14px; color: #3a3a55; line-height: 1.85;
}
.ps-note strong { color: var(--navy); }

/* ================================================
   ⑨  DARK FOOTER  (TABLE 3 — bg #1B2F4E)
   ================================================ */
.sec-dark-footer {
    background: #1B2F4E;
    padding: 58px 20px 50px;
    text-align: center;
}
.df-logo  { font-family: 'Poppins', sans-serif; font-size: clamp(16px,4vw,28px); font-weight: 900; letter-spacing: 8px; color: #C9A227; margin-bottom: 14px; }
.df-rule  { border: none; height: 1px; background: linear-gradient(90deg, transparent, #2E6DA4, transparent); margin: 16px auto; max-width: 560px; }
.df-v1    { font-family: 'Playfair Display', serif; font-size: clamp(13px,2.4vw,18px); font-style: italic; font-weight: 700; color: #fff; line-height: 1.55; margin-bottom: 8px; }
.df-v2    { font-family: 'Playfair Display', serif; font-size: clamp(12px,2vw,16px); font-style: italic; font-weight: 600; color: #C9A227; line-height: 1.55; }
.df-meta  { font-size: 11.5px; font-weight: 600; color: #D6E8F7; line-height: 2.1; margin-top: 22px; }
.df-meta a { color: #D6E8F7; }
.df-meta a:hover { color: #C9A227; text-decoration: none; }
.df-bless { font-size: 14px; font-weight: 700; color: #C9A227; letter-spacing: 1px; margin-top: 18px; }

/* ================================================
   MOBILE ORBIT KEYFRAMES  (smaller radius)
   ================================================ */

/* 680px — orbit radius 66px */
@keyframes satOrbitMob {
    from { transform: translate(-50%,-50%) rotate(0deg)   translateY(-66px) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg) translateY(-66px) rotate(-360deg); }
}
/* 480px — orbit radius 50px */
@keyframes satOrbitSm {
    from { transform: translate(-50%,-50%) rotate(0deg)   translateY(-50px) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg) translateY(-50px) rotate(-360deg); }
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* ── 900px ── */
@media (max-width: 900px) {
    .hero-inner { gap: 20px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
    .sec-letterhead { margin: -32px -16px 0; padding: 42px 20px 36px; }
    .sec-stats      { margin: 40px -16px 0; }
    .platform-col   { padding-right: 24px; }
    .platform-col:last-child { padding-left: 20px; }
    .sec-subject    { margin-top: 32px; }
}

/* ── 680px — mobile (animation shows, scaled) ── */
@media (max-width: 680px) {
    /* Hero — 1 column, animation stacks below text */
    .hero-inner { grid-template-columns: 1fr; padding: 0 16px; gap: 10px; }
    .hero-left  { padding-left: 0; }
    .btn-lg     { padding: 11px 20px; font-size: 14px; }
    .h-stats    { gap: 14px; }
    .h-sub      { max-width: 100%; }

    /* ── hero-right: show on mobile, scaled down ── */
    .hero-right {
        display: flex;
        height: 220px;
    }

    /* Orbit scaled: 260→190 */
    .orbit       { width: 190px; height: 190px; }
    .ring.r1     { width: 132px; height: 132px; }
    .ring.r2     { width: 190px; height: 190px; }
    .planet-main { width: 60px;  height: 60px;  }
    .planet-main i { font-size: 22px; }

    /* Satellites: smaller, use mobile orbit keyframes (66px radius) */
    .satellite   { width: 27px; height: 27px; font-size: 11px; }
    .satellite.s1 { animation-name: satOrbitMob; }
    .satellite.s2 { animation-name: satOrbitMob; }
    .satellite.s3 { animation-name: satOrbitMob; }
    .satellite.s4 { animation-name: satOrbitMob; }
    .satellite.s5 { animation-name: satOrbitMob; }
    .satellite.s6 { animation-name: satOrbitMob; }

    /* Floating cards — smaller, stay inside hero-right */
    .floating-card { font-size: 10px; padding: 5px 9px; gap: 6px; border-radius: 8px; }
    .floating-card strong { font-size: 10px; }
    .floating-card small  { font-size: 9px; }
    .fc-avatar { width: 22px; height: 22px; font-size: 9px; }
    .fc1 { top: 8px;  left: 6px;  }
    .fc2 { bottom: 8px; right: 6px; }

    /* Platform: 2 col → 1 col */
    .sec-platform { grid-template-columns: 1fr; }
    .platform-col { padding-right: 0; margin-bottom: 28px; }
    .platform-col:last-child {
        padding-left: 0; border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 28px; margin-bottom: 0;
    }

    /* Stats: 4 → 2×2 */
    .sec-stats { grid-template-columns: repeat(2, 1fr); }
    .sc1, .sc2 { border-bottom: 2px solid rgba(255,255,255,.1); }
    .stat-cell { padding: 30px 12px; }

    /* Subject, body, content */
    .sec-subject    { font-size: 13.5px; margin-top: 28px; padding: 14px 16px; }
    .body-p         { font-size: 14px; }
    .body-highlight { padding: 18px; }
    .body-highlight p { font-size: 14px; }
    .gift-list li   { font-size: 14px; gap: 10px; padding: 10px 0; }
    .gift-amt       { font-size: 15px; min-width: 52px; }
    .give-link      { font-size: 14px; padding: 13px 22px; display: flex; width: 100%; justify-content: center; }
    .sig-contact    { font-size: 12.5px; }
    .transparency-note { font-size: 12.5px; padding: 12px 14px; }

    /* Letterhead */
    .sec-letterhead { padding: 34px 16px 28px; }
    .lh-logo        { letter-spacing: 5px; }
    .lh-contact     { font-size: 9.5px; }

    /* Dark footer */
    .sec-dark-footer { padding: 44px 16px 38px; }
    .df-logo { letter-spacing: 5px; }
}

/* ── 480px — small mobile ── */
@media (max-width: 480px) {
    /* Hero animation — further scaled: 190→148 */
    .hero-right  { height: 175px; }
    .orbit       { width: 148px; height: 148px; }
    .ring.r1     { width: 104px; height: 104px; }
    .ring.r2     { width: 148px; height: 148px; }
    .planet-main { width: 48px;  height: 48px;  }
    .planet-main i { font-size: 18px; }
    .satellite   { width: 22px; height: 22px; font-size: 10px; }
    .satellite.s1 { animation-name: satOrbitSm; }
    .satellite.s2 { animation-name: satOrbitSm; }
    .satellite.s3 { animation-name: satOrbitSm; }
    .satellite.s4 { animation-name: satOrbitSm; }
    .satellite.s5 { animation-name: satOrbitSm; }
    .satellite.s6 { animation-name: satOrbitSm; }
    /* Hide floating cards — too cramped */
    .fc1, .fc2   { display: none; }

    /* Content */
    .lh-logo        { letter-spacing: 3px; font-size: 16px; }
    .lh-contact     { font-size: 9px; line-height: 1.85; }
    .sec-subject    { font-size: 13px; padding: 12px 14px; }
    .body-p         { font-size: 13.5px; }
    .body-highlight { padding: 14px 15px; }
    .body-highlight p { font-size: 13.5px; }
    .gift-list li   { font-size: 13.5px; }
    .gift-amt       { font-size: 14px; min-width: 48px; }
    .platform-list li { font-size: 13px; }
    .stat-cell      { padding: 24px 10px; }
    .stat-num       { font-size: clamp(20px, 5.5vw, 28px); }
    .stat-lbl       { font-size: 9.5px; }
    .give-link      { font-size: 13.5px; padding: 12px 18px; }
    .ps-note        { padding: 13px 15px; font-size: 13.5px; }
    .sec-dark-footer { padding: 38px 13px 32px; }
    .df-meta        { font-size: 11px; line-height: 1.9; }
}

/* ── 380px — very small phones ── */
@media (max-width: 380px) {
    /* Hero animation — minimal: 148→112, satellites hidden */
    .hero-right  { height: 136px; }
    .orbit       { width: 112px; height: 112px; }
    .ring.r1     { width: 78px;  height: 78px;  }
    .ring.r2     { width: 112px; height: 112px; }
    .planet-main { width: 38px;  height: 38px;  }
    .planet-main i { font-size: 15px; }
    /* Only planet + rings — no satellites (too small) */
    .satellite   { display: none; }

    /* Content */
    .lh-logo        { letter-spacing: 2px; font-size: 14px; }
    .sec-stats      { grid-template-columns: repeat(2, 1fr); }
    .stat-cell      { padding: 20px 8px; }
    .gift-list li   { gap: 8px; }
    .give-link      { font-size: 13px; padding: 11px 14px; }
    .df-logo        { letter-spacing: 2px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
    .sr { opacity: 1 !important; transform: none !important; }
    .blob, .satellite, .planet-main, .ring, .floating-card { animation: none !important; }
}

/* ── Mobile: hide banner on all mobile devices ── */
@media (max-width: 768px) {
    .hero { display: none !important; }
}
