/* ENGAGOR DESIGN SYSTEM - IBM Carbon Inspired */
:root {
    --white: #ffffff;
    --gray-05: #f9fafb;
    --gray-10: #f4f4f4;
    --gray-20: #e0e0e0;
    --gray-30: #c6c6c6;
    --gray-40: #a8a8a8;
    --gray-50: #8d8d8d;
    --gray-60: #6f6f6f;
    --gray-70: #525252;
    --gray-80: #393939;
    --gray-90: #262626;
    --gray-100: #161616;
    --black: #000000;
    --blue-primary: #0f62fe;
    --blue-hover: #0353e9;
    --blue-light: #edf5ff;
    --teal-primary: #009d9a;
    --teal-light: #d9fbfb;
    --green-primary: #198038;
    --green-light: #defbe6;
    --purple-primary: #8a3ffc;
    --purple-light: #f6f2ff;
    --red-primary: #da1e28;
    --red-light: #fff1f1;
    --orange-primary: #ff832b;
    --orange-light: #fff2e8;
    --header-height: 48px;
    --max-width: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: 'IBM Plex Sans', -apple-system, sans-serif; background: var(--white); color: var(--gray-90); line-height: 1.5; }
h1,h2,h3,h4,h5,h6 { font-weight: 600; color: var(--gray-100); line-height: 1.2; }
h1 { font-size: 3.5rem; font-weight: 300; letter-spacing: -0.02em; }
h1 strong { font-weight: 600; }
h2 { font-size: 2.25rem; font-weight: 400; }
h2 strong { font-weight: 600; }
p { color: var(--gray-70); line-height: 1.7; }
a { color: var(--blue-primary); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--blue-hover); }
.mono { font-family: 'IBM Plex Mono', monospace; }

/* Header */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); }
.header-main { height: var(--header-height); border-bottom: 1px solid var(--gray-20); display: flex; align-items: center; padding: 0 2rem; }
.logo { font-size: 1rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; display: flex; text-decoration: none; color: var(--gray-100); margin-right: 3rem; }
.logo-letter.accent { color: var(--blue-primary); font-weight: 700; }
.main-nav { 
	margin-left: auto;
	margin-right: 2rem;
	display: flex; 
	align-items: center; 
	height: 100%; 
	flex: 1; 
}
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link { display: flex; align-items: center; gap: 0.375rem; padding: 0 1rem; height: 100%; font-size: 0.875rem; color: var(--gray-80); text-decoration: none; border-bottom: 2px solid transparent; transition: all 0.15s; }
.nav-link:hover { background: var(--gray-10); color: var(--gray-100); }
.nav-link.active { border-bottom-color: var(--blue-primary); color: var(--gray-100); }
.nav-link svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.header-right { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.header-link { font-size: 0.875rem; color: var(--gray-70); padding: 0.5rem 0.75rem; }
.btn-header { padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 500; background: var(--blue-primary); color: var(--white); border: none; cursor: pointer; text-decoration: none; }
.btn-header:hover { background: var(--blue-hover); color: var(--white); }

/* Mega Menu */
.mega-menu { position: absolute; top: 100%; left: 0; width: max-content; min-width: 780px; background: var(--white); border: 1px solid var(--gray-20); box-shadow: 0 4px 24px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.2s; z-index: 999; }
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu-inner { display: flex; }
.mega-menu-categories { width: 220px; background: var(--gray-05); border-right: 1px solid var(--gray-20); padding: 1rem 0; }
.mega-category { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.5rem; font-size: 0.875rem; color: var(--gray-80); cursor: pointer; border-left: 3px solid transparent; transition: all 0.15s; }
.mega-category:hover, .mega-category.active { background: var(--white); color: var(--gray-100); border-left-color: var(--blue-primary); }
.mega-category svg { width: 16px; height: 16px; color: var(--gray-40); }
.mega-menu-footer-link { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 500; color: var(--blue-primary); background: var(--blue-light); }
.mega-menu-content { flex: 1; padding: 1.5rem 2rem; }
.mega-content-header { margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-20); }
.mega-content-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.mega-content-desc { font-size: 0.8125rem; color: var(--gray-60); }
.mega-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.25rem; }
.mega-product { padding: 0.75rem; border-left: 2px solid transparent; transition: all 0.15s; text-decoration: none; color: inherit; }
.mega-product:hover { background: var(--gray-05); border-left-color: var(--blue-primary); }
.mega-product-name { font-size: 0.875rem; font-weight: 500; color: var(--gray-100); margin-bottom: 0.125rem; }
.mega-product-desc { font-size: 0.75rem; color: var(--gray-60); }

