/* ==========================================================================
   Verdict - Main Stylesheet
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */

:root {
    /* Colors */
    --background: #05070f;
    --background-alt: #0b1220;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-alt: rgba(255, 255, 255, 0.08);
    --text: rgba(255, 255, 255, 0.92);
    --text-muted: rgba(255, 255, 255, 0.68);
    --accent: #4f7dff;
    --accent-soft: rgba(79, 125, 255, 0.2);
    --accent-gradient: linear-gradient(135deg, #4f7dff, #7f58ff);
    --border: rgba(255, 255, 255, 0.12);

    /* Verdict Plus Gradient */
    --verdict-gradient-start: #3370e5;
    --verdict-gradient-end: #9e5cf0;
    --verdict-gradient-shadow: rgba(158, 92, 240, 0.35);

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    --font-size-h1: clamp(2.6rem, 5vw, 3.6rem);
    --font-size-h2: clamp(1.9rem, 4vw, 2.5rem);
    --font-size-h3: clamp(1.3rem, 3vw, 1.6rem);
    --font-size-body: clamp(1rem, 1.8vw, 1.1rem);

    /* Spacing & Layout */
    --max-width: 1100px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 30px;

    /* Animation */
    --transition: 200ms ease;
}

/* ==========================================================================
   2. Base & Reset Styles
   ========================================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background: transparent;
    color: var(--text);
    line-height: 1.6;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: var(--font-size-body);
}

h1 {
    font-size: var(--font-size-h1);
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h2 {
    font-size: var(--font-size-h2);
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: -0.015em;
    font-weight: 700;
}

h3 {
    font-size: var(--font-size-h3);
    line-height: 1.3;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    font-weight: 600;
}

p {
    font-size: var(--font-size-body);
    margin: 0 0 16px;
}

/* ==========================================================================
   3. Utility Classes
   ========================================================================== */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

/* Non-breaking text utility - use instead of &nbsp; */
.nowrap {
    white-space: nowrap;
}

/* ==========================================================================
   4. Background & Overlay
   ========================================================================== */

.background {
    position: fixed;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: blur(30px);
    z-index: -2;
    transition: opacity 400ms ease-in-out;
}

.background-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 9, 15, 0.32) 0%,
        rgba(6, 9, 15, 0.58) 55%,
        rgba(6, 9, 15, 0.72) 85%,
        rgba(6, 9, 15, 0.82) 100%
    );
    z-index: -1;
    pointer-events: none;
}

.background-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' fill='rgba(255,255,255,0.02)'/%3E%3Ccircle cx='6' cy='6' r='1.15' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='50' cy='18' r='0.9' fill='rgba(255,255,255,0.04)'/%3E%3Ccircle cx='92' cy='12' r='1.2' fill='rgba(79,125,255,0.09)'/%3E%3Ccircle cx='12' cy='58' r='0.8' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='70' cy='70' r='1.1' fill='rgba(127,88,255,0.08)'/%3E%3Ccircle cx='34' cy='88' r='0.95' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    opacity: 0.45;
    pointer-events: none;
}

/* ==========================================================================
   5. Card Base Class
   ========================================================================== */

.card {
    padding: 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.card--interactive:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 125, 255, 0.35);
    background: rgba(79, 125, 255, 0.08);
}

.card--subtle {
    background: rgba(255, 255, 255, 0.03);
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */

.verdict-plus-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 54px;
    padding: 0 24px;
    border-radius: var(--radius-md);
    border: 0;
    background: linear-gradient(135deg, var(--verdict-gradient-start) 0%, var(--verdict-gradient-end) 100%);
    box-shadow: 0 10px 16px var(--verdict-gradient-shadow);
    color: #ffffff;
    font: 600 17px/1.2 "Inter", "SF Pro Text", system-ui, sans-serif;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
    text-decoration: none;
}

.verdict-plus-btn:hover,
.verdict-plus-btn:focus-visible {
    filter: brightness(1.06);
    box-shadow: 0 12px 20px rgba(158, 92, 240, 0.4);
    transform: translateY(-1px);
}

.verdict-plus-btn:focus-visible {
    outline: 2px solid rgba(158, 92, 240, 0.65);
    outline-offset: 2px;
}

.verdict-plus-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(158, 92, 240, 0.3);
    filter: brightness(1);
}

.verdict-plus-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    filter: none;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* ==========================================================================
   7. Header & Hero Section
   ========================================================================== */

