﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --h3-bg: #050510;
    --h3-bg-2: #0a0a18;
    --h3-bg-3: #11112a;
    --h3-surface: rgba(255,255,255,0.03);
    --h3-surface-2: rgba(255,255,255,0.06);
    --h3-glass: rgba(255,255,255,0.04);
    --h3-border: rgba(255,255,255,0.08);
    --h3-border-2: rgba(255,255,255,0.16);
    --h3-text: #f5f5fa;
    --h3-text-2: rgba(245,245,250,0.7);
    --h3-text-3: rgba(245,245,250,0.45);
    --h3-text-4: rgba(245,245,250,0.25);
    --h3-purple: #a855f7;
    --h3-cyan: #22d3ee;
    --h3-pink: #ec4899;
    --h3-green: #10b981;
    --h3-orange: #f97316;
    --h3-red: #ef4444;
    --h3-grad: linear-gradient(135deg, #a855f7, #22d3ee);
    --h3-grad-2: linear-gradient(135deg, #ec4899, #a855f7);
}

.h3 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.h3 {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--h3-bg);
    color: var(--h3-text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Animated background orbs */
.h3-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    z-index: 0;
}

.h3-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(168,85,247,0.15);
    top: -100px;
    left: -100px;
    animation: orbFloat 20s ease-in-out infinite;
}

.h3-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(34,211,238,0.12);
    top: 30%;
    right: -100px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.h3-orb-3 {
    width: 600px;
    height: 600px;
    background: rgba(236,72,153,0.08);
    bottom: -200px;
    left: 30%;
    animation: orbFloat 30s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 40px) scale(0.95);
    }
}

/* ============ HEADER ============ */
.h3-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5,5,16,0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--h3-border);
}

.h3-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.h3-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--h3-text);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.h3-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--h3-grad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transform: rotate(-6deg);
    box-shadow: 0 0 20px rgba(168,85,247,0.4);
}

.h3-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.h3-logo-name {
    font-size: 18px;
    font-weight: 700;
}

.h3-logo-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--h3-text-3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.h3-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

    .h3-nav a {
        color: var(--h3-text-2);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        padding: 8px 14px;
        border-radius: 8px;
        transition: all 0.2s;
    }

        .h3-nav a:hover {
            color: var(--h3-text);
            background: var(--h3-surface);
        }

        .h3-nav a.on {
            color: var(--h3-text);
            background: var(--h3-surface-2);
        }

.h3-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.h3-search-btn {
    width: 38px;
    height: 38px;
    background: var(--h3-surface);
    border: 1px solid var(--h3-border);
    border-radius: 10px;
    color: var(--h3-text-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .h3-search-btn:hover {
        color: var(--h3-text);
        border-color: var(--h3-border-2);
    }

.h3-cta {
    padding: 9px 18px;
    background: var(--h3-grad);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(168,85,247,0.3);
}

    .h3-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(168,85,247,0.45);
    }

.h3-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    background: var(--h3-surface);
    border: 1px solid var(--h3-border);
    border-radius: 10px;
    cursor: pointer;
}

    .h3-hamburger span {
        display: block;
        width: 16px;
        height: 1.5px;
        background: var(--h3-text-2);
        border-radius: 2px;
        transition: transform 0.2s, opacity 0.2s;
    }

    .h3-hamburger.open span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }

    .h3-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .h3-hamburger.open span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }

.h3-drawer {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(5,5,16,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--h3-border);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
}

    .h3-drawer.open {
        display: flex;
    }

    .h3-drawer a {
        color: var(--h3-text-2);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 14px;
        border-radius: 8px;
    }

        .h3-drawer a:hover {
            background: var(--h3-surface-2);
            color: var(--h3-text);
        }

/* ============ TICKER ============ */
.h3-ticker {
    background: var(--h3-bg-2);
    border-bottom: 1px solid var(--h3-border);
    overflow: hidden;
    padding: 12px 0;
    position: relative;
    z-index: 5;
}

.h3-ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
}

.h3-ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
}

.h3-ticker-label {
    color: var(--h3-text-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
}

.h3-ticker-value {
    color: var(--h3-text);
    font-weight: 600;
}

.h3-ticker-change-up {
    color: var(--h3-green);
    font-weight: 600;
}

.h3-ticker-change-down {
    color: var(--h3-red);
    font-weight: 600;
}

.h3-ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--h3-text-4);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============ HERO ============ */
.h3-hero {
    padding: 64px 32px;
    position: relative;
    z-index: 1;
}

.h3-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: stretch;
}

