:root {
    --bg-color: #070709;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.06);
    --surface-border: rgba(255, 255, 255, 0.08);
    --primary: #0DD3BA;
    --primary-hover: #0bb5a0;
    --primary-glow: rgba(13, 211, 186, 0.25);
    --text-main: #F4F4F5;
    --text-muted: #A1A1AA;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs */
.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    animation: float 20s infinite ease-in-out;
}
.blob-1 { top: -200px; left: -200px; }
.blob-2 { bottom: 10%; right: -200px; background: #2f80ed; animation-delay: -5s; opacity: 0.1; }

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 700;
}
.text-gradient {
    background: linear-gradient(135deg, #0DD3BA, #2f80ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
p { color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    border: none;
}
.btn-primary {
    background-color: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--primary-glow);
}
.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--surface-border);
}
.btn-outline:hover {
    background: var(--surface);
    border-color: var(--text-muted);
}
.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}
.btn-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 0;
    z-index: 100;
    background: rgba(7, 7, 9, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-border);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
}
.logo {
    height: 36px;
    width: auto;
}
.brand-name {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    gap: 64px;
}
.hero-content {
    flex: 1;
}
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 100px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}
.glass-mockup {
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
}
.glass-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}
.mockup-header {
    background: var(--surface);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--surface-border);
}
.mockup-header .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.mockup-body { padding: 32px; }
.skeleton-title { width: 60%; height: 24px; background: var(--surface-hover); border-radius: 4px; margin-bottom: 16px; }
.skeleton-text { width: 100%; height: 12px; background: rgba(255,255,255,0.05); border-radius: 4px; margin-bottom: 8px; }
.skeleton-text.short { width: 80%; margin-bottom: 24px; }
.skeleton-btn { width: 120px; height: 36px; background: var(--primary); border-radius: 4px; margin-bottom: 32px; opacity: 0.8; }
.skeleton-grid { display: flex; gap: 16px; }
.skeleton-card { flex: 1; height: 100px; background: var(--surface); border-radius: 8px; }

/* Marquee */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
    background: rgba(0,0,0,0.2);
    overflow: hidden;
}
.marquee-wrapper {
    display: flex;
    width: 200%;
}
.marquee {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--surface-border);
    text-transform: uppercase;
}
.marquee span.separator {
    color: var(--primary);
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* Sections */
.section { padding: 120px 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }
.section-header p { font-size: 1.125rem; }

/* Features */
.features-grid, .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--primary); background: var(--surface-hover); }
.feature-icon { font-size: 2.5rem; margin-bottom: 24px; }
.feature-card h3 { margin-bottom: 12px; font-size: 1.25rem; }

/* Process */
.process-step {
    position: relative;
    padding: 40px 32px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.step-num {
    position: absolute;
    top: -10px; right: -10px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    line-height: 1;
}
.process-step h3 { margin-bottom: 12px; font-size: 1.25rem; position: relative; z-index: 1; }
.process-step p { position: relative; z-index: 1; }

/* Quote Section */
.quote-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.quote-content h2 { font-size: 3rem; margin-bottom: 24px; }
.quote-content p { font-size: 1.125rem; margin-bottom: 32px; }
.glass-panel {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    padding: 40px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.9rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-sans);
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(13, 211, 186, 0.2);
}
.form-group select option { background: var(--bg-color); color: var(--text-main); }

/* Footer */
.footer {
    border-top: 1px solid var(--surface-border);
    padding: 64px 0 24px;
    background: rgba(0,0,0,0.5);
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}
.footer-brand .logo { height: 32px; margin-bottom: 16px; display: block; }
.footer-desc { max-width: 300px; margin-top: 12px; }
.footer-links h4 { margin-bottom: 16px; font-size: 1.1rem; }
.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--surface-border);
    padding-top: 24px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.reveal-delay { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding-top: 120px; gap: 40px; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { margin: 0 auto 32px; }
    .quote-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-container { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .nav-links { display: none; }
    .section { padding: 80px 24px; }
    .quote-content h2 { font-size: 2.25rem; }
}
