@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
    --bg: #07090f;
    --card: #111522;
    --muted: #c7d4ff;
    --accent: #7cf5ff;
    --accent-2: #b4ff9f;
    --text: #f7fbff;
    --shadow: 0 20px 40px rgba(5, 10, 23, 0.35);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-2);
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(7, 9, 15, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5vw;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.primary-nav {
    display: flex;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.primary-nav a {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    color: var(--muted);
}

.primary-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text);
    font-size: 1.5rem;
    border-radius: 8px;
    padding: 0.2rem 0.6rem;
}

main {
    padding: 0 5vw 4rem;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    font-size: 0.8rem;
}

.hero h1 {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero p {
    color: #d5e0ff;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #041019;
}

.btn.ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.hero-metrics article {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-slider {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slider-track {
    flex: 1;
    min-height: 120px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    background: rgba(27, 31, 45, 0.8);
    box-shadow: var(--shadow);
}

.slider-track .stat {
    display: inline-block;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #041019;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 0.5rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
}

.hero-media {
    position: relative;
}

.hero-media img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.media-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(5, 6, 12, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 16px;
    max-width: 280px;
    font-size: 0.9rem;
}

.section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-header {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #c9d6ff;
}

.grid.trio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.grid.trio article {
    background: var(--card);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.grid.trio article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.grid.trio h3 {
    margin-top: 0;
}

.grid.trio ul {
    padding-left: 1.2rem;
    color: var(--muted);
}

.metrics .timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.timeline div {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
}

.contrast {
    background: radial-gradient(circle at top, rgba(180, 255, 159, 0.05), transparent);
}

.feature-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-panels article {
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(8, 13, 26, 0.7);
}

.feature-panels article img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.split table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.split th,
.split td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
}

.split aside {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 1.5rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.security-grid article {
    background: rgba(11, 15, 21, 0.85);
    border-radius: 18px;
    padding: 1.4rem;
    border-left: 3px solid var(--accent);
}

.insight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.insight-cards article {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
}

.insight-cards h3 {
    font-size: 2.4rem;
    margin: 0 0 0.5rem;
}

.faq details {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    margin-bottom: 0.75rem;
    padding: 1rem 1.25rem;
}

.contact {
    background: linear-gradient(120deg, rgba(10, 34, 60, 0.8), rgba(4, 20, 26, 0.9));
    padding: 3rem 5vw;
}

.contact .section-header {
    margin-bottom: 2.5rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    max-width: 640px;
    margin: 0 auto;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.95rem 1.1rem;
    background: rgba(3, 4, 7, 0.65);
    color: var(--text);
    font-size: 1rem;
}

.contact-form button {
    margin-top: 0.5rem;
}

.site-footer {
    padding: 2.5rem 5vw;
    background: #05070d;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.site-footer h4 {
    margin-top: 0;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 0.4rem;
}

.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 760px);
    background: rgba(10, 14, 24, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    box-shadow: var(--shadow);
}

.cookie-banner button {
    border: none;
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    background: var(--accent);
    color: #031015;
    font-weight: 600;
    cursor: pointer;
}

.policy-page .section {
    max-width: 820px;
    margin: 0 auto;
}

body.policy-page,
body.aux-page {
    background: var(--bg);
}

.section.narrow {
    max-width: 640px;
    margin: 0 auto;
}

.insights .faq summary {
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 900px) {
    .primary-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .site-footer {
        grid-template-columns: 1fr;
    }
    
    .site-footer p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .contact {
        padding: 2rem 4vw;
    }

    .contact .section-header {
        margin-bottom: 2rem;
    }
}
