/* ==============================================================================
   Aneevarp DocAI — Landing Page Styles & Animations
   Brand-aligned with Aneevarp Solutions (https://aneevarpsolutions.vercel.app/)
   ============================================================================== */

:root {
    /* Aneevarp Solutions Official Design System Palette */
    --ivory-base: #FCFAF5;
    --surface-bright: #FAF9F6;
    --surface-container-low: #F4F4F0;
    --surface-container: #EEEEEA;
    --surface-container-high: #E9E8E5;
    
    --slate-deep: #1A1F1F;
    --on-surface: #1A1C1A;
    --secondary: #596060;
    --tertiary: #5E5F5B;
    
    /* Primary Brand: Forest Sage & Emerald Green */
    --primary: #476550;
    --primary-hover: #37503E;
    --primary-container: #7D9D85;
    --primary-fixed: #C9EBD0;
    --primary-fixed-dim: #ADCFB5;
    --on-primary: #FFFFFF;
    --on-primary-container: #173422;
    
    --sage-muted: #A2BCA8;
    --glass-border: rgba(71, 101, 80, 0.15);
    --glass-card-bg: rgba(255, 255, 255, 0.88);
    --glass-card-hover: rgba(255, 255, 255, 0.96);
    
    /* Tech Highlights */
    --gcp-blue: #2563EB;
    --gemini-purple: #7C3AED;
    --gcp-green: #059669;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #476550 0%, #5E836A 50%, #7D9D85 100%);
    --laser-gradient: linear-gradient(90deg, transparent, #476550, #7D9D85, #C9EBD0, transparent);
    --hero-gradient: linear-gradient(135deg, #FCFAF5 0%, #F4F4F0 50%, #EAE9E4 100%);
}

[data-theme="dark"] {
    --ivory-base: #0B100E;
    --surface-bright: #141C18;
    --surface-container-low: #101714;
    --surface-container: #192520;
    --surface-container-high: #202F28;
    
    --slate-deep: #F8FAFC;
    --on-surface: #F8FAFC;
    --secondary: #A2BCA8;
    --tertiary: #CBD5E1;
    
    --primary: #476550;
    --primary-hover: #5A7D65;
    --primary-container: #7D9D85;
    --primary-fixed: #C9EBD0;
    --primary-fixed-dim: #ADCFB5;
    --on-primary: #FFFFFF;
    --on-primary-container: #C9EBD0;
    
    --sage-muted: #A2BCA8;
    --glass-border: rgba(162, 188, 168, 0.2);
    --glass-card-bg: rgba(20, 28, 24, 0.85);
    --glass-card-hover: rgba(26, 37, 32, 0.95);
    
    --gcp-blue: #60A5FA;
    --gemini-purple: #A78BFA;
    --gcp-green: #10B981;
    
    --hero-gradient: linear-gradient(135deg, #0B100E 0%, #141C18 50%, #192520 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--ivory-base);
    color: var(--on-surface);
    font-family: 'Hanken Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Typography Classes */
h1, h2, h3, h4, .font-headline {
    font-family: 'Manrope', 'Inter', sans-serif;
}

.font-label-caps, .badge-tag {
    font-family: 'IBM Plex Sans', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==============================================================================
   BACKGROUND GLOWS & AMBIENCE (Matching Aneevarp Floating Orbs)
   ============================================================================== */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}
.bg-glow-1 {
    width: 600px;
    height: 600px;
    top: -80px;
    left: -100px;
    background: #7D9D85;
    animation: floatOrb 12s ease-in-out infinite alternate;
}
.bg-glow-2 {
    width: 550px;
    height: 550px;
    top: 400px;
    right: -100px;
    background: #A2BCA8;
    animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}
.bg-glow-3 {
    width: 700px;
    height: 700px;
    bottom: 200px;
    left: 25%;
    background: #C9EBD0;
    opacity: 0.18;
}

@keyframes floatOrb {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.08); }
    100% { transform: translateY(20px) scale(0.95); }
}

/* ==============================================================================
   STICKY NAVBAR (Matching Aneevarp Solutions)
   ============================================================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 72px;
    height: auto;
    padding: 10px 0;
    background: rgba(252, 250, 245, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(162, 188, 168, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
}

[data-theme="dark"] .navbar {
    background: rgba(11, 16, 14, 0.94);
    border-bottom-color: rgba(162, 188, 168, 0.18);
}

.nav-container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--slate-deep);
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--on-primary);
    box-shadow: 0 4px 15px rgba(71, 101, 80, 0.3);
    flex-shrink: 0;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    justify-content: center;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--slate-deep);
    white-space: nowrap;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.70rem;
    color: var(--primary);
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    line-height: 1.2;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.parent-portal-link {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.80rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(162, 188, 168, 0.4);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.parent-portal-link:hover {
    background: rgba(162, 188, 168, 0.15);
    color: var(--primary);
}

.cta-nav-btn {
    background: var(--primary);
    color: var(--on-primary);
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(71, 101, 80, 0.25);
}

.cta-nav-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 101, 80, 0.35);
}

/* THEME TOGGLE BUTTON */
.theme-toggle-btn {
    background: var(--surface-bright, #FFFFFF);
    border: 1px solid rgba(162, 188, 168, 0.45);
    color: var(--slate-deep);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.theme-toggle-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 101, 80, 0.15);
}

.theme-toggle-btn i {
    font-size: 0.95rem;
    transition: transform 0.3s ease, color 0.2s ease;
}

.theme-toggle-btn:hover i {
    transform: rotate(15deg);
}

[data-theme="dark"] .theme-toggle-btn {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.3);
    color: #F8FAFC;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .theme-toggle-btn:hover {
    background: #192520;
    border-color: var(--primary-fixed-dim);
    color: var(--primary-fixed);
}

/* Google Sign-In Button */
.google-auth-btn {
    background: var(--surface-bright, #FFFFFF);
    color: var(--slate-deep);
    border: 1px solid rgba(162, 188, 168, 0.45);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    white-space: nowrap;
}

.google-auth-btn img {
    width: 16px;
    height: 16px;
}

.google-auth-btn:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 101, 80, 0.15);
}

