:root {
    --teal-300: #40e7d5;
    --teal-500: #31b3a5;
    --pink-300: #f881c6;
    --pink-700: #ba2d79;
    --bg: #0d1116;
    --text: #edf7f6;
    --muted: #bfe9e5;
    --card: #111822;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(1200px 600px at 80% -10%, rgba(64, 231, 213, 0.15), transparent),
        radial-gradient(1000px 500px at -20% 10%, rgba(186, 45, 121, 0.14), transparent),
        var(--bg);
    line-height: 1.6;
}

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

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(13, 17, 22, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    line-height: 1;
}

.brand-mark {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(64, 231, 213, 0.35));
    flex-shrink: 0;
}

.brand-word {
    display: flex;
    align-items: center;
    opacity: 0.95;
    line-height: 1;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-300), var(--teal-500));
    color: #072f2b;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--pink-300), var(--pink-700));
    color: #2a0a1d;
}

.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn-sm {
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.92rem;
}

/* Hero */
.hero {
    padding: 72px 0 32px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
    line-height: 1.1;
    margin: 0 0 10px;
}

.hero p {
    color: var(--muted);
}

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

.age-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 8px;
}

.hero-media img {
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* Sections */
.section {
    padding: 56px 0;
}

.section.alt {
    background: linear-gradient(180deg, rgba(49, 179, 165, 0.08), rgba(248, 129, 198, 0.08));
}

.grid.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid.three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bullets {
    margin: 12px 0 0;
    padding-left: 18px;
}

.bullets li {
    margin: 6px 0;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.card.spotlight {
    border-color: rgba(64, 231, 213, 0.35);
}

.card.support {
    border-color: rgba(186, 45, 121, 0.35);
}

.cards .card img {
    border-radius: 12px;
    border: 1px solid var(--border);
}

.card-body {
    padding: 10px 6px 0;
}

.link-row {
    margin-top: 14px;
}

.link-row.mt {
    margin-top: 22px;
}

.text-link {
    color: var(--teal-300);
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.contact-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    align-items: center;
}

.avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pink-300);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 22px 0;
    background: rgba(13, 17, 22, 0.6);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

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

.footer-inner a:hover {
    color: var(--teal-300);
}

/* Mobile Nav */
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    border-radius: 2px;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 680px) {
    .site-nav {
        position: absolute;
        inset: 64px 0 auto 0;
        background: rgba(13, 17, 22, 0.98);
        display: none;
    }

    .site-nav.open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 4%;
        gap: 10px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .cards.grid.three {
        grid-template-columns: 1fr;
    }
}