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

:root {
    /* Dark Mode Color Palette - matching frontend */
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --bg-elevated: #1f1f1f;
    
    /* Surfaces */
    --surface: #1a1a1a;
    --surface-hover: #222222;
    --surface-elevated: #242424;
    
    /* Text */
    --text-primary: #e8e8e8;
    --text-secondary: #b0b0b0;
    --text-tertiary: #808080;
    
    /* Borders */
    --border: #2a2a2a;
    --border-hover: #3a3a3a;
    --border-focus: #4a4a4a;
    
    /* Orange Accent - deep, intense orange */
    --orange: #ff5500;
    --orange-dark: #e64a00;
    --orange-light: #ff7733;
    --orange-glow: rgba(255, 85, 0, 0.3);
    --orange-glow-strong: rgba(255, 85, 0, 0.5);
    
    /* Transitions */
    --transition-fast: 150ms ease-out;
    --transition-normal: 200ms ease-out;
    --transition-slow: 300ms ease-out;
    
    /* Glow shadows */
    --glow-orange-sm: 0 0 12px var(--orange-glow), 0 0 4px var(--orange-glow);
    --glow-orange-md: 0 0 20px var(--orange-glow), 0 0 8px var(--orange-glow-strong);
    
    /* Border radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background:
        linear-gradient(
            to bottom,
            #0b0b0b,
            #050505 40%,
            #0a0a0a 100%
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
        );
    background-size: 100% 100%, 80px 80px, 80px 80px;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    position: relative;
}

/* Noise texture for depth */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/></filter><rect width='100' height='100' filter='url(%23n)' opacity='0.03'/></svg>");
    mix-blend-mode: overlay;
    z-index: 0;
}

/* Ensure content is above noise */
header,
main,
footer {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Focus styles - orange for execution/importance */
*:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
    outline-style: solid;
}

*:focus:not(:focus-visible) {
    outline: none;
}

/* Header */
header {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 24px;
}

.logo {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
    margin: 0;
}

.nav-cta {
    background: linear-gradient(
        135deg,
        rgba(255, 120, 50, 0.12),
        rgba(255, 94, 31, 0.08)
    );
    color: var(--orange);
    border: 1px solid rgba(255, 120, 50, 0.5);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all var(--transition-fast);
    cursor: pointer;
    display: inline-block;
    box-shadow:
        0 0 0 1px rgba(255, 120, 50, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(255, 120, 50, 0.15);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 120, 50, 0.15),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 120, 50, 0.16),
        rgba(255, 94, 31, 0.12)
    );
    border-color: rgba(255, 140, 70, 0.7);
    color: var(--orange-light);
    box-shadow:
        0 0 0 1px rgba(255, 140, 70, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 3px 10px rgba(255, 120, 50, 0.2);
    transform: translateY(-2px);
}

.nav-cta:hover::before {
    opacity: 0.6;
}

.nav-cta:active {
    background: linear-gradient(
        135deg,
        rgba(255, 120, 50, 0.18),
        rgba(255, 94, 31, 0.14)
    );
    border-color: var(--orange-dark);
    color: var(--orange-dark);
    transform: translateY(0);
    box-shadow:
        0 0 0 1px rgba(255, 120, 50, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(255, 120, 50, 0.15);
}

/* Hero Section */
.hero {
    padding: 140px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    background: 
        radial-gradient(
            1400px 800px at 50% -100px,
            rgba(255, 120, 50, 0.15),
            rgba(255, 120, 50, 0.08) 30%,
            rgba(255, 120, 50, 0.03) 50%,
            transparent 70%
        ),
        radial-gradient(
            1000px 500px at 30% 200px,
            rgba(255, 120, 50, 0.08),
            rgba(255, 120, 50, 0.02) 40%,
            transparent 60%
        ),
        #0a0a0a;
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-position: center top, center top, center;
    background-repeat: no-repeat;
}

/* Animated glow behind hero */
.hero::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(255, 120, 50, 0.35),
        rgba(255, 120, 50, 0.2) 40%,
        rgba(255, 120, 50, 0.1) 60%,
        transparent 80%
    );
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(80px);
    animation: float 12s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

/* Second glow layer for hero */
.hero .container {
    position: relative;
    z-index: 1;
}

.hero .container::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(100px);
    animation: float 12s ease-in-out infinite 2s;
    z-index: -1;
    pointer-events: none;
}

