@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-main: #050505;
    --accent-primary: #8B5CF6; /* Violet */
    --accent-secondary: #EC4899; /* Pink */
    --accent-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #FFFFFF;
    --text-soft: #A1A1AA;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: var(--font-heading);
}

/* Background Elements */
.glass-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, #1a1a1a 0%, #050505 100%);
    z-index: -3;
}

.ambient-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: -2;
    pointer-events: none;
}

.glow-1 {
    top: -10%;
    right: -10%;
    background: var(--accent-primary);
}

.glow-2 {
    bottom: -10%;
    left: -10%;
    background: var(--accent-secondary);
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    background: rgba(5, 5, 5, 0.6) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
}

.brand-logo {
    width: 42px;
    height: 42px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 1rem;
    color: var(--text-soft) !important;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main) !important;
}

/* Sections */
section {
    padding: 100px 0;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
}

.badge-premium {
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
}

.main-title {
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.text-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-soft);
    max-width: 600px;
}

.btn-main {
    padding: 16px 32px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.5);
    color: #fff;
}

.btn-outline {
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--glass-bg);
}

/* Abstract Shape for Hero */
.hero-visual-abstract {
    position: relative;
    width: 400px;
    height: 400px;
}

.abstract-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(40px);
    animation: morph 15s infinite alternate ease-in-out;
}

.shape-1 {
    background: var(--accent-primary);
    top: 0;
    left: 0;
    opacity: 0.4;
}

.shape-2 {
    background: var(--accent-secondary);
    bottom: 0;
    right: 0;
    opacity: 0.4;
    animation-delay: -5s;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

/* Bento Grid */
.bento-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(320px, auto));
    gap: 24px;
}

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
}

.bento-card:hover .icon-box {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-secondary);
    transform: rotate(10deg) scale(1.1);
}
.icon-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.large-card { grid-column: span 2; }
.tall-card { grid-row: span 2; }
.small-card { grid-column: span 1; }

/* Stats */
.stats-container {
    padding: 80px 0;
}

.stats-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 80px;
    text-align: center;
}

.stat-val {
    font-size: 10rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* Footer */
.footer-premium {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    margin-top: 100px;
}

.footer-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
}

.footer-email {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-email:hover {
    color: var(--accent-secondary);
}

.max-width-300 { max-width: 300px; }

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.text-secondary { color: var(--text-soft) !important; }

/* Responsive */
@media (max-width: 1200px) {
    .bento-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-val { font-size: 7rem; }
}

@media (max-width: 768px) {
    .bento-container {
        grid-template-columns: 1fr;
    }
    .large-card, .tall-card, .small-card { grid-column: span 1; grid-row: span 1; }
    .main-title { font-size: 3.5rem; }
    .stat-val { font-size: 4rem; }
}