:root {
    /* Light Palette — Premium 2026 */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f7fc;
    --bg-tertiary: #eef1f8;
    --bg-card: #ffffff;
    --bg-card-hover: #f8faff;
    --bg-elevated: #e8ecf5;
    
    /* Borders */
    --border-subtle: rgba(0,0,0,0.07);
    --border-default: rgba(0,0,0,0.11);
    --border-hover: rgba(37,99,235,0.25);
    
    /* Text */
    --text-primary: #0d1117;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --text-inverse: #ffffff;
    
    /* Accent — Pryysm Blue + Gold */
    --accent: #2563EB;
    --accent-light: #1d4ed8;
    --accent-glow: rgba(37, 99, 235, 0.25);
    --gold: #b8860b;
    --gold-dim: #92690a;
    --gold-glow: rgba(184, 134, 11, 0.2);
    
    /* Semantic */
    --green: #059669;
    --red: #DC2626;
    --purple: #6366F1;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #2563EB 0%, #7c3aed 50%, #d946ef 100%);
    --gradient-orb-1: radial-gradient(circle, rgba(37,99,235,0.09) 0%, transparent 70%);
    --gradient-orb-2: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
    --gradient-orb-3: radial-gradient(circle, rgba(208,166,13,0.06) 0%, transparent 70%);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'IBM Plex Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --section-py: 7rem;
    --container-max: 1200px;
    --container-px: 1.5rem;
    
    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.12);
    --shadow-card: 0 1px 4px rgba(0,0,0,0.07), 0 0 0 1px var(--border-subtle);
    --shadow-elevated: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px var(--border-subtle);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* Selection */
::selection {
    background: rgba(37, 99, 235, 0.3);
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-default);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Ambient Orbs */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: var(--gradient-orb-1);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    top: 40%;
    left: -200px;
    background: var(--gradient-orb-2);
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: -100px;
    background: var(--gradient-orb-3);
    animation: orbFloat 18s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition-base), border-color var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--border-default);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-icon {
    width: 34px;
    height: 30px;
    flex-shrink: 0;
    margin-right: 0.625rem;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a6e;
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo-by {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1;
    white-space: nowrap;
    margin-left: 0.5rem;
    margin-top: 0.2rem; /* Visually align with Pryysm baseline */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-primary);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition-base), top var(--transition-base);
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-1px);
}

.btn-primary.glow:hover {
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(37, 99, 235, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-default);
}

.btn-ghost:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-default);
}

.btn-outline:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-hover);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

.icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Hero */
.hero {
    position: relative;
    z-index: 1;
    padding-top: 140px;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.stat-small {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-default);
}

/* Hero Visual — Dashboard Mockup */
.hero-visual {
    max-width: 960px;
    margin: 3rem auto 0;
    padding: 0 var(--container-px);
}

.dashboard-mockup {
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-elevated), 0 0 80px rgba(37, 99, 235, 0.08);
    animation: mockupFloat 6s ease-in-out infinite;
}

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

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-subtle);
}

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

