/* ===================================
   VENDLY - Landing Page Styles
   A fresh, emerald-based design system
   =================================== */

/* ===== CSS Variables ===== */
:root {
    /* Primary - Emerald/Teal */
    --primary-50: #ecfdf5;
    --primary-100: #d1fae5;
    --primary-200: #a7f3d0;
    --primary-300: #6ee7b7;
    --primary-400: #34d399;
    --primary-500: #10b981;
    --primary-600: #059669;
    --primary-700: #047857;
    --primary-800: #065f46;
    --primary-900: #064e3b;
    
    /* Accent - Cyan */
    --accent-400: #22d3ee;
    --accent-500: #06b6d4;
    
    /* Neutral - Slate */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    
    /* Semantic */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    --gradient-glow: radial-gradient(ellipse 60% 40% at 50% -10%, rgba(16, 185, 129, 0.25), transparent 70%);
    --gradient-glow-accent: radial-gradient(ellipse 50% 30% at 80% 20%, rgba(6, 182, 212, 0.15), transparent 60%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.3);
    
    /* Spacing & Sizing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--slate-950);
    color: var(--slate-300);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--slate-600);
}

.btn-secondary:hover {
    border-color: var(--primary-500);
    color: var(--primary-400);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-300);
    padding: 12px 16px;
}

.btn-ghost:hover {
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-400);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-glow), var(--gradient-glow-accent);
    pointer-events: none;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        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: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
    pointer-events: none;
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-400);
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-400);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-700);
}

/* Hero Visual - Phone */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.phone-frame {
    width: 280px;
    background: var(--slate-900);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 0 0 1px rgba(255,255,255,0.1),
        var(--shadow-xl),
        var(--shadow-glow);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: var(--slate-950);
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    background: var(--slate-950);
    border-radius: 34px;
    padding: 48px 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 520px;
}

.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    padding: 0 8px;
    margin-bottom: 8px;
}

.status-icons {
    display: flex;
    gap: 4px;
    opacity: 0.6;
}

.app-wallet {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-900), var(--slate-800));
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-800);
}

.wallet-label {
    display: block;
    font-size: 0.75rem;
    color: var(--primary-400);
    margin-bottom: 4px;
}

.wallet-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.wallet-amount small {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.7;
}

.app-machine-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--slate-800);
    border-radius: var(--radius-md);
}

.machine-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.machine-icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-700);
    border-radius: var(--radius-sm);
    color: var(--primary-400);
}

.machine-status {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.machine-info {
    display: flex;
    flex-direction: column;
}

.machine-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.machine-location {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.app-products-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--slate-800);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: var(--transition-base);
    position: relative;
}

.product-item.selected {
    border-color: var(--primary-500);
    background: rgba(16, 185, 129, 0.1);
}

.product-emoji {
    font-size: 1.25rem;
}

.product-name {
    flex: 1;
    font-size: 0.875rem;
    color: var(--white);
}

.product-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-400);
    font-family: 'JetBrains Mono', monospace;
}

.selected-indicator {
    position: absolute;
    right: 12px;
    width: 8px;
    height: 8px;
    background: var(--primary-500);
    border-radius: 50%;
}

.app-pay-button {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* Floating Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--slate-800);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-700);
    box-shadow: var(--shadow-lg);
    animation: float 5s ease-in-out infinite;
}

.float-card span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
}

.float-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.float-icon.success {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.float-icon.reward {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.float-card-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: -2.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-intro {
    max-width: 600px;
    margin-bottom: 60px;
}

.section-intro.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-intro h2 {
    margin-bottom: 16px;
}

.section-intro p {
    font-size: 1.125rem;
    color: var(--slate-400);
}

/* ===== Problem/Solution ===== */
.problem-solution {
    padding: 80px 0;
    background: var(--slate-900);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
}

.comparison-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid;
}

.comparison-card.problem {
    background: rgba(239, 68, 68, 0.03);
    border-color: rgba(239, 68, 68, 0.15);
}

.comparison-card.solution {
    background: rgba(16, 185, 129, 0.03);
    border-color: rgba(16, 185, 129, 0.15);
}

.card-header {
    margin-bottom: 28px;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.badge-problem {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
}

.badge-solution {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-400);
}

.card-header h3 {
    font-size: 1.375rem;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
}

.list-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.list-icon.x {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
}

.list-icon.check {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-400);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-vs span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-800);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-400);
}

/* ===== How It Works ===== */
.how-it-works {
    background: var(--slate-950);
}

.steps-flow {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
}

.step-card {
    flex: 1;
    padding: 32px 24px;
    background: var(--slate-900);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-800);
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

.step-card:hover {
    border-color: var(--slate-700);
    transform: translateY(-4px);
}

.step-card.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.05));
    border-color: var(--primary-700);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
}

.step-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-400);
}

