* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #0A0A0F;
    color: rgba(255, 255, 255, 0.85);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: #FF6B3D;
    text-decoration: none;
    transition: opacity 0.15s;
}

a:hover {
    opacity: 0.8;
}

/* Nav */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 48rem;
    width: 100%;
    margin: 0 auto;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #FF6B3D, #FF3D6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.nav-links a.active {
    color: rgba(255, 255, 255, 0.85);
}

/* Hero */

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 48rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 61, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FF6B3D, #FF3D6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.tagline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 28rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    margin-bottom: 3rem;
}

.feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
}

.links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.35);
}

.links a:hover {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.divider {
    color: rgba(255, 255, 255, 0.15);
}

/* Page content */

.page {
    flex: 1;
    max-width: 40rem;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.page h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.page > p {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.updated {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.25) !important;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.card h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.card p {
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.card a {
    color: #FF6B3D;
}

.email {
    display: inline-block;
    margin-top: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    background: linear-gradient(135deg, #FF6B3D, #FF3D6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq {
    margin-bottom: 1.25rem;
}

.faq:last-child {
    margin-bottom: 0;
}

.faq h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
}

.faq p {
    font-size: 0.875rem;
}

/* Footer */

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Mobile */

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }
}