/* Dropdown */
.dropdown-menu { position: absolute; top: 100%; left: 0; width: 200px; background: var(--white); border: 1px solid var(--gray-20); box-shadow: 0 4px 16px rgba(0,0,0,0.08); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.2s; z-index: 999; padding: 0.5rem 0; }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link { display: block; padding: 0.625rem 1.25rem; font-size: 0.875rem; color: var(--gray-80); }
.dropdown-link:hover { background: var(--gray-05); color: var(--gray-100); }


/* BREADCRUMB */
.breadcrumb-bar {
    background: var(--gray-05);
    border-bottom: 1px solid var(--gray-20);
    padding: 0.75rem 2rem;
    margin-bottom: 2rem;
}
.breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: var(--gray-60);
    text-decoration: none;
}

.breadcrumb-inner a:hover {
    color: var(--blue-primary);
}

.breadcrumb-sep {
    color: var(--gray-40);
}

.breadcrumb-inner > span:last-child {
    color: var(--gray-80);
    font-weight: 500;
}

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.75rem; min-width: 160px; white-space: nowrap; font-size: 0.9375rem; font-weight: 500; background: var(--blue-primary); color: var(--white); border: none; cursor: pointer; text-decoration: none; transition: background 0.15s; }
.btn-primary:hover { background: var(--blue-hover); color: var(--white); }
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.75rem; min-width: 160px; white-space: nowrap; font-size: 0.9375rem; font-weight: 500; background: transparent; color: var(--gray-100); border: 1px solid var(--gray-30); cursor: pointer; text-decoration: none; }
.btn-secondary:hover { border-color: var(--gray-100); background: var(--gray-10); }

/* Horizontal Blue Line Eyebrow - IBM Style */
.eyebrow-line { display: inline-block; width: 32px; height: 2px; background: var(--blue-primary); }
.section-eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--blue-primary); font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem; font-size: 0.9375rem; font-weight: 500; background: transparent; color: var(--blue-primary); border: none; cursor: pointer; }
.btn-ghost:hover { background: var(--blue-light); }
.btn-primary-dark { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem; font-size: 0.9375rem; font-weight: 500; background: var(--blue-primary); color: var(--white); border: none; text-decoration: none; }
.btn-primary-dark:hover { background: var(--blue-hover); color: var(--white); }
.btn-secondary-dark { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem; font-size: 0.9375rem; font-weight: 500; background: transparent; color: var(--white); border: 1px solid var(--gray-60); text-decoration: none; }
.btn-secondary-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.bg-white { background: var(--white); }
.bg-gray-05 { background: var(--gray-05); }
.bg-gray-100 { background: var(--gray-100); }

