/* Detective Chain — Luxury Dark Intelligence Theme */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #d4a853;
    --gold-light: #f0d78c;
    --gold-dark: #a67c32;
    --emerald: #34d399;
    --emerald-dark: #059669;
    --crimson: #f43f5e;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --purple: #8b5cf6;

    --bg-primary: #0f1923;
    --bg-secondary: #132030;
    --bg-card: #182538;
    --bg-card-hover: #1e2d42;
    --bg-elevated: #243548;

    --border: rgba(212, 168, 83, 0.1);
    --border-hover: rgba(212, 168, 83, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.05);

    --text: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --glow-gold: rgba(212, 168, 83, 0.12);
    --glow-emerald: rgba(52, 211, 153, 0.1);
    --glow-crimson: rgba(244, 63, 94, 0.1);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;

    --font: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(52, 211, 153, 0.02) 0%, transparent 50%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Scanline Effect */
.scanline {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.015) 2px,
        rgba(0, 0, 0, 0.015) 4px
    );
}

/* Canvas */
#particleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15, 25, 35, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    transition: all 0.3s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 36px; height: 36px;
    color: var(--gold);
    filter: drop-shadow(0 0 8px var(--glow-gold));
}

.logo-icon svg {
    width: 100%; height: 100%;
}

.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--gold);
}

.logo-by {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.7;
    margin-left: -4px;
    align-self: flex-end;
    margin-bottom: 2px;
}

/* Powered By Section */
.powered-by {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.powered-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.powered-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.2s;
}

.powered-link:hover {
    color: var(--gold-light);
}

.powered-link img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 83, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
    color: var(--gold);
    background: rgba(212, 168, 83, 0.08);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font);
}

.nav-dropdown-toggle:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-dropdown-toggle.has-active {
    color: var(--gold);
}

.nav-dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
    opacity: 0.6;
}

.nav-dropdown.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: rgba(15, 25, 35, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-4px);
    transition: all 0.2s ease;
    z-index: 1001;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown-menu a.active {
    color: var(--gold);
    background: rgba(212, 168, 83, 0.08);
}

.nav-highlight {
    color: var(--gold) !important;
    font-weight: 600;
}

.nav-highlight:hover {
    background: var(--glow-gold) !important;
}

.nav-wallet {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000 !important;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.nav-wallet:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--glow-gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
}

.nav-premium {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff !important;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.nav-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #8b5cf6, #c084fc) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 168, 83, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 83, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 168, 83, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--text);
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-alt {
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Box */
.hero-search {
    margin-bottom: 48px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 60px;
    padding: 6px 6px 6px 24px;
    gap: 12px;
    transition: all 0.3s ease;
    max-width: 640px;
    margin: 0 auto;
}

.search-box:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--glow-gold), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.search-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.92rem;
    font-family: var(--font-mono);
    outline: none;
    min-width: 0;
}

.search-box input::placeholder {
    color: var(--text-muted);
    font-family: var(--font);
}

.search-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px var(--glow-gold);
}

.search-hint {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-mono);
    letter-spacing: -1px;
}

.hero-stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Loading Pulse Animation */
.loading-pulse .stat-loader {
    display: inline-block;
    width: 48px;
    height: 24px;
    background: linear-gradient(90deg, 
        rgba(212, 168, 83, 0.1) 25%, 
        rgba(212, 168, 83, 0.3) 50%, 
        rgba(212, 168, 83, 0.1) 75%
    );
    background-size: 200% 100%;
    border-radius: 6px;
    animation: statShimmer 1.5s ease-in-out infinite;
}

.loading-pulse.hero-stat-value {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes statShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Loading dots animation alternative */
.stat-dots::after {
    content: '';
    animation: loadDots 1.5s steps(4, end) infinite;
}

@keyframes loadDots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
}

/* ===== SECTIONS ===== */
section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(212, 168, 83, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.12);
    border-radius: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== GROKIE INU SECTION ===== */
.grokie-section {
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;
}

.grokie-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding: 56px 48px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.04), rgba(139, 92, 246, 0.03));
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.grokie-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--purple), var(--gold));
}

.grokie-left {
    position: relative;
}

