/* ============================================
   INNER PAGES — Shared Styles
   Cherry Pear Moody
   ============================================ */

/* --- Reveal Animation (shared) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Page Hero (shared across all inner pages) --- */
.page-hero {
    position: relative;
    padding: calc(var(--navbar-height) + var(--space-4xl)) 0 var(--space-4xl);
    overflow: hidden;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(255, 0, 64, 0.3), rgba(0, 255, 128, 0.25), rgba(255, 0, 64, 0.3), transparent) 1;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.page-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
}

.page-hero__glow--cherry {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 64, 0.12) 0%, transparent 70%);
    top: -10%;
    right: 15%;
    animation: pulseGlow 6s ease-in-out infinite;
}

.page-hero__glow--pear {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 128, 0.08) 0%, transparent 70%);
    bottom: -20%;
    left: 10%;
    animation: pulseGlow 8s ease-in-out infinite;
    animation-delay: 2s;
}

.page-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero__label {
    display: inline-flex;
    margin-bottom: var(--space-lg);
}

.page-hero__title {
    font-family: 'Outfit', var(--font-primary);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.page-hero__subtitle {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
}

/* --- Section Header (reusable) --- */
.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section__header .body-large {
    margin-left: auto;
    margin-right: auto;
}

/* --- Content Section --- */
.content-section {
    padding: var(--space-5xl) 0;
}

.content-section--alt {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

/* --- Prose / Long-form Content --- */
.prose {
    max-width: 720px;
    margin: 0 auto;
}

.prose h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    margin-top: var(--space-3xl);
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    margin-top: var(--space-2xl);
}

.prose p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.prose ul,
.prose ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.prose li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.prose ol li {
    list-style: decimal;
}

.prose strong {
    color: var(--text-primary);
    font-weight: 600;
}

.prose a {
    color: var(--pear);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.prose a:hover {
    color: var(--pear-light);
}

.prose blockquote {
    border-left: 3px solid var(--cherry);
    padding-left: var(--space-lg);
    margin: var(--space-2xl) 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* --- Report Cards Grid --- */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-xl);
}

.report-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cherry), var(--pear));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.report-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-medium);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--cherry-glow);
}

.report-card:hover::before {
    opacity: 1;
}

.report-card__badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: var(--space-lg);
}

.report-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.report-card__entity {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--cherry);
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

.report-card__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-tertiary);
    margin-bottom: var(--space-xl);
    flex-grow: 1;
}

.report-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.report-card__date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.report-card__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--pear);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: all var(--transition-fast);
}

.report-card__link:hover {
    color: var(--pear-light);
    gap: 0.5rem;
}

/* --- Empty State (for Reports) --- */
.reports-empty {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    border: 1px dashed var(--border-medium);
    border-radius: var(--radius-lg);
}

.reports-empty__icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    opacity: 0.4;
}

.reports-empty__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.reports-empty__desc {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
}

/* --- Article Cards Grid --- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-xl);
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pear), var(--cherry));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.article-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 70%);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.article-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-medium);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--pear-glow);
}

.article-card:hover::before {
    opacity: 1;
}

.article-card:hover::after {
    animation: cardShimmer 0.8s ease forwards;
}

.article-card__badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: var(--space-lg);
}

.article-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.article-card__excerpt {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-tertiary);
    margin-bottom: var(--space-xl);
    flex-grow: 1;
}

.article-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.article-card__date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.article-card__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--pear);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: all var(--transition-fast);
}

.article-card__link:hover {
    color: var(--pear-light);
    gap: 0.5rem;
}

/* --- Methodology Steps --- */
.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    max-width: 800px;
    margin: 0 auto;
}

.methodology-step {
    display: flex;
    gap: var(--space-xl);
    position: relative;
    padding: var(--space-lg);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
}

/* Left accent bar on methodology steps */
.methodology-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background: var(--pear);
    opacity: 0;
    transition: opacity var(--transition-base);
}

/* Card shimmer sweep on methodology steps */
.methodology-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 70%);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.methodology-step:hover {
    border-color: var(--border-medium);
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.methodology-step:hover::before {
    opacity: 1;
}

.methodology-step:hover::after {
    animation: cardShimmer 0.8s ease forwards;
}


.methodology-step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid var(--border-medium);
    background: var(--bg-card);
    position: relative;
    z-index: 1;
}