[data-theme="dark"] .google-auth-btn {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.3);
    color: #F8FAFC;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .google-auth-btn:hover {
    background: #192520;
    border-color: var(--primary-fixed-dim);
    color: var(--primary-fixed);
}

[data-theme="dark"] .parent-portal-link {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.3);
    color: #CBD5E1;
}

[data-theme="dark"] .parent-portal-link:hover {
    background: #192520;
    border-color: var(--primary-fixed-dim);
    color: var(--primary-fixed);
}

/* User Profile */
.user-profile {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-avatar-wrapper {
    position: relative;
    cursor: pointer;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.profile-avatar-wrapper:hover .user-avatar {
    transform: scale(1.05);
}

.online-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #059669;
    border-radius: 50%;
    border: 2px solid var(--ivory-base, #FCFAF5);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 240px;
    background: var(--surface-bright, #FFFFFF);
    border: 1px solid rgba(162, 188, 168, 0.4);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

[data-theme="dark"] .profile-dropdown {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.25);
}

.dropdown-header {
    padding: 8px 10px;
}

.dropdown-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--slate-deep);
}

.dropdown-email {
    font-size: 0.78rem;
    color: var(--secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 2px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(162, 188, 168, 0.25);
    margin: 8px 0;
}

.dropdown-item {
    padding: 8px 10px;
    font-size: 0.82rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.dropdown-logout-btn {
    width: 100%;
    background: rgba(220, 38, 38, 0.08);
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.25);
    padding: 9px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.dropdown-logout-btn:hover {
    background: rgba(220, 38, 38, 0.16);
}

.hidden {
    display: none !important;
}

/* Mobile Hamburger Menu Button */
.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(71, 101, 80, 0.08);
    border: 1px solid rgba(162, 188, 168, 0.4);
    color: var(--primary);
    font-size: 1.15rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(71, 101, 80, 0.15);
}

/* Mobile Slide-down Drawer */
.mobile-drawer {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--ivory-base, #FCFAF5);
    border-bottom: 1px solid rgba(162, 188, 168, 0.3);
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

[data-theme="dark"] .mobile-drawer {
    background: #0E1512;
    border-bottom-color: rgba(162, 188, 168, 0.2);
}

.mobile-drawer.open {
    max-height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile-drawer-content {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--slate-deep);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.mobile-nav-item:hover {
    background: rgba(71, 101, 80, 0.08);
    color: var(--primary);
}

.mobile-drawer-divider {
    height: 1px;
    background: rgba(162, 188, 168, 0.25);
    margin: 6px 0;
}

.mobile-drawer-cta {
    background: var(--primary);
    color: var(--on-primary);
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    box-shadow: 0 4px 15px rgba(71, 101, 80, 0.25);
}

/* ==============================================================================
   HERO SECTION
   ============================================================================== */
.hero-section {
    padding: 70px 20px 100px;
    position: relative;
    z-index: 10;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(71, 101, 80, 0.08);
    border: 1px solid rgba(162, 188, 168, 0.35);
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 26px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(71, 101, 80, 0.06);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    border-color: var(--primary);
    background: rgba(71, 101, 80, 0.12);
    transform: translateY(-1px);
}

[data-theme="dark"] .hero-badge {
    background: rgba(20, 28, 24, 0.85);
    border-color: rgba(162, 188, 168, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: pulsePing 2s infinite;
}

[data-theme="dark"] .badge-dot {
    background: var(--primary-fixed);
    box-shadow: 0 0 10px var(--primary-fixed);
}

@keyframes pulsePing {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

.badge-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'IBM Plex Sans', sans-serif;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

[data-theme="dark"] .badge-text {
    color: #E2E8F0;
}

[data-theme="dark"] .badge-text i {
    color: var(--primary-fixed);
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.2px;
    color: var(--slate-deep);
    margin-bottom: 24px;
}

.gradient-text {
    color: var(--primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.22rem;
    color: var(--secondary);
    max-width: 840px;
    margin: 0 auto 38px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--slate-deep);
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 38px;
}

.primary-hero-btn {
    background: var(--primary);
    color: var(--on-primary);
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(71, 101, 80, 0.3);
}

.primary-hero-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px rgba(71, 101, 80, 0.4);
}

.secondary-hero-btn {
    background: rgba(255, 255, 255, 0.85);
    color: var(--slate-deep);
    text-decoration: none;
    border: 1px solid rgba(162, 188, 168, 0.5);
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 51, 51, 0.04);
}

.secondary-hero-btn:hover {
    background: white;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

[data-theme="dark"] .secondary-hero-btn {
    background: rgba(20, 28, 24, 0.85);
    color: #F8FAFC;
    border-color: rgba(162, 188, 168, 0.35);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .secondary-hero-btn:hover {
    background: rgba(26, 37, 32, 0.95);
    border-color: var(--primary-fixed-dim);
    color: var(--primary-fixed);
}

.hero-tech-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 60px;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(162, 188, 168, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.tech-tag i {
    color: var(--primary);
}

[data-theme="dark"] .tech-tag {
    background: rgba(20, 28, 24, 0.85);
    border-color: rgba(162, 188, 168, 0.3);
    color: #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .tech-tag i {
    color: #A2BCA8;
}

[data-theme="dark"] .hero-badge {
    background: rgba(71, 101, 80, 0.25);
    border-color: rgba(162, 188, 168, 0.35);
}

[data-theme="dark"] .hero-badge .badge-text {
    color: #C9EBD0;
}

/* ==============================================================================
   HERO ANIMATED VISUALIZER (Aneevarp Styled Glass Card)
   ============================================================================== */
.hero-visualizer-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--sage-muted);
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(44, 51, 51, 0.08), 0 0 30px rgba(71, 101, 80, 0.06);
    overflow: hidden;
    text-align: left;
}

.visualizer-header {
    background: var(--surface-container-low);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(162, 188, 168, 0.25);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.control-dot.red { background: #EF4444; }
.control-dot.yellow { background: #F59E0B; }
.control-dot.green { background: #10B981; }

.visualizer-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--slate-deep);
    display: flex;
    align-items: center;
    gap: 8px;
}
.visualizer-title i {
    color: var(--primary);
}

.visualizer-status {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulsePing 1.5s infinite;
}

/* Visualizer Grid */
.visualizer-content {
    display: grid;
    grid-template-columns: 1fr 140px 1.4fr;
    padding: 30px;
    gap: 20px;
    align-items: center;
}

.viz-col-label {
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Simulated Document & Laser Scan */
.mock-pdf-page {
    background: white;
    border: 1px solid rgba(162, 188, 168, 0.4);
    border-radius: 14px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(44, 51, 51, 0.04);
}

/* SCANNER LASER ANIMATION (Forest Sage Gradient) */
.scanner-laser {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--laser-gradient);
    box-shadow: 0 0 15px #476550, 0 0 25px #7D9D85;
    animation: laserScan 3.5s ease-in-out infinite alternate;
}

@keyframes laserScan {
    0% { top: 5%; opacity: 0.2; }
    50% { opacity: 1; }
    100% { top: 92%; opacity: 0.5; }
}

.mock-line {
    height: 8px;
    background: var(--surface-container);
    border-radius: 4px;
    margin-bottom: 10px;
}
.mock-line.title-line { height: 14px; width: 60%; background: var(--primary-fixed-dim); margin-bottom: 16px; }
.mock-line.full { width: 100%; }
.mock-line.three-quarter { width: 75%; }
.mock-line.half { width: 50%; }

.mock-line.highlighted-line {
    height: auto;
    background: rgba(71, 101, 80, 0.1);
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 12px;
    animation: highlightPulse 3s infinite ease-in-out;
}

@keyframes highlightPulse {
    0% { border-color: rgba(71, 101, 80, 0.3); }
    50% { border-color: var(--primary); box-shadow: 0 0 15px rgba(71, 101, 80, 0.2); }
    100% { border-color: rgba(71, 101, 80, 0.3); }
}

.highlight-target {
    font-size: 0.76rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--primary);
}

.mock-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
}
.table-row {
    display: flex;
    gap: 8px;
}
.table-row span {
    flex: 1;
    height: 6px;
    background: var(--surface-container);
    border-radius: 3px;
}

/* Middle Particle Stream */
.viz-stream-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.particle-stream {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
}

.particle {
    font-size: 0.72rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(71, 101, 80, 0.12);
    border: 1px solid rgba(71, 101, 80, 0.3);
    color: var(--primary);
    animation: floatAnim 3s infinite ease-in-out;
}
.particle.p2 { animation-delay: 0.8s; background: rgba(125, 157, 133, 0.15); border-color: var(--sage-muted); color: var(--slate-deep); }
.particle.p3 { animation-delay: 1.6s; background: var(--primary-fixed); border-color: var(--primary-container); color: var(--on-primary-container); }

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

.ai-brain-badge {
    background: var(--primary);
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(71, 101, 80, 0.3);
}

/* Right Output Column */
.mock-chat-bubble {
    background: white;
    border: 1px solid rgba(162, 188, 168, 0.35);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(44, 51, 51, 0.04);
}

.chat-user-query {
    background: rgba(71, 101, 80, 0.1);
    color: var(--primary);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 700;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-ai-response {
    background: var(--surface-container-low);
    border: 1px solid rgba(162, 188, 168, 0.3);
    padding: 16px;
    border-radius: 14px;
    font-size: 0.88rem;
    color: var(--slate-deep);
    line-height: 1.6;
}

.chat-ai-response b {
    color: var(--primary);
}

.mock-crop-container {
    margin-top: 14px;
    background: white;
    border: 1px solid rgba(71, 101, 80, 0.3);
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 2px 10px rgba(71, 101, 80, 0.06);
}

.crop-header {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-crop-image {
    background: rgba(71, 101, 80, 0.06);
    border-left: 3px solid var(--primary);
    padding: 8px 12px;
    border-radius: 4px;
}

.crop-text {
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--slate-deep);
}

/* DARK MODE VISUALIZER OVERRIDES */
[data-theme="dark"] .hero-visualizer-card {
    background: rgba(20, 28, 24, 0.95);
    border-color: rgba(162, 188, 168, 0.25);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 30px rgba(71, 101, 80, 0.15);
}

[data-theme="dark"] .visualizer-header {
    background: #101714;
    border-bottom-color: rgba(162, 188, 168, 0.2);
}

[data-theme="dark"] .mock-pdf-page {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.25);
}

[data-theme="dark"] .mock-line {
    background: #202F28;
}

[data-theme="dark"] .mock-line.highlighted-line {
    background: rgba(71, 101, 80, 0.25);
    border-color: var(--primary-fixed-dim);
}

[data-theme="dark"] .table-row span {
    background: #202F28;
}

[data-theme="dark"] .mock-chat-bubble {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.25);
}

[data-theme="dark"] .chat-user-query {
    background: rgba(71, 101, 80, 0.25);
    color: var(--primary-fixed);
}

[data-theme="dark"] .chat-ai-response {
    background: #101714;
    border-color: rgba(162, 188, 168, 0.2);
}

[data-theme="dark"] .mock-crop-container {
    background: #101714;
    border-color: rgba(71, 101, 80, 0.4);
}

[data-theme="dark"] .mock-crop-image {
    background: rgba(71, 101, 80, 0.15);
}

[data-theme="dark"] .sandbox-window {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.25);
}

[data-theme="dark"] .sandbox-left {
    background: #101714;
    border-color: rgba(162, 188, 168, 0.2);
}

[data-theme="dark"] .sandbox-right {
    background: #101714;
    border-color: rgba(162, 188, 168, 0.2);
}

[data-theme="dark"] .quick-btn {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.25);
    color: #E2E8F0;
}

[data-theme="dark"] .quick-btn:hover,
[data-theme="dark"] .quick-btn.active {
    background: rgba(71, 101, 80, 0.3);
    border-color: var(--primary-fixed-dim);
    color: #FFFFFF;
}

[data-theme="dark"] .feature-card {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.25);
}

[data-theme="dark"] .arch-diagram-card {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.25);
}

