/* ===================================================
   ILLUSORY — Stylesheet
   Fonts: Inter (body), Syne (display headings), JetBrains Mono (code)
   =================================================== */

:root {
    --primary: #818cf8;
    --primary-dark: #6366f1;
    --secondary: #a78bfa;
    --accent: #e879f9;
    --dark: #0a0f1e;
    --dark-lighter: #111827;
    --dark-card: #161e2e;
    --gray: #374151;
    --gray-light: #6b7280;
    --border: #1f2d45;
    --border-light: #2d3f59;
    --text: #f8fafc;
    --text-dim: #94a3b8;
    --text-muted: #64748b;
    --success: #34d399;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1rem;
}

/* Display headings use Syne */
h1, h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

/* Sub-headings use Inter Bold */
h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.025;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============================
   NAVIGATION
   ============================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(129, 140, 248, 0.08);
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    line-height: 1;
    flex-shrink: 0;
}

.logo:hover { opacity: 0.75; }

.logo svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.25s ease;
    display: block;
}

/* =============================
   BUTTONS
   ============================= */
.btn-primary, a.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.015em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover, a.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(129, 140, 248, 0.4);
    background: linear-gradient(135deg, #939af8, var(--secondary));
}

.btn-secondary, a.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    color: var(--text);
    padding: 0.75rem 1.75rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
}

.btn-secondary:hover, a.btn-secondary:hover {
    background: rgba(129, 140, 248, 0.07);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline, a.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    background: transparent;
    color: var(--text-dim);
    padding: 0.875rem 1.75rem;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
}

.btn-outline:hover, a.btn-outline:hover {
    background: rgba(129, 140, 248, 0.06);
    border-color: var(--primary);
    color: var(--text);
}

.btn-large, a.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    letter-spacing: 0.01em;
}

.btn-small, a.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    border-radius: var(--radius);
    white-space: nowrap;
}

/* =============================
   HERO
   ============================= */
.hero {
    padding: 148px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.2), transparent);
}

.hero-content {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(129, 140, 248, 0.08);
    border: 1px solid rgba(129, 140, 248, 0.18);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.7s ease 0.15s both;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2.5s ease infinite;
    flex-shrink: 0;
}

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

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text);
    animation: fadeInUp 0.7s ease 0.25s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 45%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    padding-bottom: 0.08em;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dim);
    margin-bottom: 2.25rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    animation: fadeInUp 0.7s ease 0.35s both;
}

.hero-cta {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.7s ease 0.45s both;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.75rem;
    animation: fadeInUp 0.7s ease 0.5s both;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
}

.trust-item svg { color: var(--success); flex-shrink: 0; }

.hero-stats {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.7s ease 0.58s both;
    background: rgba(22, 30, 46, 0.7);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    flex-wrap: wrap;
    gap: 0;
}

.stat {
    text-align: center;
    padding: 0 2rem;
    flex: 1;
    min-width: 80px;
}

.stat-divider {
    width: 1px;
    background: var(--border-light);
    margin: 0.5rem 0;
    flex-shrink: 0;
}

.stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Network Globe */
.hero-visual {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    opacity: 0.25;
    pointer-events: none;
}

.network-globe {
    position: relative;
    width: 100%;
    height: 100%;
    animation: float 7s ease-in-out infinite;
}

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

.globe-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.08); }
}

.orbit {
    position: absolute;
    top: 50%; left: 50%;
    border: 1.5px solid rgba(129, 140, 248, 0.25);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 { width: 300px; height: 300px; margin-left: -150px; margin-top: -150px; }
.orbit-2 { width: 420px; height: 420px; margin-left: -210px; margin-top: -210px; animation-duration: 32s; animation-direction: reverse; }
.orbit-3 { width: 540px; height: 540px; margin-left: -270px; margin-top: -270px; animation-duration: 44s; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.node {
    position: absolute;
    width: 10px; height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--primary);
}

.node-1 { top: 20%; left: 30%; animation: pulse 2.2s ease infinite; }
.node-2 { top: 42%; right: 24%; animation: pulse 2.2s 0.55s ease infinite; }
.node-3 { bottom: 30%; left: 25%; animation: pulse 2.2s 1.1s ease infinite; }
.node-4 { bottom: 22%; right: 32%; animation: pulse 2.2s 1.65s ease infinite; }

/* =============================
   SECTION HEADERS (shared)
   ============================= */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 0.85rem;
}

.section-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dim);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}

/* =============================
   HOW IT WORKS
   ============================= */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(129, 140, 248, 0.03) 100%);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 0;
}

.step-card {
    flex: 1;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
    border-color: rgba(129, 140, 248, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(129, 140, 248, 0.1);
}

.step-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.5;
    letter-spacing: -0.04em;
}