/* Transition overlay at bottom of hero - smooth fade to secondary */
.hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(20, 20, 20, 0.05) 20%,
        rgba(20, 20, 20, 0.2) 40%,
        rgba(20, 20, 20, 0.5) 60%,
        rgba(20, 20, 20, 0.8) 80%,
        var(--bg-secondary) 100%
    );
    z-index: 1;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { 
        transform: translate(-50%, 0) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translate(-50%, -40px) scale(1.1);
        opacity: 1;
    }
}

.hero h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero .subheadline {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 56px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        rgba(255, 120, 50, 0.12),
        rgba(255, 94, 31, 0.08)
    );
    color: var(--orange);
    border: 1px solid rgba(255, 120, 50, 0.5);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all var(--transition-fast);
    cursor: pointer;
    display: inline-block;
    box-shadow:
        0 0 0 1px rgba(255, 120, 50, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(255, 120, 50, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 120, 50, 0.15),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 120, 50, 0.16),
        rgba(255, 94, 31, 0.12)
    );
    border-color: rgba(255, 140, 70, 0.7);
    color: var(--orange-light);
    box-shadow:
        0 0 0 1px rgba(255, 140, 70, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(255, 120, 50, 0.2);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 0.6;
}

.btn-primary:active {
    background: linear-gradient(
        135deg,
        rgba(255, 120, 50, 0.18),
        rgba(255, 94, 31, 0.14)
    );
    border-color: var(--orange-dark);
    color: var(--orange-dark);
    transform: translateY(0);
    box-shadow:
        0 0 0 1px rgba(255, 120, 50, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(255, 120, 50, 0.15);
}

.btn-secondary {
    background-color: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all var(--transition-fast);
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: var(--surface-hover);
    border-color: var(--border-hover);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--orange-glow), var(--glow-orange-sm);
    transform: translateY(-1px);
}

.btn-secondary:active {
    background-color: var(--surface-elevated);
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

section > .container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.animate-in > .container {
    opacity: 1;
    transform: translateY(0);
}

/* Problem section - background always visible */
.problem {
    background-color: var(--bg-secondary);
}

/* Energy seam dividers between sections */
section:not(:last-child):not(.final-cta)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 120, 50, 0.9),
        transparent
    );
    animation: pulse 4s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 120, 50, 0.6);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.7;
        width: 55%;
        box-shadow: 0 0 6px rgba(255, 120, 50, 0.5);
    }
    25% {
        opacity: 0.95;
        width: 62%;
        box-shadow: 0 0 12px rgba(255, 120, 50, 0.7);
    }
    50% { 
        opacity: 1;
        width: 65%;
        box-shadow: 0 0 16px rgba(255, 120, 50, 0.8);
    }
    75% {
        opacity: 0.95;
        width: 62%;
        box-shadow: 0 0 12px rgba(255, 120, 50, 0.7);
    }
}

/* Scroll animations for content */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grid items */
.solution-flow > *,
.differentiators-grid > *,
.use-cases-grid > *,
.who-for-list > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.solution-flow.animate-in > *:nth-child(1),
.differentiators-grid.animate-in > *:nth-child(1),
.use-cases-grid.animate-in > *:nth-child(1),
.who-for-list.animate-in > *:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.solution-flow.animate-in > *:nth-child(2),
.differentiators-grid.animate-in > *:nth-child(2),
.use-cases-grid.animate-in > *:nth-child(2),
.who-for-list.animate-in > *:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.solution-flow.animate-in > *:nth-child(3),
.differentiators-grid.animate-in > *:nth-child(3),
.use-cases-grid.animate-in > *:nth-child(3),
.who-for-list.animate-in > *:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.solution-flow.animate-in > *:nth-child(4),
.differentiators-grid.animate-in > *:nth-child(4),
.use-cases-grid.animate-in > *:nth-child(4),
.who-for-list.animate-in > *:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

/* Hero should be visible immediately */
.hero {
    opacity: 1 !important;
    transform: none !important;
}

.section-heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
    max-width: 900px;
}

