@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

:root {
    /* === CORE PALETTE – Dark Gray + Orange (locked in) === */
    --primary: #111827;
    --secondary: #1E2937;
    --complementary: #334155;

    --accent: #FF5F1F;
    --accent-hover: #EA580C;

    --body-text: #111827;
    --text-primary: #111827;
    --text-secondary: #1E2937;
    --text-muted: #64748B;
    --text-faint: #64748B;
    --nav-name-color: #FF5F1F;

    /* Backgrounds */
    --body-bg: #F8FAFC;
    --bg-secondary: #E2E8F0;
    --bg-nav: var(--secondary);
    --bg-hero-start: var(--body-bg);
    --bg-hero-end: #E0E7F0;
    --bg-card: #FFFFFF;
    --bg-dark: #111827;
    --bg-footer: var(--primary);

    /* Launch-specific */
    --launch-pill-bg: rgba(17, 24, 39, 0.08);
    --launch-pill-border: rgba(17, 24, 39, 0.15);

    /* Borders */
    --border-light: rgba(17, 24, 39, 0.08);
    --border-medium: rgba(17, 24, 39, 0.15);
    --border-glass: rgba(17, 24, 39, 0.12);
    --border-focus: var(--accent);

    /* Accent light variants */
    --accent-bg-light: rgba(255, 95, 31, 0.08);
    --accent-border-light: rgba(255, 95, 31, 0.25);

    /* Layout */
    --max-width: 80rem;
    --radius-full: 9999px;
    --radius-md: 1.5rem;
    --radius-lg: 1.75rem;

    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;

    /* Shadows */
    --shadow-card: 0 25px 50px -12px rgb(17 24 39 / 0.12);

    --dot: #30CF90;
}

/* ============================================= */
/* RESET & BASE STYLES                           */
/* ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--body-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.logo-font {
    font-family: 'Space Grotesk', sans-serif;
}

/* ============================================= */
/* NAVBAR                                        */
/* ============================================= */
nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--bg-nav);
    backdrop-filter: blur(0.75rem);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.name {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.0625rem;
    color: var(--nav-name-color);
}

/* ============================================= */
/* HERO                                          */
/* ============================================= */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-hero-start) 0%, var(--bg-hero-end) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 95, 31, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 48rem) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    animation: fadeInUp 1s ease forwards;
}

.launch-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--launch-pill-bg);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--launch-pill-border);
}

.launch-pill .dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--dot); 
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 8vw + 0.5rem, 4.5rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.1875rem;
    margin: 1.5rem 0;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 27rem;
    margin-bottom: 2rem;
}

.profile-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.profile-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(1rem);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    max-width: 21.25rem;
    margin: 0 auto;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.125rem;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.profile-info h3, .profile-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.profile-info p {
    color: var(--accent);
    font-size: 0.95rem;
}

.profile-bio {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* ============================================= */
/* TEASER SECTION                                */
/* ============================================= */
.teaser {
    background-color: var(--bg-card);
    padding: 5rem 1.5rem;
    text-align: center;
}

.teaser h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 6vw + 0.5rem, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.0625rem;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.teaser ul {
    list-style: none;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    display: grid;
    gap: 1.25rem;
    padding: 0;
}

.teaser li {
    background-color: var(--accent-bg-light);
    border: 1px solid var(--accent-border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: left;
    transition: all 0.3s ease;
}

.teaser p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 32rem;
    margin: 0 auto;
}

/* Hover effect */
.teaser li:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(255 95 31 / 0.1), 
                0 8px 10px -6px rgb(255 95 31 / 0.1);
}

/* ============================================= */
/* SECTIONS (General)                            */
/* ============================================= */
section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

/* ============================================= */
/* FOOTER – Centered as requested                */
/* ============================================= */
footer {
    background-color: var(--bg-footer);
    padding: 5rem 1.5rem 3rem;
    color: #fff;
    text-align: center;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-content p {
    margin: 0;
    opacity: 0.9;
}

/* ============================================= */
/* ANIMATIONS                                    */
/* ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(1.875rem); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}