.step-card h4 {
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.step-connector {
    display: flex;
    align-items: center;
    color: var(--slate-700);
    padding-top: 60px;
}

.process-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-lg);
}

.note-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-900);
    border-radius: var(--radius-sm);
    color: var(--primary-400);
    flex-shrink: 0;
}

.process-note p {
    font-size: 0.9375rem;
    color: var(--slate-300);
}

.process-note strong {
    color: var(--white);
}

/* ===== Benefits ===== */
.benefits {
    background: var(--slate-900);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px 24px;
    background: var(--slate-950);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-800);
    text-align: center;
    transition: var(--transition-base);
}

.benefit-card:hover {
    border-color: var(--primary-700);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary-400);
    margin: 0 auto 20px;
}

.benefit-card h4 {
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* ===== Operators Section ===== */
.operators {
    background: var(--slate-950);
}

.operators-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.operators-content .section-label {
    display: inline-block;
}

.operators-content h2 {
    margin-bottom: 16px;
}

.operators-intro {
    font-size: 1.125rem;
    color: var(--slate-400);
    margin-bottom: 40px;
}

.operator-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.op-feature {
    display: flex;
    gap: 16px;
}

.op-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    color: var(--primary-400);
    flex-shrink: 0;
}

.op-feature h5 {
    margin-bottom: 4px;
}

.op-feature p {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--slate-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--slate-800);
    box-shadow: var(--shadow-xl);
}

.dashboard-chrome {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--slate-800);
    border-bottom: 1px solid var(--slate-700);
}

.chrome-dots {
    display: flex;
    gap: 6px;
}

.chrome-dots span {
    width: 12px;
    height: 12px;
    background: var(--slate-600);
    border-radius: 50%;
}

.chrome-title {
    font-size: 0.8125rem;
    color: var(--slate-500);
    font-family: 'JetBrains Mono', monospace;
}

.dashboard-content {
    padding: 24px;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dash-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.dash-date {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.dash-stat {
    padding: 20px;
    background: var(--slate-800);
    border-radius: var(--radius-md);
}

.dash-stat .stat-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-bottom: 8px;
    display: block;
}

.dash-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
}

.dash-stat .stat-value small {
    font-size: 0.875rem;
    opacity: 0.6;
}

.dash-stat .stat-change {
    font-size: 0.75rem;
    margin-top: 4px;
    display: block;
}

.dash-stat .stat-change.positive {
    color: var(--success);
}

.dash-chart {
    padding: 20px;
    background: var(--slate-800);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.chart-bars .bar {
    flex: 1;
    height: var(--h);
    background: var(--slate-600);
    border-radius: 4px 4px 0 0;
    transition: var(--transition-base);
}

.chart-bars .bar.active {
    background: var(--gradient-primary);
}

.dash-machines {
    padding: 16px 20px;
    background: var(--slate-800);
    border-radius: var(--radius-md);
}

.machines-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    display: block;
    margin-bottom: 8px;
}

.machines-progress {
    height: 6px;
    background: var(--slate-700);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    width: var(--w);
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.machines-count {
    font-size: 0.8125rem;
    color: var(--primary-400);
    font-weight: 500;
}

/* ===== Technology Section ===== */
.technology {
    background: var(--slate-900);
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.tech-card {
    padding: 24px;
    background: var(--slate-950);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-800);
}

.tech-card h5 {
    margin-bottom: 16px;
    color: var(--slate-300);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    padding: 6px 12px;
    background: var(--slate-800);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--slate-400);
    font-family: 'JetBrains Mono', monospace;
}

.tech-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--slate-950);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-800);
}

.highlight svg {
    color: var(--primary-400);
}

.highlight span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
}

/* ===== CTA Section ===== */
.cta {
    background: var(--slate-950);
    padding: 100px 0;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 48px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.04));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-xl);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--slate-400);
    margin-bottom: 40px;
}

.cta-form {
    margin-bottom: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.cta-form input {
    padding: 16px 20px;
    background: var(--slate-900);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    color: var(--white);
    transition: var(--transition-fast);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary-500);
}

.cta-form input::placeholder {
    color: var(--slate-500);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 0.875rem;
    color: var(--slate-500);
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== Footer ===== */
.footer {
    background: var(--slate-900);
    padding: 80px 0 32px;
    border-top: 1px solid var(--slate-800);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: var(--slate-500);
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h6 {
    margin-bottom: 20px;
    color: var(--slate-300);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.9375rem;
    color: var(--slate-500);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--slate-800);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--slate-600);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-800);
    border-radius: var(--radius-sm);
    color: var(--slate-400);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--slate-700);
    color: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-metrics {
        justify-content: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-vs {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .steps-flow {
        flex-direction: column;
        gap: 24px;
    }
    
    .step-connector {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .operators-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .metric-divider {
        width: 60px;
        height: 1px;
    }
    
    .float-card {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .benefits-grid,
    .tech-stack-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 100px;
}
