/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

button {
    cursor: none;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== CSS VARIABLES ===== */
:root {
    --bg: #0a0e0b;
    --bg2: #0f150f;
    --bg3: #131a12;
    --surface: #161e15;
    --surface2: #1d2a1c;
    --gold: #d4a843;
    --gold-light: #f0c95f;
    --green: #2d5a27;
    --green-bright: #4a9940;
    --text: #e8ede6;
    --text-muted: #8a9e86;
    --text-dim: #5a6e58;
    --red: #c94040;
    --border: rgba(212, 168, 67, 0.15);
    --radius: 12px;
    --radius-sm: 6px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
    mix-blend-mode: difference;
}

.cursor.expand {
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(212, 168, 67, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: top 0.12s ease, left 0.12s ease;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.cricket-ball {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 35% 35%, #c94040 0%, #8b1e1e 100%);
    border-radius: 50%;
    position: relative;
    animation: spin 1.2s linear infinite;
    box-shadow: 0 0 30px rgba(201, 64, 64, 0.4);
}

.seam {
    position: absolute;
    width: 26px;
    height: 26px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
}

.seam2 {
    transform: translate(-50%, -50%) rotate(-30deg);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 20px;
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    font-size: 1.1rem;
    animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5
    }

    50% {
        opacity: 1
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5%;
    z-index: 1000;
    transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 14, 11, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 5%;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text em {
    color: var(--gold);
    font-style: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-subscribe {
    background: var(--gold);
    color: #0a0e0b;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    transition: background var(--transition), transform var(--transition);
}

.btn-subscribe:hover {
    background: var(--gold-light);
    transform: scale(1.04);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
    to {
        background-position: 60px 60px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(45, 90, 39, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: breathe 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 64, 64, 0.12);
    border: 1px solid rgba(201, 64, 64, 0.3);
    color: #e87070;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease both;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-title .line {
    display: block;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--d, 0) * 1s + 0.3s);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.accent-text {
    color: var(--green-bright);
}

.gold-text {
    color: var(--gold);
}

.hero-sub {
    max-width: 520px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeUp 1s ease 0.9s both;
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-primary {
    background: var(--gold);
    color: #0a0e0b;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    display: inline-block;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.4);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.3);
}

.btn-primary.full-width {
    width: 100%;
    text-align: center;
    border-radius: var(--radius);
}

.btn-ghost {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-block;
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* TICKER */
.hero-ticker {
    display: flex;
    align-items: center;
    background: rgba(45, 90, 39, 0.2);
    border: 1px solid rgba(74, 153, 64, 0.25);
    border-radius: 100px;
    overflow: hidden;
    width: 100%;
    max-width: 700px;
    animation: fadeUp 1s ease 1.1s both;
}

.ticker-label {
    background: var(--red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 0.5rem 0.9rem;
    flex-shrink: 0;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeUp 1s ease 1.3s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.3;
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.01em;
    line-height: 1;
    color: var(--text);
}

/* ===== FEATURED ===== */
.featured {
    padding: 6rem 5%;
    background: var(--bg2);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.featured-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.card-large {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.card-small {
    display: flex;
    flex-direction: column;
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
}

.card-large .card-img-wrap {
    height: 300px;
}

.card-small .card-img-wrap {
    height: 180px;
}

.card-img-wrap img {
    height: 100%;
    transition: transform 0.6s ease;
}

.featured-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 11, 0.7) 0%, transparent 60%);
}

.card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: #0a0e0b;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.card-meta {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.03em;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.35;
    color: var(--text);
}

.card-large .card-title {
    font-size: 1.5rem;
}

.card-excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: gap var(--transition);
    margin-top: auto;
}

.read-more:hover {
    gap: 10px;
}

/* ===== STATS BANNER ===== */
.stats-banner {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--green) 0%, #1a3a17 100%);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px,
            transparent 1px, transparent 40px);
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(232, 237, 230, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 6rem 5%;
    background: var(--bg);
}

.filter-tabs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #0a0e0b;
    border-color: var(--gold);
    font-weight: 700;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    animation: fadeUp 0.5s ease both;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 168, 67, 0.3);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    height: 100%;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.07);
}

.blog-card-cat {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: rgba(10, 14, 11, 0.85);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.blog-card-body {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.blog-card-meta {
    font-size: 0.73rem;
    color: var(--text-dim);
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--text);
}

.blog-card-excerpt {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    font-size: 0.73rem;
    color: var(--text-dim);
}

.blog-card-read {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}

.blog-card:hover .blog-card-read {
    gap: 8px;
}

.load-more-wrap {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.85rem 2.5rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition);
}

.btn-load-more:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 6rem 5%;
    background: var(--bg3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(45, 90, 39, 0.15) 0%, transparent 70%);
}

