/* ═══════════════════════════════════════════════
   NYC Honor — Shared Design System
   ═══════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #06090f;
    --surface: #0c1320;
    --card: #111827;
    --border: rgba(148, 163, 184, 0.08);
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --accent: #1B6B35;
    --accent-glow: rgba(27, 107, 53, 0.12);
    --accent-hover: #155A2B;
    --gold: #BFA254;
    --gold-glow: rgba(191, 162, 84, 0.08);
    --danger: #ef4444;
    --fn: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --radius: 14px;
    --max-w: 1140px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--fn);
    line-height: 1.7;
    overflow-x: hidden;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

a { color: inherit; }

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(6, 9, 15, 0.88);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s, background 0.3s;
}

.nav.scrolled {
    padding: 10px 0;
    background: rgba(6, 9, 15, 0.96);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--accent);
    text-decoration: none;
}

.nav-brand span { color: var(--gold); }

.nav-logo {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color .2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-cta {
    padding: 9px 22px;
    background: var(--accent);
    color: #06090f;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27, 107, 53, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0; right: 0; bottom: 0;
    background: rgba(6, 9, 15, 0.97);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.show { display: flex; }

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent);
    color: #06090f;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    font-family: var(--fn);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27, 107, 53, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 14px 36px;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s;
    background: transparent;
}

.btn-outline:hover { background: rgba(27, 107, 53, 0.08); }

.btn-gold {
    display: inline-block;
    padding: 14px 28px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s;
    background: transparent;
}

.btn-gold:hover { background: rgba(197, 160, 89, 0.1); }

.btn-gold-filled {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    color: #06090f;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    font-family: var(--fn);
}

.btn-gold-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(197, 160, 89, 0.3);
    filter: brightness(1.1);
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
.section { padding: 80px 0; }
.section-surface { background: var(--surface); }

.section-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-label.gold { color: var(--gold); }

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-desc {
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 48px;
    font-size: 0.95rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════
   HERO (shared base — pages override)
   ═══════════════════════════════════════════════ */
.hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 25% 40%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(197, 160, 89, 0.06) 0%, transparent 50%);
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(27, 107, 53, 0.1);
    border: 1px solid rgba(27, 107, 53, 0.2);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-badge.gold {
    background: rgba(197, 160, 89, 0.1);
    border-color: rgba(197, 160, 89, 0.2);
    color: var(--gold);
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 .gr {
    background: linear-gradient(135deg, #2E8B57, #5CBF7B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 .gl {
    background: linear-gradient(135deg, var(--gold), #fef08a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page hero (subpages) */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 30% 30%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, var(--gold-glow) 0%, transparent 50%);
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════ */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(27, 107, 53, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-icon { font-size: 2.2rem; margin-bottom: 14px; }

.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }

.card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.card-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 10px;
    background: var(--accent-glow);
    border: 1px solid rgba(27, 107, 53, 0.15);
    border-radius: 6px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

.card-tag.gold {
    background: var(--gold-glow);
    border-color: rgba(197, 160, 89, 0.15);
    color: var(--gold);
}

/* ═══════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════ */
.stats-bar {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    font-family: var(--mono);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   GRID LAYOUTS
   ═══════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ═══════════════════════════════════════════════
   SOCIAL LINKS
   ═══════════════════════════════════════════════ */
.social-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   PARTNERS BAR
   ═══════════════════════════════════════════════ */
.partners-bar {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.partners-logos {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.partner-badge {
    padding: 12px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.partner-badge:hover {
    border-color: rgba(197, 160, 89, 0.2);
    color: var(--gold);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
    font-size: 0.72rem;
    color: var(--text-dim);
}

.footer-mission {
    font-size: 0.7rem;
    color: var(--text-dim);
    max-width: 500px;
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════════ */
.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.85rem;
    font-family: var(--fn);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus, .form-select:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--text-dim); }

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════
   NIL SECTION (gold themed)
   ═══════════════════════════════════════════════ */
.nil-section {
    padding: 2.5rem;
    background: var(--gold-glow);
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: var(--radius);
}

.nil-section h3 {
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

.nil-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   TEAM / BIO CARDS
   ═══════════════════════════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.bio-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.bio-card:hover {
    border-color: rgba(27, 107, 53, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bio-card-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.bio-card-body { padding: 2rem; }

.bio-card-role {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.bio-card-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.bio-card-text {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.bio-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bio-highlight {
    padding: 5px 12px;
    background: rgba(27, 107, 53, 0.06);
    border: 1px solid rgba(27, 107, 53, 0.1);
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.bio-highlight.gold {
    background: rgba(197, 160, 89, 0.06);
    border-color: rgba(197, 160, 89, 0.1);
    color: var(--gold);
}

/* Placeholder avatar */
.avatar-placeholder {
    width: 100%;
    height: 360px;
    background: linear-gradient(135deg, var(--surface) 0%, var(--card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--text-dim);
}

/* ═══════════════════════════════════════════════
   DONATE PAGE
   ═══════════════════════════════════════════════ */
.strategy-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.strategy-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.strategy-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.strategy-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.strategy-card ul {
    list-style: none;
    margin-top: 12px;
}

.strategy-card ul li {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.strategy-card ul li:last-child { border: none; }

.strategy-card ul li::before {
    content: '✓ ';
    color: var(--accent);
    font-weight: 700;
}

/* Impact grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.impact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.impact-card:hover { border-color: rgba(27, 107, 53, 0.12); }

.impact-icon { font-size: 2rem; margin-bottom: 10px; }

.impact-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.impact-card p {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ═══════════════════════════════════════════════
   CALCULATOR / TOOLS
   ═══════════════════════════════════════════════ */
.calc-wrapper {
    background: var(--surface);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border);
    margin: 40px auto;
    max-width: 900px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: flex-start;
}

.calc-output {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.out-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 4px 0;
}

.out-row.total {
    border-top: 2px solid rgba(197, 160, 89, 0.2);
    padding-top: 14px;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 800;
}

.out-row.total .val { color: var(--gold); }
.out-lbl { color: var(--text-muted); }
.out-val { font-family: var(--mono); font-weight: 700; }

.calc-note {
    margin-top: 1.5rem;
    font-size: 0.72rem;
    color: var(--text-dim);
    text-align: center;
}

.btn-calc {
    padding: 14px;
    background: var(--gold);
    color: #06090f;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-family: var(--fn);
    cursor: pointer;
    transition: all 0.25s;
}

.btn-calc:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(197, 160, 89, 0.3);
}

/* ═══════════════════════════════════════════════
   MODULE CARDS (NIL page)
   ═══════════════════════════════════════════════ */
.module-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 107, 53, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.module-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dim);
    font-family: var(--mono);
}

.module-icon { font-size: 2.5rem; margin-bottom: 16px; }

.module-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.module-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    flex-grow: 1;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   CANVAS
   ═══════════════════════════════════════════════ */
#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .desktop-only { display: none; }
    .hamburger { display: block; }

    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 0.95rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-number { font-size: 1.5rem; }

    .grid-2, .grid-3, .grid-4,
    .team-grid { grid-template-columns: 1fr; }

    .impact-grid { grid-template-columns: repeat(2, 1fr); }

    .calc-grid { grid-template-columns: 1fr; }

    .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
    }

    .impact-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════ */
.legal-content h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 2rem 0 0.8rem;
    color: var(--text);
}

.legal-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: var(--accent);
}

/* ── UTILITY CLASSES (replaces inline styles) ── */
.mt-3 { margin-top: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.section-cta { text-align: center; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.calc-form-layout { display: flex; flex-direction: column; gap: 16px; }

.card-tag-push { margin-top: auto; padding-top: 12px; }

.color-gold { color: var(--gold); }

/* Page hero gradient variants */
.page-hero-gold { background: linear-gradient(180deg, var(--gold-glow) 0%, transparent 60%); }
.page-hero-donate { background: linear-gradient(180deg, rgba(191,162,84,0.06) 0%, transparent 60%); }

/* 501(c)(3) nonprofit banner */
.nonprofit-banner {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}
.nonprofit-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
}
.nonprofit-badge-icon { font-size: 1.2rem; }
.nonprofit-badge-text { color: var(--text-muted); font-size: 0.82rem; }

/* NIL section on home page */
.nil-section-offset { margin-top: 3rem; }
.legal-container { max-width: 800px; }