.grokie-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(212, 168, 83, 0.4);
    box-shadow:
        0 0 0 8px rgba(212, 168, 83, 0.06),
        0 0 40px rgba(212, 168, 83, 0.2),
        0 0 80px rgba(212, 168, 83, 0.08);
    animation: grokie-glow 4s ease-in-out infinite;
    object-fit: cover;
}

@keyframes grokie-glow {
    0%, 100% {
        box-shadow:
            0 0 0 8px rgba(212, 168, 83, 0.06),
            0 0 40px rgba(212, 168, 83, 0.15),
            0 0 80px rgba(212, 168, 83, 0.05);
    }
    50% {
        box-shadow:
            0 0 0 10px rgba(212, 168, 83, 0.1),
            0 0 60px rgba(212, 168, 83, 0.25),
            0 0 100px rgba(212, 168, 83, 0.1);
    }
}

.grokie-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grokie-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.25);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.grokie-right h2 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.grokie-right p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 520px;
}

.grokie-ca {
    margin-bottom: 24px;
    width: 100%;
    max-width: 480px;
}

.ca-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.ca-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.ca-box:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 83, 0.05);
}

.ca-box code {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--gold);
    flex: 1;
    word-break: break-all;
}

.ca-copy {
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.ca-box:hover .ca-copy {
    transform: scale(1.15);
}

.grokie-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.grokie-link {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
}

.grokie-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 83, 0.05);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .grokie-card {
        padding: 36px 24px;
        gap: 20px;
    }
    .grokie-logo { width: 90px; height: 90px; }
    .grokie-right h2 { font-size: 1.4rem; }
    .grokie-right p { font-size: 0.85rem; }
}

/* ===== FEATURES ===== */
.features {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--glow-gold);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-accent {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.04), rgba(212, 168, 83, 0.01));
    border-color: rgba(212, 168, 83, 0.12);
}

.feature-icon {
    width: 52px; height: 52px;
    color: var(--gold);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px var(--glow-gold));
}

.feature-icon svg {
    width: 100%; height: 100%;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.feature-cta {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    transition: all 0.3s;
}

.feature-card:hover .feature-cta {
    transform: translateX(4px);
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(212, 168, 83, 0.06);
    border-bottom: 1px solid rgba(212, 168, 83, 0.06);
}

.how-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.how-step {
    text-align: center;
    padding: 40px 32px;
    flex: 1;
    max-width: 320px;
}

.how-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
}

.how-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.how-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
    flex-shrink: 0;
}

/* ===== LIVE FEED ===== */
.feed-section {
    background: var(--bg-primary);
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    animation: fadeSlideIn 0.5s ease forwards;
    opacity: 0;
}

.feed-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.feed-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.feed-icon.danger { background: var(--glow-crimson); }
.feed-icon.warning { background: var(--glow-gold); }
.feed-icon.info { background: rgba(59, 130, 246, 0.12); }
.feed-icon.success { background: var(--glow-emerald); }

.feed-content {
    flex: 1;
    min-width: 0;
}

.feed-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.feed-badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.feed-badge.high { background: var(--glow-crimson); color: var(--crimson); }
.feed-badge.medium { background: var(--glow-gold); color: var(--gold); }
.feed-badge.low { background: var(--glow-emerald); color: var(--emerald); }

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== CTA ===== */
.cta-section {
    padding: 80px 0 120px;
}

.cta-card {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.04), rgba(52, 211, 153, 0.02));
    border: 1px solid rgba(212, 168, 83, 0.12);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, var(--glow-gold), transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.cta-card h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-gold);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid rgba(212, 168, 83, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: var(--glow-gold);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(212, 168, 83, 0.06);
    padding: 60px 0 40px;
    background: var(--bg-secondary);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-desc {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 0.7rem !important;
    opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3rem;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(15, 25, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile dropdown styles */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        box-shadow: none;
        padding: 4px 0 4px 16px;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
        transform: none;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
    }

    .nav-dropdown-menu a {
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .how-grid {
        flex-direction: column;
    }

    .how-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, transparent, var(--gold), transparent);
    }

    .feed-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        gap: 32px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .search-box {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 16px;
        gap: 12px;
    }

    .search-btn {
        width: 100%;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .container {
        padding: 0 16px;
    }
}
