/* ===== BASE & DESIGN TOKENS ===== */
:root {
    --bg-dark: #0b0c10;
    --bg-surface: #111318;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --brand-green: #22c55e;
    --brand-green-light: #4ade80;
    --glass-border: rgba(255, 255, 255, 0.06);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ===== AMBIENT GLOW BACKGROUNDS ===== */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--brand-green);
    top: -180px;
    left: -180px;
    animation: drift 22s ease-in-out infinite alternate;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: #1e293b;
    bottom: -200px;
    right: -120px;
    animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.08); }
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== LOGO SECTION ===== */
.logo-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.2s;
}

.logo-mark {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.15));
    transition: filter 0.4s ease;
}

.logo-mark:hover {
    filter: drop-shadow(0 0 50px rgba(34, 197, 94, 0.3));
}

/* ===== HERO SECTION ===== */
.hero-section {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.5s;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 28px;
}

.highlight {
    background: linear-gradient(135deg, var(--brand-green-light) 0%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-body {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== DIVIDER ===== */
.divider {
    width: 60px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-green-light));
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.7s;
}

/* ===== INFO SECTION ===== */
.info-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.9s;
}

.info-card {
    padding: 36px 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.info-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-green);
    margin-bottom: 16px;
}

.info-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.email-link {
    color: var(--brand-green);
    font-weight: 500;
    position: relative;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brand-green);
    transition: width 0.3s ease;
}

.email-link:hover::after {
    width: 100%;
}

.email-link:hover {
    color: var(--brand-green-light);
}

/* ===== FOOTER ===== */
.site-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 1.1s;
}

.footer-mark {
    height: 36px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-mark:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ===== ENTRANCE ANIMATION ===== */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 60px 0 40px;
    }

    .logo-section {
        margin-bottom: 60px;
    }

    .logo-mark {
        height: 55px;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-body {
        font-size: 1rem;
    }

    .hero-section {
        margin-bottom: 60px;
    }

    .divider {
        margin-bottom: 60px;
    }

    .info-section {
        gap: 24px;
        margin-bottom: 70px;
    }

    .info-card {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }

    .hero-body {
        font-size: 0.95rem;
    }

    .info-text {
        font-size: 0.95rem;
    }

    .logo-mark {
        height: 45px;
    }
}