.big-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    line-height: 1.5;
    color: var(--text);
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    font-style: italic;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: 0;
    vertical-align: -1.5rem;
    opacity: 0.7;
}

.quote-author {
    margin-top: 1.5rem;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 7rem 5%;
    background: var(--bg2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: 0.01em;
}

.about-title em {
    color: var(--gold);
    font-style: normal;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.about-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.about-tags span {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.78rem;
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    transition: all var(--transition);
}

.about-tags span:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* PITCH ART */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pitch-art {
    width: 260px;
    height: 380px;
    background: linear-gradient(to bottom, #2d5a27 0%, #3a7a32 50%, #2d5a27 100%);
    border-radius: 16px;
    position: relative;
    border: 2px solid rgba(74, 153, 64, 0.3);
    box-shadow: 0 0 60px rgba(45, 90, 39, 0.4), inset 0 0 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.pitch-art::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.pitch-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-50%);
}

.pitch-crease {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    bottom: 80px;
}

.crease-far {
    bottom: auto;
    top: 80px;
}

.stumps {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    align-items: flex-end;
}

.stumps-far {
    bottom: auto;
    top: 40px;
    transform: translateX(-50%) scaleY(-1);
}

.stump {
    width: 4px;
    height: 35px;
    background: linear-gradient(to bottom, #f5e6c8, #c9a96e);
    border-radius: 2px;
}

.bail {
    position: absolute;
    top: 0;
    height: 4px;
    width: 18px;
    background: #f5e6c8;
    border-radius: 2px;
}

.bail:nth-child(4) {
    left: 0;
}

.bail:nth-child(5) {
    right: 0;
}

.ball-anim {
    position: absolute;
    font-size: 2.5rem;
    animation: ballBounce 3s ease-in-out infinite;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

@keyframes ballBounce {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    25% {
        transform: translate(-30%, -80%) rotate(90deg);
    }

    50% {
        transform: translate(10%, -30%) rotate(180deg);
    }

    75% {
        transform: translate(-70%, -70%) rotate(270deg);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #060908;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    padding: 4rem 5%;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-brand .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-links-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-links-col a:hover {
    color: var(--text);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-newsletter h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.newsletter-form {
    display: flex;
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.newsletter-form input {
    flex: 1;
    background: var(--surface);
    border: none;
    outline: none;
    padding: 0.7rem 1rem;
    font-size: 0.83rem;
    color: var(--text);
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: var(--text-dim);
}

.newsletter-form button {
    background: var(--gold);
    color: #0a0e0b;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.7rem 1.2rem;
    transition: background var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 5%;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-dim);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    color: var(--text-dim);
    font-size: 1.1rem;
    transition: color var(--transition), transform var(--transition);
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 9, 8, 0.85);
    backdrop-filter: blur(12px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-overlay.open .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color var(--transition);
}

.modal-close:hover {
    color: var(--text);
}

.modal-icon {
    font-size: 3rem;
}

.modal h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.03em;
}

.modal p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.modal input {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text);
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition);
}

.modal input:focus {
    border-color: var(--gold);
}

.modal-note {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ===== BACK TO TOP ===== */
.back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: #0a0e0b;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.back-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--d, 0s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .card-large {
        grid-column: auto;
        grid-row: auto;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: var(--surface);
        flex-direction: column;
        padding: 6rem 2.5rem;
        gap: 2rem;
        transition: right var(--transition);
        border-left: 1px solid var(--border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
        border-radius: var(--radius);
    }

    .filter-tabs {
        gap: 0.4rem;
    }
}