* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    background:
        radial-gradient(circle at top left,
        rgba(56, 189, 248, 0.16),
        transparent 35%),

        radial-gradient(circle at top right,
        rgba(124, 58, 237, 0.14),
        transparent 35%),

        #050816;

    color: #e5e7eb;
    line-height: 1.7;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   HEADER
========================================== */

.site-header {
    width: 100%;
    padding: 18px 5%;

    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(5, 8, 22, 0.96);

    border-bottom: 1px solid rgba(
        255,
        255,
        255,
        0.08
    );
}

.navbar {
    max-width: 1280px;

    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 24px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
}

.logo span {
    color: #38bdf8;
}

.nav-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.nav-links a {
    color: rgba(
        226,
        232,
        240,
        0.82
    );

    font-size: 0.92rem;

    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #38bdf8;
}

/* ==========================================
   MOBILE MENU
========================================== */

.mobile-toggle {
    display: none;

    background: rgba(
        255,
        255,
        255,
        0.08
    );

    border: 1px solid rgba(
        255,
        255,
        255,
        0.15
    );

    color: #ffffff;

    padding: 9px 12px;

    border-radius: 10px;

    cursor: pointer;
}

/* ==========================================
   PAGE LAYOUT
========================================== */

.page-shell {
    width: min(1120px, 92%);

    margin: 48px auto 80px;

    display: grid;
    gap: 24px;
}

.glass-card {
    background: linear-gradient(
        145deg,
        rgba(15, 23, 42, 0.90),
        rgba(15, 23, 42, 0.64)
    );

    border: 1px solid rgba(
        148,
        163,
        184,
        0.18
    );

    box-shadow:
        0 22px 65px
        rgba(
            0,
            0,
            0,
            0.35
        );

    border-radius: 24px;
}

/* ==========================================
   HERO
========================================== */

.hero {
    padding: clamp(
        32px,
        6vw,
        68px
    );
}

.eyebrow {
    color: #38bdf8;

    font-size: 0.8rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(
        2.2rem,
        5vw,
        4.5rem
    );

    line-height: 1.05;

    margin-bottom: 18px;

    color: #ffffff;
}

.hero p {
    max-width: 850px;

    color: rgba(
        226,
        232,
        240,
        0.86
    );
}

/* ==========================================
   CONTENT
========================================== */

.content-card {
    padding: clamp(
        26px,
        4vw,
        42px
    );
}

.content-card h2 {
    font-size: 1.7rem;

    margin-bottom: 12px;

    color: #ffffff;
}

.content-card h3 {
    color: #ffffff;

    margin-bottom: 10px;
}

.content-card p {
    margin-bottom: 16px;

    color: rgba(
        226,
        232,
        240,
        0.84
    );
}

/* ==========================================
   NOTICE BOX
========================================== */

.notice-box {
    margin-top: 20px;

    padding: 20px;

    border-left: 4px solid #38bdf8;

    background: rgba(
        56,
        189,
        248,
        0.08
    );

    border-radius: 16px;
}

/* ==========================================
   BUTTONS
========================================== */

.resource-button,
.email-button {
    display: inline-block;

    margin-top: 12px;

    padding: 14px 28px;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #0ea5e9,
        #2563eb
    );

    color: #ffffff;

    font-weight: 700;

    transition: all 0.25s ease;

    box-shadow:
        0 8px 30px
        rgba(
            37,
            99,
            235,
            0.35
        );
}

.resource-button:hover,
.email-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 35px
        rgba(
            37,
            99,
            235,
            0.45
        );
}

/* ==========================================
   RESOURCE GRID
========================================== */

.resource-grid,
.cookie-grid,
.affiliate-grid,
.info-grid {
    display: grid;

    gap: 20px;

    margin-top: 22px;
}

.resource-grid {
    grid-template-columns:
    repeat(2, 1fr);
}

.cookie-grid,
.affiliate-grid,
.info-grid {
    grid-template-columns:
    repeat(3, 1fr);
}

.resource-card,
.cookie-box,
.affiliate-box,
.info-box,
.contact-panel {
    padding: 24px;

    border-radius: 18px;

    background: rgba(
        255,
        255,
        255,
        0.045
    );

    border: 1px solid rgba(
        255,
        255,
        255,
        0.08
    );
}

/* ==========================================
   FOOTER
========================================== */

.site-footer {
    width: min(
        1280px,
        92%
    );

    margin: 0 auto 30px;

    padding-top: 26px;

    border-top: 1px solid rgba(
        148,
        163,
        184,
        0.16
    );

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 18px;

    font-size: 0.92rem;

    color: rgba(
        226,
        232,
        240,
        0.72
    );
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: #38bdf8;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 850px) {

    .mobile-toggle {
        display: block;
    }

    .navbar {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .nav-links {
        display: none;

        flex-direction: column;

        width: 100%;

        padding-top: 18px;
    }

    .nav-links.open {
        display: flex;
    }

    .resource-grid,
    .cookie-grid,
    .affiliate-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        flex-direction: column;
    }
}