.site-header {
    position: relative;
    z-index: 10;
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.site-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

main {
    position: relative;
    z-index: 1;
}

.hero {
    padding: 60px 24px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 56px;
    align-items: center;
}

.hero-content h1 {
    margin: 12px 0 20px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-content p {
    color: var(--text-muted);
    max-width: 520px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(79, 125, 255, 0.18);
    color: #dce6ff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 32px 0 24px;
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: clamp(150px, 40vw, 180px);
    max-width: 100%;
    background: transparent;
}

.app-store-badge img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.highlight-pill {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-media picture {
    display: block;
}

.hero-screenshot {
    width: min(360px, 100%);
    border-radius: var(--radius-2xl);
    display: block;
    transition: transform 600ms ease-in-out;
    animation: float 6s ease-in-out infinite;
    position: relative;
}

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

/* ==========================================================================
   8. Sections
   ========================================================================== */

.section {
    padding: 80px 24px;
}

.section-header {
    max-width: 760px;
    margin-bottom: 48px;
    position: relative;
}

.section-header h2 {
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   9. Feature Cards
   ========================================================================== */

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-card h3 {
    margin: 0;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
}

.feature-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
}

/* ==========================================================================
   10. Feature Showcase (Split Sections)
   ========================================================================== */

.feature-showcase {
    display: grid;
    gap: 200px;
}

.feature-showcase .section-header {
    margin-bottom: 28px;
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    align-items: center;
    padding: 40px 32px 50px;
    position: relative;
}

.split:last-child {
    padding-bottom: 40px;
}

.split h3 {
    font-size: 2rem;
    margin-bottom: 18px;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
}

.bullet-list li {
    display: block;
    color: var(--text-muted);
    line-height: 1.6;
}

.bullet-list span {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-frame picture {
    display: block;
}

.screenshot-frame img {
    width: min(320px, 100%);
    border-radius: var(--radius-xl);
    display: block;
    margin: 0 auto;
    transition: transform 400ms ease;
}

.screenshot-frame img:hover {
    transform: translateY(-8px) scale(1.02);
}

/* ==========================================================================
   11. Timeline
   ========================================================================== */

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.timeline-step {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.timeline-step strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
}

.timeline-step h4 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.timeline-step p {
    margin: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   12. Verdict Plus Section
   ========================================================================== */

.verdict-plus {
    background: rgba(79, 125, 255, 0.12);
    border: 1px solid rgba(79, 125, 255, 0.3);
    border-radius: var(--radius-2xl);
    padding: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: center;
}

.verdict-plus h3 {
    font-size: 2rem;
    margin: 0 0 16px;
}

.verdict-plus p {
    color: rgba(222, 232, 255, 0.9);
}

.verdict-plus-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.verdict-plus-features li {
    padding: 18px 20px;
    background: rgba(8, 13, 22, 0.75);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(225, 234, 255, 0.85);
}

/* ==========================================================================
   13. Popular Section
   ========================================================================== */

.popular-section {
    padding: 80px 24px;
    position: relative;
}

.popular-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 40px;
    border-radius: 32px;
    background: radial-gradient(circle at top, rgba(79, 125, 255, 0.25), rgba(11, 18, 30, 0.85) 55%, rgba(6, 9, 15, 0.95) 100%);
    border: 1px solid rgba(79, 125, 255, 0.22);
    box-shadow: 0 40px 80px rgba(3, 6, 12, 0.6);
}

.popular-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.popular-header h2 {
    margin: 0 0 12px;
}

.popular-header p {
    margin: 0;
    color: rgba(224, 233, 255, 0.78);
    max-width: 520px;
}

.popular-updated {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(219, 229, 255, 0.6);
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(219, 229, 255, 0.25);
    background: rgba(3, 6, 12, 0.45);
}

.popular-rows {
    display: grid;
    gap: 32px;
}

.popular-row {
    display: grid;
    gap: 18px;
}

.popular-row-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(219, 229, 255, 0.72);
}

.popular-row-list {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 12px 0 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    /* Keyboard navigation support */
    scroll-behavior: smooth;
}

.popular-row-list:focus {
    outline: 2px solid rgba(79, 125, 255, 0.5);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

.popular-row-list::-webkit-scrollbar {
    height: 6px;
}

.popular-row-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
}

.popular-empty {
    color: rgba(219, 229, 255, 0.65);
    font-size: 0.9rem;
    display: inline-flex;
    padding: 10px 0;
}

.popular-empty--error {
    color: rgba(255, 100, 100, 0.9);
}

.popular-card {
    position: relative;
    display: block;
    min-width: 140px;
    max-width: 180px;
    aspect-ratio: 2 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 25px 40px rgba(8, 12, 22, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 350ms ease, box-shadow 350ms ease, border 350ms ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.popular-card:hover,
.popular-card:focus {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 35px 60px rgba(8, 12, 22, 0.85),
        0 0 0 1px rgba(79, 125, 255, 0.5),
        0 0 40px rgba(79, 125, 255, 0.3);
    border-color: rgba(79, 125, 255, 0.5);
}

.popular-card:focus {
    outline: none;
}

.popular-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popular-card-meta {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.92) 100%);
    color: #fff;
}

.popular-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 4px;
}

.popular-card-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.popular-skeleton {
    min-width: 140px;
    max-width: 180px;
    aspect-ratio: 2 / 3;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.16));
    animation: pulse 1.6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

@keyframes pulse {
    0% { opacity: 0.35; }
    50% { opacity: 0.6; }
    100% { opacity: 0.35; }
}

/* ==========================================================================
   14. Testimonials
   ========================================================================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 28px;
    color: var(--text-muted);
}

.testimonial-card strong {
    display: block;
    color: #ffffff;
    margin-top: 18px;
}

/* ==========================================================================
   15. FAQ
   ========================================================================== */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.faq-item {
    padding: 26px;
}

.faq-item h4 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   16. Final CTA
   ========================================================================== */

.final-cta {
    text-align: center;
    padding: 20px 24px 80px;
}

.final-cta h2 {
    margin-bottom: 18px;
}

.final-cta p {
    max-width: 520px;
    margin: 0 auto 32px;
    color: var(--text-muted);
}

.final-cta .hero-ctas {
    justify-content: center;
    width: 100%;
}

.final-cta .app-store-badge {
    width: clamp(150px, 45vw, 170px);
    margin: 0 auto;
}

/* ==========================================================================
   17. Footer
   ========================================================================== */

.site-footer {
    padding: 48px 24px 32px;
    background: rgba(6, 9, 15, 0.4);
    backdrop-filter: blur(22px);
    position: relative;
    isolation: isolate;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -36px;
    height: 36px;
    background: linear-gradient(180deg, rgba(6, 9, 15, 0), rgba(6, 9, 15, 0.4));
    pointer-events: none;
    z-index: -1;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

.footer-top p {
    margin: 0;
    color: var(--text-muted);
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   18. Donation Chips
   ========================================================================== */

.donation-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.donation-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    position: relative;
    overflow: visible;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
}

.donation-chip:focus-visible {
    outline: 2px solid rgba(79, 125, 255, 0.8);
    outline-offset: 2px;
}

.donation-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.donation-chip::after {
    content: attr(data-status);
    position: absolute;
    left: 50%;
    bottom: -38px;
    transform: translate(-50%, 10px);
    background: rgba(72, 188, 120, 0.92);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
    white-space: nowrap;
    z-index: 1;
}

.donation-chip[data-status]::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.donation-chip[data-status-state="error"]::after {
    background: rgba(239, 68, 68, 0.95);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin: 0;
}

/* ==========================================================================
   19. Media Queries
   ========================================================================== */

/* Tablet and below */
@media (max-width: 880px) {
    .hero {
        padding-top: 40px;
    }

    .verdict-plus {
        padding: 32px;
    }

    .split {
        padding: 24px 20px 40px;
    }

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

/* Medium screens */
@media (max-width: 720px) {
    .hero {
        justify-items: center;
    }

    .hero-screenshot {
        width: min(320px, 100%);
        margin: 0 auto;
    }

    .hero-media {
        width: 100%;
    }

    .hero-media picture {
        margin: 0 auto;
    }

    .screenshot-frame img {
        width: min(280px, 100%);
    }
}

/* Desktop - alternate layout for split sections */
@media (min-width: 900px) {
    #watchlists .split-visual,
    #shareables .split-visual {
        order: -1;
    }
}

/* Mobile */
@media (max-width: 560px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-secondary {
        justify-content: center;
    }

    .hero-media {
        min-height: 320px;
    }

    .section {
        padding: 90px 20px;
    }

    .site-footer {
        padding: 40px 20px 32px;
    }

    .footer-inner {
        text-align: center;
        gap: 24px;
    }

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

    .footer-links {
        justify-content: center;
    }

    .donation-chips {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .donation-chip {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   20. Print Styles
   ========================================================================== */

@media print {
    .background,
    .background-overlay,
    .skip-link {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }
}
