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

:root {
    /* Black & White Theme */
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #0f0f0f;

    /* Grays */
    --gray-100: #ffffff;
    --gray-200: #e5e5e5;
    --gray-300: #b3b3b3;
    --gray-400: #808080;
    --gray-500: #4d4d4d;
    --gray-600: #333333;
    --gray-700: #1a1a1a;

    /* Effects */
    --glow-white: 0 0 40px rgba(255, 255, 255, 0.3);
    --glow-subtle: 0 0 20px rgba(255, 255, 255, 0.1);
}

@font-face {
    font-family: 'Funnel Sans';
    src: url('FunnelSans[wght].woff2') format('woff2-variations');
    font-weight: 300 900;
    font-display: swap;
}

@font-face {
    font-family: 'Frick';
    src: url('Frick0.3-Condensed.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}

body {
    font-family: 'Funnel Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-black);
    color: var(--gray-100);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Animated Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(ellipse at top, #0a0a0a 0%, #000000 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float-orb 25s ease-in-out infinite;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    top: -300px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-delay: -12s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -80px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-text {
    font-family: 'Frick', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--gray-100);
}

.view-pumpfun {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    color: var(--bg-black);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.view-pumpfun:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    padding: 8rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: 'Frick', serif;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: var(--gray-400);
}

.title-emphasis {
    color: var(--gray-100);
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-outline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gray-100);
    border: none;
    color: var(--bg-black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-white);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gray-400);
    color: var(--gray-100);
}

.btn-outline:hover {
    border-color: var(--gray-100);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* Tiger Image */
.tiger-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiger-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.tiger-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.stat-value {
    font-family: 'Frick', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--gray-100);
    margin-bottom: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* Common Section Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Frick', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--gray-100);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Roadmap Section */
.roadmap {
    position: relative;
    z-index: 2;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.roadmap-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.roadmap-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.roadmap-card.completed {
    border-color: rgba(255, 255, 255, 0.2);
}

.roadmap-card.active {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--glow-subtle);
}

.roadmap-status {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    color: var(--gray-100);
}

.pulse-dot {
    width: 20px;
    height: 20px;
    background: var(--gray-100);
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.status-icon {
    font-size: 1.5rem;
    color: var(--gray-400);
}

.roadmap-phase {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.roadmap-card h3 {
    font-family: 'Frick', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--gray-100);
}

.roadmap-card ul {
    list-style: none;
}

.roadmap-card li {
    padding: 0.75rem 0;
    color: var(--gray-300);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.roadmap-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gray-500);
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 2;
    padding: 6rem 4rem;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Frick', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--gray-100);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 3rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--glow-subtle);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-100);
}

.social-info {
    text-align: left;
}

.social-name {
    font-weight: 600;
    color: var(--gray-100);
    margin-bottom: 0.25rem;
}

.social-handle {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Footer */
.footer {
    position: relative;
    z-index: 2;
    background: rgba(5, 5, 5, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 4rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--gray-400);
    margin-top: 1rem;
    max-width: 350px;
    line-height: 1.7;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-100);
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--gray-100);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tiger-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .hero {
        padding: 6rem 2rem 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .container {
        padding: 4rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* Copy feedback */
.copied-feedback {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-100);
    color: var(--bg-black);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    z-index: 10000;
    animation: slideUp 0.3s ease, fadeOut 0.3s ease 2.7s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}