[data-theme="dark"] .arch-node {
    background: #101714;
    border-color: rgba(162, 188, 168, 0.2);
}

/* ==============================================================================
   SECTION HEADERS & CONTAINERS
   ============================================================================== */
section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(71, 101, 80, 0.1);
    color: var(--primary);
    border: 1px solid rgba(162, 188, 168, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--slate-deep);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.12rem;
    color: var(--secondary);
    max-width: 680px;
    margin: 0 auto 60px;
}

/* ==============================================================================
   PIPELINE GRID (4 STEPS)
   ============================================================================== */
.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    text-align: left;
}

.pipeline-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sage-muted);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(44, 51, 51, 0.04);
}

.pipeline-card:hover {
    background: var(--glass-card-hover);
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(44, 51, 51, 0.08);
}

.step-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(71, 101, 80, 0.12);
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Manrope', sans-serif;
}

.step-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(71, 101, 80, 0.1);
    border: 1px solid rgba(162, 188, 168, 0.4);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--slate-deep);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--primary);
    background: rgba(71, 101, 80, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
}

/* ==============================================================================
   INTERACTIVE LIVE SANDBOX DEMO
   ============================================================================== */
.sandbox-container {
    background: white;
    border: 1px solid var(--sage-muted);
    border-radius: 24px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 20px 60px rgba(44, 51, 51, 0.06);
}