/* Hero */
.hero-home { padding: 8rem 2rem 6rem; background: var(--gray-100); color: var(--white); margin-top: var(--header-height); position: relative; overflow: hidden; }
.hero-home::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(15,98,254,0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(138,63,252,0.1) 0%, transparent 40%); }
.hero-home-inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; }
.hero-home-content { max-width: 720px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(15,98,254,0.2); border: 1px solid rgba(15,98,254,0.3); color: var(--blue-primary); font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; }
.hero-home h1 { font-size: 4rem; font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; }
.hero-home h1 strong { font-weight: 600; }
.hero-home h1 .highlight { color: var(--blue-primary); }
.hero-description { font-size: 1.25rem; line-height: 1.6; color: var(--gray-30); margin-bottom: 2.5rem; max-width: 600px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Section Header */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header .overline { font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; font-weight: 500; color: var(--blue-primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; }

/* Feature Block */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-block-content { max-width: 520px; }
.feature-block-content .overline { font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; font-weight: 500; color: var(--blue-primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.feature-block-content h2 { margin-bottom: 1.5rem; }
.feature-block-content p { font-size: 1.0625rem; margin-bottom: 1.5rem; }
.feature-block-content ul { list-style: none; margin-bottom: 2rem; }
.feature-block-content ul li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9375rem; color: var(--gray-80); }
.feature-block-content ul li svg { width: 20px; height: 20px; color: var(--green-primary); flex-shrink: 0; }
.feature-visual { background: var(--gray-100); padding: 2rem; min-height: 400px; display: flex; align-items: center; justify-content: center; }

/* CTA Section */
.cta-section { padding: 5rem 2rem; background: var(--gray-100); text-align: center; }
.cta-section-inner { max-width: 700px; margin: 0 auto; }
.cta-section h2 { font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.cta-section h2 strong { font-weight: 600; }
.cta-section p { font-size: 1.125rem; color: var(--gray-40); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer { background: var(--black); color: var(--gray-30); padding: 5rem 2rem 2rem; }
.footer-container { max-width: var(--max-width); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 3rem; margin-bottom: 4rem; }
.footer-brand { max-width: 280px; }
.footer-logo { font-size: 1rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-logo .accent { color: var(--blue-primary); }
.footer-tagline { font-size: 0.875rem; color: var(--gray-50); line-height: 1.6; }
.footer-column h4 { font-size: 0.875rem; font-weight: 600; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: var(--gray-40); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--gray-80); flex-wrap: wrap; gap: 1rem; }
.footer-legal { font-size: 0.75rem; color: var(--gray-50); }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { font-size: 0.75rem; color: var(--gray-50); }

/* ============================================
   HOMEPAGE STYLES
   ============================================ */

/* Hero Section - Homepage */
.hero-section {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.hero-section.homepage-hero {
    margin-top: -100px;
}
.hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
    position: relative;
    z-index: 1;
}
.hero-content {
    color: var(--gray-100);
}
.hero-category {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.category-line {
    width: 32px;
    height: 2px;
    background: var(--blue-primary);
}
.category-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-primary);
}
.hero-headline {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.headline-main {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--gray-100);
}
.headline-aeip {
    color: var(--blue-primary);
}
.hero-tagline {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--gray-60);
    margin-bottom: 2rem;
}
.hero-tagline-accent {
    color: var(--blue-primary);
    font-style: italic;
}
.hero-section .hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-70);
    max-width: 560px;
    margin-bottom: 2rem;
}
.hero-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--gray-20);
    border-bottom: 1px solid var(--gray-20);
}
.proof-item {
    display: flex;
    flex-direction: column;
}
.proof-value {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-100);
}
.proof-label {
    font-size: 0.75rem;
    color: var(--gray-60);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-20);
}
.hero-section .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    background: var(--blue-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}
.btn-primary-large:hover {
    background: var(--blue-hover);
    color: var(--white);
}
.btn-primary-large svg {
    width: 20px;
    height: 20px;
}
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    color: var(--gray-100);
    border: 1px solid var(--gray-30);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}
.btn-secondary-large:hover {
    border-color: var(--gray-50);
    background: var(--gray-10);
    color: var(--gray-100);
}
.btn-green-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    background: var(--green-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}
.btn-green-large:hover {
    background: #198038;
    color: var(--white);
}

/* Hero Visual - Intelligence SVG */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 4rem;
}
.intelligence-svg {
    width: 100%;
    max-width: 850px;
    height: auto;
}
.flow-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: flowDash 3s ease-in-out infinite;
}
@keyframes flowDash {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}
.ring-pulse {
    animation: ringPulse 2s ease-in-out infinite;
}
@keyframes ringPulse {
    0%, 100% { transform-origin: center; transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.6; }
}
.data-packet {
    opacity: 0.9;
}
.source-group {
    transition: transform 0.3s ease;
}
.source-group:hover {
    transform: translateX(4px);
}
.insight-card-svg {
    animation: cardFloat 4s ease-in-out infinite;
}
.insight-card-svg:nth-child(2) { animation-delay: 0.5s; }
.insight-card-svg:nth-child(3) { animation-delay: 1s; }
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-60);
    font-size: 0.75rem;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Category Section */
.category-section {
    padding: 6rem 0;
    background: var(--gray-05);
}
.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.category-intro {
    max-width: 800px;
    margin-bottom: 4rem;
}
.category-intro h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.category-definition {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-70);
}
.category-definition strong {
    color: var(--blue-primary);
    font-weight: 600;
}
.category-definition em {
    font-style: italic;
    color: var(--gray-100);
}
.agentic-capabilities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.capability {
    padding: 1.5rem;
    border-left: 2px solid var(--gray-20);
    transition: border-color 0.2s;
}
.capability:hover {
    border-left-color: var(--blue-primary);
}
.capability-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--blue-primary);
}
.capability-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.capability-content p {
    font-size: 0.875rem;
    color: var(--gray-60);
    line-height: 1.6;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--white);
}
.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.problem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.problem-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.problem-content > p {
    font-size: 1rem;
    color: var(--gray-60);
    margin-bottom: 2rem;
}
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-70);
}
.problem-x {
    color: var(--red-primary);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}