.methodology-step__number--cherry {
    color: var(--cherry);
    border-color: rgba(255, 0, 64, 0.25);
    box-shadow: 0 0 15px var(--cherry-glow);
}

.methodology-step__number--pear {
    color: var(--pear);
    border-color: rgba(0, 255, 128, 0.25);
    box-shadow: 0 0 15px var(--pear-glow);
    animation: textGlowPulse 4s ease-in-out infinite;
}

.methodology-step__content {
    flex: 1;
    padding-top: 0.25rem;
}

.methodology-step__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.methodology-step__desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.methodology-step__tools {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.methodology-tag {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    background: var(--bg-card);
    letter-spacing: 0.03em;
}

/* --- Donate Section (Redesigned) --- */
.donate-section {
    max-width: 680px;
    margin: var(--space-2xl) auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
}

/* Billing Toggle */
.donate-toggle {
    display: inline-flex;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-full);
    padding: 4px;
    gap: 0;
}

.donate-toggle__btn {
    position: relative;
    z-index: 1;
    padding: 0.625rem 1.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-tertiary);
    border-radius: var(--radius-full);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
    letter-spacing: 0.02em;
}

.donate-toggle__btn--active {
    color: var(--text-primary);
}

.donate-toggle__slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base);
    box-shadow: 0 0 15px var(--cherry-glow);
}

.donate-toggle[data-active="onetime"] .donate-toggle__slider {
    transform: translateX(100%);
}

/* Amount Buttons */
.donate-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    width: 100%;
}

.donate-amounts--hidden {
    display: none;
}

.donate-amount {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
}

.donate-amount::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 70%);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.donate-amount:hover::after {
    animation: cardShimmer 0.8s ease forwards;
}

.donate-amount:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-medium);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px var(--pear-glow);
}

.donate-amount--active {
    border-color: var(--pear) !important;
    background: rgba(0, 255, 128, 0.05);
    box-shadow: 0 0 30px var(--pear-glow), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.donate-amount--popular {
    border-color: rgba(255, 0, 64, 0.25);
}

.donate-amount__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 0.125rem 0.5rem;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--cherry);
    color: white;
    border-radius: var(--radius-full);
}

.donate-amount__value {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.donate-amount__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Custom Amount */
.donate-custom {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.donate-custom__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-align: center;
}

.donate-custom__input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
    max-width: 320px;
    margin: 0 auto;
}

.donate-custom__input-wrap:focus-within {
    border-color: var(--cherry);
    box-shadow: 0 0 0 3px var(--cherry-glow);
}

.donate-custom__currency {
    padding: 0.75rem 0 0.75rem 1rem;
    font-family: var(--font-mono);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-tertiary);
}

.donate-custom__input {
    flex: 1;
    padding: 0.75rem 0.5rem;
    font-size: 1.125rem;
    font-family: var(--font-mono);
    color: var(--text-primary);
    background: transparent;
    border: none;
    outline: none;
    min-width: 0;
}

.donate-custom__input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

/* Hide number input spinners */
.donate-custom__input::-webkit-outer-spin-button,
.donate-custom__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.donate-custom__input[type=number] {
    -moz-appearance: textfield;
}

.donate-custom__period {
    padding: 0.75rem 1rem 0.75rem 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Impact Callouts */
.donate-impact {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.donate-impact__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding: var(--space-sm) 0;
}

.donate-impact__item svg {
    flex-shrink: 0;
}

/* Donate CTA */
.donate-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
}

.donate-cta .btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.donate-cta__note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Top Donors Leaderboard --- */
.donors-leaderboard {
    max-width: 760px;
    margin: var(--space-2xl) auto 0;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
}

.donors-leaderboard__header {
    display: grid;
    grid-template-columns: 60px 1fr 120px 100px;
    padding: var(--space-md) var(--space-lg);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-tertiary);
}

.donors-leaderboard__row {
    display: grid;
    grid-template-columns: 60px 1fr 120px 100px;
    padding: var(--space-md) var(--space-lg);
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
    align-items: center;
}

