:root {
    --bg: #1f1827;
    --bg-elev: #2b2233;
    --card-solid: #34283d;
    --text: #fff2d9;
    --muted: #feebc8;
    --line: #46334f;
    --primary: #f2921d;
    --primary-2: #f2c230;
    --accent-soft: #8082a6;
    --card: rgba(52, 40, 61, 0.86);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background:
        radial-gradient(circle at 12% 0%, rgba(242, 146, 29, 0.18), transparent 35%),
        radial-gradient(circle at 90% 12%, rgba(128, 130, 166, 0.2), transparent 40%),
        var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    line-height: 1.5;
    position: relative;
    overflow-x: hidden;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: -3;
}

.bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.45;
    z-index: -2;
    pointer-events: none;
}

.orb-a {
    width: 360px;
    height: 360px;
    top: -80px;
    left: -80px;
    background: linear-gradient(145deg, #f2921d, #f2c230);
}

.orb-b {
    width: 420px;
    height: 420px;
    right: -160px;
    top: 280px;
    background: linear-gradient(145deg, #8082a6, #46334f);
}

.nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 28px;
    height: 28px;
    min-width: 28px;
    max-width: 28px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 242, 217, 0.2);
}

.nav-links {
    display: flex;
    gap: 16px;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--text);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 64px;
}

.hero {
    padding-top: 40px;
    padding-bottom: 36px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-size: 0.78rem;
    margin: 0 0 8px;
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.1;
}

.subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 760px;
    margin: 0;
}

.cta-row {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--line);
    padding: 10px 18px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-color: transparent;
}

.btn-secondary {
    background: rgba(255, 242, 217, 0.05);
}

.feature-grid,
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.feature-card,
.support-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    backdrop-filter: blur(4px);
}

.feature-card h2,
.support-card h2 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.feature-card p,
.support-card p,
.support-card li {
    color: var(--muted);
    opacity: 0.9;
}

.support-card ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.legal h2 {
    margin-top: 28px;
    margin-bottom: 8px;
}

.legal p,
.legal li {
    color: var(--muted);
}

.legal a,
.support a {
    color: var(--primary-2);
}

.updated {
    color: var(--muted);
    margin-top: -6px;
}

.footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 30px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(254, 235, 200, 0.12);
}

.footer-links {
    display: flex;
    gap: 14px;
}

.footer a {
    color: var(--muted);
    text-decoration: none;
}

.footer a:hover {
    color: var(--text);
}

@media (max-width: 900px) {
    .feature-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 20px;
    }
}

@media (max-width: 640px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer {
        flex-direction: column;
    }
}