.section-subheading {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

/* Problem Section */
.problem {
    padding-top: 60px;
    margin-top: 0;
    position: relative;
    background-color: var(--bg-secondary);
}

/* Smooth gradient transition overlay from hero to problem */
.hero::after {
    /* Keep existing ::after for glow, but add transition overlay */
    background: 
        radial-gradient(
            circle,
            rgba(255, 120, 50, 0.35),
            rgba(255, 120, 50, 0.2) 40%,
            rgba(255, 120, 50, 0.1) 60%,
            transparent 80%
        ),
        linear-gradient(
            to bottom,
            transparent,
            transparent 85%,
            var(--bg-secondary) 100%
        );
    background-blend-mode: normal, multiply;
}

.problem .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.problem .section-heading {
    margin-bottom: 40px;
    text-align: center;
}

.problem ul.pain-list {
    list-style: none;
    max-width: 720px;
    margin: 24px auto 0;
    text-align: left;
    position: relative;
    padding-left: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Single spine timeline */
.problem ul.pain-list::before {
    content: "";
    position: absolute;
    left: 5.5px;
    top: -20px;
    bottom: -20px;
    width: 3px;
    background: linear-gradient(
        to bottom,
        rgba(255, 106, 43, 0),
        rgba(255, 106, 43, 0.5),
        rgba(255, 106, 43, 0.5),
        rgba(255, 106, 43, 0)
    );
    z-index: 0;
    box-shadow: 0 0 4px rgba(255, 106, 43, 0.3);
}

.problem li.pain-item {
    font-size: 18px;
    padding: 0;
    margin: 0;
    position: relative;
    color: #bfbfbf;
    line-height: 1.6;
    font-weight: 400;
    transition: color 0.3s ease;
    z-index: 1;
}

/* Node on the spine - smaller and fuzzy */
.problem li.pain-item::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #ff6a2b;
    border-radius: 50%;
    border: 1px solid rgba(255, 106, 43, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
    box-sizing: border-box;
    filter: blur(1px);
    box-shadow: 
        0 0 12px rgba(255, 106, 43, 0.6),
        0 0 24px rgba(255, 106, 43, 0.4),
        0 0 36px rgba(255, 106, 43, 0.2);
}

.problem li.pain-item strong {
    color: #ff6a2b;
    font-weight: 600;
}

.problem li.pain-item:hover {
    color: #ffffff;
}

.problem li.pain-item:hover::before {
    background: #ff7733;
    border-color: rgba(255, 106, 43, 0.8);
    filter: blur(1.5px);
    box-shadow: 
        0 0 16px rgba(255, 106, 43, 0.8),
        0 0 32px rgba(255, 106, 43, 0.5),
        0 0 48px rgba(255, 106, 43, 0.3);
    transform: scale(1.2);
}

.problem .pain-conclusion {
    text-align: center;
    margin-top: 48px;
    font-size: 22px;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.5;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 
        0 0 20px rgba(255, 120, 50, 0.4),
        0 0 40px rgba(255, 120, 50, 0.2);
    position: relative;
}

/* Solution Section */
.solution-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.flow-step {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.01)
    );
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-normal);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.flow-step::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 120, 50, 0.25),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.flow-step:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );
    border-color: rgba(255, 120, 50, 0.4);
    box-shadow:
        0 0 0 1px rgba(255, 120, 50, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(-6px);
}

.flow-step:hover::before {
    opacity: 1;
}

.flow-step:active {
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(255, 120, 50, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.flow-step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.flow-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.flow-step p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

/* Differentiators Section */
.differentiators {
    background-color: var(--bg-secondary);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 52px;
}

.differentiator-item {
    padding: 0;
}

.differentiator-item h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--orange);
    font-weight: 600;
    line-height: 1.4;
}

.differentiator-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

/* Use Cases Section */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.use-case-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.01)
    );
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-normal);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 120, 50, 0.25),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.use-case-card:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );
    border-color: rgba(255, 120, 50, 0.4);
    box-shadow:
        0 0 0 1px rgba(255, 120, 50, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(-6px);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-card:active {
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(255, 120, 50, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.use-case-card h3 {
    font-size: 19px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 15px;
    font-weight: 400;
}

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

.use-case-item {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.use-case-item:first-child {
    padding-top: 0;
    border-top: none;
}

.use-case-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--orange);
}

.use-case-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

/* Who It's For Section */
.who-for {
    background-color: var(--bg-primary);
}

.who-for-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 52px;
}

.who-for-item {
    padding: 0;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--bg-secondary);
    text-align: center;
    padding: 140px 0;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 48px 0;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 14px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1200px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero .subheadline {
        font-size: 20px;
    }

    .section-heading {
        font-size: 36px;
    }

    .solution-flow,
    .differentiators-grid,
    .use-cases-grid,
    .who-for-list {
        grid-template-columns: 1fr;
    }
}