.mockup-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots .red { background: #ff5f57; }
.mockup-dots .yellow { background: #febc2e; }
.mockup-dots .green { background: #28c840; }

.mockup-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.mockup-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 280px;
}

.mockup-sidebar {
    background: var(--bg-tertiary);
    border-right: 1px solid var(--border-subtle);
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mockup-nav-item {
    font-size: 0.6875rem;
    color: var(--text-muted);
    padding: 0.375rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mockup-nav-item.active {
    background: rgba(37, 99, 235, 0.15);
    color: var(--accent-light);
}

.mockup-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.mockup-kpi {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    text-align: center;
}

.mockup-kpi-label {
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.mockup-kpi-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.mockup-chart-area {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    padding: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.mockup-chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent), rgba(37,99,235,0.3));
    border-radius: 2px 2px 0 0;
    min-height: 8px;
    animation: barGrow 2s ease-out infinite alternate;
}

.mockup-chart-bar:nth-child(2) { animation-delay: 0.2s; }
.mockup-chart-bar:nth-child(3) { animation-delay: 0.4s; }
.mockup-chart-bar:nth-child(4) { animation-delay: 0.6s; }
.mockup-chart-bar:nth-child(5) { animation-delay: 0.8s; }
.mockup-chart-bar:nth-child(6) { animation-delay: 1s; }
.mockup-chart-bar:nth-child(7) { animation-delay: 1.2s; }

@keyframes barGrow {
    from { opacity: 0.5; transform: scaleY(0.8); }
    to { opacity: 1; transform: scaleY(1); }
}

.mockup-fleet-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.mockup-printer {
    font-size: 0.625rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-family: var(--font-mono);
    font-weight: 500;
}

.mockup-printer.running {
    background: rgba(15, 155, 106, 0.15);
    color: var(--green);
    border: 1px solid rgba(15, 155, 106, 0.25);
}

.mockup-printer.idle {
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
}

.mockup-printer.maintenance {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.mockup-printer span {
    display: block;
    font-size: 0.5625rem;
    margin-top: 2px;
    opacity: 0.8;
}

/* Trust Section */
.trust {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.trust-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    text-align: center;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
    letter-spacing: 0.05em;
}

.trust-logo:hover {
    opacity: 1;
}

/* Sections */
.section {
    position: relative;
    z-index: 1;
    padding: var(--section-py) 0;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 100px;
}

.tag-gold {
    color: var(--gold);
    background: rgba(208, 166, 13, 0.1);
    border-color: rgba(208, 166, 13, 0.15);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Problem / Solution */
.problem-solution {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problem-text .section-title,
.solution-text .section-title {
    text-align: left;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.problem-text .section-desc,
.solution-text .section-desc {
    text-align: left;
    margin-bottom: 1.5rem;
}

.problem-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.problem-list li,
.solution-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.problem-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(220, 38, 38, 0.15);
    color: var(--red);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.solution-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(15, 155, 106, 0.15);
    color: var(--green);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Features Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(37,99,235,0.12), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.bento-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-large {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    color: var(--accent-light);
}

.bento-icon svg {
    width: 20px;
    height: 20px;
}

.bento-title {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bento-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: auto;
}

.bento-visual {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

.mini-kpi {
    display: flex;
    gap: 1rem;
}

.mini-kpi-item {
    display: flex;
    flex-direction: column;
}

.mini-val {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mini-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mini-timeline {
    height: 24px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.mini-bar {
    position: absolute;
    top: 4px;
    bottom: 4px;
    border-radius: 3px;
    opacity: 0.85;
}

.mini-chat {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    border-left: 3px solid var(--accent);
}

.chat-bubble.ai {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}

/* How It Works */
.how-it-works {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.workflow {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-elevated) transparent;
}

.workflow::-webkit-scrollbar {
    height: 4px;
}

.workflow::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 2px;
}

.workflow-step {
    flex: 0 0 160px;
    text-align: center;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.workflow-step:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.workflow-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-light);
    background: rgba(37, 99, 235, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
}

.workflow-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.workflow-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.workflow-arrow {
    flex-shrink: 0;
    align-self: center;
    font-size: 1.25rem;
    color: var(--border-default);
    padding-top: 0;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
}

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

.stats-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stats-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.stats-number,
.stats-suffix {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stats-suffix {
    font-size: 1.5rem;
}

.stats-label {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.25rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Engagement Section */
.engagement {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

/* 4-step process row */
.engagement-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.engagement-step {
    flex: 0 0 200px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
}

.engagement-step:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

.estep-num {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 100px;
    padding: 0.2rem 0.6rem;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.estep-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.07);
    border-radius: var(--radius-md);
    color: var(--accent);
}

.estep-icon svg {
    width: 22px;
    height: 22px;
}

.estep-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.estep-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.engagement-connector {
    flex-shrink: 0;
    align-self: center;
    color: var(--border-default);
    padding: 0 0.25rem;
    margin-top: -2rem;
}

.engagement-connector svg {
    width: 40px;
    height: 16px;
    display: block;
}

/* Bottom CTA card */
.engagement-cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.engagement-cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(37,99,235,0.04), transparent 60%);
    pointer-events: none;
}

.ecta-left {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ecta-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    padding: 0.2rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.875rem;
}

.ecta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    letter-spacing: -0.02em;
}

.ecta-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 460px;
}

.ecta-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ecta-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.ecta-list svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--green);
}

.ecta-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.ecta-btn {
    white-space: nowrap;
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
}

.ecta-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* FAQ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item[open] {
    border-color: var(--border-hover);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-chevron {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform var(--transition-base), color var(--transition-fast);
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
    transform: rotate(45deg);
    color: var(--accent-light);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.faq-answer p {
    max-width: 100%;
}

/* CTA Section */
.cta {
    padding: 5rem 0 7rem;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.06), transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-guarantee {
    font-size: 0.8125rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-links h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-made {
    font-family: var(--font-mono);
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-24px);
}

[data-animate="fade-left"] {
    transform: translateX(24px);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Mono utility */
.mono {
    font-family: var(--font-mono);
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large,
    .bento-wide {
        grid-column: span 2;
        grid-row: auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 4rem;
    }
    
    .mobile-toggle {
        display: block;
        order: 3;
    }
    
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-default);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-actions {
        margin-left: auto;
        margin-right: 0.75rem;
    }
    
    .nav-actions .btn-ghost {
        display: none;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }
    
    .workflow {
        flex-direction: column;
        align-items: stretch;
    }
    
    .workflow-step {
        flex: 1 1 auto;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .workflow-num {
        margin: 0;
    }
    
    .workflow-content {
        flex: 1;
    }
    
    .workflow-arrow {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stats-card {
        padding: 1.5rem 1rem;
    }
    
    .stats-number,
    .stats-suffix {
        font-size: 1.75rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .mockup-body {
        grid-template-columns: 1fr;
    }
    
    .mockup-sidebar {
        display: none;
    }
    
    .mockup-kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mockup-fleet-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .trust-logos {
        gap: 1.5rem;
    }
    
    .trust-logo {
        font-size: 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* Print styles */
@media print {
    .nav,
    .ambient-orb,
    .hero-ctas,
    .cta-actions,
    .footer-social,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}