/* Legacy solution styles - commented out to avoid conflicts with solutions index page
.solution-content {
    background: var(--gray-100);
    padding: 2rem;
}
.solution-header {
    margin-bottom: 1.5rem;
}
.solution-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(15, 98, 254, 0.2);
    border: 1px solid rgba(15, 98, 254, 0.3);
    color: var(--blue-primary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.solution-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.solution-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-30);
}
.solution-check {
    color: var(--green-primary);
    flex-shrink: 0;
}
*/

/* Solution Content - Homepage problem section alignment fix */
.problem-layout .solution-content {
    margin-top: 2.5rem;
    background: var(--gray-05);
    padding: 2rem;
}
.problem-layout .solution-header {
    margin-bottom: 1.5rem;
}
.problem-layout .solution-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(15, 98, 254, 0.2);
    border: 1px solid rgba(15, 98, 254, 0.3);
    color: var(--blue-primary);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.problem-layout .solution-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.problem-layout .solution-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-70);
}
.problem-layout .solution-check {
    color: var(--green-primary);
    flex-shrink: 0;
}

/* Pillars Section */
.pillars-section {
    padding: 6rem 0;
    background: var(--gray-05);
}
.pillars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.pillars-container h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.pillars-intro {
    font-size: 1.125rem;
    color: var(--gray-60);
    max-width: 600px;
    margin-bottom: 3rem;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.pillar-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--gray-05);
    border: 1px solid var(--gray-20);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}
.pillar-card:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.pillar-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--blue-primary);
}
.pillar-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-100);
}
.pillar-content p {
    font-size: 0.9375rem;
    color: var(--gray-60);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.pillar-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.pillar-features span {
    padding: 0.25rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-20);
    font-size: 0.75rem;
    color: var(--gray-70);
}
.pillar-link {
    margin-top: auto;
    color: var(--blue-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Showcase Section - AI Studio */
.showcase-section {
    padding: 6rem 0;
    background: var(--gray-100);
}
.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.showcase-content {
    color: var(--white);
}
.showcase-content h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}
.showcase-content > p {
    font-size: 1rem;
    color: var(--gray-30);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.question-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.question-chip {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray-70);
    font-size: 0.8125rem;
    color: var(--gray-30);
    font-style: italic;
}
.showcase-visual {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.ai-conversation {
    background: var(--white);
}
.conversation-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--gray-05);
    border-bottom: 1px solid var(--gray-20);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-70);
}
.conversation-dot {
    width: 8px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 50%;
}
.conversation-body {
    padding: 1.5rem;
}
.message {
    margin-bottom: 1.5rem;
}
.message:last-child {
    margin-bottom: 0;
}
.message-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--gray-50);
}
.user-message p {
    padding: 1rem;
    background: var(--gray-05);
    font-size: 0.9375rem;
    color: var(--gray-80);
}
.ai-message .ai-response {
    padding: 1rem;
    background: var(--blue-light);
    border-left: 3px solid var(--blue-primary);
}
.ai-response > p {
    font-size: 0.875rem;
    color: var(--gray-70);
    margin-bottom: 1rem;
}
.finding {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    background: var(--white);
}
.finding:last-child {
    margin-bottom: 0;
}
.finding-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.finding.critical .finding-label {
    color: var(--red-primary);
}
.finding.recommendation .finding-label {
    color: var(--green-primary);
}
.finding p {
    font-size: 0.8125rem;
    color: var(--gray-70);
    line-height: 1.5;
}

/* Enterprise Section */
.enterprise-section {
    padding: 6rem 0;
    background: var(--gray-05);
}
.enterprise-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.enterprise-container h2 {
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 3rem;
}
.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.enterprise-card {
    padding: 1.5rem;
    border: 1px solid var(--gray-20);
    transition: border-color 0.2s;
}
.enterprise-card:hover {
    border-color: var(--blue-primary);
}
.enterprise-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--blue-primary);
}
.enterprise-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.enterprise-card p {
    font-size: 0.875rem;
    color: var(--gray-60);
    line-height: 1.6;
}

/* Audience Section */
.audience-section {
    padding: 6rem 0;
    background: var(--white);
}
.audience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.audience-container h2 {
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 3rem;
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.audience-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-20);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}
.audience-card:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.audience-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-100);
}
.audience-card p {
    font-size: 0.875rem;
    color: var(--gray-60);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}
.audience-link {
    color: var(--blue-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Credibility Section */
.credibility-section {
    padding: 6rem 0;
    background: var(--gray-100);
}
.credibility-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}
.credibility-content {
    text-align: center;
}
.credibility-content blockquote {
    font-size: 1.375rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--gray-20);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}