.sandbox-tabs {
    display: flex;
    background: var(--surface-container-low);
    border-bottom: 1px solid rgba(162, 188, 168, 0.3);
    overflow-x: auto;
}

.sandbox-tab {
    flex: 1;
    min-width: 200px;
    background: transparent;
    border: none;
    color: var(--secondary);
    padding: 16px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

.sandbox-tab:hover {
    color: var(--slate-deep);
    background: rgba(255, 255, 255, 0.5);
}

.sandbox-tab.active {
    color: var(--primary);
    background: white;
    border-bottom: 3px solid var(--primary);
}

.sandbox-window {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    padding: 30px;
}

.doc-card-preview {
    background: var(--surface-container-low);
    border: 1px solid rgba(162, 188, 168, 0.3);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
}

.doc-badge {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.doc-excerpt {
    font-size: 0.86rem;
    font-style: italic;
    color: var(--secondary);
    line-height: 1.5;
}

.quick-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--tertiary);
    margin-bottom: 10px;
}

.quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: white;
    border: 1px solid rgba(162, 188, 168, 0.4);
    color: var(--slate-deep);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.quick-btn:hover {
    background: rgba(71, 101, 80, 0.08);
    border-color: var(--primary);
    color: var(--primary);
}

.quick-btn.active {
    background: rgba(71, 101, 80, 0.12);
    border-color: var(--primary);
    color: var(--primary);
}

