:root {
    /* Colors */
    --clr-bg: #030308;
    --clr-bg-card: rgba(20, 20, 30, 0.4);
    --clr-bg-card-hover: rgba(30, 30, 45, 0.6);
    --clr-surface: rgba(15, 15, 25, 0.7);
    
    --clr-primary: #8C52FF;
    --clr-primary-glow: rgba(140, 82, 255, 0.5);
    --clr-secondary: #00F0FF;
    --gradient-primary: linear-gradient(135deg, #FF3366 0%, #8C52FF 50%, #00F0FF 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --gradient-card-border: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);

    --clr-text-main: #FFFFFF;
    --clr-text-muted: #9BA1B0;
    --clr-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --section-pady: 140px;
    --border-radius: 24px;
    --border-radius-sm: 12px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Resets */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Ambient Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    animation: drift 20s infinite alternate ease-in-out;
}
.glow-1 { top: -200px; left: -100px; width: 600px; height: 600px; background: #8C52FF; }
.glow-2 { top: 40%; right: -200px; width: 800px; height: 800px; background: #00F0FF; animation-delay: -5s; }
.glow-3 { bottom: 10%; left: 10%; width: 500px; height: 500px; background: #FF3366; animation-delay: -10s; }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

img { max-width: 100%; display: block; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }

/* Utilities */
.section-pady { padding: 80px 0; }

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-border);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #FFF;
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    background: #F0F0F0;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--clr-text-main);
    border: 1px solid var(--clr-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    background: rgba(3, 3, 8, 0.6);
    transition: var(--transition-smooth);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-text { color: #FFF; }
.logo-dot {
    color: transparent;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-img { height: 32px; width: auto; object-fit: contain; }

.nav-links a {
    color: var(--clr-text-muted);
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.nav-links a:hover { color: var(--clr-text-main); }
.nav-actions { display: flex; gap: 24px; align-items: center; }
.nav-login {
    color: var(--clr-text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}
.nav-login:hover {
    color: #FFF;
    text-shadow: 0 0 12px var(--clr-primary-glow);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FFF;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

/* Hero Section */
.hero {
    padding-top: 200px;
    padding-bottom: 120px;
    position: relative;
}

.hero-content {
    display: flex; flex-direction: column; align-items: center; text-align: center;
}

.hero-text-content {
    max-width: 900px; margin-bottom: 80px; position: relative; z-index: 2;
}

.hero-title {
    font-size: 5.5rem; letter-spacing: -0.03em; margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 1.25rem; color: var(--clr-text-muted); margin-bottom: 48px;
    max-width: 650px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

.hero-cta-group {
    display: flex; gap: 20px; justify-content: center; margin-bottom: 16px;
}

.hero-microcopy { font-size: 0.875rem; color: var(--clr-text-muted); margin-bottom: 40px; }

.hero-support-bullets {
    display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}

.bullet-item {
    display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--clr-text-muted);
}

.bullet-icon { color: var(--clr-primary); font-weight: 700; }

.hero-visual {
    position: relative; width: 100%; max-width: 1100px; margin: 0 auto;
    border-radius: var(--border-radius); padding: 1px;
    background: var(--gradient-card-border);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 80px rgba(140, 82, 255, 0.15);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    overflow: hidden;
}

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

.dashboard-mockup {
    width: 100%; border-radius: calc(var(--border-radius) - 1px);
    display: block; object-fit: cover; background: #0A0A10;
}

/* Base Sections */
.section-header { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.section-header h2 { font-size: 3.5rem; margin-bottom: 24px; }
.section-header p { color: var(--clr-text-muted); font-size: 1.25rem; }

/* Trust Section */
.trust-section {
    padding: 100px 0; border-bottom: 1px solid var(--clr-border);
    background: linear-gradient(180deg, transparent 0%, rgba(20,20,30,0.3) 100%);
}

.trust-heading {
    text-align: center; color: #FFF; font-family: var(--font-heading);
    font-size: 2rem; margin-bottom: 16px;
}

.trust-sub {
    text-align: center; color: var(--clr-text-muted); max-width: 700px;
    margin: 0 auto 64px; font-size: 1.125rem;
}

.trust-logo-header {
    text-align: center; color: var(--clr-text-muted); font-size: 0.875rem;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 32px;
}

.trust-logos {
    display: flex; justify-content: center; align-items: center; gap: 64px;
    flex-wrap: wrap; margin-bottom: 80px; opacity: 0.5; filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.trust-logos:hover { opacity: 0.8; filter: grayscale(50%); }

.logo-item { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: #FFF; }

.trust-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.metric-item {
    background: var(--clr-bg-card); backdrop-filter: blur(16px);
    border: 1px solid var(--clr-border); padding: 40px; border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.metric-item:hover {
    background: var(--clr-bg-card-hover); border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.metric-item p { color: var(--clr-text-muted); font-size: 1rem; font-style: italic; }

/* Features Section */
.core-values { padding: var(--section-pady) 0; }
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.feature-card {
    background: var(--clr-bg-card); backdrop-filter: blur(20px);
    border: 1px solid var(--clr-border); border-radius: var(--border-radius);
    padding: 56px; transition: var(--transition-smooth); position: relative; overflow: hidden;
}

.feature-card::before {
    content: ''; position: absolute; inset: 0; padding: 1px;
    background: var(--gradient-card-border); border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    background: var(--clr-bg-card-hover);
}

.card-icon {
    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.75rem; margin-bottom: 32px; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: var(--transition-smooth);
}

.feature-card:hover .card-icon { background: var(--gradient-primary); color: #FFF; border-color: transparent; }

.feature-card h3 { font-size: 1.75rem; margin-bottom: 16px; }
.feature-card p { color: var(--clr-text-muted); font-size: 1.05rem; line-height: 1.6; }

/* Differentiation */
.differentiation { padding: var(--section-pady) 0; background: rgba(10, 10, 15, 0.5); }
.diff-points-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }

.diff-point-row {
    background: var(--clr-bg-card); backdrop-filter: blur(10px);
    border: 1px solid var(--clr-border); border-radius: var(--border-radius-sm);
    padding: 40px; display: flex; align-items: center; gap: 32px; transition: var(--transition-fast);
}

.diff-point-row:hover { border-color: rgba(255,255,255,0.2); transform: scale(1.02); }

.diff-point-row.alternate { background: transparent; border: 1px dashed var(--clr-border); }
.diff-point-row.alternate:hover { border-style: solid; }

.diff-point-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.diff-point-content p { color: var(--clr-text-muted); font-size: 1.05rem; }

/* How It Works */
.how-it-works { padding: var(--section-pady) 0; }
.steps-container { display: flex; justify-content: space-between; position: relative; gap: 24px; }

.step {
    flex: 1; text-align: center; background: var(--clr-bg-card); border: 1px solid var(--clr-border);
    backdrop-filter: blur(10px); padding: 48px 32px; border-radius: var(--border-radius);
    position: relative; transition: var(--transition-smooth);
}

.step:hover { transform: translateY(-5px); border-color: var(--clr-primary); }

.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 24px; background: rgba(255,255,255,0.05); color: #FFF;
    border-radius: 100px; 
    font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700;
    margin-bottom: 24px; border: 1px solid var(--clr-border);
    text-transform: uppercase; letter-spacing: 0.05em;
}

.step:hover .step-number { background: var(--gradient-primary); border-color: transparent; }
.step h3 { font-size: 1.25rem; margin-bottom: 12px; }
.step p { color: var(--clr-text-muted); font-size: 0.95rem; }
.step-connector { display: none; }

.mt-xl { margin-top: 80px; text-align: center; }

/* Testimonials */
.testimonials { padding: var(--section-pady) 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px; }

.testimonial-card {
    background: var(--clr-bg-card); border: 1px solid var(--clr-border); backdrop-filter: blur(10px);
    padding: 40px; border-radius: var(--border-radius); transition: var(--transition-smooth);
}

.testimonial-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-5px); }

.quote {
    font-size: 1.125rem; font-style: italic; color: #FFF; line-height: 1.6; margin-bottom: 32px;
}

.author-info strong { display: block; color: #FFF; font-size: 1.125rem; font-family: var(--font-heading); }
.author-info span { font-size: 0.875rem; color: var(--clr-text-muted); }

.outcomes-strip {
    display: flex; justify-content: space-between; background: rgba(255,255,255,0.02);
    border: 1px solid var(--clr-border); border-radius: var(--border-radius-sm); padding: 32px 48px;
    flex-wrap: wrap; gap: 24px;
}
.outcome-item { font-size: 1rem; font-weight: 500; display: flex; align-items: center; gap: 12px; }
.outcome-item::before { content: '✓'; color: var(--clr-primary); font-weight: bold; }

/* FAQ Section */
.faq-section { padding: var(--section-pady) 0; }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.faq-item {
    background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--border-radius-sm);
    padding: 32px; transition: var(--transition-fast);
}

.faq-item:hover { border-color: rgba(255,255,255,0.2); }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question h3 { font-size: 1.25rem; margin: 0; }
.faq-toggle { font-size: 1.5rem; color: var(--clr-text-muted); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; opacity: 0; transition: var(--transition-smooth); color: var(--clr-text-muted); }
.faq-item.active .faq-answer { margin-top: 16px; max-height: 500px; opacity: 1; }
.faq-item.active .faq-toggle { transform: rotate(45deg); color: var(--clr-primary); }

/* Features Grid Text tweaks */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.feature-card.minimal { padding: 40px; }
.integrations-callout {
    background: rgba(255,255,255,0.02); border: 1px solid var(--clr-border);
    border-radius: var(--border-radius); padding: 48px; text-align: center;
}
.integrations-text-box p { font-size: 1.125rem; color: var(--clr-text-muted); max-width: 800px; margin: 0 auto; }

/* Final CTA */
.final-cta { padding: 140px 0; text-align: center; background: radial-gradient(circle at center, rgba(140, 82, 255, 0.1) 0%, transparent 60%); }
.cta-content { max-width: 800px; margin: 0 auto; }
.cta-content h2 { font-size: 4rem; margin-bottom: 24px; }
.cta-content p { font-size: 1.25rem; color: var(--clr-text-muted); margin-bottom: 48px; }
.cta-microcopy { font-size: 0.875rem; color: var(--clr-text-muted); margin-top: 16px; }

/* Legal Content Pages */
.legal-content { max-width: 800px; margin: 0 auto; padding: 180px 24px 100px; }
.legal-content h1 { font-size: 3rem; margin-bottom: 8px; }
.legal-content > p:first-of-type { font-size: 1.125rem; color: #FFF; margin-bottom: 48px; opacity: 0.8; }
.legal-content h2 { font-size: 1.75rem; margin-top: 48px; margin-bottom: 24px; color: #FFF; }
.legal-content h3 { font-size: 1.25rem; margin-top: 32px; margin-bottom: 16px; color: #FFF; }
.legal-content p { color: var(--clr-text-muted); margin-bottom: 24px; font-size: 1.05rem; }
.legal-content ul, .legal-content ol { color: var(--clr-text-muted); margin-bottom: 24px; padding-left: 24px; font-size: 1.05rem; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--clr-primary); text-decoration: none; transition: var(--transition-fast); }
.legal-content a:hover { color: var(--clr-text-main); text-decoration: underline; }

/* Footer */
.footer { border-top: 1px solid var(--clr-border); padding: 80px 0 32px; background: #010103; }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 64px; flex-wrap: wrap; gap: 40px; }
.footer-brand { max-width: 300px; }
.footer-brand p { color: var(--clr-text-muted); margin-top: 16px; font-size: 0.95rem; }
.footer-links { display: flex; gap: 80px; }
.link-col h4 { margin-bottom: 24px; font-size: 1.125rem; }
.link-col a { display: block; color: var(--clr-text-muted); text-decoration: none; margin-bottom: 12px; transition: var(--transition-fast); }
.link-col a:hover { color: #FFF; }
.footer-bottom { text-align: center; color: var(--clr-text-muted); font-size: 0.875rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .features-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .section-header h2 { font-size: 2.75rem; }
    .trust-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 3rem; }
    .cards-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .steps-container { flex-direction: column; }
    .hero-cta-group { flex-direction: column; }
    .outcomes-strip { flex-direction: column; }
}

/* Premium About Refined - Ultra Minimalist */
.about-page {
    background: #000;
}

.about-hero-refined {
    padding: 240px 0 160px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(140, 82, 255, 0.1) 0%, transparent 60%);
    position: relative;
    z-index: 2;
}

.premium-badge {
    border-radius: 200px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.hero-title-refined {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.text-glow {
    background: linear-gradient(135deg, #FF3366, #00F0FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(140, 82, 255, 0.3));
}

.hero-lead-refined {
    font-size: 1.5rem;
    color: var(--clr-text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Section */
.about-story-refined {
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #010101;
    position: relative;
    z-index: 2;
}

.story-grid-refined {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.story-left h2 {
    font-size: 2.5rem;
    color: #FFF;
    position: sticky;
    top: 120px;
}

.story-right .large-text {
    font-size: 2rem;
    color: #FFF;
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.story-right p {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Standards Grid */
.about-standards-refined {
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.section-title-refined {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
}

.standards-grid-refined {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.standard-card-refined {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 24px;
    padding: 48px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.standard-card-refined::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: 0.4s;
}

.standard-card-refined:hover::before {
    opacity: 1;
}

.standard-card-refined:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.icon-refined {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--clr-primary);
    margin-bottom: 32px;
    font-weight: 700;
    opacity: 0.8;
}

.standard-card-refined h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #FFF;
}

.standard-card-refined p {
    color: var(--clr-text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Operator Note */
.about-operator-refined {
    padding: 0 0 160px;
}

.operator-card-refined {
    background: #050505;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 32px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.operator-image {
    width: 45%;
    position: relative;
}

.operator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    mask-image: linear-gradient(to right, black 60%, transparent);
    -webkit-mask-image: linear-gradient(to right, black 60%, transparent);
}

.operator-text {
    width: 55%;
    padding: 80px 80px 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.operator-text blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.4;
    color: #FFF;
    margin-bottom: 32px;
    font-weight: 500;
}

.operator-author-refined {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .story-grid-refined { grid-template-columns: 1fr; gap: 40px; }
    .story-left h2 { position: static; }
    .standards-grid-refined { grid-template-columns: 1fr; }
    .operator-card-refined { flex-direction: column; }
    .operator-image, .operator-text { width: 100%; }
    .operator-image img { 
        height: 400px; 
        mask-image: linear-gradient(to bottom, black 60%, transparent);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent);
    }
    .hero-title-refined { font-size: 3.5rem; }
    .operator-text { padding: 48px; }
    .operator-text blockquote { font-size: 1.5rem; }
}

/* Pricing Page Styles */
.pricing-page {
    background: #000;
}
.pricing-hero {
    padding: 240px 0 100px;
    text-align: center;
}
.billing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 12px 24px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
}
.toggle-label {
    font-weight: 600;
    color: var(--clr-text-muted);
    margin: 0 16px;
    transition: 0.3s;
    position: relative;
}
.toggle-label.active {
    color: #FFF;
}
.save-badge {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 40%;
    background: var(--gradient-primary);
    color: #FFF;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(140, 82, 255, 0.3);
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: rgba(255,255,255,0.1);    
    border-radius: 34px;
    transition: .4s;
    border: 1px solid rgba(255,255,255,0.2);
}
.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}
input:checked + .slider {
    background: var(--gradient-primary);
    border-color: transparent;
}
input:checked + .slider:before {
    transform: translateX(28px);
}

.pricing-cards-section {
    padding: 0 0 120px;
    position: relative;
    z-index: 2;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.pricing-card {
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.3s;
}
.pricing-card.popular-card {
    border-color: rgba(140, 82, 255, 0.5);
    background: rgba(25, 15, 40, 0.6);
    box-shadow: 0 0 40px rgba(140, 82, 255, 0.15);
    transform: translateY(-8px);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #FFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.plan-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}
.plan-header p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    height: 50px;
}
.plan-price {
    margin: 32px 0;
    min-height: 80px;
    display: flex;
    align-items: center;
}
.price-display {
    width: 100%;
}
.price-display.hidden {
    display: none;
}
.price-strikethrough {
    font-size: 1rem;
    color: var(--clr-text-muted);
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 4px;
}
.price-main {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.05em;
    color: #FFF;
}
.price-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    margin-left: 4px;
    letter-spacing: normal;
}
.plan-specs {
    flex-grow: 1;
    margin-bottom: 40px;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spec-label {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}
.spec-value {
    color: #FFF;
    font-weight: 600;
}
.btn-full {
    width: 100%;
    text-align: center;
}

.enterprise-card {
    margin-top: 24px;
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}
.enterprise-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.enterprise-content h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}
.enterprise-content p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

/* Feature Comparison Table */
.feature-comparison {
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 60px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 40px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.comparison-table th, .comparison-table td {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comparison-table th:first-child, .comparison-table td:first-child {
    text-align: left;
    width: 35%;
}
.comparison-table th {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #FFF;
}
.comparison-table .section-header td {
    background: rgba(255,255,255,0.02);
    font-weight: 700;
    color: #FFF;
    text-align: left;
    font-size: 1.1rem;
    padding: 16px 24px;
}
.comparison-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 500;
}
.icon-check {
    color: #00F0FF;
    font-weight: 800;
    font-size: 1.25rem;
}
.icon-x {
    color: #444;
    font-weight: 700;
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular-card {
        transform: none;
    }
    .enterprise-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .comparison-table-wrapper {
        padding: 24px;
    }
    .comparison-table th, .comparison-table td {
        padding: 16px;
    }
}
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-page {
    background: #000;
}
.contact-hero {
    padding: 240px 0 100px;
    text-align: center;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    padding: 0 0 120px;
    position: relative;
    z-index: 2;
}

.contact-form-card {
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.contact-form-card h3 {
    font-size: 2rem;
    margin-bottom: 32px;
}
.form-group {
    margin-bottom: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.form-label {
    display: block;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-control {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    color: #FFF;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: 0.3s;
}
.form-control::placeholder {
    color: rgba(255,255,255,0.3);
}
.form-control:focus {
    outline: none;
    border-color: rgba(140, 82, 255, 0.5);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 4px rgba(140, 82, 255, 0.1);
}
textarea.form-control {
    resize: vertical;
    min-height: 140px;
}
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-info-card {
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: 0.3s;
}
.contact-info-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
}
.contact-info-card:hover::before {
    opacity: 1;
}
.contact-info-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #FFF;
}
.contact-info-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}
.contact-info-link {
    color: #FFF;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}
.contact-info-link:hover {
    color: var(--clr-text-muted);
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #FFF;
}

/* =========================================
   FEATURES PAGE STYLES
========================================= */

/* Hero */
.features-hero { padding-bottom: 0; }
.features-hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}
.features-hero-split .hero-text-content {
    flex: 1;
    max-width: 55%;
    text-align: left;
}
.features-hero-split .hero-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.hero-isometric-img {
    width: 100%;
    max-width: 650px;
    object-fit: contain;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    border-radius: 12px;
    box-shadow: -20px 30px 60px rgba(0,0,0,0.6);
    z-index: 2;
    transition: transform 0.5s ease;
}
.hero-isometric-img:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-10px);
}
.hero-glow-back {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: var(--gradient-primary);
    filter: blur(120px);
    opacity: 0.4;
    border-radius: 50%;
    z-index: 1;
}
.floating-chip {
    position: absolute;
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #FFF;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.chip-1 { top: 15%; right: -10%; animation-delay: 0s; }
.chip-2 { bottom: 20%; left: -5%; animation-delay: 2s; }
.chip-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.chip-dot.green { background: #00E676; box-shadow: 0 0 10px #00E676; }
.chip-dot.purple { background: #D536FF; box-shadow: 0 0 10px #D536FF; }

/* Problem Section */
.problem-grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px; 
    margin-top: 48px; 
}
.warning-card {
    background: rgba(20, 20, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.warning-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: #FF5A5A;
    filter: blur(40px);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}
.warning-card:hover {
    background: rgba(30, 30, 45, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.warning-card:hover::before {
    opacity: 0.25;
}
.card-icon, .warning-card h3, .warning-card p {
    position: relative;
    z-index: 1;
}
.warning-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #FF5A5A;
    background: linear-gradient(135deg, rgba(255, 90, 90, 0.15) 0%, rgba(255, 90, 90, 0) 100%);
    border: 1px solid rgba(255, 90, 90, 0.2);
    box-shadow: inset 0 0 10px rgba(255, 90, 90, 0.1);
    margin-bottom: 24px;
}
.warning-card h3 {
    font-size: 1.5rem;
    color: #FFF;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}
.warning-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* System Pillars */
.system-pillars { position: relative; }
.pillar-container { display: flex; flex-direction: column; gap: 120px; margin-top: 64px; }
.pillar-row {
    display: flex;
    align-items: center;
    gap: 80px;
}
.pillar-row.reverse { flex-direction: row-reverse; }
.pillar-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(140, 82, 255, 0.15) 0%, rgba(0, 240, 255, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 24px;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.05), 0 8px 32px rgba(140, 82, 255, 0.15);
}
.pillar-title {
    font-size: 2.5rem;
    color: #FFF;
    margin-bottom: 24px;
}
.pillar-text p {
    color: var(--clr-text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
}
.pillar-link {
    color: #FFF;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.125rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 4px;
    transition: 0.3s;
}
.pillar-link:hover { border-color: #FFF; }
.pillar-text {
    flex: 1;
    max-width: 500px;
}
.pillar-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(15, 15, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 64px 32px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.system-img { max-width: 100%; border-radius: 12px; position: relative; z-index: 2; }
.system-img.no-border { border: none; box-shadow: none; max-width: 320px; object-fit: contain; }
.shadow-img { box-shadow: 0 20px 80px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05); }
.floating-anim { animation: float 8s ease-in-out infinite; }
.image-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.2;
    border-radius: 50%;
}
.image-glow.purple { background: #8C52FF; }
.image-glow.blue { background: #00DDEB; }
.image-glow.pink { background: #D536FF; }

/* Deep Dives */
.grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}
.tool-card {
    background: rgba(15, 15, 25, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 32px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.tool-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(140,82,255,0.1), transparent 70%);
    opacity: 0;
    transition: 0.3s;
}
.tool-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}
.tool-card:hover::after { opacity: 1; }
.tool-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: inline-block;
}
.tool-card h4 { color: #FFF; font-size: 1.25rem; margin-bottom: 12px; }
.tool-card p { color: var(--clr-text-muted); font-size: 0.95rem; line-height: 1.5; }

/* Compare Table */
.table-container { margin-top: 64px; overflow-x: auto; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 15, 25, 0.4);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}
.compare-table th, .compare-table td {
    padding: 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compare-table th { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 600; color: #FFF; }
.table-feature { width: 33%; color: var(--clr-text-muted); font-weight: 500; }
.table-generic { width: 33%; color: #888; }
.table-cv.highlight-text {
    width: 33%;
    background: rgba(140, 82, 255, 0.05);
    color: #FFF;
    font-weight: 600;
}
.compare-table thead .table-cv {
    background: rgba(140, 82, 255, 0.1);
    color: #FFF;
}

/* Trust Block */
.massive-quote-box {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    border-radius: 24px;
    background: rgba(15, 15, 25, 0.3);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.quote-glow {
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(140,82,255,0.1), transparent 60%);
    z-index: 1;
}
.massive-quote-box h2 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: #FFF;
    margin-bottom: 40px;
}
.quote-author {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.author-name { font-weight: 600; color: #FFF; font-size: 1.125rem; }
.author-title { color: var(--clr-text-muted); font-size: 0.95rem; }

@media (max-width: 992px) {
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: block;
    }
    .nav-content {
        flex-wrap: wrap;
    }
    .nav-links, .nav-actions {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 24px 0;
    }
    .nav-actions {
        padding-top: 0;
        padding-bottom: 32px;
    }
    .nav-links a, .nav-login {
        font-size: 1.25rem;
        margin: 0;
    }
    
    /* Features Page Mobile */
    .section-pady { padding: 40px 0; }
    .features-hero-split { flex-direction: column; text-align: center; gap: 40px; }
    .features-hero-split .hero-text-content { max-width: 100%; text-align: center; }
    .features-hero-split .hero-image-wrapper { justify-content: center; }
    .hero-isometric-img { max-width: 100%; transform: none; }
    .hero-isometric-img:hover { transform: none; }
    .chip-1 { right: 0; top: 0; }
    .chip-2 { left: 0; bottom: 0; }
    .problem-grid { grid-template-columns: 1fr; }
    .pillar-row { flex-direction: column !important; gap: 40px; text-align: center; }
    .grid-6 { grid-template-columns: 1fr; }
    .massive-quote-box h2 { font-size: 1.75rem; }
    
    .navbar.menu-open {
        background: rgba(3, 3, 8, 0.98);
        height: 100vh;
        align-items: flex-start;
    }
    .navbar.menu-open .nav-links,
    .navbar.menu-open .nav-actions {
        display: flex;
        animation: fadeIn 0.3s ease forwards;
    }

    /* Grids */
    .contact-grid, .pricing-grid, .bento-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .bento-card.large, .bento-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 32px;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    .footer-content {
        flex-direction: column;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    /* Typography Scaling */
    .hero-title, .hero-title-refined {
        font-size: 2.75rem;
        line-height: 1.1;
    }
    .hero-lead, .hero-lead-refined {
        font-size: 1.125rem;
        padding: 0 16px;
    }
    .section-title, .section-title-refined {
        font-size: 2.25rem;
    }
    
    /* Layout Scaling */
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .section-pady {
        padding: 60px 0;
    }
    
    /* Pricing Page specifically */
    .pricing-card {
        padding: 32px 24px;
    }
    .billing-toggle-wrapper {
        flex-direction: column;
        gap: 16px;
    }
    .save-badge {
        position: static;
        margin-left: 12px;
        transform: none;
    }
    .comparison-table-wrapper {
        overflow-x: auto;
        border-radius: 16px;
    }
}

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