.credibility-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--blue-primary);
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    opacity: 0.5;
}
.credibility-author {
    margin-bottom: 3rem;
}
.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}
.author-title {
    font-size: 0.875rem;
    color: var(--gray-40);
}
.credibility-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-80);
}
.cred-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cred-value {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--blue-primary);
}
.cred-label {
    font-size: 0.75rem;
    color: var(--gray-40);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-05) 0%, var(--blue-light) 100%);
}
.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.cta-content > p {
    font-size: 1.125rem;
    color: var(--gray-60);
    margin-bottom: 2rem;
}
.final-cta-section .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-visual {
    display: flex;
    justify-content: center;
}
.cta-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    background: var(--white);
    border: 1px solid var(--gray-20);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.badge-label {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-100);
    margin-bottom: 0.5rem;
}
.badge-tagline {
    font-size: 0.875rem;
    color: var(--gray-60);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }
    .hero-home h1 { font-size: 3rem; }
    .feature-block { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-brand { grid-column: span 3; max-width: none; }

    /* Homepage responsive */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    .hero-visual {
        order: -1;
    }
    .intelligence-svg {
        max-width: 650px;
    }
    .headline-main {
        font-size: 2.75rem;
    }
    .hero-tagline {
        font-size: 1.5rem;
    }
    .agentic-capabilities {
        grid-template-columns: repeat(2, 1fr);
    }
    .problem-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .enterprise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .final-cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .final-cta-section .cta-buttons {
        justify-content: center;
    }
    .credibility-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hero-home h1 { font-size: 2.5rem; }
    .section { padding: 4rem 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }

    /* Homepage responsive */
    .hero-section {
        min-height: auto;
    }
    .headline-main {
        font-size: 2rem;
    }
    .hero-tagline {
        font-size: 1.25rem;
    }
    .hero-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .proof-divider {
        display: none;
    }
    .hero-section .hero-ctas {
        flex-direction: column;
    }
    .btn-primary-large,
    .btn-secondary-large,
    .btn-green-large {
        width: 100%;
        justify-content: center;
    }
    .agentic-capabilities {
        grid-template-columns: 1fr;
    }
    .category-intro h2 {
        font-size: 2rem;
    }
    .pillars-container h2,
    .enterprise-container h2,
    .audience-container h2 {
        font-size: 1.75rem;
    }
    .enterprise-grid {
        grid-template-columns: 1fr;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .credibility-content blockquote {
        font-size: 1.125rem;
    }
    .credibility-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .cred-value {
        font-size: 2rem;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
    background: var(--gray-100);
    color: var(--gray-30);
}
.footer-main {
    padding: 4rem 2rem 3rem;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
}
.footer-brand {
    padding-right: 2rem;
}
.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 0.75rem;
}
.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}
.footer-tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6875rem;
    color: var(--gray-40);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--gray-40);
    border: 1px solid var(--gray-70);
    transition: all 0.2s ease;
}
.footer-social a:hover {
    color: var(--white);
    border-color: var(--white);
}
.footer-column .footer-heading {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-heading-spaced {
    margin-top: 1.5rem;
}
.footer-column .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column .footer-links li {
    margin-bottom: 0.5rem;
}
.footer-column .footer-links a {
    font-size: 0.875rem;
    color: var(--gray-40);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-column .footer-links a:hover {
    color: var(--white);
}
.footer-contact {
    margin-bottom: 1.5rem;
}
.contact-email {
    font-size: 0.9375rem;
    color: var(--blue-primary);
    text-decoration: none;
    font-weight: 500;
}
.contact-email:hover {
    text-decoration: underline;
}
.footer-cta {
    margin-bottom: 1.5rem;
}
.btn-footer-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--blue-primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}
.btn-footer-primary:hover {
    background: var(--blue-hover);
    color: var(--white);
}
.footer-location {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.location-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6875rem;
    color: var(--gray-50);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.location-detail {
    font-size: 0.8125rem;
    color: var(--gray-40);
}
.footer-bottom {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--gray-80);
}
.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copyright {
    font-size: 0.8125rem;
    color: var(--gray-50);
}
.footer-bottom .footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-bottom .footer-legal a {
    font-size: 0.8125rem;
    color: var(--gray-50);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-bottom .footer-legal a:hover {
    color: var(--white);
}
.legal-divider {
    color: var(--gray-60);
}

/* Footer Responsive */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--gray-80);
        margin-bottom: 1rem;
    }
}
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 1.5rem 2rem;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom {
        padding: 1rem 1.5rem;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-column {
        text-align: center;
    }
    .footer-location {
        align-items: center;
    }
    .footer-bottom .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}