/* Main 3D Card */
.h3-hero-main {
    position: relative;
    perspective: 2000px;
    cursor: pointer;
}

.h3-hero-main-card {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1a1a3a, #0a0a18);
    border: 1px solid var(--h3-border-2);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    transform-style: preserve-3d;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

    .h3-hero-main-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 30%, rgba(168,85,247,0.25), transparent 60%), radial-gradient(circle at 70% 70%, rgba(34,211,238,0.18), transparent 60%);
        pointer-events: none;
    }

    .h3-hero-main-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 40%, rgba(5,5,16,0.95));
        pointer-events: none;
    }

.h3-hero-main:hover .h3-hero-main-card {
    box-shadow: 0 30px 80px rgba(168,85,247,0.3);
}

.h3-hero-main-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(168,85,247,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(168,85,247,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.h3-hero-main-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 80px;
    opacity: 0.3;
    filter: drop-shadow(0 0 30px rgba(168,85,247,0.6));
    transition: transform 0.6s ease;
}

.h3-hero-main:hover .h3-hero-main-icon {
    transform: translate(-50%, -60%) scale(1.1) rotate(-5deg);
}

.h3-hero-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 40px;
    z-index: 2;
}

.h3-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--h3-glass);
    border: 1px solid var(--h3-border-2);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--h3-text);
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.h3-hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--h3-red);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.h3-hero-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--h3-text);
    margin-bottom: 14px;
}

.h3-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--h3-text-2);
    max-width: 560px;
    margin-bottom: 18px;
}

.h3-hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--h3-text-3);
    font-family: 'JetBrains Mono', monospace;
}

.h3-hero-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--h3-text-4);
}

/* Side trend cards */
.h3-hero-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.h3-trend-card {
    flex: 1;
    background: var(--h3-glass);
    border: 1px solid var(--h3-border);
    border-radius: 18px;
    padding: 22px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .h3-trend-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(34,211,238,0.05));
        opacity: 0;
        transition: opacity 0.3s;
    }

    .h3-trend-card:hover {
        transform: translateY(-4px);
        border-color: var(--h3-border-2);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

        .h3-trend-card:hover::before {
            opacity: 1;
        }

.h3-trend-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--h3-purple);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
}

.h3-trend-cat {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
}

.h3-trend-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--h3-text);
    flex: 1;
    position: relative;
}

.h3-trend-meta {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--h3-border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--h3-text-3);
    font-family: 'JetBrains Mono', monospace;
    position: relative;
}

/* ============ SECTION ============ */
.h3-section {
    padding: 80px 32px;
    position: relative;
    z-index: 1;
}

.h3-section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.h3-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
    flex-wrap: wrap;
}

.h3-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--h3-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

    .h3-section-eyebrow::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--h3-cyan);
    }

.h3-section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--h3-text);
}

    .h3-section-title em {
        font-style: italic;
        background: var(--h3-grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.h3-section-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--h3-text-2);
    text-decoration: none;
    padding: 10px 16px;
    background: var(--h3-glass);
    border: 1px solid var(--h3-border);
    border-radius: 10px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .h3-section-link:hover {
        color: var(--h3-text);
        border-color: var(--h3-border-2);
    }

/* ============ KATEGORI GRID ============ */
.h3-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.h3-cat {
    background: var(--h3-glass);
    border: 1px solid var(--h3-border);
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    .h3-cat::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent, rgba(168,85,247,0.1));
        opacity: 0;
        transition: opacity 0.3s;
    }

    .h3-cat:hover {
        transform: translateY(-4px);
        border-color: var(--h3-border-2);
    }

        .h3-cat:hover::before {
            opacity: 1;
        }

.h3-cat-icon {
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.h3-cat-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--h3-text);
    margin-bottom: 4px;
    position: relative;
}

.h3-cat-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--h3-text-4);
    position: relative;
}