.donors-leaderboard__row:last-child {
    border-bottom: none;
}

.donors-leaderboard__row:hover {
    background: var(--bg-card-hover);
}

.donors-leaderboard__row--gold {
    background: rgba(255, 215, 0, 0.02);
}

.donors-leaderboard__row--gold .donors-leaderboard__medal {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #1a1a00;
}

.donors-leaderboard__row--silver .donors-leaderboard__medal {
    background: linear-gradient(135deg, #C0C0C0, #808080);
    color: #1a1a1a;
}

.donors-leaderboard__row--bronze .donors-leaderboard__medal {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: #1a1a1a;
}

.donors-leaderboard__medal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
}

.donors-leaderboard__col--rank {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.donors-leaderboard__col--name {
    font-weight: 500;
    color: var(--text-primary);
}

.donors-leaderboard__col--total {
    text-align: right;
    font-weight: 600;
    color: var(--pear);
}

.donors-leaderboard__col--status {
    text-align: center;
}

.donors-leaderboard__badge {
    display: inline-flex;
    padding: 0.2rem 0.625rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.donors-leaderboard__badge--active {
    color: var(--pear);
    background: rgba(0, 255, 128, 0.08);
    border: 1px solid rgba(0, 255, 128, 0.2);
}

.donors-leaderboard__badge--inactive {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
}

/* --- Partnership Tiers --- */
.partnership-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.partnership-tier {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.partnership-tier::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 70%);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.partnership-tier:hover::after {
    animation: cardShimmer 0.8s ease forwards;
}

.partnership-tier:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-medium);
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35), 0 0 30px var(--pear-glow);
}

.partnership-tier--featured {
    border-color: rgba(255, 0, 64, 0.25);
    box-shadow: 0 0 30px var(--cherry-glow);
}

.partnership-tier__header {
    margin-bottom: var(--space-lg);
}

.partnership-tier__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.partnership-tier:hover .partnership-tier__icon {
    border-color: rgba(0, 255, 128, 0.3);
    box-shadow: 0 0 20px var(--pear-glow);
}

.partnership-tier__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.partnership-tier__range {
    font-size: 0.875rem;
    color: var(--pear);
    font-weight: 500;
}

.partnership-tier__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-tertiary);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.partnership-tier__features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.partnership-tier__features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.partnership-tier__features li::before {
    content: '✓';
    color: var(--pear);
    font-weight: 700;
    flex-shrink: 0;
}

.partnership-tier__btn {
    margin-top: auto;
}

/* --- FAQ Inline Category Dividers --- */
.faq-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0 var(--space-xs);
    margin-top: var(--space-lg);
}

.faq-divider:first-child {
    margin-top: 0;
    padding-top: 0;
}

.faq-divider__label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    white-space: nowrap;
}

.faq-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

/* --- FAQ Accordion --- */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-medium);
}

.faq-item.is-open {
    border-color: rgba(255, 0, 64, 0.15);
    background: var(--bg-card);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: var(--font-primary);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--cherry);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--text-tertiary);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    color: var(--cherry);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
}

.faq-answer__inner {
    padding: 0 var(--space-xl) var(--space-xl);
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- Contact Form --- */
.contact-form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group--row {
    display: flex;
    flex-direction: row;
    gap: var(--space-lg);
}

.form-group--row .form-group {
    flex: 1;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--cherry);
    box-shadow: 0 0 0 3px var(--cherry-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23606070' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* --- Tip Form Specifics --- */
.tip-form {
    max-width: 680px;
    margin: 0 auto;
}

.tip-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    border: 1px solid rgba(0, 255, 128, 0.15);
    border-radius: var(--radius-md);
    background: rgba(0, 255, 128, 0.03);
    margin-bottom: var(--space-2xl);
}

.tip-notice__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--pear);
}

.tip-notice__text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.tip-notice__text strong {
    color: var(--pear);
}

/* --- Legal Sections --- */
.legal-section {
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section__header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.legal-section__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pear);
    border: 1px solid rgba(0, 255, 128, 0.25);
    background: var(--bg-card);
    box-shadow: 0 0 15px var(--pear-glow);
}

.legal-section__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.legal-section__subtitle {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
}

