@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;900&family=Fira+Code:wght@400;700&display=swap');

:root {
    --primary: #FFD700;
    --primary-glow: rgba(255, 215, 0, 0.4);
    --bg: #080808;
    --surface: #121212;
    --surface-light: #1E1E1E;
    --surface-glass: rgba(18, 18, 18, 0.8);
    --text: #F5F5F7;
    --text-muted: #86868B;
    --border: rgba(255, 255, 255, 0.1);
    --accent-red: #FF3B30;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 10% 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.03), transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary-glow);
    filter: blur(150px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.glow-1 {
    top: -200px;
    right: -100px;
}

.glow-2 {
    bottom: -200px;
    left: -100px;
}

.hero-content {
    flex: 1.2;
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    font-family: 'Fira Code', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -4px;
    background: linear-gradient(180deg, #FFFFFF 0%, #A1A1AA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

.hero-content h1 span {
    display: block;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 550px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px var(--primary-glow);
}

/* Mobile App Mockup */
.hero-mockup {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
}

.mockup-container {
    width: 310px;
    height: 660px;
    background: #000;
    border: 10px solid #1A1A1A;
    border-radius: 48px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px var(--primary-glow);
    animation: float 8s ease-in-out infinite;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.mockup-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature Grid */
.features {
    padding: 100px 10%;
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--surface-light);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Tech Stack */
.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    justify-content: center;
}

.tech-pill {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    color: var(--primary);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Showcase Section */
.showcase {
    padding: 100px 10%;
}

.showcase-scroll {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 40px 0;
    scrollbar-width: none;
}

.showcase-scroll::-webkit-scrollbar {
    display: none;
}

.showcase-item {
    min-width: 280px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.showcase-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.showcase-item img {
    width: 100%;
    display: block;
}

/* Footer */
footer {
    padding: 60px 10%;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

/* Privacy Page Specific */
.privacy-container {
    padding: 150px 10% 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-container h1 {
    font-size: 4rem;
    margin-bottom: 40px;
}

.privacy-container section {
    margin-bottom: 40px;
}

.privacy-container h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Fira Code', monospace;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding-top: 150px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .hero-mockup {
        margin-top: 50px;
    }
}