.sandbox-chat-area {
    background: var(--surface-bright);
    border: 1px solid rgba(162, 188, 168, 0.3);
    border-radius: 16px;
    padding: 24px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

.msg-author {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.msg-text {
    font-size: 0.95rem;
    color: var(--slate-deep);
    line-height: 1.6;
    margin-bottom: 16px;
}
.msg-text b {
    color: var(--primary);
}

.demo-evidence-box {
    background: white;
    border: 1px solid rgba(71, 101, 80, 0.3);
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 4px 15px rgba(71, 101, 80, 0.06);
}

.evidence-title {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.evidence-snippet {
    font-size: 0.84rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--slate-deep);
}

/* ==============================================================================
   FEATURES GRID
   ============================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    text-align: left;
}

.feature-card {
    background: var(--glass-card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sage-muted);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(44, 51, 51, 0.04);
}

.feature-card:hover {
    background: var(--glass-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 51, 51, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(71, 101, 80, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--slate-deep);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--secondary);
    line-height: 1.6;
}

/* ==============================================================================
   ARCHITECTURE SHOWCASE
   ============================================================================== */
.arch-diagram-card {
    background: white;
    border: 1px solid var(--sage-muted);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(44, 51, 51, 0.04);
}

.arch-layers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.arch-node {
    flex: 1;
    background: var(--surface-container-low);
    border: 1px solid rgba(162, 188, 168, 0.35);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.arch-node:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(71, 101, 80, 0.1);
}

.node-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.client-node .node-icon { color: var(--primary); }
.run-node .node-icon { color: #2563EB; }
.gemini-node .node-icon { color: #7C3AED; }

.arch-node h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--slate-deep);
    margin-bottom: 8px;
}

.arch-node p {
    font-size: 0.84rem;
    color: var(--secondary);
}

.arch-connector {
    font-size: 1.5rem;
    color: var(--sage-muted);
}

/* ==============================================================================
   PRICING & MONETIZATION SECTION (Aneevarp Solutions Style)
   ============================================================================== */
.pricing-section {
    padding: 90px 20px;
    position: relative;
    z-index: 10;
}

.pricing-controls-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.pricing-switch-box {
    background: var(--surface-container-low);
    border: 1px solid rgba(162, 188, 168, 0.4);
    border-radius: 30px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pricing-pill-btn {
    background: transparent;
    border: none;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.pricing-pill-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(71, 101, 80, 0.3);
}

.discount-badge {
    background: #059669;
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--surface-bright, #FFFFFF);
    border: 1px solid var(--sage-muted);
    border-radius: 24px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(44, 51, 51, 0.04);
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(71, 101, 80, 0.12);
}

[data-theme="dark"] .pricing-card {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .pricing-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(71, 101, 80, 0.2);
}

/* Featured / Most Popular Tier */
.pricing-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 244, 240, 0.95) 100%);
    box-shadow: 0 15px 45px rgba(71, 101, 80, 0.18);
    transform: scale(1.03);
}

[data-theme="dark"] .pricing-card.featured {
    background: linear-gradient(180deg, #17221D 0%, #121A16 100%);
    border-color: var(--primary-fixed-dim);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

/* Rapid Pass & Suite Card Styling */
.pricing-card.rapid-pass {
    border-color: rgba(245, 158, 11, 0.5);
}
.pricing-card.suite-card {
    border-color: rgba(124, 58, 237, 0.45);
}

.pricing-badge-tag {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-badge-tag.gold {
    background: #F59E0B;
    color: #000000;
}
.pricing-badge-tag.green {
    background: var(--primary);
    color: #FFFFFF;
}
.pricing-badge-tag.purple {
    background: #7C3AED;
    color: #FFFFFF;
}

.pricing-card-header {
    margin-bottom: 20px;
}

.tier-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.tier-icon {
    font-size: 1.3rem;
    color: var(--primary);
}

.tier-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--slate-deep);
}

.tier-tagline {
    font-size: 0.82rem;
    color: var(--secondary);
    line-height: 1.5;
}

.pricing-price-box {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(162, 188, 168, 0.25);
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--slate-deep);
    font-family: 'Manrope', sans-serif;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

.pricing-features-list {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--slate-deep);
    line-height: 1.5;
}

