/* Proxima Nova Font Faces */
@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
        :root {
            --navy: #1b365d;
            --navy-deep: #0d1f35;
            --navy-mid: #142848;
            --teal: #36bbae;
            --teal-light: #4fcfc2;
            --teal-pale: rgba(54,187,174,0.12);
            --gold: #c9a260;
            --gold-light: #e0b875;
            --gold-pale: rgba(201,162,96,0.1);
            --cream: #faf6f0;
            --cream-warm: #f5efe6;
            --warm: #ede6da;
            --text: #1a1a2e;
            --text-soft: #5a5468;
            --text-muted: #9a9095;
            --border: rgba(27,54,93,0.08);
            --border-warm: rgba(201,162,96,0.18);
            --card-bg: #ffffff;
            --radius: 16px;
            --radius-lg: 24px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Proxima Nova', Arial, sans-serif;
            color: var(--text);
            background: var(--cream);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Grain texture */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.02;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 180px;
        }

        /* ═══ HEADER ═══ */
        .site-header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 0 40px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.4s, box-shadow 0.4s;
        }
        .site-header.scrolled {
            background: rgba(13,31,53,0.94);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(54,187,174,0.1);
        }
        .header-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            opacity: 0;
            animation: fadeIn 0.6s 0.1s ease forwards;
        }
        .header-logo img.header-logo-fc {
            height: 36px;
            width: auto;
            filter: brightness(0) invert(1);
        }
        .header-logo-divider {
            width: 1px;
            height: 20px;
            background: rgba(255,255,255,0.2);
        }
        .header-logo-mi {
            height: 38px;
            width: 38px;
            object-fit: cover;
            border-radius: 50%;
        }
        .header-bh {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 13px;
            font-style: normal;
            color: rgba(255,255,255,0.28);
            opacity: 0;
            animation: fadeIn 0.6s 0.2s ease forwards;
        }
        .header-cta {
            padding: 9px 22px;
            background: var(--teal);
            color: white;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.25s, transform 0.25s;
            opacity: 0;
            animation: fadeIn 0.6s 0.3s ease forwards;
        }
        .header-cta:hover {
            background: var(--teal-light);
            transform: translateY(-1px);
        }

        /* ═══ HERO ═══ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--navy-deep);
            color: white;
            position: relative;
            overflow: hidden;
            padding: 100px 48px 80px;
        }

        /* Subtle dot grid */
        .hero-pattern {
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0.04;
            background-image: radial-gradient(circle, rgba(54,187,174,0.8) 1px, transparent 1px);
            background-size: 32px 32px;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 60% at 15% 50%, rgba(54,187,174,0.07) 0%, transparent 65%),
                radial-gradient(ellipse 50% 70% at 85% 25%, rgba(201,162,96,0.05) 0%, transparent 55%),
                radial-gradient(ellipse 60% 40% at 60% 95%, rgba(13,31,53,0.6) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-line {
            position: absolute;
            left: 48px;
            top: 18%;
            bottom: 18%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(54,187,174,0.25) 30%, rgba(201,162,96,0.15) 70%, transparent);
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .hero-content .hero-eyebrow {
            justify-content: center;
        }
        .hero-content .hero-actions {
            justify-content: center;
        }

        .hero-eyebrow {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 28px;
            opacity: 0;
            animation: fadeUp 0.8s 0.3s ease forwards;
        }
        .hero-eyebrow-line {
            width: 28px;
            height: 1px;
            background: var(--gold);
        }
        .hero-eyebrow-text {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
        }

        .hero-badge {
            display: inline-block;
            background: rgba(201,162,96,0.1);
            border: 1px solid rgba(201,162,96,0.22);
            color: var(--gold);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 7px 18px;
            border-radius: 4px;
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeUp 0.8s 0.45s ease forwards;
        }

        .hero h1 {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: clamp(38px, 4.8vw, 62px);
            font-weight: 700;
            line-height: 1.12;
            margin-bottom: 28px;
            letter-spacing: -0.5px;
            opacity: 0;
            animation: fadeUp 1s 0.6s ease forwards;
        }
        .hero h1 em {
            font-style: normal;
            color: var(--teal);
        }

        .hero-desc {
            font-size: clamp(16px, 1.8vw, 19px);
            color: rgba(255,255,255,0.72);
            max-width: 600px;
            line-height: 1.7;
            margin: 0 auto 14px;
            font-weight: 300;
            opacity: 0;
            animation: fadeUp 0.8s 0.8s ease forwards;
        }

        .hero-sub {
            font-size: 14px;
            color: rgba(255,255,255,0.32);
            max-width: 600px;
            line-height: 1.85;
            margin: 0 auto 48px;
            opacity: 0;
            animation: fadeUp 0.8s 0.95s ease forwards;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.8s 1.1s ease forwards;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--teal);
            color: white;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.2px;
        }
        .btn-primary:hover {
            background: var(--teal-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(54,187,174,0.3);
        }
        .btn-primary svg { transition: transform 0.3s; }
        .btn-primary:hover svg { transform: translateY(3px); }

        .btn-ghost {
            font-size: 14px;
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.25s;
        }
        .btn-ghost:hover { color: rgba(255,255,255,0.85); }

        /* Hero stats panel */
        .hero-panel {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            opacity: 0;
            animation: fadeIn 1s 1.2s ease forwards;
        }
        .hero-panel-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.25);
            margin-bottom: 28px;
        }
        .hero-stats {
            display: flex;
            flex-direction: column;
            gap: 28px;
            margin-bottom: 32px;
        }
        .hero-stat {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .hero-stat-num {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: white;
            line-height: 1;
            min-width: 80px;
        }
        .hero-stat-num em {
            font-style: normal;
            color: var(--teal);
        }
        .hero-stat-label {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.68);
            line-height: 1.3;
        }
        .hero-stat-sub {
            font-size: 11px;
            color: rgba(255,255,255,0.22);
            margin-top: 3px;
        }
        .hero-panel-sep {
            height: 1px;
            background: rgba(255,255,255,0.06);
            margin-bottom: 28px;
        }
        .hero-panel-org {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hero-panel-dot {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
            overflow: hidden;
        }
        .hero-panel-dot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-panel-org-name {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.65);
            line-height: 1.3;
        }
        .hero-panel-org-sub {
            font-size: 11px;
            color: rgba(255,255,255,0.25);
            margin-top: 2px;
        }

        .hero-scroll {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: fadeIn 1s 2.2s ease forwards;
        }
        .hero-scroll span {
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.18);
        }
        .scroll-line {
            width: 1px;
            height: 48px;
            background: linear-gradient(to bottom, rgba(54,187,174,0.5), transparent);
            animation: scrollDrop 2.2s ease-in-out infinite;
        }

        /* ═══ QUOTE SECTION ═══ */
        .quote-section {
            background: var(--navy);
            padding: 88px 48px;
            position: relative;
            overflow: hidden;
        }
        .quote-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 80% at 10% 50%, rgba(54,187,174,0.05) 0%, transparent 60%),
                radial-gradient(ellipse 40% 60% at 90% 30%, rgba(201,162,96,0.04) 0%, transparent 50%);
        }
        .quote-inner {
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }
        .quote-ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 32px;
        }
        .quote-ornament-line {
            width: 48px;
            height: 1px;
            background: rgba(201,162,96,0.3);
        }
        .quote-ornament-star { display: none; }
        .quote-text {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: clamp(20px, 2.4vw, 28px);
            font-weight: 600;
            font-style: normal;
            color: rgba(255,255,255,0.88);
            line-height: 1.6;
            margin-bottom: 28px;
        }
        .quote-text em {
            color: var(--teal);
            font-style: normal;
            font-weight: 700;
        }
        .quote-attribution {
            font-size: 12px;
            color: rgba(255,255,255,0.3);
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .quote-attribution strong {
            color: var(--gold);
            font-weight: 600;
        }

        /* ═══ PILLARS / WHAT SECTION ═══ */
        .what-section {
            padding: 100px 48px;
            background: var(--cream);
        }
        .what-inner {
            max-width: 1120px;
            margin: 0 auto;
        }

        .section-eyebrow {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }
        .section-eyebrow-line {
            width: 28px;
            height: 1px;
            background: var(--teal);
        }
        .section-eyebrow-text {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--teal);
        }

        .section-title {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: clamp(26px, 3.2vw, 40px);
            font-weight: 700;
            color: var(--navy);
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .section-title em {
            font-style: normal;
            color: var(--teal);
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-soft);
            max-width: 500px;
            line-height: 1.75;
            margin-bottom: 60px;
            font-weight: 300;
        }

        .pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: var(--warm);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .pillar {
            background: var(--cream);
            padding: 48px 40px;
            transition: background 0.3s;
            position: relative;
        }
        .pillar:hover { background: white; }

        .pillar-num { display: none; }
        .pillar-icon {
            width: 48px;
            height: 48px;
            border-radius: 13px;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .pillar-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--teal);
            fill: none;
        }
        .pillar-accent {
            width: 28px;
            height: 2px;
            background: var(--teal);
            border-radius: 2px;
            margin-bottom: 18px;
        }
        .pillar h3 {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
            line-height: 1.3;
            letter-spacing: -0.2px;
        }
        .pillar p {
            font-size: 14px;
            color: var(--text-soft);
            line-height: 1.78;
            font-weight: 300;
        }

        /* ═══ WHO SECTION ═══ */
        .who-section {
            padding: 0 48px 100px;
            background: var(--cream);
        }
        .who-inner { max-width: 1120px; margin: 0 auto; }

        .who-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .who-card {
            background: white;
            border-radius: var(--radius);
            padding: 36px 30px 32px;
            border: 1px solid var(--border);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
            position: relative;
            overflow: hidden;
        }
        .who-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--teal), var(--gold));
            opacity: 0;
            transition: opacity 0.3s;
        }
        .who-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 56px rgba(27,54,93,0.1), 0 4px 16px rgba(27,54,93,0.05);
            border-color: transparent;
        }
        .who-card:hover::after { opacity: 1; }

        .who-arrow {
            position: absolute;
            top: 24px; right: 24px;
            width: 28px; height: 28px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .who-card:hover .who-arrow {
            background: var(--teal);
            border-color: var(--teal);
        }
        .who-arrow svg {
            width: 12px; height: 12px;
            stroke: var(--text-muted);
            fill: none;
            transition: stroke 0.3s;
        }
        .who-card:hover .who-arrow svg { stroke: white; }

        .who-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(27,54,93,0.05), rgba(54,187,174,0.07));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 18px;
            transition: transform 0.3s;
        }
        .who-card:hover .who-icon { transform: scale(1.08); }

        .who-card h4 {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
            letter-spacing: -0.2px;
        }
        .who-card p {
            font-size: 13px;
            color: var(--text-soft);
            line-height: 1.65;
            font-weight: 300;
        }

        /* ═══ ORNAMENT DIVIDER ═══ */
        .ornament-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 0 48px;
            max-width: 1120px;
            margin: 0 auto;
        }
        .ornament-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--warm));
        }
        .ornament-line.r {
            background: linear-gradient(to left, transparent, var(--warm));
        }
        .ornament-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .ornament-dot {
            width: 5px; height: 5px;
            border-radius: 50%;
            background: var(--teal);
            opacity: 0.35;
        }
        .ornament-diamond {
            width: 6px; height: 6px;
            background: var(--gold);
            opacity: 0.35;
            transform: rotate(45deg);
        }

        /* ═══ BROWSE HEADER ═══ */
        .browse-section {
            padding: 80px 48px 0;
            background: var(--cream);
        }
        .browse-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 32px;
        }
        .browse-right {
            text-align: right;
            flex-shrink: 0;
            padding-bottom: 4px;
        }
        .browse-right p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ═══ FILTER BAR ═══ */
        .filter-section {
            padding: 24px 48px 0;
            background: var(--cream);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s;
        }
        .filter-section.scrolled {
            background: rgba(250,246,240,0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 var(--border);
        }
        .search-bar {
            max-width: 1120px;
            margin: 0 auto 12px;
        }
        .search-input-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }
        .search-icon {
            position: absolute;
            left: 16px;
            color: var(--text-muted);
            pointer-events: none;
        }
        .search-input {
            width: 100%;
            padding: 12px 40px 12px 44px;
            border: 1px solid var(--border);
            border-radius: 12px;
            background: white;
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 15px;
            color: var(--navy);
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .search-input::placeholder {
            color: var(--text-muted);
        }
        .search-input:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(54,187,174,0.15);
        }
        .search-clear {
            position: absolute;
            right: 12px;
            background: none;
            border: none;
            font-size: 20px;
            color: var(--text-muted);
            cursor: pointer;
            padding: 4px 8px;
            line-height: 1;
            display: none;
        }
        .search-clear.visible {
            display: block;
        }
        .search-clear:hover {
            color: var(--navy);
        }

        .filter-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 20px;
        }
        .filter-inner::-webkit-scrollbar { display: none; }

        .filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 20px;
            border: 1px solid var(--border);
            border-radius: 100px;
            background: white;
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-soft);
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.25s;
        }
        .filter-btn:hover {
            border-color: rgba(27,54,93,0.22);
            color: var(--navy);
        }
        .filter-btn.active {
            background: var(--navy);
            border-color: var(--navy);
            color: white;
        }
        .filter-count {
            font-size: 10px;
            font-weight: 700;
            padding: 1px 7px;
            border-radius: 100px;
            background: rgba(27,54,93,0.07);
            color: var(--text-muted);
        }
        .filter-btn.active .filter-count {
            background: rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.8);
        }

        /* ═══ RESOURCE GRID ═══ */
        .content {
            max-width: 1120px;
            margin: 0 auto;
            padding: 28px 48px 100px;
        }
        .result-count {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 28px;
        }
        .resource-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(336px, 1fr));
            gap: 20px;
        }

        .resource-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(16px);
            animation: cardIn 0.5s ease forwards;
        }
        .resource-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--teal) 0%, rgba(54,187,174,0) 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 56px rgba(27,54,93,0.09), 0 4px 16px rgba(27,54,93,0.05);
            border-color: rgba(54,187,174,0.18);
        }
        .resource-card:hover::before { opacity: 1; }

        /* Featured card */
        .resource-card.featured {
            background: linear-gradient(145deg, rgba(201,162,96,0.04), white 60%);
            border-color: var(--border-warm);
        }
        .resource-card.featured::before {
            background: linear-gradient(90deg, var(--gold) 0%, var(--teal) 50%, rgba(54,187,174,0) 100%);
            opacity: 0.8;
        }
        .featured-badge {
            position: absolute;
            top: 0; right: 28px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: white;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 6px 14px 9px;
            border-radius: 0 0 10px 10px;
        }

        .card-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        .card-tag {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            padding: 4px 10px;
            border-radius: 4px;
        }
        .tag-shluchim { background: #ede9fe; color: #6d28d9; }
        .tag-campus   { background: #dbeafe; color: #1d4ed8; }
        .tag-teens    { background: #fce7f3; color: #be185d; }
        .tag-women    { background: #fef3c7; color: #b45309; }
        .tag-children { background: #d1fae5; color: #047857; }
        .tag-adults   { background: #fee2e2; color: #b91c1c; }
        .tag-athome   { background: rgba(54,187,174,0.1); color: #0f766e; }
        .tag-sermon   { background: #f3e8ff; color: #7c3aed; }
        .tag-mental-health { background: #e0f2fe; color: #0369a1; }
        .tag-inclusion { background: #ecfdf5; color: #059669; }
        .tag-holiday  { background: #fff7ed; color: #c2410c; }
        .tag-practical { background: #f1f5f9; color: #475569; }

        .card-title {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            line-height: 1.35;
            letter-spacing: -0.2px;
            margin-bottom: 10px;
        }
        .card-description {
            font-size: 13.5px;
            color: var(--text-soft);
            line-height: 1.72;
            flex: 1;
            margin-bottom: 24px;
            font-weight: 300;
        }
        .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
        .price-tag {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--teal);
            letter-spacing: 0.3px;
        }
        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            background: var(--navy);
            color: white;
            border: none;
            border-radius: 100px;
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
        }
        .download-btn:hover {
            background: var(--teal);
            transform: scale(1.03);
        }
        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 100px;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.2s;
        }
        .share-btn:hover {
            border-color: var(--teal);
            color: var(--teal);
        }
        .share-btn.copied {
            border-color: var(--teal);
            background: var(--teal-pale);
            color: var(--teal);
        }
        .resource-card.highlighted {
            box-shadow: 0 0 0 3px var(--teal), 0 8px 30px rgba(54,187,174,0.2);
            transition: box-shadow 0.3s;
        }

        .empty-state {
            text-align: center;
            padding: 100px 20px;
            display: none;
        }
        .empty-state.visible { display: block; }
        .empty-state h3 {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }
        .empty-state p { color: var(--text-soft); font-size: 15px; }

        /* ═══ CTA BANNER ═══ */
        .cta-banner {
            background: var(--navy);
            padding: 0 48px;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 50% 80% at 85% 50%, rgba(54,187,174,0.08) 0%, transparent 60%),
                radial-gradient(ellipse 40% 60% at 10% 50%, rgba(201,162,96,0.05) 0%, transparent 50%);
        }
        .cta-banner-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 64px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
        }
        .cta-banner-text h3 {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: clamp(22px, 2.4vw, 28px);
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .cta-banner-text p {
            font-size: 15px;
            color: rgba(255,255,255,0.5);
            line-height: 1.7;
            max-width: 480px;
        }
        .cta-banner-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--teal);
            color: white;
            border-radius: 100px;
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .cta-banner-btn:hover {
            background: var(--teal-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(54,187,174,0.3);
        }
        .cta-banner-btn svg {
            transition: transform 0.3s;
        }
        .cta-banner-btn:hover svg {
            transform: translate(3px, -3px);
        }
        @media (max-width: 900px) {
            .cta-banner { padding-left: 24px; padding-right: 24px; }
            .cta-banner-inner { flex-direction: column; text-align: center; align-items: center; }
            .cta-banner-text p { max-width: 100%; }
        }

        /* ═══ FOOTER ═══ */
        .footer {
            background: var(--navy-deep);
            color: rgba(255,255,255,0.45);
            padding: 80px 48px 48px;
            position: relative;
            overflow: hidden;
        }
        .footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 55% 70% at 15% 50%, rgba(54,187,174,0.04) 0%, transparent 55%),
                radial-gradient(ellipse 40% 50% at 85% 30%, rgba(201,162,96,0.03) 0%, transparent 50%);
        }
        .footer-grid {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 64px;
            align-items: start;
            position: relative;
        }
        .footer-logo {
            margin-bottom: 16px;
        }
        .footer-logo img {
            height: 32px;
            width: auto;
            filter: brightness(0) invert(1);
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.75;
            max-width: 380px;
            margin-bottom: 28px;
        }
        .footer-desc a {
            color: var(--teal);
            text-decoration: none;
        }
        .footer-desc a:hover { text-decoration: underline; }
        .footer-bh {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--gold);
            opacity: 0.5;
            letter-spacing: 1px;
        }
        .footer-right { padding-top: 8px; }
        .footer-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.2);
            margin-bottom: 16px;
        }
        .footer-initiative {
            font-family: 'Proxima Nova', Arial, sans-serif;
            font-size: 17px;
            font-weight: 600;
            color: rgba(255,255,255,0.55);
            line-height: 1.4;
            margin-bottom: 8px;
        }
        .footer-initiative-sub {
            font-size: 13px;
            color: rgba(255,255,255,0.2);
            margin-bottom: 32px;
        }
        .footer-free {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border: 1px solid rgba(54,187,174,0.15);
            border-radius: 8px;
            font-size: 13px;
            color: rgba(255,255,255,0.35);
        }
        .footer-free strong { color: var(--teal); font-weight: 600; }
        .footer-orgs {
            margin-top: 12px;
        }
        .footer-org {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .footer-org-logo {
            flex-shrink: 0;
        }
        .footer-org-logo-mi {
            height: 44px;
            width: auto;
            border-radius: 50%;
        }
        .footer-org-logo-fc {
            height: 26px;
            width: auto;
            filter: brightness(0) invert(1);
            opacity: 0.65;
        }
        .footer-bottom {
            max-width: 1120px;
            margin: 48px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.05);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .footer-bottom p {
            font-size: 12px;
            color: rgba(255,255,255,0.18);
        }

        /* ═══ ANIMATIONS ═══ */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes cardIn {
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes scrollDrop {
            0%, 100% { opacity: 0.4; transform: scaleY(1); }
            50%       { opacity: 0.9; transform: scaleY(0.75); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.08s; }
        .reveal-delay-2 { transition-delay: 0.16s; }
        .reveal-delay-3 { transition-delay: 0.24s; }
        .reveal-delay-4 { transition-delay: 0.32s; }
        .reveal-delay-5 { transition-delay: 0.40s; }
        .reveal-delay-6 { transition-delay: 0.48s; }

        /* ═══ RESPONSIVE ═══ */
        @media (max-width: 1024px) {
            .hero-content { padding: 0 24px; }
        }
        @media (max-width: 900px) {
            .hero, .what-section, .who-section,
            .browse-section, .filter-section,
            .quote-section, .footer { padding-left: 24px; padding-right: 24px; }
            .content { padding-left: 24px; padding-right: 24px; }
            .pillars { grid-template-columns: 1fr; gap: 2px; }
            .who-grid { grid-template-columns: 1fr 1fr; }
            .browse-inner { flex-direction: column; align-items: flex-start; }
            .browse-right { text-align: left; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .ornament-divider { padding: 0 24px; }
        }
        @media (max-width: 640px) {
            .hero { padding: 88px 20px 64px; min-height: auto; }
            .hero h1 { font-size: 42px; }
            .hero-panel { display: none; }
            .hero-line { display: none; }
            .who-grid { grid-template-columns: 1fr; }
            .resource-grid { grid-template-columns: 1fr; }
            .content { padding: 20px 16px 64px; }
            .site-header { padding: 0 20px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