/* ============ NEWS LIST ============ */
.h3-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.h3-news {
    background: var(--h3-glass);
    border: 1px solid var(--h3-border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    perspective: 1500px;
    display: flex;
    flex-direction: column;
}

    .h3-news:hover {
        transform: translateY(-6px);
        border-color: var(--h3-border-2);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

.h3-news-img {
    aspect-ratio: 16/10;
    position: relative;
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
}

.h3-news-img-1 {
    background: linear-gradient(135deg, #581c87, #1e3a8a);
}

.h3-news-img-2 {
    background: linear-gradient(135deg, #1e1b4b, #831843);
}

.h3-news-img-3 {
    background: linear-gradient(135deg, #14532d, #1e3a8a);
}

.h3-news-img-4 {
    background: linear-gradient(135deg, #422006, #1e1b4b);
}

.h3-news-img-5 {
    background: linear-gradient(135deg, #831843, #1e3a8a);
}

.h3-news-img-6 {
    background: linear-gradient(135deg, #164e63, #312e81);
}

.h3-news-img-7 {
    background: linear-gradient(135deg, #312e81, #831843);
}

.h3-news-img-8 {
    background: linear-gradient(135deg, #14532d, #422006);
}

.h3-news-img-icon {
    font-size: 32px;
    opacity: 0.4;
}

.h3-news-img-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.h3-news-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.h3-news-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.h3-news-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--h3-text);
    margin-bottom: 10px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.h3-news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--h3-text-3);
    font-family: 'JetBrains Mono', monospace;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--h3-border);
}

.h3-news-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--h3-text-4);
}

/* ============ NEWSLETTER ============ */
.h3-newsletter-section {
    padding: 80px 32px;
    position: relative;
    z-index: 1;
}

.h3-newsletter {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(34,211,238,0.08));
    border: 1px solid var(--h3-border-2);
    border-radius: 28px;
    padding: 64px 48px;
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

    .h3-newsletter::before {
        content: '';
        position: absolute;
        top: -150px;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(168,85,247,0.2), transparent 60%);
        pointer-events: none;
    }

.h3-newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.h3-newsletter-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: var(--h3-glass);
    border: 1px solid var(--h3-border-2);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--h3-cyan);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.h3-newsletter-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--h3-text);
    margin-bottom: 16px;
}

    .h3-newsletter-title em {
        font-style: italic;
        background: var(--h3-grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.h3-newsletter-desc {
    font-size: 15px;
    color: var(--h3-text-2);
    line-height: 1.7;
    margin-bottom: 32px;
}

.h3-newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 460px;
    margin: 0 auto;
    background: var(--h3-bg-2);
    border: 1px solid var(--h3-border-2);
    border-radius: 14px;
    padding: 6px;
}

    .h3-newsletter-form input {
        flex: 1;
        padding: 12px 16px;
        background: transparent;
        border: none;
        color: var(--h3-text);
        font-family: inherit;
        font-size: 14px;
    }

        .h3-newsletter-form input:focus {
            outline: none;
        }

        .h3-newsletter-form input::placeholder {
            color: var(--h3-text-4);
        }

    .h3-newsletter-form button {
        padding: 12px 24px;
        background: var(--h3-grad);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-family: inherit;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: opacity 0.2s;
        white-space: nowrap;
    }

        .h3-newsletter-form button:hover {
            opacity: 0.9;
        }

/* ============ FOOTER ============ */
.h3-footer {
    background: var(--h3-bg-2);
    border-top: 1px solid var(--h3-border);
    padding: 56px 32px 28px;
    position: relative;
    z-index: 1;
}

.h3-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.h3-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--h3-border);
    margin-bottom: 24px;
}

.h3-footer-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--h3-text);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.h3-footer-desc {
    font-size: 13px;
    color: var(--h3-text-3);
    line-height: 1.7;
    max-width: 320px;
}

.h3-footer-col-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--h3-cyan);
    margin-bottom: 16px;
}

.h3-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .h3-footer-links a {
        color: var(--h3-text-3);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.2s;
    }

        .h3-footer-links a:hover {
            color: var(--h3-text);
        }

.h3-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--h3-text-4);
    font-family: 'JetBrains Mono', monospace;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .h3-hero-inner {
        grid-template-columns: 1fr;
    }

    .h3-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .h3-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .h3-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .h3-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .h3-header-inner {
        padding: 0 16px;
    }

    .h3-nav {
        display: none;
    }

    .h3-cta {
        display: none;
    }

    .h3-search-btn {
        display: none;
    }

    .h3-hamburger {
        display: flex;
    }

    .h3-hero {
        padding: 36px 16px;
    }

    .h3-hero-main-content {
        padding: 24px 22px;
    }

    .h3-section {
        padding: 56px 16px;
    }

    .h3-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .h3-news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .h3-newsletter-section {
        padding: 56px 16px;
    }

    .h3-newsletter {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .h3-newsletter-form {
        flex-direction: column;
        padding: 6px;
    }

        .h3-newsletter-form input {
            padding: 14px 16px;
        }

        .h3-newsletter-form button {
            width: 100%;
            padding: 14px;
        }

    .h3-footer {
        padding: 40px 16px 24px;
    }

    .h3-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .h3-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .h3-orb-1, .h3-orb-2, .h3-orb-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .h3-cat-grid {
        grid-template-columns: 1fr 1fr;
    }
}
