@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --bg: #020617;
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --secondary: #8b5cf6;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --card: rgba(15, 23, 42, 0.6);
    --border: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Elite Background */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
    opacity: 0.5;
}

.mesh-bg div {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
}

.blob-1 { width: 500px; height: 500px; background: rgba(59, 130, 246, 0.15); top: -200px; left: -100px; }
.blob-2 { width: 400px; height: 400px; background: rgba(139, 92, 246, 0.15); bottom: -100px; right: -100px; }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
header {
    padding: 24px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(2, 6, 23, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover { color: #fff; }

/* Hero */
.hero {
    padding: 200px 0 100px;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 32px;
}

h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -4px;
    margin-bottom: 32px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 56px;
}

/* Product Reveal Section (Inspired by User Image) */
.product-reveal {
    position: relative;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reveal-backdrop {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    z-index: -1;
}

.reveal-card {
    background: #ffffff;
    width: 100%;
    max-width: 650px;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.reveal-img-wrapper {
    position: relative;
    flex-shrink: 0;
}

.reveal-icon {
    width: 220px;
    filter: drop-shadow(20px 20px 40px rgba(0, 0, 0, 0.3));
    transform: rotate(-15deg);
    transition: transform 0.5s ease;
    margin-left: -120px; /* Overlap effect */
}

.reveal-card:hover .reveal-icon {
    transform: rotate(0deg) scale(1.1);
}

.reveal-content {
    flex-grow: 1;
}

/* Skeleton Lines */
.skeleton-line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 10px;
    margin-bottom: 16px;
}

.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 85%; }
.skeleton-line.long { width: 100%; }

.btn-reveal {
    background: #00e676;
    color: #fff;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
    transition: 0.3s;
    border: none;
}

.btn-reveal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 230, 118, 0.4);
    background: #00c853;
}

/* Stats */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    margin-top: 120px;
    backdrop-filter: blur(10px);
}

.stat-box {
    background: var(--bg);
    padding: 40px;
}

.stat-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.stat-box label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
}

.btn-main {
    background: #fff;
    color: #000;
}

.btn-main:hover {
    transform: scale(1.05);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 20px 40px var(--primary-glow);
}

/* Sections */
section {
    padding: 150px 0;
}

.section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 48px;
    border-radius: 32px;
    transition: 0.4s;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Forms */
.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

.glass-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

textarea.glass-input {
    resize: vertical;
    min-height: 120px;
}