.pricing-feature-item i {
    font-size: 0.95rem;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-feature-item.highlight-feature {
    font-weight: 700;
    color: var(--primary);
}

.pricing-cta-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-cta-btn.primary {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(71, 101, 80, 0.3);
}

.pricing-cta-btn.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 101, 80, 0.4);
}

.pricing-cta-btn.secondary {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.pricing-cta-btn.secondary:hover {
    background: rgba(71, 101, 80, 0.1);
    transform: translateY(-2px);
}

.pricing-cta-btn.gold-btn {
    background: #F59E0B;
    color: #000000;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.pricing-cta-btn.gold-btn:hover {
    background: #D97706;
    transform: translateY(-2px);
}

.pricing-cta-btn.purple-btn {
    background: #7C3AED;
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.pricing-cta-btn.purple-btn:hover {
    background: #6D28D9;
    transform: translateY(-2px);
}

/* ==============================================================================
   CHECKOUT & PAYMENT MODAL (Simulated Razorpay / Stripe Gateway)
   ============================================================================== */
.checkout-card {
    max-width: 580px;
}

.checkout-summary-box {
    background: var(--surface-container-low);
    border: 1px solid rgba(162, 188, 168, 0.35);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-plan-info h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--slate-deep);
    margin-bottom: 4px;
}

.checkout-plan-info p {
    font-size: 0.8rem;
    color: var(--secondary);
    margin: 0;
}

.checkout-amount-display {
    text-align: right;
}

.checkout-price-main {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
}

.payment-method-selector {
    margin-bottom: 20px;
}

.method-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pay-method-btn {
    background: var(--surface-bright, #FFFFFF);
    border: 1px solid rgba(162, 188, 168, 0.4);
    border-radius: 12px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--slate-deep);
    cursor: pointer;
    transition: all 0.2s ease;
}

[data-theme="dark"] .pay-method-btn {
    background: #101714;
    border-color: rgba(162, 188, 168, 0.2);
}

.pay-method-btn i {
    font-size: 1.25rem;
    color: var(--primary);
}

.pay-method-btn.active {
    border-color: var(--primary);
    background: rgba(71, 101, 80, 0.12);
    color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
}

.checkout-input-group {
    margin-bottom: 16px;
}

.checkout-input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--slate-deep);
    margin-bottom: 6px;
}

.checkout-input-group input, 
.checkout-input-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid rgba(162, 188, 168, 0.4);
    background: var(--surface-container-low);
    color: var(--slate-deep);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.checkout-input-group input:focus, 
.checkout-input-group textarea:focus {
    border-color: var(--primary);
}

.secure-payment-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--secondary);
    margin-top: 14px;
}

.secure-payment-notice i {
    color: #059669;
}

/* ==============================================================================
   CTA BANNER (Matching Aneevarp Slate Deep / Emerald Style)
   ============================================================================== */
.cta-section {
    padding: 60px 20px 100px;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--slate-deep);
    border: 1px solid rgba(162, 188, 168, 0.3);
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    color: var(--ivory-base);
    box-shadow: 0 20px 60px rgba(26, 31, 31, 0.25);
}

.cta-container h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--ivory-base);
}