.legal-section__body p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* --- About Page --- */
.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-mission__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-mission__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- About Page: Mission Stat Cards --- */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.about-stat {
    position: relative;
    overflow: hidden;
}

.about-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 70%);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.about-stat:hover::after {
    animation: cardShimmer 0.8s ease forwards;
}

.about-stat__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.about-stat:hover .about-stat__icon {
    border-color: rgba(0, 255, 128, 0.3);
    box-shadow: 0 0 20px var(--pear-glow);
    transform: translateY(-2px);
}

.about-stat__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.about-stat__desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-tertiary);
}

/* --- About Page: Audience Cards --- */
.about-audience {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.about-audience__card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about-audience__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 70%);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.about-audience__card:hover::after {
    animation: cardShimmer 0.8s ease forwards;
}

.about-audience__card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 0, 64, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35), 0 0 30px var(--cherry-glow);
}

.about-audience__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.about-audience__card:hover .about-audience__icon {
    border-color: rgba(255, 0, 64, 0.3);
    box-shadow: 0 0 20px var(--cherry-glow);
    transform: translateY(-2px);
}

.about-audience__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.about-audience__desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-tertiary);
    margin-bottom: var(--space-md);
}

.about-audience__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* --- About Page: Why Section (Text + Visual) --- */
.about-why {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-3xl);
    align-items: center;
}

.about-why__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-why__svg {
    max-width: 240px;
    opacity: 0.7;
}

/* --- About Page: Identity Card --- */
.about-identity {
    max-width: 760px;
    margin: 0 auto;
}

.about-identity__card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    overflow: hidden;
}

.about-identity__glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse,
            rgba(0, 255, 128, 0.06) 0%,
            rgba(255, 0, 64, 0.03) 40%,
            transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.about-identity__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    position: relative;
}

.about-identity__badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    position: relative;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* Switch to 2-col when there are 4+ cards (e.g. donate transparency section) */
.about-values:has(.about-value:nth-child(4)) {
    grid-template-columns: repeat(2, 1fr);
}

.about-value {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Card shimmer sweep on about-value cards */
.about-value::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 70%);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.about-value:hover::after {
    animation: cardShimmer 0.8s ease forwards;
}

.about-value:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 255, 128, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35), 0 0 30px var(--pear-glow);
}

.about-value__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.about-value:hover .about-value__icon {
    border-color: rgba(0, 255, 128, 0.3);
    box-shadow: 0 0 20px var(--pear-glow);
    transform: translateY(-2px);
}

.about-value__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.about-value__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-tertiary);
}

/* --- Inline CTA Banner --- */
.inline-cta {
    position: relative;
    text-align: center;
    padding: var(--space-4xl) var(--space-2xl);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
}

.inline-cta__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 350px;
    background: radial-gradient(ellipse,
            rgba(255, 0, 64, 0.08) 0%,
            rgba(0, 255, 128, 0.04) 40%,
            transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.inline-cta__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    position: relative;
}

.inline-cta__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto var(--space-xl);
    position: relative;
}

.inline-cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    position: relative;
}