.step-icon {
    width: 52px;
    height: 52px;
    background: rgba(129, 140, 248, 0.08);
    border: 1px solid rgba(129, 140, 248, 0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: var(--primary);
}

.step-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.step-card p {
    font-family: 'Inter', sans-serif;
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 0.92rem;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    color: var(--border-light);
    flex-shrink: 0;
    margin-top: 3.5rem;
}

.how-cta {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================
   FEATURES
   ============================= */
.features-section { padding: 100px 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(129, 140, 248, 0.3);
    box-shadow: 0 16px 40px rgba(129, 140, 248, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(129, 140, 248, 0.08);
    border: 1px solid rgba(129, 140, 248, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: var(--primary);
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 0.88rem;
}

/* =============================
   MID-PAGE CTA BANNER
   ============================= */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(129, 140, 248, 0.08) 0%,
        rgba(167, 139, 250, 0.05) 50%,
        rgba(232, 121, 249, 0.04) 100%);
    border-top: 1px solid rgba(129, 140, 248, 0.1);
    border-bottom: 1px solid rgba(129, 140, 248, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-banner-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.cta-banner-text p {
    font-family: 'Inter', sans-serif;
    color: var(--text-dim);
    font-size: 0.95rem;
    max-width: 440px;
    line-height: 1.65;
}

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    flex-shrink: 0;
}

.cta-price-hint {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
}

.cta-price-hint strong { color: var(--text-dim); font-weight: 500; }

/* =============================
   USE CASES
   ============================= */
.use-cases-section {
    padding: 100px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.use-case-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.use-case-card:hover {
    border-color: rgba(129, 140, 248, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(129, 140, 248, 0.1);
}

.use-case-icon {
    font-size: 2rem;
    margin-bottom: 0.875rem;
    line-height: 1;
}

.use-case-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.use-case-card > p {
    font-family: 'Inter', sans-serif;
    color: var(--text-dim);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.use-case-list {
    list-style: none;
    margin-bottom: 1.25rem;
    flex: 1;
}

.use-case-list li {
    font-family: 'Inter', sans-serif;
    color: var(--text-dim);
    font-size: 0.845rem;
    padding: 0.28rem 0 0.28rem 1.25rem;
    position: relative;
    line-height: 1.5;
}

.use-case-list li::before {
    content: "→";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 0.8rem;
}

.use-case-cta {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.use-case-cta:hover { color: var(--secondary); }

/* =============================
   PRICING
   ============================= */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(129, 140, 248, 0.04) 0%, transparent 100%);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.pricing-tab {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    background: transparent;
    color: var(--text-dim);
    padding: 0.75rem 1.5rem;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    transition: all 0.2s;
    cursor: pointer;
}

.pricing-tab:hover {
    border-color: var(--primary);
    color: var(--text);
}

.pricing-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(129, 140, 248, 0.3);
}

.pricing-table-wrapper {
    display: none;
    animation: fadeIn 0.35s ease;
}

.pricing-table-wrapper.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.pricing-table {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background 0.2s;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row.header {
    background: rgba(129, 140, 248, 0.06);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.pricing-row:not(.header):hover {
    background: rgba(129, 140, 248, 0.03);
}

.pricing-row.featured-row {
    background: rgba(129, 140, 248, 0.05);
    border-left: 2px solid var(--primary);
}

.pricing-cell {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.pricing-cell strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.005em;
}

.service-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 400;
}

.pricing-cell.price {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    justify-content: center;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-cell.price span {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    margin-top: 0.15rem;
    letter-spacing: 0;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-top: 1.25rem;
    padding: 1.1rem 1.25rem;
    background: rgba(129, 140, 248, 0.06);
    border: 1px solid rgba(129, 140, 248, 0.12);
    border-radius: var(--radius);
    color: var(--text-dim);
}

.pricing-note svg { flex-shrink: 0; color: var(--primary); margin-top: 0.15rem; }
.pricing-note p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.855rem;
    line-height: 1.65;
    font-weight: 400;
}

.pricing-footer {
    margin-top: 3rem;
    text-align: center;
}

.pricing-footer > p {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-size: 0.875rem;
}

.pricing-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
}

.badge-item svg { color: var(--success); }
.badge-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.005em;
}

/* =============================
   ABOUT
   ============================= */
.about-section { padding: 100px 0; }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.12;
    color: var(--text);
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dim);
    margin-bottom: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.25rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-badge svg { color: var(--primary); flex-shrink: 0; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(129, 140, 248, 0.3);
    box-shadow: 0 12px 30px rgba(129, 140, 248, 0.1);
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.35rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-text {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* =============================
   FINAL CTA
   ============================= */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg,
        rgba(129, 140, 248, 0.07) 0%,
        rgba(167, 139, 250, 0.04) 50%,
        transparent 100%);
    border-top: 1px solid rgba(129, 140, 248, 0.1);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.final-cta-content .hero-badge {
    animation: none;
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.final-cta-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--text);
}

.final-cta-content p {
    font-family: 'Inter', sans-serif;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    font-weight: 400;
}

.final-cta-actions {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.final-cta-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* =============================
   FOOTER
   ============================= */
.footer {
    background: var(--dark-lighter);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 260px;
    font-size: 0.855rem;
    margin-top: 0.875rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column a {
    display: block;
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.55rem;
    font-size: 0.855rem;
    font-weight: 400;
    transition: color 0.2s;
    letter-spacing: 0.005em;
}

.footer-column a:hover { color: var(--primary); }

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

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.social-links {
    display: flex;
    gap: 1.1rem;
}

.social-links a {
    color: var(--text-muted);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.social-links a:hover { color: var(--primary); }

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.875rem 1.25rem;
    background: rgba(10, 15, 30, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-light);
    z-index: 999;
    transition: opacity 0.3s ease;
}

.mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem;
    font-size: 0.95rem;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* Compat */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================
   RESPONSIVE — TABLET (968px)
   ============================ */
@media (max-width: 968px) {
    .nav-content { height: 62px; padding: 0 1.25rem; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero { padding: 120px 0 80px; }
    .hero-title { font-size: 3.2rem; }
    .hero-visual { display: none; }

    .hero-stats { gap: 0; padding: 1.25rem 0.75rem; }
    .stat { padding: 0 1.25rem; }
    .stat-value { font-size: 1.6rem; }

    .steps-grid { flex-direction: column; gap: 1rem; }
    .step-connector { transform: rotate(90deg); margin: 0 auto; padding: 0; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-banner-content { flex-direction: column; text-align: center; gap: 2rem; }
    .cta-banner-actions { align-items: center; width: 100%; }
    .cta-banner-text p { max-width: 100%; }

    .use-cases-grid { grid-template-columns: repeat(2, 1fr); }

    .about-content { grid-template-columns: 1fr; gap: 3rem; }

    .footer-content { grid-template-columns: 1fr; gap: 2.25rem; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }

    .pricing-row { grid-template-columns: 1.5fr 1fr auto; gap: 0.75rem; padding: 1rem 1.25rem; }

    .mobile-sticky-cta { display: block; }
    .footer { padding-bottom: 6rem; }

    .section-header h2 { font-size: 2.2rem; }
}

/* ============================
   RESPONSIVE — MOBILE (640px)
   ============================ */
@media (max-width: 640px) {
    .container { padding: 0 1.25rem; }
    .nav-content { padding: 0 1.25rem; }

    .hero { padding: 108px 0 64px; }
    .hero-title { font-size: 2.6rem; letter-spacing: -0.02em; }
    .hero-description { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta a { width: 100%; max-width: 300px; }
    .hero-trust { flex-direction: column; gap: 0.6rem; align-items: center; }

    .hero-stats { flex-wrap: wrap; padding: 1rem 0.5rem; }
    .stat { flex: 1 1 42%; padding: 0.75rem 0.5rem; min-width: 80px; }
    .stat-divider { display: none; }
    .stat-value { font-size: 1.5rem; }

    .section-header h2 { font-size: 2rem; }
    .section-header p { font-size: 0.95rem; }

    .how-it-works { padding: 70px 0; }
    .step-card { padding: 1.5rem; }
    .how-cta { flex-direction: column; align-items: center; }
    .how-cta a { width: 100%; max-width: 300px; }

    .features-section { padding: 70px 0; }
    .features-grid { grid-template-columns: 1fr; gap: 1rem; }
    .feature-card { padding: 1.5rem; }

    .cta-banner { padding: 56px 0; }
    .cta-banner-text h2 { font-size: 1.7rem; }
    .cta-banner-actions { width: 100%; }
    .cta-banner-actions a { width: 100%; }

    .use-cases-section { padding: 70px 0; }
    .use-cases-grid { grid-template-columns: 1fr; }

    .pricing-section { padding: 70px 0; }
    .pricing-tabs { flex-direction: column; }
    .pricing-tab { width: 100%; text-align: center; }
    .pricing-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1rem; }
    .pricing-row.header { display: none; }
    .pricing-cell.price { font-size: 1.4rem; justify-content: flex-start; }
    .btn-small { width: 100%; padding: 0.75rem 1rem; }
    .pricing-badges { flex-direction: column; gap: 0.875rem; align-items: center; }
    .badge-item { justify-content: center; }

    .about-section { padding: 70px 0; }
    .about-text h2 { font-size: 1.9rem; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
    .stat-number { font-size: 2rem; }
    .trust-badges { flex-direction: column; gap: 0.875rem; }

    .final-cta { padding: 70px 0; }
    .final-cta-content h2 { font-size: 2rem; }
    .final-cta-actions { flex-direction: column; align-items: center; }
    .final-cta-actions a { width: 100%; max-width: 300px; }
    .final-cta-features { flex-direction: column; gap: 0.4rem; align-items: center; }

    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 400px) {
    .hero-title { font-size: 2.1rem; }
    .stat { flex: 1 1 45%; }
}