.cta-container p {
    font-size: 1.1rem;
    color: var(--secondary-fixed-dim, #C1C8C7);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

/* ==============================================================================
   FOOTER (Matching Aneevarp Solutions)
   ============================================================================== */
.footer {
    border-top: 1px solid rgba(162, 188, 168, 0.3);
    padding: 40px 20px;
    background: var(--surface-container-low);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--slate-deep);
}

.footer-subtitle {
    font-size: 0.75rem;
    color: var(--secondary);
}
.footer-subtitle strong {
    color: var(--primary);
}

.footer-center {
    font-size: 0.82rem;
    color: var(--secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-compliance-row {
    width: 100%;
    border-top: 1px solid rgba(162, 188, 168, 0.2);
    margin-top: 20px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--secondary);
}

.compliance-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.compliance-links a, .compliance-links button {
    color: var(--secondary);
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.compliance-links a:hover, .compliance-links button:hover {
    color: var(--primary);
}

/* ==============================================================================
   INDIAN DPDP ACT 2023 CONSENT & NOTICE BANNER
   ============================================================================== */
.dpdp-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 900px;
    background: rgba(252, 250, 245, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: bannerSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .dpdp-banner {
    background: rgba(14, 22, 18, 0.96);
    border-color: rgba(162, 188, 168, 0.35);
}

@keyframes bannerSlideUp {
    from { opacity: 0; transform: translate(-50%, 30px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.dpdp-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--slate-deep);
    line-height: 1.5;
}

.dpdp-icon {
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.dpdp-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.dpdp-btn-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.80rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dpdp-btn-accept:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.dpdp-btn-info {
    background: transparent;
    color: var(--secondary);
    border: 1px solid rgba(162, 188, 168, 0.4);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 0.80rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dpdp-btn-info:hover {
    background: rgba(162, 188, 168, 0.15);
    color: var(--primary);
}

/* ==============================================================================
   INDIAN LEGAL & COMPLIANCE MODALS
   ============================================================================== */
.legal-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 16, 14, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.legal-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.legal-modal-card {
    background: var(--surface-bright, #FFFFFF);
    border: 1px solid var(--sage-muted);
    border-radius: 20px;
    width: 100%;
    max-width: 780px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .legal-modal-card {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.3);
}

@keyframes modalPop {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.legal-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(162, 188, 168, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--slate-deep);
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-modal-close-btn {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--secondary);
    cursor: pointer;
    transition: color 0.2s ease;
}

.legal-modal-close-btn:hover {
    color: #DC2626;
}

.legal-modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 0.88rem;
    color: var(--slate-deep);
    line-height: 1.7;
}

.legal-modal-body h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--primary);
    margin: 18px 0 8px;
}

.legal-modal-body p {
    margin-bottom: 12px;
    color: var(--secondary);
}

.legal-modal-body ul {
    margin: 8px 0 14px 20px;
    color: var(--secondary);
}

.legal-modal-body li {
    margin-bottom: 6px;
}

.grievance-box {
    background: var(--surface-container-low);
    border: 1px solid rgba(162, 188, 168, 0.35);
    border-radius: 12px;
    padding: 16px;
    margin-top: 14px;
}

.legal-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(162, 188, 168, 0.25);
    display: flex;
    justify-content: flex-end;
}

/* ==============================================================================
   RESPONSIVE MEDIA QUERIES (Ultra-Wide, Desktop, Tablet, Mobile & Foldable)
   ============================================================================== */

/* 1. Ultra-Wide & 4K Displays (>= 1440px) */
@media (min-width: 1440px) {
    .nav-container, 
    .hero-container, 
    .section-container, 
    .cta-container, 
    .footer-container {
        max-width: 1360px;
    }
    .hero-title {
        font-size: 3.8rem;
    }
}

/* 2. Large Tablets & Compact Desktops (< 1240px) */
@media (max-width: 1240px) {
    .nav-links {
        display: none !important; /* Collapses into mobile drawer */
    }
    .mobile-menu-btn {
        display: flex !important; /* Activate hamburger menu */
    }
    .brand-tagline {
        display: none; /* Clean single-line logo */
    }
    .hero-title {
        font-size: clamp(2.4rem, 5vw, 3.2rem);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pipeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3. Tablets & Phablets (< 992px) */
@media (max-width: 992px) {
    .hero-section {
        padding: 40px 16px 70px;
    }
    .hero-title {
        font-size: clamp(2.1rem, 5.5vw, 2.8rem);
        letter-spacing: -0.8px;
        margin-bottom: 18px;
    }
    .hero-subtitle {
        font-size: 1.02rem;
        margin-bottom: 28px;
        line-height: 1.6;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 420px;
        margin: 0 auto 32px;
        gap: 12px;
    }
    .primary-hero-btn, 
    .secondary-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    .hero-tech-row {
        gap: 8px;
        margin-bottom: 36px;
    }
    .tech-tag {
        font-size: 0.76rem;
        padding: 5px 10px;
    }

    /* FIX: Hero Visualizer Stream - Horizontal Flow on Tablets */
    .visualizer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 16px;
    }
    .viz-stream-col {
        transform: none !important;
        margin: 8px 0;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .particle-stream {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 4px;
    }
    .particle {
        font-size: 0.74rem;
        padding: 5px 10px;
    }
    .ai-brain-badge {
        margin-top: 4px;
    }

    /* Sandbox Demo */
    .sandbox-window {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 20px;
    }
    .sandbox-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding: 10px;
    }
    .sandbox-tab {
        flex-shrink: 0;
        font-size: 0.82rem;
        padding: 10px 14px;
    }

    /* Grids */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pipeline-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Architecture Diagram */
    .arch-diagram-card {
        padding: 26px 18px;
    }
    .arch-layers {
        flex-direction: column;
        gap: 14px;
    }
    .arch-connector {
        transform: rotate(90deg);
        margin: 4px 0;
        font-size: 1.2rem;
    }

    /* CTA Section */
    .cta-container {
        padding: 40px 20px;
    }
    .cta-container h2 {
        font-size: 1.8rem;
    }
}

/* 4. Standard Mobile (< 768px) */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        min-height: 64px;
        padding: 8px 0;
    }
    .nav-container {
        width: 94%;
        gap: 8px;
    }
    .nav-logo {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    .brand-name {
        font-size: 1.02rem;
    }
    .nav-actions {
        gap: 6px;
    }
    .parent-portal-link span {
        display: none;
    }
    .parent-portal-link {
        padding: 8px 10px;
    }
    .parent-portal-link.github-icon-link {
        display: none; /* Available inside mobile drawer */
    }
    .cta-nav-btn {
        padding: 8px 12px;
        font-size: 0.78rem;
    }
    #landingThemeLabel {
        display: none;
    }
    .theme-toggle-btn {
        padding: 8px 10px !important;
    }
    .hero-badge {
        padding: 6px 14px;
        font-size: 0.72rem;
    }
    .badge-text {
        font-size: 0.72rem;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .footer-links {
        justify-content: center;
    }
    .footer-compliance-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .compliance-links {
        justify-content: center;
    }
    .dpdp-banner {
        flex-direction: column;
        align-items: flex-start;
        bottom: 10px;
        width: 95%;
        padding: 14px;
        gap: 12px;
    }
    .dpdp-banner-actions {
        width: 100%;
        justify-content: stretch;
    }
    .dpdp-btn-accept, .dpdp-btn-info {
        flex: 1;
        text-align: center;
    }
    .legal-modal-card {
        max-height: 90vh;
        border-radius: 16px;
    }
    .legal-modal-header {
        padding: 16px;
    }
    .legal-modal-header h3 {
        font-size: 1.05rem;
    }
    .legal-modal-body {
        padding: 16px;
    }
}

/* 5. Extra Small Mobile & Foldables (< 420px) */
@media (max-width: 420px) {
    .brand-name {
        font-size: 0.92rem;
    }
    .cta-nav-btn span {
        display: none; /* Just icon on very small screen */
    }
    .cta-nav-btn {
        padding: 8px 10px;
    }
    .hero-title {
        font-size: 1.85rem;
    }
    .hero-subtitle {
        font-size: 0.92rem;
    }
    .mock-crop-header {
        font-size: 0.7rem;
    }
    .quick-btn {
        font-size: 0.82rem;
        padding: 10px 12px;
    }
}

/* ==============================================================================
   FOUNDER'S LETTER & COMMITMENT SECTION
   ============================================================================== */
.founder-section {
    padding: 70px 20px 40px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.founder-card {
    background: var(--surface-bright, #FFFFFF);
    border: 1px solid rgba(162, 188, 168, 0.4);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 12px 40px rgba(71, 101, 80, 0.08);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .founder-card {
    background: #141C18;
    border-color: rgba(162, 188, 168, 0.25);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.founder-card-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
}

.founder-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-avatar-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 18px;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 3px solid var(--primary);
    box-shadow: 0 12px 35px rgba(71, 101, 80, 0.25);
    transition: transform 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.02);
}

.founder-badge-pill {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--slate-deep);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(162, 188, 168, 0.3);
}

[data-theme="dark"] .founder-badge-pill {
    background: var(--primary);
}

.founder-credentials {
    margin-top: 10px;
}

.founder-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--slate-deep);
    margin-bottom: 4px;
    font-family: 'Manrope', sans-serif;
}

[data-theme="dark"] .founder-name {
    color: #F8FAFC;
}

.founder-role {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.founder-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.founder-social-link {
    background: rgba(71, 101, 80, 0.08);
    border: 1px solid rgba(162, 188, 168, 0.35);
    color: var(--slate-deep);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.founder-social-link:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

[data-theme="dark"] .founder-social-link {
    color: #E2E8F0;
    background: rgba(26, 37, 32, 0.8);
}

.founder-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.founder-quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 700;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-heading {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--slate-deep);
    font-family: 'Manrope', sans-serif;
}

[data-theme="dark"] .founder-heading {
    color: #F8FAFC;
}

.founder-body-text p {
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 12px;
}

.founder-body-text strong {
    color: var(--slate-deep);
}

[data-theme="dark"] .founder-body-text strong {
    color: #F8FAFC;
}

.founder-guarantee-box {
    background: rgba(71, 101, 80, 0.08);
    border: 1px solid rgba(162, 188, 168, 0.35);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

[data-theme="dark"] .founder-guarantee-box {
    background: rgba(20, 28, 24, 0.9);
    border-color: rgba(162, 188, 168, 0.25);
    border-left-color: var(--primary-fixed);
}

.guarantee-icon {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
}

.guarantee-text {
    font-size: 0.88rem;
    color: var(--slate-deep);
    line-height: 1.5;
}

[data-theme="dark"] .guarantee-text {
    color: #E2E8F0;
}

@media (max-width: 900px) {
    .founder-card-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .founder-text-col {
        text-align: center;
    }
    .founder-heading {
        font-size: 1.25rem;
    }
    .founder-guarantee-box {
        text-align: left;
    }
    .founder-card {
        padding: 32px 20px;
    }
}