/* --- Report Template --- */
.report-header {
    padding: calc(var(--navbar-height) + var(--space-3xl)) 0 var(--space-3xl);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.report-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

.report-header__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.report-header__meta-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.report-header__meta-value {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.report-body {
    padding: var(--space-3xl) 0 var(--space-5xl);
}

/* --- Article Template --- */
.article-header {
    padding: calc(var(--navbar-height) + var(--space-3xl)) 0 var(--space-3xl);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.article-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

.article-header__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.article-header__meta-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.article-header__meta-value {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.article-body {
    padding: var(--space-3xl) 0 var(--space-5xl);
}

.report-toc {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.report-toc__title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.report-toc__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.report-toc__link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.375rem 0;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.report-toc__link:hover {
    color: var(--cherry);
}

.report-toc__link::before {
    content: '→';
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   KEYFRAME ANIMATIONS — Inner Pages
   ============================================ */
@keyframes textGlowPulse {

    0%,
    100% {
        text-shadow: 0 0 8px rgba(0, 255, 128, 0.2);
    }

    50% {
        text-shadow: 0 0 18px rgba(0, 255, 128, 0.5), 0 0 30px rgba(0, 255, 128, 0.15);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes cardShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Section label glow animations */
.label.text-cherry {
    animation: labelGlowCherry 4s ease-in-out infinite;
}

.label.text-pear {
    animation: labelGlowPear 4s ease-in-out infinite;
}

@keyframes labelGlowCherry {

    0%,
    100% {
        text-shadow: 0 0 4px rgba(255, 0, 64, 0.2);
    }

    50% {
        text-shadow: 0 0 12px rgba(255, 0, 64, 0.5), 0 0 24px rgba(255, 0, 64, 0.15);
    }
}

@keyframes labelGlowPear {

    0%,
    100% {
        text-shadow: 0 0 4px rgba(0, 255, 128, 0.2);
    }

    50% {
        text-shadow: 0 0 12px rgba(0, 255, 128, 0.5), 0 0 24px rgba(0, 255, 128, 0.15);
    }
}

/* ============================================
   LEGAL PAGE
   ============================================ */

/* Legal Section Blocks */
.legal-section {
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background: var(--pear);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.legal-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.03) 45%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.03) 55%,
            transparent 70%);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.legal-section:hover {
    border-color: var(--border-medium);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.legal-section:hover::before {
    opacity: 1;
}

.legal-section:hover::after {
    animation: cardShimmer 0.8s ease forwards;
}

.legal-section:last-child {
    margin-bottom: 0;
}

/* Legal Section Header */
.legal-section__header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.legal-section__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pear);
    border: 1px solid rgba(0, 255, 128, 0.25);
    background: var(--bg-card);
    box-shadow: 0 0 15px var(--pear-glow);
    animation: textGlowPulse 4s ease-in-out infinite;
}

.legal-section__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.legal-section__subtitle {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    display: block;
}

/* Legal Section Body */
.legal-section__body {
    position: relative;
    z-index: 2;
}

.legal-section__body p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.legal-section__body p:last-child {
    margin-bottom: 0;
}

.legal-section__body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section__body a {
    color: var(--pear);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.legal-section__body a:hover {
    color: var(--pear-light);
}

/* Legal Lists */
.legal-section__body ul {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.legal-section__body ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.legal-section__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pear);
    opacity: 0.6;
}

/* Case Citations */
.legal-cite {
    display: block;
    font-style: italic;
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding-left: 1rem;
    border-left: 2px solid rgba(0, 255, 128, 0.15);
    margin: var(--space-sm) 0;
    line-height: 1.6;
}

/* Legal Callout Box */
.legal-callout {
    padding: var(--space-lg);
    background: rgba(0, 255, 128, 0.03);
    border: 1px solid rgba(0, 255, 128, 0.12);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.legal-callout--warning {
    background: rgba(255, 0, 64, 0.03);
    border-color: rgba(255, 0, 64, 0.12);
}

.legal-callout p {
    margin-bottom: 0 !important;
}

.legal-callout strong {
    color: var(--pear);
}

.legal-callout--warning strong {
    color: var(--cherry);
}

/* Legal Disclaimer styling */
.legal-section--disclaimer {
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
}

.legal-section--disclaimer .legal-section__icon {
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    animation: none;
}

/* Responsive Legal */
@media (max-width: 768px) {
    .legal-section {
        padding: var(--space-xl);
    }

    .legal-section__header {
        flex-direction: column;
        text-align: center;
    }

    .legal-section__title {
        font-size: 1.25rem;
    }
}

/* ============================================
   RESPONSIVE — Inner Pages
   ============================================ */
@media (max-width: 1024px) {
    .donate-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-tiers {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .donors-leaderboard__header,
    .donors-leaderboard__row {
        grid-template-columns: 40px 1fr 90px 80px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-audience {
        grid-template-columns: 1fr;
    }

    .about-why {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-why__visual {
        display: none;
    }

    .about-mission {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: calc(var(--navbar-height) + var(--space-2xl)) 0 var(--space-2xl);
    }

    .content-section {
        padding: var(--space-3xl) 0;
    }

    .form-group--row {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .methodology-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .methodology-step:not(:last-child)::after {
        display: none;
    }

    .report-header__meta {
        flex-direction: column;
    }

    .article-header__meta {
        flex-direction: column;
    }
}