@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600&family=Poppins:wght@500;600;700;800&family=Roboto+Condensed:wght@900&family=Roboto:wght@900&display=swap');

/* Reset and Core Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Premium B2B Corporate Blue/White Palette (No Red) */
    --bg-main: #f8fafc;       /* Cool icy-gray background */
    --bg-alt: #f1f5f9;        /* Slightly darker cool gray */
    --bg-card: #ffffff;       /* Pure white card */
    
    --primary: #2563eb;       /* Electric Cobalt Blue */
    --primary-hover: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.05);
    
    --secondary: #0b1120;     /* Deep Midnight Navy (Headers and dark sections) */
    --secondary-light: #1e293b;
    
    --border-color: #e2e8f0;  /* Thin slate border */
    --border-hover: #cbd5e1;
    
    --text-main: #0b1120;     /* Midnight Navy primary body text */
    --text-muted: #475569;    /* Muted Slate secondary text */
    --text-light: #94a3b8;    /* Light Editorial Slate */
    
    --max-width: 1200px;
    --border-radius-lg: 8px;  /* Sharp yet clean B2B curves */
    
    /* Soft shadows with a subtle navy tint */
    --shadow-sm: 0 1px 3px rgba(11, 17, 32, 0.02);
    --shadow-md: 0 20px 40px rgba(11, 17, 32, 0.06);
    --shadow-lg: 0 30px 60px rgba(11, 17, 32, 0.08);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.75;
    background-color: var(--bg-main);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: var(--border-radius-lg);
}

/* Typography (Magazine Effect) */
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;          /* Massive dominant heading */
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -0.04em;    /* Tight tracking */
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;          /* Strong section header */
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;         /* Card header */
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Header & Navbar */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 2.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* Close gap for single-word feel */
    background: transparent;
    padding: 0.3rem 0;
    border: none;
    box-shadow: none;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-switch-container {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-switch-toggle {
    width: 56px; /* Wider switch track to fit "AI" */
    height: 28px; /* Slightly taller track to match condensed font */
    display: inline-block;
    position: relative;
}

.logo-switch-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    z-index: 1;
    /* Shared 10s infinite loop to toggle background color synchronously with text change */
    animation: logo-toggle-track-loop 10s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.logo-switch-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 24px; /* Capsule-shaped knob to cover "AI" completely */
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 22px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 2; /* Sits above the "AI" text inside the track */
    /* Shared 10s infinite loop to toggle position (uncovering/covering AI) */
    animation: logo-toggle-knob-loop 10s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

/* The letters "AI" rendered inside the switch track, revealed only when active */
.logo-switch-slider::after {
    content: "AI";
    position: absolute;
    left: 9px; /* Centered in the left half of the track */
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-family: 'Roboto Condensed', 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    /* Shared 10s infinite loop to fade in/out synchronously with knob movement */
    animation: logo-toggle-text-loop 10s infinite ease;
}

@keyframes logo-toggle-knob-loop {
    0% {
        transform: translateX(26px); /* Start active */
    }
    1% {
        transform: translateX(0px); /* Flip to left (off) on transition back to SEATEXT */
    }
    6% {
        transform: translateX(26px); /* Slide back to right (on) */
    }
    6%, 49% {
        transform: translateX(26px); /* Active during SEATEXT */
    }
    51% {
        transform: translateX(0px); /* Flip to left (off) on transition to ACTIVATE */
    }
    56%, 99% {
        transform: translateX(26px); /* Slide back to right (on) */
    }
    100% {
        transform: translateX(26px);
    }
}

@keyframes logo-toggle-track-loop {
    0% {
        background-color: var(--primary);
    }
    1% {
        background-color: #cbd5e1; /* Grey track during transition back to SEATEXT */
    }
    6% {
        background-color: var(--primary);
    }
    6%, 49% {
        background-color: var(--primary);
    }
    51% {
        background-color: #cbd5e1; /* Grey track during transition to ACTIVATE */
    }
    56%, 99% {
        background-color: var(--primary);
    }
    100% {
        background-color: var(--primary);
    }
}

@keyframes logo-toggle-text-loop {
    0% {
        opacity: 1;
    }
    1% {
        opacity: 0;
    }
    6% {
        opacity: 1;
    }
    6%, 49% {
        opacity: 1;
    }
    51% {
        opacity: 0;
    }
    56%, 99% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.logo-seatext {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end; /* Right-align to lock the last letter in place */
    width: 145px; /* Stable width to give room for the letters */
    height: 34px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900; /* Extra bold */
    font-size: 2.1rem; /* Sized up to look bigger and bolder */
    font-style: italic; /* Added italic style */
    letter-spacing: -0.025em; /* Negative letter-spacing for condensed punchy appearance */
    color: var(--primary); /* Made blue (Electric Cobalt Blue) */
    line-height: 1;
}

.word-seatext, .word-activate {
    position: absolute;
    right: 0; /* Align flush right next to the switch */
    top: 50%;
    transform: translateY(-50%);
    backface-visibility: hidden;
}

.word-seatext {
    animation: fade-seatext 10s infinite ease-in-out;
}

.word-activate {
    animation: fade-activate 10s infinite ease-in-out;
}

@keyframes fade-seatext {
    0%, 49% {
        opacity: 1;
        visibility: visible;
    }
    50%, 99% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fade-activate {
    0%, 49% {
        opacity: 0;
        visibility: hidden;
    }
    50%, 99% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.nav-links {
    display: flex;
    gap: 1.65rem;
    list-style: none;
    align-items: center;
}

.nav-item-has-menu {
    position: relative;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
}

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

.nav-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0;
}

.nav-menu-trigger::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.18s ease;
}

.nav-item-has-menu:hover .nav-menu-trigger::after,
.nav-item-has-menu:focus-within .nav-menu-trigger::after {
    transform: rotate(225deg) translateY(-1px);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    width: min(760px, calc(100vw - 2rem));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translate(-50%, 8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1rem;
    height: 1rem;
}

.nav-item-has-menu:hover .mega-menu,
.nav-item-has-menu:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-menu a {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    padding: 0.78rem 0.85rem;
    border: 1px solid transparent;
    border-radius: var(--border-radius-lg);
    background: #ffffff;
}

.mega-menu a:hover,
.mega-menu a:focus {
    border-color: var(--border-color);
    background: var(--bg-main);
    color: var(--secondary);
}

.ai-menu-icon {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    background: var(--primary-glow);
    border: 1px solid #dbeafe;
    color: var(--primary);
    line-height: 1;
}

.ai-menu-icon svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
}

.ai-menu-copy {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.mega-menu strong {
    font-size: 0.84rem;
    color: var(--secondary);
    line-height: 1.25;
}

.mega-menu .ai-menu-copy span {
    font-size: 0.73rem;
    line-height: 1.45;
    color: var(--text-muted);
}

/* Hero Eyebrow Label */
.hero-eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0;
}

/* Sections Layout */
section {
    padding: 6.5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1; /* Establish stacking context so z-index: -1 child stays above body background */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden; /* Prevent background 3D canvas overflow */
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.hero-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Send to back layer behind text and visual elements */
    pointer-events: none;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.hero h1 span.blue {
    color: var(--primary);
}

.hero-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding-top: 0.4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    letter-spacing: 0.01em;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background: var(--bg-alt);
}

.demo-cta-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    width: max-content;
    max-width: 100%;
}

.hero-actions .demo-cta-stack,
.premium-actions .demo-cta-stack {
    align-self: flex-start;
}

.demo-cta-stack .btn {
    white-space: nowrap;
}

.demo-cta-note {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

@media (max-width: 768px) {
    .demo-cta-stack {
        align-items: stretch;
        width: 100%;
    }

    .demo-cta-stack .btn {
        width: 100%;
        white-space: normal;
    }
}

/* KPI Stats */
.hero-stats-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hero-stat-box:hover {
    border-color: var(--border-hover);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 0.15rem;
}

.stat-description {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: 0.1rem;
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
}

.visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.visual-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.agent-live-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: agent-pulse 1.5s infinite ease-in-out;
}

@keyframes agent-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.variant-editor-mock {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: var(--bg-alt);
    padding: 1.2rem;
    border-radius: var(--border-radius-lg);
}

.editor-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
}

.editor-text {
    font-size: 0.88rem;
    color: var(--text-main);
    font-weight: 500;
    background: #ffffff;
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    border: 1px dashed var(--primary);
    position: relative;
}

.editor-text::after {
    content: 'Agent Writing...';
    position: absolute;
    right: 0.6rem;
    bottom: -1.2rem;
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-val {
    color: var(--primary);
}

/* Partner Logos Ticker */
.ticker-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.2rem 2rem;
}

.ticker-title {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.logo-ticker-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

/* Subtle fading masks on left and right for premium aesthetics */
.logo-ticker-container::before,
.logo-ticker-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logo-ticker-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.logo-ticker-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-ticker-track {
    display: inline-flex;
    width: max-content;
    animation: logo-ticker-scroll 35s linear infinite;
}

/* Pause scroll on hover */
.logo-ticker-container:hover .logo-ticker-track {
    animation-play-state: paused;
}

.logo-ticker-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 3.5rem;
    padding-right: 3.5rem;
}

.logo-ticker-group img {
    height: 25px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.25s ease;
}

/* Individual logo hover styles */
.logo-ticker-group img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

@keyframes logo-ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Positioning Section (24/7 Agent Core) */
.core-positioning {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-header h2 {
    margin-top: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    background: #ffffff;
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-lg);
    background: var(--primary-glow);
    border: 1px solid rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

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

/* Agent Scenarios (Problem & Solution Carousel/List) */
.scenarios {
    background: var(--bg-main);
}

.scenarios-list {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.scenario-item {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.scenario-item:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.scenario-item:nth-child(even) .scenario-copy {
    order: 2;
}

.scenario-item:nth-child(even) .scenario-view {
    order: 1;
}

.scenario-copy {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.scenario-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scenario-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.comparison-box {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.comparison-box.active {
    border-color: var(--primary);
    background: var(--primary-glow);
}

.comp-header {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
}

.comp-header.active {
    color: var(--primary);
}

.comp-text {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.5;
}

.comp-metric {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 0.5rem;
}

/* Integrations Stack Section */
.integrations {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.integrations-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.integrations-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    width: 100%;
    padding: 1.5rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.integrations-carousel::-webkit-scrollbar {
    display: none;
}

.integration-card {
    flex: 0 0 160px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    scroll-snap-align: start;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.integration-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: #ffffff;
}

.integration-card img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.integration-card span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Performance & Security Core Benefits */
.benefits {
    background: var(--bg-main);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.benefit-metric {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

/* CTA Footer Block */
.cta-block {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #ffffff;
    text-align: center;
    padding: 5.5rem 2rem;
    border-radius: var(--border-radius-lg);
    max-width: var(--max-width);
    margin: 4rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.cta-block h2 {
    color: #ffffff;
    font-size: 2.5rem;
    max-width: 650px;
}

.cta-block p {
    color: #dbeafe;
    font-size: 1.05rem;
    max-width: 500px;
}

/* Footer styling */
footer {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 4.5rem 2rem 2.5rem 2rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1.85fr 0.75fr;
    gap: 2.4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 3.5rem;
}

.footer-agents-col ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 0.75rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-brand p {
    font-size: 0.88rem;
    max-width: 250px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 2rem auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Agent Command Center Layout & Aesthetics --- */
.agent-center {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 6.5rem 2rem;
}
.agent-index-bar {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 4.5rem;
    flex-wrap: wrap;
    position: sticky;
    top: 75px; /* sits right under sticky nav header */
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}
.agent-index-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.agent-index-link:hover {
    color: var(--primary);
    background: var(--bg-alt);
}
.agent-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.agent-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4.5rem;
    align-items: center;
    padding: 5.5rem 0;
    border-bottom: 1px solid var(--border-color);
    scroll-margin-top: 150px; /* offset for sticky navbar + index menu when scrolling */
}
.agent-showcase-row:last-child {
    border-bottom: none;
}
.agent-showcase-row:nth-child(even) {
    grid-template-columns: 1.25fr 1fr;
}
.agent-showcase-row:nth-child(even) .agent-showcase-copy {
    order: 2;
}
.agent-showcase-row:nth-child(even) .agent-showcase-visual {
    order: 1;
}
.agent-showcase-copy {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.agent-showcase-status {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    align-self: flex-start;
}
.agent-showcase-status .agent-live-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: agent-pulse 1.5s infinite ease-in-out;
}
.agent-showcase-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
}
.agent-showcase-benefits li {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.agent-showcase-benefits li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 800;
}
.agent-showcase-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    border-top: 1px dashed var(--border-color);
    padding-top: 1.5rem;
    margin-top: 0.8rem;
}
.agent-showcase-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.agent-report-card {
    background: #ffffff;
    color: var(--text-main);
    border-radius: var(--border-radius-lg);
    padding: 1.2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid #dbeafe;
    position: relative;
    overflow: hidden;
}
.agent-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}
.agent-report-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex-grow: 1;
}
.agent-report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.agent-report-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}
.agent-report-action {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.agent-report-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
}
.agent-report-text i {
    color: var(--primary);
    font-style: normal;
    font-weight: 700;
}
.browser-mockup {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.browser-header {
    background: var(--bg-alt);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.browser-dots {
    display: flex;
    gap: 0.35rem;
}
.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}
.browser-address {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.75rem;
    padding: 0.2rem 1rem;
    color: var(--text-muted);
    flex-grow: 1;
    max-width: 400px;
    font-family: monospace;
}
.browser-body {
    padding: 1.8rem;
    background: #ffffff;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.preview-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}
.preview-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeIn 0.4s ease;
}
.preview-content img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.preview-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.25;
    max-width: 500px;
    margin: 0 auto;
}
.preview-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 420px;
    margin: 0 auto;
}
.preview-cta {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    align-self: center;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

/* Translation Demo Specifics */
.lang-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.lang-btn {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}
.lang-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.trans-preview-container {
    position: relative;
    width: 100%;
    max-width: 367px;
    margin: 0 auto;
}
.trans-text {
    position: absolute;
    left: 12.5%;
    top: 27.7%;
    width: 60.7%;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.55rem, 2.2vw, 0.95rem);
    font-weight: 700;
    color: #0b1120;
    line-height: 1.25;
    text-align: left;
    transition: opacity 0.3s ease;
}
.trans-flag {
    position: absolute;
    left: 1.9%;
    top: 4.5%;
    width: 9.5%;
    height: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: opacity 0.3s ease;
}

/* Keyword Demo Specifics */
.keyword-search-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.keyword-input-wrapper {
    position: relative;
    flex-grow: 1;
}
.keyword-input {
    width: 100%;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    font-size: 0.8rem;
    outline: none;
    font-family: inherit;
}
.keyword-input:focus {
    border-color: var(--primary);
}
.keyword-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: background 0.2s;
}
.keyword-btn:hover {
    background: var(--primary-hover);
}
.keyword-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    align-items: center;
}
.preset-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
}
.preset-btn {
    background: var(--bg-alt);
    border: 1px dashed var(--border-color);
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}
.preset-btn:hover {
    background: var(--primary-glow);
    border-color: var(--primary);
    color: var(--primary);
}

/* Bot Refund Click Fraud Block Specifcs */
.traffic-log-container {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.traffic-row {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 0.6rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    transition: all 0.3s;
}
.traffic-ip {
    font-family: monospace;
    font-weight: 700;
    color: var(--secondary);
}
.traffic-status {
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.68rem;
    text-transform: uppercase;
}
.traffic-status.bot {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}
.traffic-status.human {
    background: var(--primary-glow);
    color: var(--primary);
}
.traffic-refund {
    font-weight: 850;
    color: var(--primary);
}
.refund-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}
.refund-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
    width: 100%;
}
.refund-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}
.refund-btn:active {
    transform: translateY(0);
}
.refund-report-box {
    background: #eff6ff;
    color: var(--text-muted);
    font-family: monospace;
    font-size: 0.75rem;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #bfdbfe;
    white-space: pre-wrap;
    display: none;
    max-height: 120px;
    overflow-y: auto;
    text-align: left;
    line-height: 1.4;
}

/* A/B Test Demo Specifics */
.ab-test-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.variant-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.variant-card.winner {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
}
.variant-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 1;
}
.variant-name {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
}
.variant-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}
.variant-card.winner .variant-text {
    color: var(--secondary);
}
.variant-stats {
    text-align: right;
    z-index: 1;
}
.variant-cr {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
}
.variant-card.winner .variant-cr {
    color: var(--primary);
}
.variant-diff {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-light);
}
.variant-card.winner .variant-diff {
    color: var(--primary);
}
.variant-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--border-hover);
    transition: width 1.5s ease-out;
}
.variant-card.winner .variant-progress {
    background: var(--primary);
}

/* SEO / AI Crawler Demo Specifics */
.crawler-demo {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.85rem;
}
.crawler-user-query {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}
.crawler-query-bubble {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-lg);
    color: var(--secondary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}
.crawler-ai-response {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}
.crawler-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.crawler-response-bubble {
    background: #ffffff;
    border: 1px solid var(--primary);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-lg);
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    position: relative;
    flex-grow: 1;
}
.crawler-response-bubble i {
    color: var(--primary);
    font-weight: 700;
    font-style: normal;
}
.crawler-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 0.3rem;
    display: block;
}

/* Responsive styles */
@media (max-width: 980px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.85rem 1.2rem;
    }
    .mega-menu {
        position: absolute;
        width: 100%;
        grid-template-columns: 1fr;
        transform: translate(-50%, 8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: none;
        margin-top: 0.5rem;
        padding: 0.7rem;
    }
    .mega-menu::before {
        display: none;
    }
    .agent-showcase-row, .agent-showcase-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 0;
    }
    .agent-showcase-row:nth-child(even) .agent-showcase-copy {
        order: 1;
    }
    .agent-showcase-row:nth-child(even) .agent-showcase-visual {
        order: 2;
    }
    .agent-index-bar {
        position: static;
        margin-bottom: 2rem;
    }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 1.8rem; }
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-copy {
        align-items: center;
    }
    .hero-actions {
        width: 100%;
        justify-content: center;
    }
    .hero-stats-column {
        width: 100%;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .scenario-item, .scenario-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .scenario-item:nth-child(even) .scenario-copy {
        order: 1;
    }
    .scenario-item:nth-child(even) .scenario-view {
        order: 2;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    .features-grid, .benefits-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-agents-col ul {
        grid-template-columns: 1fr;
    }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links > li {
        width: 100%;
    }
    .nav-links a {
        display: inline-flex;
    }
    .nav-links a.btn {
        justify-content: center;
        width: 100%;
    }
    .hero-stat-box {
        text-align: left;
    }
    .scenario-comparison {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   Visual Assets & Animation Layers Design System
   ========================================================================== */

/* Hero Redesign Styles */
.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    perspective: 1000px; /* Gives a slight modern 3D depth */
}

.hero-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: rotateY(-3deg) rotateX(1deg); /* Subtle B2B tilt angle */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-dashboard:hover {
    transform: rotateY(0deg) rotateX(0deg);
    box-shadow: 0 40px 80px rgba(11, 17, 32, 0.12);
}

.dashboard-img {
    width: 100%;
    display: block;
    height: auto;
    border-top: 1px solid var(--border-color);
}

/* Horizontal Hero Stats Bar */
.hero-stats-section {
    width: 100%;
    margin-top: -2rem;
}

.hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-stats-bar .hero-stat-box {
    text-align: left;
    height: 100%;
}

/* Floating Animation Widgets (Removed old slideshow styles to prevent conflicts) */

@keyframes float-widget-y {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Widget Typography & Details */
.widget-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.widget-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.widget-value {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary);
}

.widget-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.widget-status-text {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.widget-icon {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulsing Status Dot */
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(37, 99, 235, 0.4);
    animation: dot-pulse 1.8s infinite ease-in-out;
}

.pulse-dot.status-purple {
    background: #a855f7;
    box-shadow: 0 0 0 rgba(168, 85, 247, 0.4);
}

@keyframes dot-pulse {
    0% { box-shadow: 0 0 0 0px rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0px rgba(37, 99, 235, 0); }
}

/* Translation Showcase Styling */
.trans-preview-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

/* Wrapper container to crop translated screenshots nicely in browser body */
.agent-showcase-visual .browser-body {
    max-height: 380px;
    overflow-y: auto;
    position: relative;
}

/* Scrollbar styling for browser mockup bodies */
.agent-showcase-visual .browser-body::-webkit-scrollbar {
    width: 6px;
}
.agent-showcase-visual .browser-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

/* Inline SVG Flag Positioning */
.trans-flag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(11, 17, 32, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    z-index: 10;
    transition: opacity 0.3s ease;
}

/* Google Ads Intent Rewrite Highlighter */
.ads-highlight-box {
    position: absolute;
    top: 25.5%; /* Positioned directly over the mockup headline "Find the perfect office space" */
    left: 8%;
    width: 84%;
    height: 27%;
    border: 1.5px dashed var(--primary);
    background: rgba(37, 99, 235, 0.02);
    border-radius: 6px;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ads-highlight-box.active {
    opacity: 1;
    transform: scale(1);
    animation: highlight-glow-pulse 1.8s ease-in-out infinite alternate;
}

.highlight-tag {
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary);
    color: #ffffff;
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    box-shadow: var(--shadow-sm);
}

.highlight-cursor {
    position: absolute;
    bottom: -8px;
    right: 12%;
    width: 1.5px;
    height: 15px;
    background: var(--primary);
    display: inline-block;
    animation: cursor-blink 0.9s steps(2, start) infinite;
}

@keyframes highlight-glow-pulse {
    0% { border-color: rgba(37, 99, 235, 0.4); box-shadow: 0 0 5px rgba(37, 99, 235, 0.1); background: rgba(37, 99, 235, 0.01); }
    100% { border-color: var(--primary); box-shadow: 0 0 15px rgba(37, 99, 235, 0.3); background: rgba(37, 99, 235, 0.03); }
}

@keyframes cursor-blink {
    to { visibility: hidden; }
}

/* A/B Test Variant Editor Mockup Overlays */
.ab-test-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 17, 32, 0.05);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    z-index: 3;
}

.ab-test-bg-img {
    max-height: 380px;
    object-fit: cover;
    object-position: top;
}

.overlay-dashboard {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 85% !important;
    max-width: 440px !important;
    z-index: 5 !important;
    box-shadow: 0 20px 50px rgba(11, 17, 32, 0.15) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: var(--border-radius-lg) !important;
    padding: 1.2rem !important;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(11, 17, 32, 0.06);
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.chatgpt-badge {
    bottom: 15%;
    right: 8%;
    border-color: rgba(168, 85, 247, 0.15);
    animation: float-widget-y 4.5s ease-in-out infinite alternate;
}

/* Responsiveness for visual assets */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-bottom: 2rem;
    }
    
    .hero-copy {
        align-items: center;
    }
    
    .hero-stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-stats-section {
        margin-top: 0;
    }
    
    .floating-widget {
        display: none; /* Hide floating widgets on tablets/mobiles to preserve layout */
    }
}

/* ==========================================================================
   Hero Agent Dashboard Console Styles (Three Stacked Widgets)
   ========================================================================== */

.hero-agents-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 0.2rem;
}

.dashboard-header .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: relative;
    animation: dashboard-pulse 1.8s infinite ease-in-out;
}

@keyframes dashboard-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.dashboard-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.agent-widget {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.agent-widget:hover {
    border-color: var(--border-hover);
    box-shadow: 0 6px 16px rgba(11, 17, 32, 0.04);
}

/* Accent Borders on the left */
.widget-translation {
    border-left: 4px solid var(--border-hover); /* Slate Grey */
}

.widget-cro {
    border-left: 4px solid var(--primary); /* Cobalt Blue */
}

.widget-bot {
    border-left: 4px solid var(--text-muted); /* Dark Slate Grey */
}

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

.widget-title-group {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.widget-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
}

.widget-status {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

.widget-translation .widget-status {
    background: rgba(71, 85, 105, 0.08);
    color: var(--text-muted);
}

.widget-cro .widget-status {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
}

.widget-bot .widget-status {
    background: rgba(71, 85, 105, 0.08);
    color: var(--text-muted);
}

.widget-body {
    display: flex;
    flex-direction: column;
}

/* Feed Text Styles */
.feed-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.4;
    transition: opacity 0.25s ease-in-out;
}

#hero-live-trans-text {
    /* Ensures smooth transitioning */
    min-height: 1.4rem;
}

/* CRO Metric Styling */
.cro-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 0.2rem;
}

.cro-metric-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cro-metric-box .metric-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.widget-cro .cro-metric-box:first-of-type .metric-val {
    color: var(--primary); /* Highlighting in blue for growth */
}

.cro-metric-box .metric-lbl {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Bot Protection feed */
.bot-feed {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bot-feed .feed-subtext {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.bot-feed .highlight-num {
    color: var(--secondary);
    font-weight: 800;
}

.bot-feed .highlight-blue {
    color: var(--primary);
    font-weight: 800;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .hero-agents-dashboard {
        padding: 1rem;
    }
    
    .agent-widget {
        padding: 0.8rem 1rem;
    }
    
    .cro-metrics {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Results Table Styling (Hero Widgets) */
.widget-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
    font-size: 0.76rem;
}

.widget-table th {
    text-align: left;
    padding: 0.4rem 0.5rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.62rem;
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 0.02em;
}

.widget-table td {
    padding: 0.45rem 0.5rem;
    color: var(--text-main);
    font-weight: 600;
    border-bottom: 1px solid rgba(11, 17, 32, 0.03);
}

.widget-table tr:last-child td {
    border-bottom: none;
}

.widget-table .text-green {
    color: var(--primary);
    font-weight: 800;
}

.widget-table .text-blue {
    color: var(--primary);
    font-weight: 800;
}

/* Results Table Styling (Showcases) */
.showcase-results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    font-size: 0.8rem;
    background: var(--bg-alt);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.showcase-results-table th {
    background: var(--secondary);
    color: #ffffff;
    text-align: left;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.showcase-results-table td {
    padding: 0.55rem 0.75rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.showcase-results-table tr:last-child td {
    border-bottom: none;
}

.showcase-results-table .text-green {
    color: var(--primary);
    font-weight: 800;
}

.showcase-results-table .text-blue {
    color: var(--primary);
    font-weight: 800;
}

/* Centered Hero & Benefits Grid Layout */
.hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding-top: 5rem !important;
    padding-bottom: 2rem !important;
    gap: 1.8rem !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1;
    background-image: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.05), transparent 60%) !important;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border-color) 1.2px, transparent 1.2px);
    background-size: 18px 18px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
}

.hero-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
}

.hero h1.hero-headline-centered {
    font-size: 3.8rem !important;
    max-width: 850px !important;
    line-height: 1.15 !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.hero-actions {
    justify-content: center !important;
    padding-top: 0.2rem !important;
}.hero-benefits-grid {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.hero-benefit-card {
    flex: 1; /* equal width distribution */
    min-width: 0; /* allow flex items to shrink below content size */
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* smooth flex expansion transition */
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    box-shadow: var(--shadow-sm);
    position: relative; /* Anchor for absolute child elements */
}

/* Flexbox card expansion on hover (stretches hovered, compresses siblings) */
.hero-benefits-grid:hover .hero-benefit-card:not(:hover) {
    opacity: 0.65; /* dim other cards slightly for focus */
    transform: scale(0.96); /* shrink other cards slightly */
}

.hero-benefit-card:hover {
    flex: 1.45; /* expands card width by ~30% */
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    padding: 2.0rem 1.25rem; /* grows vertically by increasing padding */
    margin-top: -0.5rem; /* shifts upward */
    margin-bottom: -0.5rem; /* balances vertical margins */
}

/* Benefit Card Toggle Switch Animation (only visible on hover, slides to active slowly) */
.hero-benefit-card .switch-toggle {
    position: absolute;
    top: 1.5rem;
    right: 1.25rem;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.hero-benefit-card:hover .switch-toggle {
    opacity: 1;
    transform: scale(1);
}

/* Slow down the internal switch transitions for smoother visibility */
.hero-benefit-card .switch-slider,
.hero-benefit-card .switch-slider:before {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.hero-benefit-card:hover .switch-toggle .switch-slider {
    background-color: var(--primary) !important;
}

.hero-benefit-card:hover .switch-toggle .switch-slider:before {
    transform: translateX(16px) !important;
}

.hero-benefit-card .benefit-stat {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.hero-benefit-card .benefit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
}

.hero-benefit-card .benefit-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsiveness for benefits grid */
@media (max-width: 1024px) {
    .hero-benefits-grid {
        flex-wrap: wrap;
    }
    .hero-benefit-card {
        flex: 1 1 calc(50% - 1rem); /* 2 per row */
    }
}

@media (max-width: 768px) {
    .hero-benefits-grid {
        flex-wrap: wrap;
    }
    .hero-benefit-card {
        flex: 1 1 calc(50% - 1rem); /* 2 per row */
    }
    .hero h1.hero-headline-centered {
        font-size: 3rem !important;
    }
}

@media (max-width: 480px) {
    .hero-benefits-grid {
        flex-direction: column;
    }
    .hero-benefit-card {
        flex: 1 1 100%; /* 1 per row */
    }
    .hero h1.hero-headline-centered {
        font-size: 2.2rem !important;
    }
}

/* Specificity fix for Get Seatext AI button in navigation menu */
.nav-links a.btn-primary {
    color: #ffffff !important;
}
.nav-links a.btn-primary:hover {
    color: #ffffff !important;
}

/* Pricing Section Styles */
.pricing {
    background: var(--bg-main);
    padding: 6.5rem 2rem;
}

.pricing .section-header {
    margin-bottom: 3.5rem;
    max-width: 820px;
}

.pricing .section-header h2 {
    font-size: clamp(2rem, 3.2vw, 3.35rem);
    line-height: 1.08;
}

.pricing .section-header p {
    font-size: 1rem;
    line-height: 1.7;
}

.pricing-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
}

/* Left Card - Free Plan */
.free-plan-card {
    background: #f8f9fb;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.free-plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(11, 17, 32, 0.08);
}

/* Right Card - Paid Plan */
.paid-plan-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%);
    border: none;
    box-shadow: 0 8px 32px rgba(29, 78, 216, 0.28);
}

.paid-plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(29, 78, 216, 0.4);
}

.card-header-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-plan-card .icon-circle {
    background: #e5e7eb;
    color: #6b7280;
}

.paid-plan-card .icon-circle {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

.pricing-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.free-plan-card .pricing-tag {
    background: #e5e7eb;
    color: #374151;
    border: none;
}

.paid-plan-card .pricing-tag {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
}

.pricing-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.free-plan-card .card-title {
    color: #111827;
}

.paid-plan-card .card-title {
    color: #ffffff;
}

.pricing-card .card-body-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.free-plan-card .card-body-text {
    color: #6b7280;
}

.paid-plan-card .card-body-text {
    color: rgba(255,255,255,0.8);
}

.pricing-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
}

.pricing-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.free-plan-card .pricing-bullets li {
    color: #374151;
}

.paid-plan-card .pricing-bullets li {
    color: rgba(255,255,255,0.9);
}

.pricing-bullets li svg {
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-action {
    margin-top: auto;
    padding-top: 8px;
    width: 100%;
}

.pricing-btn {
    width: 100%;
    text-align: center;
}

.paid-plan-card .white-btn {
    background: #ffffff;
    color: #1d4ed8;
    border: 1px solid #ffffff;
}

.paid-plan-card .white-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #111827;
    border-color: rgba(255,255,255,0.9);
}

.corporate-pricing-stack {
    display: grid;
    gap: 1rem;
}

.corporate-plan {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    overflow: hidden;
}

.corporate-plan-index {
    align-items: flex-start;
    background: #f8fbff;
    border-right: 1px solid var(--enterprise-line);
    color: var(--enterprise-accent);
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    justify-content: center;
    padding-top: 1.9rem;
}

.corporate-plan-body {
    display: grid;
    gap: 0;
}

.corporate-plan-header {
    align-items: stretch;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) 270px;
    padding: 1.75rem;
}

.corporate-plan-label {
    color: var(--enterprise-accent);
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.corporate-plan-header h3 {
    color: var(--enterprise-ink);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.65rem, 2.6vw, 2.35rem);
    line-height: 1.1;
    margin: 0 0 0.8rem;
    max-width: 760px;
}

.corporate-plan-header p {
    color: var(--enterprise-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
    max-width: 780px;
}

.corporate-commercial {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    display: grid;
    gap: 0.45rem;
    padding: 1.05rem;
}

.corporate-commercial span,
.corporate-plan-column > span {
    color: var(--enterprise-muted);
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.corporate-commercial strong {
    color: var(--enterprise-ink);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.45rem, 2.4vw, 2.05rem);
    line-height: 1.08;
}

.corporate-commercial small {
    color: var(--enterprise-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.corporate-plan-grid {
    border-top: 1px solid var(--enterprise-line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.corporate-plan-column {
    padding: 1.4rem 1.75rem;
}

.corporate-plan-column + .corporate-plan-column {
    border-left: 1px solid var(--enterprise-line);
}

.corporate-plan-column ul {
    display: grid;
    gap: 0.75rem;
    list-style: none;
    margin: 0.9rem 0 0;
    padding: 0;
}

.corporate-plan-column li {
    color: var(--enterprise-ink);
    display: grid;
    font-size: 0.92rem;
    gap: 0.65rem;
    grid-template-columns: 16px minmax(0, 1fr);
    line-height: 1.5;
}

.corporate-plan-column li::before {
    color: var(--enterprise-accent);
    content: "✓";
    font-weight: 800;
}

.corporate-plan-action {
    align-items: center;
    background: #fbfdff;
    border-top: 1px solid var(--enterprise-line);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.15rem 1.75rem;
}

.corporate-plan-action span {
    color: var(--enterprise-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.corporate-plan-action .btn {
    min-width: 220px;
    text-align: center;
}

.corporate-plan-enterprise {
    border-color: #b7d7ff;
}

.corporate-plan-enterprise .corporate-plan-header {
    grid-template-columns: 1fr;
}

.corporate-plan-enterprise .corporate-plan-index {
    background: #eef6ff;
    color: var(--enterprise-accent-deep);
}

.corporate-plan-enterprise .corporate-commercial {
    background: #0f4c81;
    border-color: #0f4c81;
}

.corporate-plan-enterprise .corporate-commercial span,
.corporate-plan-enterprise .corporate-commercial small,
.corporate-plan-enterprise .corporate-commercial strong {
    color: #ffffff;
}

.corporate-sales-btn {
    background: #ffffff;
    border-color: #b7d7ff;
    color: var(--enterprise-accent-deep);
}

.corporate-sales-btn:hover {
    background: #eef6ff;
    border-color: #9cc9ff;
    color: var(--enterprise-accent-deep);
}

@media (max-width: 900px) {
    .corporate-plan {
        grid-template-columns: 1fr;
    }

    .corporate-plan-index {
        align-items: center;
        border-bottom: 1px solid var(--enterprise-line);
        border-right: 0;
        justify-content: flex-start;
        padding: 0.85rem 1rem;
    }

    .corporate-plan-header,
    .corporate-plan-grid {
        grid-template-columns: 1fr;
    }

    .corporate-plan-column + .corporate-plan-column {
        border-left: 0;
        border-top: 1px solid var(--enterprise-line);
    }

    .corporate-plan-action {
        align-items: stretch;
        flex-direction: column;
    }

    .corporate-plan-action .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Agent grid section header */
.section-header-compact {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.section-header-compact h2 {
    margin-top: 0.2rem;
}

/* Agents Grid Section Divider Title */
.agents-section-header {
    text-align: center;
    max-width: 800px;
    margin: 4.5rem auto 3.5rem auto;
    padding: 0 1.5rem;
}

.agents-section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.agents-section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

/* Agent Grid Layout */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

/* Agent Card Styles */
.agent-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 1.8rem;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 1.5rem;
    align-items: stretch;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border-color);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
}

@media (min-width: 681px) {
    .agent-card.expanded {
        width: calc(200% + 2rem);
        z-index: 50;
        grid-template-columns: 1.1fr 1.3fr;
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
        border-color: var(--primary);
    }
    
    .agent-card:nth-child(even).expanded {
        transform: translateX(calc(-50% - 1rem)) translateY(-4px);
    }
    
    .agent-card:nth-child(odd).expanded {
        transform: translateY(-4px);
    }
}

.agent-card:not(.expanded):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-visual-wrapper {
    background: var(--bg-alt);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
    min-height: 240px;
    position: relative;
}

.card-visual-wrapper img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.4s ease;
}

.card-visual-wrapper video,
.card-visual-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    background: var(--bg-alt);
    border: none;
}

.agent-card.expanded .card-visual-wrapper img {
    opacity: 0;
}

.agent-card.expanded .card-visual-wrapper video,
.agent-card.expanded .card-visual-wrapper iframe {
    opacity: 1;
}

.card-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    justify-content: flex-start;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.agent-card .card-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.agent-card .live-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: agent-pulse 1.5s infinite ease-in-out;
}

.agent-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.25;
    margin: 0;
}

/* Description transitions */
.desc-container {
    position: relative;
    min-height: 4.5rem;
    width: 100%;
}

.agent-card .card-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.desc-short {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.desc-long {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.agent-card.expanded .desc-short {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.agent-card.expanded .desc-long {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Traffic Promise Telemetry Badge */
.card-promise-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.8rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.agent-card.expanded .card-promise-badge {
    opacity: 1;
    transform: translateY(0);
}

.promise-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: promise-pulse 1.8s infinite ease-in-out;
}

.promise-text {
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

@keyframes promise-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px #10b981;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
        box-shadow: 0 0 12px #10b981, 0 0 4px #10b981;
    }
}

/* Sound Toggle Button overlay */
.sound-toggle-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
    padding: 0;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.agent-card.expanded .sound-toggle-btn {
    opacity: 1;
    transform: scale(1);
}

.sound-toggle-btn:hover {
    background: rgba(37, 99, 235, 0.9);
    border-color: var(--primary);
}

.sound-toggle-btn svg {
    display: block;
}

/* Expanded claims container */
.expanded-claims {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, visibility 0.4s ease;
    border-top: 1px dashed var(--border-color);
    padding-top: 0.8rem;
}

.agent-card.expanded .expanded-claims {
    opacity: 1;
    visibility: visible;
    max-height: 120px;
}

.claim-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.claim-check {
    color: #10b981;
    flex-shrink: 0;
}

/* iOS-style slide toggle switch */
.switch-toggle {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 20px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.switch-toggle input:checked + .switch-slider {
    background-color: var(--primary); /* Blue active */
}

.switch-toggle input:checked + .switch-slider:before {
    transform: translateX(16px);
}

/* 1. Google Ads Intent Adaptation visual helpers */
.mini-browser {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.35rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
}

.browser-header-dots {
    display: flex;
    gap: 3px;
}

.browser-header-dots .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-light);
}

.keyword-pill {
    font-weight: 700;
    color: var(--text-muted);
}

.keyword-pill span {
    color: var(--primary);
    background: var(--primary-glow);
    padding: 1px 4px;
    border-radius: 2px;
}

.cvr-pill {
    font-weight: 800;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 1px 4px;
    border-radius: 2px;
}

/* 2. Bot Protection visual helpers */
.mini-traffic-log {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mini-traffic-log .log-entry {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.4rem 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.mini-traffic-log .log-entry .ip {
    font-family: monospace;
    color: var(--secondary);
}

.mini-traffic-log .log-entry .badge-status {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.6rem;
    text-transform: uppercase;
}

.mini-traffic-log .log-entry .refund-amt {
    color: var(--primary);
    font-weight: 800;
}

.mini-traffic-log .dispute-box {
    text-align: center;
    background: var(--primary-glow);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.35rem;
    border-radius: 4px;
    border: 1px dashed rgba(37, 99, 235, 0.3);
}

/* 3. Translation visual helpers */
.lang-selector-mini {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.lang-selector-mini span {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
    color: var(--text-muted);
    background: #ffffff;
    border: 1px solid var(--border-color);
}

.lang-selector-mini span.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* 4. A/B testing visual helpers */
.mini-ab-test {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mini-ab-test .ab-row {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.mini-ab-test .ab-row .lbl {
    width: 60px;
    z-index: 1;
}

.mini-ab-test .ab-row .bar-fill {
    height: 100%;
    position: absolute;
    left: 68px;
    top: 0;
    background: var(--bg-alt);
    z-index: 0;
    border-radius: 0 4px 4px 0;
}

.mini-ab-test .ab-row.winner .bar-fill {
    background: rgba(37, 99, 235, 0.08);
}

.mini-ab-test .ab-row .val {
    margin-left: auto;
    z-index: 1;
}

.mini-ab-test .ab-row.winner .val {
    color: var(--primary);
    font-weight: 800;
}

/* 5. ChatGPT AISO visual helpers */
.mini-chatgpt {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.72rem;
    text-align: left;
}

.mini-chatgpt .query {
    align-self: flex-end;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.6rem;
    border-radius: 8px 8px 0 8px;
    font-weight: 600;
    color: var(--secondary);
}

.mini-chatgpt .reply {
    align-self: flex-start;
    background: #ffffff;
    border: 1px solid var(--primary);
    padding: 0.35rem 0.6rem;
    border-radius: 8px 8px 8px 0;
    color: var(--secondary);
}

.mini-chatgpt .reply i {
    color: var(--primary);
    font-style: normal;
    font-weight: 700;
}

/* 6. CTA Card visual helpers */
.cta-card {
    border: 1.5px solid var(--primary);
    background: var(--primary-glow);
    justify-content: center;
}

.cta-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    height: 100%;
    justify-content: center;
}

.icon-circle-large {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cta-card .card-title {
    font-size: 1.25rem !important;
}

.cta-card .card-desc {
    max-width: 280px;
}

.cta-action {
    width: 100%;
    margin-top: 0.4rem;
}

.cta-action .btn {
    width: 100%;
}

/* Responsive grid adjustments */
@media (max-width: 860px) {
    .agent-card {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .card-visual-wrapper {
        min-height: 220px;
    }
}

@media (max-width: 680px) {
    .agent-grid {
        grid-template-columns: 1fr;
    }
    .pricing {
        padding: 4rem 1.5rem;
    }
}

/* 6. AI SEO Schema visual helper */
.mini-schema-snippet {
    background: #0f172a;
    color: #38bdf8;
    font-family: monospace;
    font-size: 0.65rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 0.4rem;
    text-align: left;
    overflow-x: auto;
    white-space: nowrap;
}

/* 8. Pixel blocking visual helper */
.mini-shield-alert {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
    box-shadow: var(--shadow-sm);
}

/* 9. Server Shield form input lock visual helper */
.mini-form-lock {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
}

.form-input-lock {
    background: #ffffff;
    border: 1px solid var(--border-color);
    width: 100%;
    height: 32px;
    border-radius: 4px;
    padding: 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-input-lock .dot {
    width: 25%;
    height: 4px;
    background: var(--bg-alt);
    border-radius: 2px;
}

.form-input-lock .lock-icon {
    font-size: 0.75rem;
}

.mini-form-lock .txt {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 2px 6px;
    border-radius: 3px;
}

/* 11. Smart Routing visual helper */
.mini-routing-map {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.mini-routing-map .node {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--text-muted);
}

.mini-routing-map .node.primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mini-routing-map .arrow {
    color: var(--primary);
    font-weight: 850;
}/* --- Explanatory Onboarding Step Banner Styles --- */
.onboarding-steps {
    display: flex;
    align-items: stretch; /* Make all cards same height */
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto 4.5rem auto;
    width: 100%;
    max-width: var(--max-width);
}

.onboarding-step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.25rem;
    flex: 1 1 0px; /* Equal weight & width for all cards */
    width: 0;      /* Enforce strict equal flex division */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    min-height: 384px; /* Increased 20% from 320px */
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.onboarding-step-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.35);
}

.step-visual {
    width: 100%;
    height: 216px; /* Increased 20% from 180px */
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0.06) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    box-shadow: inset 0 2px 4px rgba(11, 17, 32, 0.01);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.step-text {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.3rem;
    padding: 0 0.5rem;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500; /* Medium font weight */
    color: var(--text-muted); /* Muted label look */
    line-height: 1.25;
    margin-bottom: 0.1rem;
}

.step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem; /* 3 points bigger than step-title */
    font-weight: 500; /* Medium font weight */
    color: #0b1120; /* Black */
    line-height: 1.45;
}

.onboarding-logos-row {
    position: relative;
    width: 100%;
    height: 100%;
}

.onboard-logo-card {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(11, 17, 32, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 105px;
    height: 42px;
}

/* Staggered placements for 5 logos: WordPress (center), Shopify (top-right), Wix (bottom-right), Webflow (top-left), Magento (bottom-left) */
.onboard-logo-card:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.onboard-logo-card:nth-child(2) {
    top: 15px;
    right: 15px;
    z-index: 1;
}

.onboard-logo-card:nth-child(3) {
    bottom: 15px;
    right: 15px;
    z-index: 1;
}

.onboard-logo-card:nth-child(4) {
    top: 15px;
    left: 15px;
    z-index: 1;
}

.onboard-logo-card:nth-child(5) {
    bottom: 15px;
    left: 15px;
    z-index: 1;
}

/* Staggered hover animations */
.onboard-logo-card:nth-child(1):hover {
    transform: translate(-50%, -50%) translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(11, 17, 32, 0.06);
    border-color: var(--border-hover);
    z-index: 3;
}

.onboard-logo-card:nth-child(2):hover,
.onboard-logo-card:nth-child(3):hover,
.onboard-logo-card:nth-child(4):hover,
.onboard-logo-card:nth-child(5):hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(11, 17, 32, 0.06);
    border-color: var(--border-hover);
    z-index: 3;
}

.onboard-logo-img {
    height: 20px !important;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    object-fit: contain;
}

.logo-wordpress {
    height: 27px !important; /* +35% scale increase */
}

.logo-webflow {
    height: 15px !important; /* -25% scale reduction */
}

.onboard-logo-card:hover .onboard-logo-img {
    opacity: 1;
}

.onboarding-arrow-container {
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 0.5rem;
}

.onboarding-arrow-container svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5px;
}

.agent-activation-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.85rem;
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: 0 4px 16px rgba(11, 17, 32, 0.04);
    transition: all 0.25s ease;
}

.agent-activation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 17, 32, 0.08);
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.agent-avatar {
    width: 32px;
    height: 32px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.agent-label {
    font-size: 0.6rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.agent-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.onboarding-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.85rem;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: indicator-pulse 1.8s infinite ease-in-out;
}

@keyframes indicator-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.indicator-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
}

.onboarding-metrics-row {
    display: flex;
    gap: 0.8rem;
    width: 100%;
}

.onboard-metric-card {
    flex: 1;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.6rem 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    box-shadow: var(--shadow-sm);
}

.onboard-metric-card.highlight-blue {
    border-color: rgba(37, 99, 235, 0.2);
    background: rgba(37, 99, 235, 0.02);
}

.onboard-metric-card.highlight-green {
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.02);
}

.onboard-metric-card .metric-val {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.onboard-metric-card.highlight-blue .metric-val {
    color: var(--primary);
}

.onboard-metric-card.highlight-green .metric-val {
    color: #10b981;
}

.onboard-metric-card .metric-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
}

/* Sparkline visualization styles */
.sparkline-container {
    width: 100%;
    height: 40px;
    margin-bottom: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.metric-sparkline {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.sparkline-path {
    transition: none;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

@media (max-width: 980px) {
    .onboarding-steps {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .onboarding-step-card {
        width: 100%;
        max-width: 420px;
        min-height: auto;
        flex: none; /* override desktop flex properties */
    }
}

.cta-switch-visual {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.cta-switch-visual .switch-toggle {
    transform: scale(1.5);
}

.cta-switch-visual .switch-slider {
    background-color: rgba(255, 255, 255, 0.35);
}

.cta-switch-visual .switch-toggle input:checked + .switch-slider {
    background-color: #ffffff;
}

.cta-switch-visual .switch-slider:before {
    background-color: var(--secondary);
}

/* Agent Card Slideshow wrapper styles */
.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow-wrapper .slideshow-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}

.slideshow-wrapper .slideshow-img.active {
    opacity: 1;
}

/* Mobile homepage repair pass: keep the static site readable before fixing every page. */
.mobile-nav-toggle,
.mobile-nav-button {
    display: none;
}

@media (max-width: 980px) {
    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    section {
        width: 100%;
        padding: 3.5rem 1.25rem;
    }

    header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar {
        position: relative;
        flex-direction: row;
        align-items: center;
        gap: 0;
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .logo {
        max-width: calc(100% - 56px);
        transform: scale(0.78);
        transform-origin: left center;
        margin-left: -0.35rem;
    }

    .logo:hover {
        transform: scale(0.78);
    }

    .mobile-nav-toggle {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .mobile-nav-button {
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        margin-left: auto !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: #ffffff;
        cursor: pointer;
    }

    .mobile-nav-button span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--secondary);
        transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: absolute !important;
        top: calc(100% + 1px) !important;
        left: 0 !important;
        right: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 1rem !important;
        background: #ffffff;
        border-bottom: 1px solid transparent;
        box-shadow: none;
        transition: max-height 0.22s ease, padding 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }

    .mobile-nav-toggle:checked ~ .nav-links {
        max-height: calc(100dvh - 70px) !important;
        overflow-y: auto !important;
        padding: 0.65rem 1rem 1rem !important;
        border-bottom-color: var(--border-color);
        box-shadow: var(--shadow-md);
    }

    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links > li:last-child {
        border-bottom: 0;
    }

    .nav-links a {
        display: flex !important;
        width: 100% !important;
        min-height: 46px !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 0.75rem 0 !important;
        font-size: 0.92rem !important;
    }

    .nav-links a.btn {
        justify-content: center;
        min-height: 44px;
        margin-top: 0.75rem;
        padding: 0.72rem 1rem !important;
        font-size: 0.88rem !important;
    }

    .nav-item-has-menu .mega-menu {
        display: none !important;
    }

    .nav-menu-trigger::after {
        display: none;
    }

    .hero {
        display: flex !important;
        min-height: auto;
        padding: 3rem 1.25rem 2rem !important;
        gap: 1.35rem !important;
        overflow: hidden;
    }

    .hero::before,
    .hero-3d-bg {
        opacity: 0.35;
    }

    .hero-copy {
        width: 100%;
        gap: 0.85rem !important;
    }

    .hero-eyebrow {
        font-size: 0.68rem;
        line-height: 1.4;
    }

    .hero h1.hero-headline-centered {
        width: 100%;
        max-width: 22rem !important;
        font-size: clamp(2rem, 10vw, 2.55rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.035em !important;
        text-wrap: balance;
    }

    .hero h1.hero-headline-centered .switch-toggle {
        display: block !important;
        margin: 0 auto 0.75rem !important;
        transform: scale(0.95) !important;
        top: 0 !important;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.7rem;
        padding-top: 0 !important;
    }

    .hero-actions .btn {
        width: min(100%, 21rem);
        min-height: 46px;
        padding: 0.78rem 1rem;
        white-space: normal;
        text-align: center;
        line-height: 1.25;
    }

    .hero-benefits-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-top: 0.75rem;
    }

    .hero-benefit-card,
    .hero-benefit-card:hover {
        flex: none;
        transform: none;
        margin: 0;
        padding: 1rem;
    }

    .hero-benefit-card .switch-toggle {
        display: none;
    }

    .hero-benefit-card .benefit-stat {
        font-size: 1.9rem;
    }

    .hero-benefit-card .benefit-desc {
        font-size: 0.82rem;
    }

    .subpage-hero,
    .ab-hero,
    .personalization-hero-inner,
    .source-hero-inner,
    .chatgpt-hero-inner {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
        padding: 2rem 1.25rem 2rem !important;
        text-align: left !important;
    }

    .subpage-hero .hero-copy,
    .ab-hero-copy,
    .personalization-hero-copy,
    .source-hero-copy,
    .chatgpt-hero-copy {
        width: 100% !important;
        max-width: 100% !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .subpage-hero h1,
    .ab-hero-copy h1,
    .personalization-hero h1,
    .source-hero-copy h1,
    .chatgpt-hero h1 {
        width: 100% !important;
        max-width: 100% !important;
        font-size: clamp(1.85rem, 8vw, 2.25rem) !important;
        line-height: 1.12 !important;
        letter-spacing: -0.035em !important;
        text-align: left !important;
        margin: 0.65rem 0 0.85rem !important;
        text-wrap: balance;
    }

    .subpage-hero p,
    .ab-hero-copy p,
    .personalization-hero p,
    .source-hero-copy p,
    .chatgpt-hero p {
        max-width: 100% !important;
        font-size: 0.98rem !important;
        line-height: 1.65 !important;
    }

    .subpage-hero .hero-actions,
    .ab-hero .hero-actions,
    .personalization-hero .hero-actions,
    .source-hero .hero-actions,
    .chatgpt-hero .hero-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        width: 100% !important;
        gap: 0.7rem !important;
    }

    .subpage-hero .hero-actions .btn,
    .ab-hero .hero-actions .btn,
    .personalization-hero .hero-actions .btn,
    .source-hero .hero-actions .btn,
    .chatgpt-hero .hero-actions .btn {
        width: 100% !important;
        min-height: 46px !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.25 !important;
    }

    .solution-hero-card,
    .ab-hero-panel,
    .hero-proof,
    .hero-proof-row,
    .source-hero-visual,
    .chatgpt-hero-visual,
    .simple-benefit-grid,
    .premium-ab-hero,
    .premium-hero-variants,
    .hero-stats {
        width: 100% !important;
        max-width: 100% !important;
    }

    .solution-hero-card,
    .ab-hero-panel,
    .hero-proof,
    .hero-proof-card,
    .simple-benefit-card {
        padding: 1rem !important;
        border-radius: 8px !important;
    }

    .ab-proof-row,
    .hero-proof-row,
    .hero-stats,
    .premium-hero-variants {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .inline-ai-switch {
        width: 46px !important;
        height: 24px !important;
        vertical-align: -0.18rem !important;
    }

    .inline-ai-switch::before {
        width: 18px !important;
        height: 18px !important;
    }

    .ticker-section {
        padding: 2rem 1rem !important;
    }

    .logo-ticker-container::before,
    .logo-ticker-container::after {
        width: 34px;
    }

    .agent-center,
    .pricing,
    .integrations,
    .benefits {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

/* Company pages */
.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}

.company-hero {
    padding: 5rem 2rem 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
}

.company-hero-inner {
    max-width: 950px;
    margin: 0 auto;
}

.company-hero h1 {
    font-size: 3rem;
    line-height: 1.12;
    margin-bottom: 2rem;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.kpi-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.kpi-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.kpi-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.company-section {
    padding: 3.5rem 2rem;
}

.company-section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.company-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.company-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-card .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}

.company-card h2,
.company-card h3 {
    margin: 0;
    font-size: 1.8rem;
}

.company-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.company-card p.lead {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
}

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

.security-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.security-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
}

.security-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.legal-page {
    padding: 4.5rem 2rem 6rem;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem 2.5rem;
}

.legal-card h1 {
    font-size: 2.8rem;
    margin: 0.5rem 0 1.5rem;
}

.legal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.legal-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.legal-body ul {
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: disc;
}

.legal-body hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 0.5rem 0;
}

.about-hero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-glow);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.about-hero-lead {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto;
}

.about-manifesto {
    background: var(--secondary);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.about-manifesto-inner {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-manifesto .eyebrow {
    color: #93c5fd;
}

.about-manifesto h2 {
    color: #ffffff;
    font-size: 2.6rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0;
}

.about-manifesto p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin: 0;
}

.about-prose-block {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-prose-block p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.about-prose-block p.lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.7;
}

.about-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-step-num {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--primary);
}

.about-step-card h3 {
    margin: 0;
    font-size: 1.25rem;
}

.about-step-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.about-partner-banner {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 55%);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 3.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.about-partner-banner h2 {
    margin: 0 0 1rem;
    font-size: 2.1rem;
    line-height: 1.2;
}

.about-partner-banner p {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-partner-banner p:last-of-type {
    margin-bottom: 0;
}

.about-partner-banner .lead {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--text-main);
}

.about-partner-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
}

.about-partner-actions a {
    text-decoration: none;
}

.about-partner-contact {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-partner-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.about-founder {
    padding: 0 2rem 4rem;
}

.about-founder-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: end;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.about-founder-photo {
    margin: 0;
    min-height: 420px;
    background: var(--bg-alt);
}

.about-founder-photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-founder-copy {
    padding: 2.5rem 2.5rem 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-founder-copy h2 {
    margin: 0;
    font-size: 1.9rem;
}

.about-founder-role {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}

.about-founder-copy p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-founder-quote {
    font-size: 1.15rem !important;
    font-weight: 600;
    color: var(--text-main) !important;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
}

@media (max-width: 900px) {
    .company-grid-2,
    .security-grid,
    .kpi-grid,
    .about-steps-grid {
        grid-template-columns: 1fr;
    }

    .about-partner-banner,
    .about-founder-inner {
        grid-template-columns: 1fr;
    }

    .about-founder-copy {
        padding: 0 1.5rem 1.5rem;
    }

    .about-founder-photo {
        min-height: 320px;
    }

    .about-founder-photo img {
        min-height: 320px;
    }

    .about-manifesto h2 {
        font-size: 2rem;
    }

    .company-hero h1 {
        font-size: 2.2rem;
    }
}

/* Legacy documentation / integration pages */
.legacy-doc-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2rem 4.5rem;
}

.legacy-doc-page h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    line-height: 1.15;
    margin: 0 0 1.5rem;
    color: var(--secondary);
}

.legacy-doc-page h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    line-height: 1.25;
    margin: 2rem 0 0.75rem;
    color: var(--secondary);
}

.legacy-doc-page p {
    font-size: 1.05rem;
    margin: 0.85rem 0;
    color: var(--text-main);
}

.legacy-doc-page a:not(.btn) {
    color: var(--primary);
    text-decoration: underline;
}

.legacy-doc-page a:not(.btn):hover {
    color: var(--primary-hover);
}

.legacy-doc-page figure {
    margin: 1.4rem 0 2rem;
}

.legacy-doc-page img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}

.legacy-doc-page pre {
    overflow-x: auto;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-alt);
    border-radius: var(--border-radius-lg);
    font-size: 0.88rem;
}

.legacy-doc-page .platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.85rem;
}

.legacy-doc-page .platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 128px;
    padding: 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    color: var(--text-main);
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.legacy-doc-page .platform-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.legacy-doc-page .platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 48px;
    margin-bottom: 0.75rem;
}

.legacy-doc-page .platform-logo img {
    max-width: 64px;
    max-height: 48px;
    object-fit: contain;
    border: 0;
}

/* Reconstructed platform landing pages.
   The scraper exported Tilda's desktop and mobile blocks as a flat sequence of
   paragraphs and figures. These rules restore a readable document hierarchy
   without hiding any of the original copy or assets. */
.platform-landing {
    max-width: 1160px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 6rem;
}

.platform-hero {
    max-width: 760px;
    margin: 0 auto 4.5rem;
    text-align: center;
}

.platform-eyebrow {
    margin: 0 0 .9rem;
    color: #2563eb;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.platform-landing h1 {
    margin: 0;
    color: #101828;
    font-size: clamp(2.35rem, 5vw, 4.5rem);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.platform-intro {
    max-width: 650px;
    margin: 1.4rem auto 2rem;
    color: #475467;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.6;
}

.platform-content {
    display: grid;
    gap: 2rem;
}

.platform-content h2 {
    max-width: 760px;
    margin: 3.5rem auto 0;
    color: #101828;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.platform-copy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: .9rem 1.2rem;
}

.platform-copy p {
    margin: 0;
    padding: 1.15rem 1.2rem;
    color: #344054;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    box-shadow: 0 2px 5px rgba(16, 24, 40, .03);
    font-size: 1rem;
    line-height: 1.6;
}

.platform-copy p:has(a:only-child) {
    display: flex;
    align-items: center;
    background: #f5f8ff;
    border-color: #d8e3ff;
    font-weight: 700;
}

.platform-copy a { color: #1d4ed8; }

.platform-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    padding: 1.25rem;
    background: #f8fafc;
    border: 1px solid #e4e7ec;
    border-radius: 18px;
}

.platform-media-grid figure {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 144px;
    margin: 0;
    padding: .8rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 12px;
}

.platform-media-grid img {
    display: block;
    width: 100%;
    max-height: 220px;
    object-fit: contain;
}

@media (max-width: 640px) {
    .platform-landing { padding: 3rem 1rem 4rem; }
    .platform-hero { margin-bottom: 3rem; }
    .platform-copy { grid-template-columns: 1fr; }
    .platform-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: .7rem; gap: .7rem; }
    .platform-media-grid figure { min-height: 105px; padding: .5rem; }
}

/* Enterprise homepage direction */
:root {
    --enterprise-bg: #f8fbff;
    --enterprise-ink: #0b1120;
    --enterprise-muted: #475569;
    --enterprise-soft: #eef7ff;
    --enterprise-line: #dbeafe;
    --enterprise-accent: #2563eb;
    --enterprise-accent-deep: #0f4c81;
    --enterprise-accent-soft: #e7f1ff;
}

body {
    background: var(--enterprise-bg);
}

header {
    background: rgba(248, 251, 255, 0.94);
    backdrop-filter: blur(18px);
}

.nav-links a {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 500;
}

.hero {
    max-width: 1200px !important;
    min-height: calc(100vh - 72px);
    align-items: flex-start !important;
    text-align: left !important;
    padding: 7.5rem 2rem 3.5rem !important;
    gap: 4.5rem !important;
    background: var(--enterprise-bg) !important;
    background-image:
        linear-gradient(90deg, rgba(37, 99, 235, 0.11) 1px, transparent 1px),
        linear-gradient(180deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px) !important;
    background-size: 64px 64px, 64px 64px !important;
}

.hero::before,
.hero-3d-bg {
    display: none !important;
}

.hero-copy {
    align-items: flex-start !important;
    max-width: 1120px;
    gap: 0.9rem !important;
}

.hero-activation-headline {
    overflow: visible;
}

.hero-headline-rest {
    color: var(--enterprise-ink);
}

.hero-headline-highlight {
    color: var(--enterprise-accent);
}

.hero-arrival-word {
    display: inline-block;
    margin-bottom: -0.18em;
    overflow: hidden;
    padding-bottom: 0.18em;
    vertical-align: bottom;
}

.hero-arrival-word-inner {
    display: inline-block;
    will-change: opacity, transform, filter;
}

.hero-headline-line {
    display: block;
}

.hero-headline-platform {
    color: var(--enterprise-accent);
}

.hero-activation-token {
    color: var(--enterprise-ink);
    display: inline-block;
    position: relative;
    transition: color 0.35s ease;
}

.hero-activation-token.is-active {
    color: var(--enterprise-accent);
}

.hero-activation-switch {
    background: var(--enterprise-accent);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16);
    display: inline-block;
    height: 0.54em;
    margin-left: 0.2em;
    margin-right: 0;
    opacity: 0;
    overflow: hidden;
    position: relative;
    transform: translateY(0.02em) scale(0.9);
    transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    vertical-align: middle;
    width: 1.06em;
}

.hero-activation-switch::before {
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 5px rgba(15, 23, 42, 0.22);
    content: "";
    height: 0.4em;
    left: 0.07em;
    position: absolute;
    top: 0.07em;
    transform: translateX(0);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    width: 0.4em;
}

.hero-activation-token.is-switching .hero-activation-switch {
    opacity: 1;
    transform: translateY(0.02em) scale(1);
}

.hero-activation-token.is-switching .hero-activation-switch::before {
    transform: translateX(0.52em);
}

.hero-eyebrow,
.enterprise-kicker {
    color: var(--enterprise-accent);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero h1.hero-headline-centered {
    color: var(--enterprise-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(3.25rem, 6vw, 5rem) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.07 !important;
    max-width: 1120px !important;
    text-align: left !important;
}

.hero-lead {
    color: var(--enterprise-muted);
    display: block;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.8;
    max-width: 720px;
}

.hero-actions {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 1rem !important;
    padding-top: 0.35rem !important;
}

.hero-demo-action {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.hero-actions .btn {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    min-height: 52px;
    min-width: 178px;
}

.btn {
    border-radius: 999px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 600;
}

.btn-primary {
    background: var(--enterprise-accent);
    border: 1px solid var(--enterprise-accent);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14);
}

.btn-primary:hover {
    background: var(--enterprise-accent-deep);
    border-color: var(--enterprise-accent-deep);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 76, 129, 0.16);
}

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
    background: var(--enterprise-accent-soft);
    border-color: #b7d7ff;
    color: var(--enterprise-accent-deep) !important;
}

.btn-secondary {
    background: #ffffff;
    border-color: var(--enterprise-line);
    color: var(--enterprise-ink);
    box-shadow: none;
}

.btn-secondary:hover {
    border-color: #b7d7ff;
    color: var(--enterprise-ink);
    box-shadow: none;
}

.demo-cta-note,
.hero-demo-note {
    color: var(--enterprise-muted);
    font-size: 0.75rem;
}

.hero-demo-note {
    display: block;
    margin-top: 0;
    text-align: center;
}

.hero-benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem !important;
    margin: 0.4rem 0 0 !important;
    max-width: 920px;
    width: 100%;
}

.hero-benefit-card,
.hero-benefit-card:hover {
    background: rgba(255, 255, 255, 0.86);
    border-color: var(--enterprise-line);
    box-shadow: none;
    flex: none;
    margin: 0;
    min-height: 270px;
    padding: 1.65rem !important;
    transform: none;
}

.hero-benefits-grid:hover .hero-benefit-card:not(:hover) {
    opacity: 1;
    transform: none;
}

.hero-benefit-card .switch-toggle {
    display: inline-block;
    opacity: 1;
    position: absolute;
    right: 1.15rem;
    top: 1.15rem;
    transform: scale(0.9);
}

.hero-benefit-card .benefit-card-header {
    align-items: center;
    display: flex;
    min-height: 24px;
}

.hero-benefit-card .benefit-agent-name {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin-top: 0;
    padding-right: 3.5rem;
    text-transform: uppercase;
}

.hero-benefit-card .benefit-outcome {
    color: var(--enterprise-accent-deep);
    display: block;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-top: 1.35rem;
}

.hero-benefit-card .benefit-outcome strong {
    color: var(--enterprise-accent);
    font-size: 1.65em;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.hero-benefit-card .benefit-title {
    color: var(--enterprise-ink);
    display: block;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-top: 0.85rem;
}

.hero-benefit-card .benefit-title strong {
    color: var(--enterprise-accent-deep);
    font-weight: 800;
}

.hero-benefit-card .benefit-desc {
    color: var(--enterprise-muted);
    font-size: 0.92rem;
    line-height: 1.62;
    margin-top: 0.58rem;
}

.hero-benefit-card .switch-slider,
.hero-benefit-card .switch-slider:before {
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-benefit-card.is-active {
    background: #ffffff;
    border-color: #9cc9ff;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.09);
    transform: translateY(-0.55rem);
}

.hero-benefit-card.is-active .switch-slider {
    background-color: var(--enterprise-accent) !important;
}

.hero-benefit-card.is-active .switch-slider:before {
    transform: translateX(16px) !important;
}

.hero-benefit-card.is-active .benefit-stat,
.hero-benefit-card.is-active .benefit-title {
    color: var(--enterprise-accent-deep);
}

/* Two-stage hero: position the category first, then assemble the agent team. */
.hero.hero-intro {
    box-sizing: border-box;
    justify-content: center;
    min-height: 100svh;
    padding-bottom: clamp(3rem, 8vh, 6rem) !important;
    padding-top: clamp(6.5rem, 13vh, 9rem) !important;
}

.hero-intro .hero-copy {
    gap: clamp(1.35rem, 2.6vh, 2.15rem) !important;
}

.hero-intro .hero-actions {
    margin-top: 0.35rem;
}

.hero-scroll-cue {
    align-items: center;
    color: var(--enterprise-muted);
    display: inline-flex;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    gap: 0.8rem;
    letter-spacing: 0.06em;
    margin-top: clamp(1rem, 4vh, 2.75rem);
    text-transform: uppercase;
}

.hero-scroll-cue:hover {
    color: var(--enterprise-accent);
}

.hero-scroll-cue-track {
    background: #cbdcf2;
    border-radius: 999px;
    display: block;
    height: 2px;
    overflow: hidden;
    position: relative;
    width: 56px;
}

.hero-scroll-cue-track span {
    animation: heroScrollCue 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    background: var(--enterprise-accent);
    border-radius: inherit;
    inset: 0;
    position: absolute;
    transform: translateX(-105%);
}

@keyframes heroScrollCue {
    0% { transform: translateX(-105%); }
    55%, 100% { transform: translateX(105%); }
}

.agent-deployment {
    background:
        radial-gradient(circle at 74% 45%, rgba(37, 99, 235, 0.22), transparent 28%),
        radial-gradient(circle at 55% 90%, rgba(14, 165, 233, 0.1), transparent 34%),
        #07111f;
    color: #ffffff;
    position: relative;
}

.agent-deployment::before {
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
    pointer-events: none;
    position: absolute;
}

.agent-deployment-pin {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    min-height: 100svh;
    overflow: hidden;
    padding: clamp(5.5rem, 9vh, 7rem) 2rem clamp(2.5rem, 6vh, 4.5rem);
    position: relative;
}

.agent-deployment-shell {
    align-items: center;
    display: grid;
    gap: clamp(2.5rem, 5vw, 5.5rem);
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    margin: 0 auto;
    max-width: 1240px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.agent-deployment-copy {
    align-self: center;
    max-width: 430px;
}

.agent-deployment-copy .enterprise-kicker {
    color: #60a5fa;
    margin-bottom: 1.15rem;
}

.agent-deployment-copy h2 {
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(2.55rem, 4.8vw, 4.9rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
    margin: 0;
}

.agent-deployment-copy > p:not(.enterprise-kicker) {
    color: #9fb0c7;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.7;
    margin: 1.35rem 0 0;
}

.deployment-live-status {
    align-items: center;
    color: #bfdbfe;
    display: flex;
    font-size: 0.78rem;
    font-weight: 700;
    gap: 0.65rem;
    letter-spacing: 0.03em;
    margin-top: 2.25rem;
    min-height: 1.2rem;
}

.deployment-live-dot {
    background: #60a5fa;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.55);
    height: 8px;
    width: 8px;
    animation: deploymentPulse 1.8s ease-out infinite;
}

@keyframes deploymentPulse {
    70%, 100% { box-shadow: 0 0 0 9px rgba(96, 165, 250, 0); }
}

.deployment-progress {
    background: rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    height: 3px;
    margin-top: 0.85rem;
    max-width: 330px;
    overflow: hidden;
}

.deployment-progress span {
    background: linear-gradient(90deg, #2563eb, #7dd3fc);
    display: block;
    height: 100%;
    transform: scaleX(0.04);
    transform-origin: left center;
    width: 100%;
}

.agent-deployment-visual {
    position: relative;
}

.agent-deployment .deployment-agent-grid {
    gap: clamp(0.75rem, 1.4vw, 1rem) !important;
    margin: 0 !important;
    max-width: none;
    position: relative;
    z-index: 2;
}

.agent-deployment .hero-benefit-card,
.agent-deployment .hero-benefit-card:hover {
    background: rgba(12, 25, 45, 0.88);
    border: 1px solid rgba(96, 165, 250, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    min-height: 236px;
    padding: clamp(1rem, 1.7vw, 1.4rem) !important;
    will-change: transform, opacity;
}

.agent-deployment .hero-benefit-card .benefit-agent-name {
    color: #7dd3fc;
}

.agent-deployment .hero-benefit-card .benefit-outcome {
    color: #dbeafe;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    margin-top: 0.95rem;
}

.agent-deployment .hero-benefit-card .benefit-outcome strong {
    color: #60a5fa;
}

.agent-deployment .hero-benefit-card .benefit-title,
.agent-deployment .hero-benefit-card.is-active .benefit-title {
    color: #ffffff;
    font-size: clamp(1.2rem, 1.75vw, 1.6rem);
    margin-top: 0.6rem;
}

.agent-deployment .hero-benefit-card .benefit-title strong {
    color: #bfdbfe;
}

.agent-deployment .hero-benefit-card .benefit-desc {
    color: #9fb0c7;
    font-size: clamp(0.76rem, 0.9vw, 0.86rem);
    line-height: 1.5;
    margin-top: 0.48rem;
}

.agent-deployment .hero-benefit-card.is-active {
    background: rgba(15, 36, 66, 0.98);
    border-color: rgba(96, 165, 250, 0.78);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), 0 0 36px rgba(37, 99, 235, 0.12);
    transform: none;
}

.deployment-network {
    inset: 0 0 104px;
    pointer-events: none;
    position: absolute;
    z-index: 3;
}

.deployment-core {
    align-items: center;
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid rgba(125, 211, 252, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 0 9px rgba(37, 99, 235, 0.08), 0 0 42px rgba(37, 99, 235, 0.32);
    display: flex;
    height: 76px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
}

.deployment-core i {
    animation: coreOrbit 4s linear infinite;
    border: 1px solid rgba(96, 165, 250, 0.38);
    border-radius: 50%;
    inset: -14px;
    position: absolute;
}

.deployment-core i::before {
    background: #7dd3fc;
    border-radius: 50%;
    box-shadow: 0 0 12px #60a5fa;
    content: "";
    height: 6px;
    left: 50%;
    position: absolute;
    top: -3px;
    width: 6px;
}

.deployment-core b {
    color: #dbeafe;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-align: center;
}

@keyframes coreOrbit {
    to { transform: rotate(360deg); }
}

.deployment-network-line {
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.8), transparent);
    height: 1px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform-origin: left center;
    width: 30%;
}

.deployment-network-line.line-one { transform: rotate(-29deg); }
.deployment-network-line.line-two { transform: rotate(29deg); }
.deployment-network-line.line-three { transform: rotate(151deg); }
.deployment-network-line.line-four { transform: rotate(209deg); }

.agent-reserve-card {
    align-items: center;
    background: rgba(9, 22, 40, 0.76);
    border: 1px dashed rgba(125, 211, 252, 0.42);
    border-radius: 16px;
    display: grid;
    gap: 1rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    position: relative;
    z-index: 4;
}

.agent-reserve-count {
    color: #60a5fa;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 1;
}

.agent-reserve-copy {
    color: #8fa4bd;
    font-size: 0.75rem;
    line-height: 1.42;
}

.agent-reserve-copy strong {
    color: #e2e8f0;
    display: block;
    font-size: 0.84rem;
}

.agent-reserve-card .btn {
    font-size: 0.78rem;
    min-height: 42px;
    min-width: 0;
    padding: 0.7rem 1rem;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .agent-deployment-pin {
        min-height: auto;
        overflow: visible;
        padding: 6rem 1.25rem 4rem;
    }

    .agent-deployment-shell {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .agent-deployment-copy {
        max-width: 760px;
    }

    .agent-deployment-copy h2 {
        max-width: 760px;
    }

    .deployment-progress {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero.hero-intro {
        min-height: calc(100svh - 64px);
        padding-bottom: 2.5rem !important;
        padding-top: 6rem !important;
    }

    .hero-scroll-cue {
        font-size: 0.64rem;
        margin-top: 0.75rem;
    }

    .hero-scroll-cue-track {
        width: 42px;
    }

    .agent-deployment-pin {
        padding: 5rem 1rem 3.5rem;
    }

    .agent-deployment-copy h2 {
        font-size: clamp(2.35rem, 12vw, 3.35rem);
    }

    .deployment-live-status {
        margin-top: 1.5rem;
    }

    .agent-deployment .deployment-agent-grid {
        grid-template-columns: 1fr;
    }

    .agent-deployment .hero-benefit-card,
    .agent-deployment .hero-benefit-card:hover {
        min-height: 0;
        padding: 1.15rem !important;
    }

    .deployment-network {
        display: none;
    }

    .agent-reserve-card {
        align-items: start;
        grid-template-columns: auto 1fr;
    }

    .agent-reserve-card .btn {
        grid-column: 1 / -1;
        text-align: center;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-cue-track span,
    .deployment-live-dot,
    .deployment-core i {
        animation: none;
    }
}

/* Final simplified deployment slide: one title and four cards, in the same
   light visual language as the rest of the Seatext homepage. */
.agent-deployment {
    background: var(--enterprise-bg);
    background-image:
        linear-gradient(90deg, rgba(37, 99, 235, 0.11) 1px, transparent 1px),
        linear-gradient(180deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    border-bottom: 1px solid var(--enterprise-line);
    border-top: 0;
    color: var(--enterprise-ink);
}

.agent-deployment::before {
    display: none;
}

.agent-deployment-pin {
    align-items: flex-start;
    min-height: 100svh;
    padding: clamp(3.5rem, 6vh, 5rem) 2rem clamp(1.5rem, 3vh, 2.5rem);
}

.agent-deployment-shell {
    align-items: start;
    gap: clamp(0.9rem, 2vh, 1.5rem);
    grid-template-columns: 1fr;
    max-width: 1120px;
}

.agent-deployment-copy {
    max-width: 980px;
}

.agent-deployment-copy h2 {
    color: var(--enterprise-ink);
    font-size: clamp(2.5rem, 4.7vw, 4.5rem);
    font-weight: 500;
    line-height: 0.98;
}

.agent-deployment-visual {
    max-width: 1000px;
    width: 100%;
}

.agent-deployment .deployment-agent-grid {
    gap: 1.15rem !important;
    max-width: 1000px;
}

.agent-deployment .hero-benefit-card,
.agent-deployment .hero-benefit-card:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: var(--enterprise-line);
    box-shadow: none;
    min-height: clamp(205px, 27vh, 235px);
    padding: clamp(1rem, 1.5vw, 1.3rem) !important;
}

.agent-deployment .hero-benefit-card .benefit-agent-name {
    color: var(--enterprise-accent);
}

.agent-deployment .hero-benefit-card .benefit-outcome {
    color: var(--enterprise-accent-deep);
}

.agent-deployment .hero-benefit-card .benefit-outcome strong {
    color: var(--enterprise-accent);
}

.agent-deployment .hero-benefit-card .benefit-title,
.agent-deployment .hero-benefit-card.is-active .benefit-title {
    color: var(--enterprise-ink);
}

.agent-deployment .hero-benefit-card .benefit-title strong {
    color: var(--enterprise-accent-deep);
}

.agent-deployment .hero-benefit-card .benefit-desc {
    color: var(--enterprise-muted);
}

.agent-deployment .hero-benefit-card.is-active {
    background: #ffffff;
    border-color: #9cc9ff;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.09);
}

.agent-deployment-cta {
    display: flex;
    justify-content: center;
    margin-top: calc(clamp(0.7rem, 1.5vh, 1rem) + 10px);
}

.agent-deployment-cta .btn {
    min-height: 48px;
    padding: 0.78rem 1.35rem;
}

@media (max-width: 1024px) {
    .agent-deployment-pin {
        min-height: auto;
        padding: 3.75rem 1.25rem 3.25rem;
    }
}

@media (max-width: 640px) {
    .agent-deployment-pin {
        padding: 3.25rem 1rem 3rem;
    }

    .agent-deployment-copy h2 {
        font-size: clamp(2.3rem, 11vw, 3.25rem);
    }

    .agent-deployment .hero-benefit-card,
    .agent-deployment .hero-benefit-card:hover {
        min-height: 0;
    }

    .agent-deployment-cta .btn {
        text-align: center;
        width: 100%;
    }
}

.ticker-section {
    background: var(--enterprise-bg);
    border-bottom: 1px solid var(--enterprise-line);
}

.ticker-title {
    color: #64748b;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-ticker-group img {
    filter: grayscale(1);
    opacity: 0.48;
}

.enterprise-system {
    background: var(--enterprise-bg);
    border-bottom: 0;
    padding: 7rem 2rem 2rem;
}

.enterprise-system-header {
    margin: 0 auto 4rem;
    max-width: 1200px;
}

.enterprise-system-header h2 {
    color: var(--enterprise-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0.65rem 0 1rem;
    max-width: 980px;
}

.enterprise-system-header p:last-child {
    color: var(--enterprise-muted);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 760px;
}

.enterprise-proof-header {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 0;
    min-height: 420px;
    overflow: hidden;
    place-items: center;
    position: relative;
}

.enterprise-agent-cloud {
    display: grid;
    gap: clamp(1rem, 2.8vw, 2.6rem) clamp(1.3rem, 4vw, 4rem);
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    left: 0;
    padding: 1rem 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.enterprise-agent-cloud span {
    animation: enterprise-agent-name-cycle var(--agent-duration) ease-in-out var(--agent-delay) both infinite;
    color: rgba(15, 76, 129, 0.11);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(0.82rem, 1.45vw, 1.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.enterprise-agent-cloud span:nth-child(1)  { --agent-duration: 7.1s; --agent-delay: -1.3s; }
.enterprise-agent-cloud span:nth-child(2)  { --agent-duration: 8.6s; --agent-delay: -5.1s; }
.enterprise-agent-cloud span:nth-child(3)  { --agent-duration: 6.8s; --agent-delay: -3.4s; }
.enterprise-agent-cloud span:nth-child(4)  { --agent-duration: 9.2s; --agent-delay: -6.8s; }
.enterprise-agent-cloud span:nth-child(5)  { --agent-duration: 7.7s; --agent-delay: -0.7s; }
.enterprise-agent-cloud span:nth-child(6)  { --agent-duration: 8.1s; --agent-delay: -4.2s; }
.enterprise-agent-cloud span:nth-child(7)  { --agent-duration: 6.5s; --agent-delay: -2.1s; }
.enterprise-agent-cloud span:nth-child(8)  { --agent-duration: 9.5s; --agent-delay: -7.4s; }
.enterprise-agent-cloud span:nth-child(9)  { --agent-duration: 7.3s; --agent-delay: -5.9s; }
.enterprise-agent-cloud span:nth-child(10) { --agent-duration: 8.8s; --agent-delay: -1.8s; }
.enterprise-agent-cloud span:nth-child(11) { --agent-duration: 6.9s; --agent-delay: -4.7s; }
.enterprise-agent-cloud span:nth-child(12) { --agent-duration: 9.1s; --agent-delay: -8.2s; }
.enterprise-agent-cloud span:nth-child(13) { --agent-duration: 7.5s; --agent-delay: -2.8s; }
.enterprise-agent-cloud span:nth-child(14) { --agent-duration: 8.3s; --agent-delay: -6.2s; }
.enterprise-agent-cloud span:nth-child(15) { --agent-duration: 6.7s; --agent-delay: -0.9s; }
.enterprise-agent-cloud span:nth-child(16) { --agent-duration: 9.4s; --agent-delay: -3.9s; }
.enterprise-agent-cloud span:nth-child(17) { --agent-duration: 7.9s; --agent-delay: -6.6s; }
.enterprise-agent-cloud span:nth-child(18) { --agent-duration: 8.5s; --agent-delay: -2.5s; }
.enterprise-agent-cloud span:nth-child(19) { --agent-duration: 7.0s; --agent-delay: -5.4s; }
.enterprise-agent-cloud span:nth-child(20) { --agent-duration: 9.0s; --agent-delay: -7.7s; }

.enterprise-agent-message {
    animation: enterprise-agent-message-in 0.8s 0.2s both;
    max-width: min(900px, 75vw);
    position: relative;
    text-align: center;
    z-index: 1;
}

.enterprise-agent-message .enterprise-kicker {
    margin-bottom: 0.9rem;
}

.enterprise-agent-message h2 {
    color: var(--enterprise-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.45rem, 2.35vw, 2.25rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
}

.enterprise-agent-subtitle {
    color: var(--enterprise-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.45rem, 2.35vw, 2.25rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 1.4rem auto 0;
    max-width: 780px;
}

.enterprise-agent-message > p:not(.enterprise-kicker) {
    color: var(--enterprise-muted);
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 1.2rem auto 0;
    max-width: 680px;
}

@keyframes enterprise-agent-name-cycle {
    0%, 12% { opacity: 0; transform: translateY(18px); }
    24%, 62% { opacity: 1; transform: translateY(0); }
    82%, 100% { opacity: 0; transform: translateY(-14px); }
}

@keyframes enterprise-agent-message-in {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.agent-orchestration-story {
    display: block;
    margin-bottom: 0;
}

.agent-story-intro {
    margin-bottom: 2.6rem;
    max-width: 960px;
}

.agent-story-intro h2 {
    margin-bottom: 1.1rem;
}

.agent-story-intro > p:not(.enterprise-kicker) {
    color: var(--enterprise-muted);
    font-size: 1.03rem;
    line-height: 1.8;
    max-width: 760px;
}

.agent-system-flow {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1.15fr) 48px minmax(0, 1fr);
    margin-bottom: 4rem;
}

.agent-flow-node {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 10px;
    min-height: 190px;
    padding: 1.45rem;
}

.agent-flow-node > span {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.agent-flow-node > strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin-top: 1.5rem;
}

.agent-flow-node > p,
.enterprise-system-header .agent-flow-node > p:last-child {
    color: var(--enterprise-muted);
    font-size: 0.86rem;
    line-height: 1.65;
    margin-top: 0.7rem;
}

.agent-flow-core {
    background: var(--enterprise-accent-deep);
    border-color: var(--enterprise-accent-deep);
    box-shadow: 0 22px 45px rgba(15, 76, 129, 0.16);
}

.agent-flow-core > span,
.agent-flow-core > strong,
.agent-flow-core > p,
.enterprise-system-header .agent-flow-core > p:last-child {
    color: #ffffff;
}

.agent-flow-core > p,
.enterprise-system-header .agent-flow-core > p:last-child {
    opacity: 0.78;
}

.agent-flow-arrow {
    align-self: center;
    background: #9cc9ff;
    display: block;
    height: 2px;
    position: relative;
    width: 100%;
}

.agent-flow-arrow::after {
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--enterprise-accent);
    border-top: 5px solid transparent;
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
}

.agent-stack-heading {
    align-items: end;
    border-bottom: 1px solid var(--enterprise-line);
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
}

.agent-stack-heading > span {
    color: var(--enterprise-ink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.agent-stack-heading > p,
.enterprise-system-header .agent-stack-heading > p:last-child {
    color: var(--enterprise-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.agent-stack-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agent-stack-card {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    min-height: 445px;
    padding: 1.45rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.agent-stack-card:hover {
    border-color: #9cc9ff;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
    transform: translateY(-5px);
}

.agent-stack-index {
    color: var(--enterprise-accent);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.agent-stack-card h3 {
    color: var(--enterprise-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin-top: 1.2rem;
}

.agent-stack-card > p {
    color: var(--enterprise-muted);
    font-size: 0.86rem;
    line-height: 1.65;
    margin-top: 0.9rem;
}

.agent-stack-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.25rem;
}

.agent-stack-chips span {
    background: var(--enterprise-accent-soft);
    border: 1px solid #cfe3ff;
    border-radius: 999px;
    color: var(--enterprise-accent-deep);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.3;
    padding: 0.42rem 0.58rem;
}

.agent-stack-result {
    border-top: 1px solid var(--enterprise-line);
    margin-top: auto;
    padding-top: 1rem;
}

.agent-stack-result span {
    color: var(--enterprise-muted);
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.agent-stack-result strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.35rem;
}

@media (max-width: 980px) {
    .agent-system-flow {
        grid-template-columns: 1fr;
    }

    .agent-flow-arrow {
        height: 36px;
        justify-self: center;
        width: 2px;
    }

    .agent-flow-arrow::after {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid var(--enterprise-accent);
        border-bottom: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        top: auto;
        transform: translateX(-50%);
    }

    .agent-stack-grid {
        grid-template-columns: 1fr;
    }

    .agent-stack-card {
        min-height: 0;
    }
}

@media (max-width: 600px) {
    .agent-stack-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
    }

    .agent-flow-node,
    .agent-stack-card {
        padding: 1.2rem;
    }
}

.customer-proof-story {
    display: block;
    margin-bottom: 0;
}

.customer-proof-intro {
    margin-bottom: 2.6rem;
    max-width: 980px;
}

.customer-proof-intro > p:not(.enterprise-kicker) {
    color: var(--enterprise-muted);
    font-size: 1.03rem;
    line-height: 1.8;
    max-width: 760px;
}

.customer-proof-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.customer-proof-card {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    overflow: hidden;
    padding: 1.55rem;
    position: relative;
}

.customer-proof-card::before {
    background: var(--enterprise-accent);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.customer-proof-translation::before {
    background: #14b8a6;
}

.customer-proof-refund::before {
    background: #1a1f71;
}

.customer-proof-conversion::before {
    background: #f59e0b;
}

.customer-proof-brand {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 58px;
}

.customer-proof-brand img {
    display: block;
    max-height: 42px;
    max-width: 145px;
    object-fit: contain;
    object-position: left center;
    width: auto;
}

.customer-proof-brand span {
    background: var(--enterprise-accent-soft);
    border: 1px solid #cfe3ff;
    border-radius: 999px;
    color: var(--enterprise-accent-deep);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.3;
    max-width: 150px;
    padding: 0.42rem 0.58rem;
    text-align: center;
    text-transform: uppercase;
}

.customer-proof-context {
    color: var(--enterprise-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin-top: 1.45rem;
    text-transform: uppercase;
}

.customer-proof-card h3 {
    color: var(--enterprise-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin-top: 0.75rem;
}

.customer-proof-card > p:not(.customer-proof-context) {
    color: var(--enterprise-muted);
    font-size: 0.87rem;
    line-height: 1.68;
    margin-top: 1rem;
}

.customer-proof-result {
    background: var(--enterprise-soft);
    border: 1px solid var(--enterprise-line);
    border-radius: 8px;
    margin-top: auto;
    padding: 1rem;
}

.customer-proof-result > span {
    color: var(--enterprise-muted);
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.customer-proof-result > strong {
    color: var(--enterprise-accent-deep);
    display: block;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-top: 0.45rem;
}

.customer-proof-result > small {
    color: var(--enterprise-muted);
    display: block;
    font-size: 0.72rem;
    line-height: 1.45;
    margin-top: 0.35rem;
}

@media (max-width: 980px) {
    .customer-proof-grid {
        grid-template-columns: 1fr;
    }

    .customer-proof-card {
        min-height: 0;
    }

    .customer-proof-result {
        margin-top: 1.5rem;
    }
}

@media (max-width: 600px) {
    .customer-proof-card {
        padding: 1.2rem;
    }

    .customer-proof-brand {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.85rem;
    }
}

.enterprise-product-list {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

.enterprise-product-row {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
}

.enterprise-product-copy h3 {
    color: var(--enterprise-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0.6rem 0 1rem;
}

.enterprise-product-copy p {
    color: var(--enterprise-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.enterprise-checklist {
    border-top: 1px solid var(--enterprise-line);
    display: grid;
    gap: 0.75rem;
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.enterprise-checklist li {
    color: var(--enterprise-ink);
    display: flex;
    font-size: 0.9rem;
    gap: 0.7rem;
    line-height: 1.55;
}

.enterprise-checklist li::before {
    color: var(--enterprise-accent);
    content: ">";
    font-weight: 800;
}

.enterprise-product-visual {
    background: var(--enterprise-soft);
    border: 1px solid var(--enterprise-line);
    border-radius: 8px;
    min-height: 430px;
    overflow: hidden;
    padding: 1rem;
}

.enterprise-product-visual img {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    display: block;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: top left;
    width: 100%;
}

.enterprise-product-visual-composite {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.enterprise-product-visual-composite img {
    grid-column: 1 / -1;
    max-height: 420px;
}

.enterprise-metric-panel {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    padding: 1rem;
}

.enterprise-metric-panel span {
    color: var(--enterprise-muted);
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.3;
    min-height: 1.9rem;
    text-transform: uppercase;
}

.enterprise-metric-panel strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin-top: 0.7rem;
}

.agent-center .section-header-compact .badge {
    background: transparent;
    color: var(--enterprise-accent);
    letter-spacing: 0.08em;
}

.agent-center .section-header-compact h2 {
    color: var(--enterprise-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

.agent-center .agent-grid {
    display: none !important;
}

.enterprise-product-list,
.agent-center .section-header-compact,
.agent-center .onboarding-steps,
.agent-center .agents-section-header {
    display: none !important;
}

.agent-center {
    background: var(--enterprise-bg);
    border-bottom: 1px solid var(--enterprise-line);
    padding-top: 0;
}

.agents-section-header {
    margin: 5rem auto 3.5rem;
    max-width: 1200px;
    text-align: left;
}

.agents-section-header h2 {
    color: var(--enterprise-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0 0 1rem;
    max-width: 820px;
}

.agents-section-header p {
    color: var(--enterprise-muted);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 760px;
}

.agent-lineup {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
    max-width: 1200px;
}

.agent-lineup-row {
    align-items: center;
    background: transparent;
    display: grid;
    gap: 4rem;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.34fr);
    isolation: isolate;
    min-height: 220vh;
    padding: 10vh 0;
    position: relative;
    --agent-intro-progress: 0;
}

.agent-lineup-row::before {
    background: #f8fbff;
    border-bottom: 1px solid var(--enterprise-line);
    border-top: 1px solid var(--enterprise-line);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
}

.agent-lineup-copy {
    align-self: start;
    margin-top: 0;
    min-width: 0;
    position: sticky;
    top: 19vh;
    transition: margin-top 0.55s ease, max-width 0.55s ease, top 0.55s ease, transform 0.55s ease;
    z-index: 2;
}

.agent-lineup-row[data-stage="intro"] {
    grid-template-columns: 1fr;
}

.agent-lineup-row[data-stage="intro"] .agent-lineup-copy {
    justify-self: center;
    margin-top: 40vh;
    max-width: 860px;
    text-align: center;
    top: 50vh;
    transform: translateY(-50%);
}

.agent-lineup-row[data-stage="card"] .agent-lineup-copy,
.agent-lineup-row[data-stage="done"] .agent-lineup-copy {
    margin-top: 0;
    transform: translateY(0);
}

.agent-lineup-row[data-enter="detail"] .agent-lineup-copy {
    animation: agentDetailCopyIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.agent-lineup-kicker {
    color: var(--enterprise-accent);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin: 0 0 0.85rem;
    text-transform: uppercase;
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.agent-lineup-copy h3 {
    color: var(--enterprise-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.95rem, 3vw, 2.75rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0 0 1rem;
    transition: opacity 0.65s ease 0.05s, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.agent-lineup-copy h3 [data-agent-counter] {
    color: var(--enterprise-accent);
    display: inline-block;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    min-width: 3.15em;
    position: relative;
    text-align: center;
    white-space: nowrap;
}

.agent-lineup-copy h3 [data-agent-counter]::after {
    background: linear-gradient(90deg, var(--enterprise-accent), #14b8a6);
    border-radius: 999px;
    bottom: -0.08em;
    content: "";
    height: 0.08em;
    left: 0;
    position: absolute;
    transform: scaleX(var(--agent-intro-progress));
    transform-origin: left;
    width: 100%;
}

.agent-lineup-copy > p:not(.agent-lineup-kicker) {
    color: var(--enterprise-muted);
    display: none;
    font-size: 0.98rem;
    line-height: 1.8;
    transition: opacity 0.58s ease 0.12s, transform 0.58s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}

.agent-lineup-row[data-stage="intro"] .agent-lineup-copy > p:not(.agent-lineup-kicker) {
    font-size: clamp(1.06rem, 1.7vw, 1.28rem);
    margin-left: auto;
    margin-right: auto;
    max-height: 0;
    max-width: 760px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(0.75rem);
    visibility: hidden;
}

.agent-lineup-row[data-stage="intro"] .agent-lineup-kicker,
.agent-lineup-row[data-stage="intro"] .agent-lineup-copy h3 {
    animation: agentIntroTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.agent-lineup-row[data-stage="intro"] .agent-lineup-copy h3 {
    animation-delay: 0.08s;
}

@keyframes agentIntroTextIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agent-benefit-block {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-left: 4px solid var(--enterprise-accent);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.05);
    margin: 1.4rem 0 1.3rem;
    padding: 1rem 1.1rem;
    transform-origin: left center;
    transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1), transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.agent-benefit-block span {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.agent-benefit-block strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 1.16rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
}

.agent-benefit-block p {
    color: var(--enterprise-ink);
    font-size: clamp(1.02rem, 1.35vw, 1.2rem);
    font-weight: 650;
    line-height: 1.5;
    margin: 0.45rem 0 0;
}

.agent-lineup-points {
    border-top: 1px solid var(--enterprise-line);
    display: grid;
    gap: 0.72rem;
    list-style: none;
    margin: 0;
    padding: 1.25rem 0 0;
    transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1), transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.agent-lineup-row[data-stage="intro"] .agent-benefit-block,
.agent-lineup-row[data-stage="intro"] .agent-lineup-points {
    display: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
}

.agent-lineup-row[data-enter="detail"] .agent-benefit-block {
    animation: agentDetailBlockIn 0.82s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.agent-lineup-row[data-enter="detail"] .agent-lineup-points {
    animation: agentDetailListIn 0.76s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}

.agent-lineup-points li {
    color: var(--enterprise-ink);
    display: flex;
    font-size: 0.9rem;
    gap: 0.7rem;
    line-height: 1.55;
}

.agent-lineup-points li::before {
    color: var(--enterprise-accent);
    content: ">";
    font-weight: 800;
}

.agent-lineup-visual {
    align-self: start;
    background: var(--enterprise-soft);
    border: 1px solid var(--enterprise-line);
    border-radius: 8px;
    min-height: 460px;
    overflow: hidden;
    padding: 1rem;
    position: sticky;
    top: 14vh;
    transform-origin: center left;
    transition: opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1), transform 0.82s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.82s ease;
}

.agent-lineup-row[data-stage="intro"] .agent-lineup-visual {
    opacity: 0;
    pointer-events: none;
    transform: translateY(3rem) scale(0.96);
    visibility: hidden;
}

.agent-lineup-row[data-stage="card"] .agent-lineup-visual,
.agent-lineup-row[data-stage="done"] .agent-lineup-visual {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.agent-lineup-row[data-enter="detail"] .agent-lineup-visual {
    animation: agentDetailVisualIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

@keyframes agentDetailCopyIn {
    from {
        opacity: 0;
        transform: translateX(-1.25rem) translateY(0.8rem);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes agentDetailBlockIn {
    from {
        opacity: 0;
        transform: translateX(-1rem) translateY(1rem) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

@keyframes agentDetailListIn {
    from {
        opacity: 0;
        transform: translateY(1.1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes agentDetailVisualIn {
    from {
        opacity: 0;
        transform: translateX(2rem) translateY(1.2rem) scale(0.965);
    }
    65% {
        opacity: 1;
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

.agent-lineup-visual-video {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: auto;
}

.agent-lineup-visual-proof {
    min-height: auto;
}

.agent-lineup-visual img,
.agent-lineup-visual video,
.agent-lineup-visual iframe {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    display: block;
    height: 100%;
    max-height: 610px;
    object-fit: cover;
    object-position: top left;
    width: 100%;
}

.agent-lineup-visual iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
}

.bot-refund-panel {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    box-shadow: 0 24px 55px rgba(37, 99, 235, 0.06);
    display: grid;
    gap: 1rem;
    min-height: 430px;
    padding: 1.25rem;
    width: 100%;
}

.bot-spend-card,
.bot-report-card,
.bot-proof-footer span {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
}

.bot-spend-card {
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) 150px;
    padding: 1rem;
}

.bot-spend-copy span,
.bot-report-document span,
.bot-approval-card span {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.bot-spend-copy strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin: 0.35rem 0 0.55rem;
}

.bot-spend-copy p,
.bot-approval-card p {
    color: var(--enterprise-muted);
    font-size: 0.84rem;
    line-height: 1.55;
    margin: 0;
}

.bot-spend-ring {
    align-items: center;
    background:
        radial-gradient(circle at center, #ffffff 0 55%, transparent 56%),
        conic-gradient(var(--enterprise-accent) 0 72deg, #dbeafe 72deg 360deg);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    height: 128px;
    justify-content: center;
    justify-self: center;
    width: 128px;
}

.bot-spend-ring span {
    color: var(--enterprise-ink);
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.bot-spend-ring small {
    color: var(--enterprise-muted);
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.bot-report-card {
    align-items: stretch;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    padding: 1rem;
}

.bot-report-document,
.bot-approval-card {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    padding: 1rem;
}

.bot-report-document {
    border-left: 4px solid var(--enterprise-accent);
}

.bot-report-document strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.bot-report-lines {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}

.bot-report-lines i {
    background: #dbeafe;
    border-radius: 999px;
    display: block;
    height: 8px;
}

.bot-report-lines i:nth-child(1) {
    width: 92%;
}

.bot-report-lines i:nth-child(2) {
    width: 74%;
}

.bot-report-lines i:nth-child(3) {
    width: 84%;
}

.bot-approval-card {
    background: var(--enterprise-accent-soft);
    border-color: #b7d7ff;
}

.bot-approval-card strong {
    color: var(--enterprise-accent-deep);
    display: block;
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin: 0.55rem 0 0.65rem;
}

.bot-proof-footer {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bot-proof-footer span {
    color: var(--enterprise-ink);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    min-height: 52px;
    padding: 0.75rem;
}

.translation-proof-panel {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    box-shadow: 0 24px 55px rgba(37, 99, 235, 0.06);
    min-height: 430px;
    padding: 1.25rem;
    width: 100%;
}

.translation-proof-header {
    align-items: center;
    border-bottom: 1px solid var(--enterprise-line);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.translation-proof-header span,
.translation-chart-topline span {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.translation-proof-header strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 0.25rem;
}

.translation-market-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
}

.translation-market-pills span {
    align-items: center;
    background: var(--enterprise-accent-soft);
    border: 1px solid #b7d7ff;
    border-radius: 999px;
    color: var(--enterprise-accent-deep);
    display: inline-flex;
    font-size: 0.68rem;
    height: 30px;
    justify-content: center;
    letter-spacing: 0;
    min-width: 38px;
    padding: 0 0.65rem;
}

.translation-proof-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1rem 0;
}

.translation-chart-card {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    overflow: hidden;
    padding: 1rem;
}

.translation-chart-topline {
    align-items: flex-start;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.translation-chart-topline strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 2.15rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin-top: 0.35rem;
}

.translation-chart-topline small {
    color: var(--enterprise-muted);
    font-size: 0.72rem;
    line-height: 1.4;
    max-width: 96px;
    text-align: right;
}

.translation-line-chart,
.translation-bar-chart {
    display: block;
    height: auto;
    overflow: visible;
    width: 100%;
}

.translation-grid-line {
    fill: none;
    stroke: #dbeafe;
    stroke-width: 1;
}

.translation-chart-area {
    fill: url(#translationTrafficGradient);
}

.translation-chart-line,
.translation-sales-line {
    animation: translationLineDraw 1.5s ease forwards;
    fill: none;
    stroke: var(--enterprise-accent);
    stroke-dasharray: 520;
    stroke-dashoffset: 520;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.translation-sales-line {
    stroke: var(--enterprise-accent-deep);
    stroke-width: 3;
}

.translation-chart-dot {
    animation: translationDotIn 0.45s ease 1.1s forwards;
    fill: var(--enterprise-accent);
    opacity: 0;
}

.translation-bars rect {
    animation: translationBarRise 0.8s ease forwards;
    fill: #9cc9ff;
    transform-box: fill-box;
    transform-origin: bottom;
    transform: scaleY(0.1);
}

.translation-bars rect:nth-child(2) {
    animation-delay: 0.1s;
    fill: #7bb6ff;
}

.translation-bars rect:nth-child(3) {
    animation-delay: 0.2s;
    fill: #5aa1ff;
}

.translation-bars rect:nth-child(4) {
    animation-delay: 0.3s;
    fill: #3288f0;
}

.translation-bars rect:nth-child(5) {
    animation-delay: 0.4s;
    fill: var(--enterprise-accent);
}

.translation-axis-labels text {
    fill: #64748b;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.translation-proof-footer {
    border-top: 1px solid var(--enterprise-line);
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 1rem;
}

.translation-proof-footer span {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    color: var(--enterprise-ink);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    min-height: 44px;
    padding: 0.75rem;
}

.source-adaptation-panel {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    box-shadow: 0 24px 55px rgba(37, 99, 235, 0.06);
    display: grid;
    gap: 1rem;
    min-height: 430px;
    padding: 1.25rem;
    width: 100%;
}

.source-flow-card {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.source-flow-message {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.source-flow-route {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
}

.source-mini-browser,
.source-page-card,
.source-main-page-card,
.source-product-page-card {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    min-width: 0;
    overflow: hidden;
}

.source-browser-bar {
    align-items: center;
    background: var(--enterprise-accent-soft);
    border-bottom: 1px solid var(--enterprise-line);
    display: flex;
    gap: 0.35rem;
    min-height: 28px;
    padding: 0 0.75rem;
}

.source-browser-bar span {
    background: #8bbfff;
    border-radius: 50%;
    display: block;
    height: 7px;
    width: 7px;
}

.source-article-card,
.source-page-card,
.source-main-page-card,
.source-product-page-card {
    padding: 0.9rem;
}

.source-article-card {
    position: relative;
}

.source-article-card small,
.source-page-card small,
.source-main-page-card small,
.source-product-page-card small {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.source-article-card strong,
.source-page-card strong,
.source-main-page-card strong,
.source-product-page-card strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.25;
}

.source-article-card p,
.source-page-card p,
.source-product-page-card p {
    color: var(--enterprise-muted);
    font-size: 0.76rem;
    line-height: 1.55;
    margin: 0.5rem 0 0;
}

.source-scan-line {
    animation: sourceScan 2.2s ease-in-out infinite;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.45), transparent);
    height: 2px;
    left: 0.75rem;
    position: absolute;
    right: 0.75rem;
    top: 54px;
}

.source-ai-node {
    animation: sourcePulse 1.9s ease-in-out infinite;
    align-items: center;
    background: var(--enterprise-accent);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.22);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 74px;
    justify-content: center;
    text-align: center;
    width: 74px;
}

.source-ai-node span {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.source-ai-node small {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 0.3rem;
}

.source-page-card {
    border-left: 4px solid var(--enterprise-accent);
}

.source-page-card button {
    background: var(--enterprise-accent);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    margin-top: 0.65rem;
    min-height: 34px;
    padding: 0 0.85rem;
}

.source-product-grid {
    display: grid;
    gap: 0.45rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.75rem;
}

.source-product-grid span {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    color: var(--enterprise-muted);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
    padding: 0.55rem;
}

.source-product-grid span.active {
    animation: sourceActiveProduct 1.8s ease-in-out infinite;
    background: var(--enterprise-accent-soft);
    border-color: #9cc9ff;
    color: var(--enterprise-accent-deep);
}

.source-route-arrow {
    background: var(--enterprise-accent);
    border-radius: 999px;
    height: 3px;
    position: relative;
}

.source-route-arrow::before {
    animation: sourceRouteMove 1.7s ease-in-out infinite;
    background: #ffffff;
    border: 2px solid var(--enterprise-accent);
    border-radius: 50%;
    content: "";
    height: 12px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
}

.source-route-arrow::after {
    border-bottom: 7px solid transparent;
    border-left: 10px solid var(--enterprise-accent);
    border-top: 7px solid transparent;
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
}

.source-product-page-card {
    border-left: 4px solid var(--enterprise-accent-deep);
}

.chatgpt-choice-panel {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    box-shadow: 0 24px 55px rgba(37, 99, 235, 0.06);
    display: grid;
    gap: 1rem;
    min-height: 430px;
    padding: 1.25rem;
    width: 100%;
}

.choice-chat-card,
.choice-proof-card {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
}

.choice-chat-card {
    padding: 1rem;
}

.choice-chat-header {
    align-items: flex-start;
    border-bottom: 1px solid var(--enterprise-line);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-bottom: 0.9rem;
}

.choice-chat-header span,
.choice-proof-card span {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.choice-chat-header strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.25;
    max-width: 260px;
    text-align: right;
}

.choice-chat-bubble {
    animation: choiceBubblePulse 2.4s ease-in-out infinite;
    background: #ffffff;
    border: 1px solid #b7d7ff;
    border-radius: 6px;
    color: var(--enterprise-ink);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
    margin: 1rem 0;
    padding: 0.9rem 1rem;
}

.choice-analysis {
    display: grid;
    gap: 0.65rem;
}

.choice-brand-row {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 86px minmax(0, 1fr) 92px;
    min-height: 52px;
    padding: 0.65rem;
}

.choice-brand-row span,
.choice-brand-row strong {
    color: var(--enterprise-ink);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.25;
}

.choice-brand-row strong {
    color: var(--enterprise-muted);
    text-align: right;
}

.choice-brand-row-win {
    border-color: #9cc9ff;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.08);
}

.choice-brand-row-win strong {
    color: var(--enterprise-accent);
}

.choice-score-bar {
    background: #e7f1ff;
    border-radius: 999px;
    height: 9px;
    overflow: hidden;
}

.choice-score-bar i {
    animation: choiceScoreGrow 1.4s ease forwards;
    background: #9cc9ff;
    border-radius: inherit;
    display: block;
    height: 100%;
    transform: scaleX(0.22);
    transform-origin: left;
}

.choice-brand-row-win .choice-score-bar i {
    background: var(--enterprise-accent);
    transform: scaleX(0.92);
}

.choice-brand-row:nth-child(2) .choice-score-bar i {
    animation-delay: 0.15s;
    transform: scaleX(0.58);
}

.choice-brand-row:nth-child(3) .choice-score-bar i {
    animation-delay: 0.3s;
    transform: scaleX(0.42);
}

.choice-proof-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-proof-card {
    padding: 1rem;
}

.choice-proof-card strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.05;
    margin: 0.45rem 0 0.6rem;
}

.choice-proof-card p {
    color: var(--enterprise-muted);
    font-size: 0.78rem;
    line-height: 1.55;
    margin: 0;
}

.choice-proof-card.active {
    border-left: 4px solid var(--enterprise-accent);
}

.soft-cro-panel {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    box-shadow: 0 24px 55px rgba(37, 99, 235, 0.06);
    display: grid;
    gap: 1rem;
    min-height: 430px;
    padding: 1.25rem;
    width: 100%;
}

.soft-cro-header {
    align-items: flex-start;
    border-bottom: 1px solid var(--enterprise-line);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.soft-cro-header span,
.soft-cro-copy-card > span {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.soft-cro-header strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: right;
}

.soft-cro-workspace {
    align-items: stretch;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.soft-cro-copy-card,
.soft-cro-footer span {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
}

.soft-cro-copy-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 1rem;
}

.soft-cro-copy-card h4 {
    color: var(--enterprise-ink);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 1rem 0 0.7rem;
}

.soft-cro-copy-card p {
    color: var(--enterprise-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0 0 1rem;
}

.soft-cro-copy-card button {
    align-self: flex-start;
    background: #ffffff;
    border: 1px solid #b7d7ff;
    border-radius: 999px;
    color: var(--enterprise-accent-deep);
    font: inherit;
    font-size: 0.84rem;
    font-weight: 800;
    margin-top: auto;
    padding: 0.72rem 0.95rem;
}

.soft-cro-original {
    opacity: 0.78;
}

.soft-cro-original h4,
.soft-cro-original p {
    color: #64748b;
}

.soft-cro-variant-page {
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.07)),
        #ffffff;
    border-color: #b7d7ff;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.08);
}

.soft-cro-variant-page mark {
    background: transparent;
    color: inherit;
    display: inline-block;
    font-weight: 800;
    padding: 0 0.05em;
    position: relative;
}

.soft-cro-variant-page mark::after {
    animation: croUnderlineGrow 1.25s cubic-bezier(0.16, 1, 0.3, 1) both;
    background: linear-gradient(90deg, var(--enterprise-accent), #14b8a6);
    border-radius: 999px;
    bottom: -0.12em;
    content: "";
    height: 0.12em;
    left: 0;
    position: absolute;
    transform-origin: left;
    width: 100%;
}

.soft-cro-variant-page em {
    animation: croLiftBubbleIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
    background: #ffffff;
    border: 1px solid #b7d7ff;
    border-radius: 999px;
    color: var(--enterprise-accent);
    display: inline-flex;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    margin-left: 0.35rem;
    padding: 0.24rem 0.4rem;
    vertical-align: middle;
    white-space: nowrap;
}

.soft-cro-variant-page p em {
    animation-delay: 0.18s;
}

.soft-cro-variant-page button em {
    animation-delay: 0.32s;
}

.soft-cro-footer {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.soft-cro-footer span {
    color: var(--enterprise-ink);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    min-height: 52px;
    padding: 0.75rem;
}

@keyframes croUnderlineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes croLiftBubbleIn {
    from {
        opacity: 0;
        transform: translateY(0.35rem) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.webchat-conversion-panel {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    box-shadow: 0 24px 55px rgba(37, 99, 235, 0.06);
    display: grid;
    gap: 1rem;
    min-height: 430px;
    padding: 1.25rem;
    width: 100%;
}

.webchat-benchmark-card {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    display: grid;
    min-height: 400px;
    padding: 1rem;
}

.webchat-benchmark-header {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.webchat-benchmark-header span {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.webchat-benchmark-header small {
    color: var(--enterprise-muted);
    display: block;
    font-size: 0.72rem;
    line-height: 1.4;
    max-width: 210px;
    text-align: right;
}

.webchat-rate-comparison {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.webchat-chat-card {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    display: grid;
    gap: 0.72rem;
    min-height: 342px;
    padding: 1rem;
}

.webchat-card-label {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.webchat-card-label span,
.webchat-widget-top span,
.webchat-site-copy span {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.webchat-card-label strong {
    color: var(--enterprise-accent);
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    text-align: right;
}

.webchat-chat-generic .webchat-card-label strong {
    color: var(--enterprise-muted);
}

.webchat-mini-site {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #dce8f7;
    border-radius: 8px;
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 250px;
    overflow: hidden;
    padding: 0.78rem;
    position: relative;
}

.webchat-mini-site::before {
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.09), rgba(37, 99, 235, 0)),
        repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.055) 0 1px, transparent 1px 17px);
    border-radius: 7px;
    content: "";
    inset: 3.1rem 0.75rem 0.75rem;
    opacity: 0.7;
    position: absolute;
}

.webchat-site-bar {
    align-items: center;
    border-bottom: 1px solid #e1ebf8;
    display: flex;
    gap: 0.32rem;
    padding-bottom: 0.68rem;
    position: relative;
    z-index: 1;
}

.webchat-site-bar i {
    background: #c4d4e7;
    border-radius: 999px;
    display: block;
    height: 0.42rem;
    width: 0.42rem;
}

.webchat-site-copy {
    max-width: 54%;
    padding-top: 0.85rem;
    position: relative;
    z-index: 1;
}

.webchat-site-copy strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 1.08rem;
    font-weight: 850;
    line-height: 1.08;
    margin-top: 0.3rem;
}

.webchat-site-copy p {
    color: var(--enterprise-muted);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0.45rem 0 0;
}

.webchat-widget {
    background: #ffffff;
    border: 1px solid #d6e4f5;
    border-radius: 12px;
    bottom: 0.72rem;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.13);
    display: grid;
    gap: 0.48rem;
    max-width: calc(100% - 1.4rem);
    padding: 0.68rem;
    position: absolute;
    right: 0.72rem;
    width: 230px;
    z-index: 2;
}

.webchat-widget::after {
    background: var(--enterprise-accent);
    border: 3px solid #ffffff;
    border-radius: 999px;
    bottom: -0.55rem;
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.22);
    content: "";
    height: 1.45rem;
    position: absolute;
    right: 0.75rem;
    width: 1.45rem;
}

.webchat-widget-top {
    align-items: center;
    border-bottom: 1px solid #e5edf8;
    display: flex;
    gap: 0.7rem;
    justify-content: space-between;
    padding-bottom: 0.48rem;
}

.webchat-widget-top strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1;
    text-align: right;
}

.webchat-widget-seatext {
    border-color: #aacfff;
    box-shadow: 0 20px 44px rgba(37, 99, 235, 0.18);
}

.webchat-widget-seatext .webchat-widget-top strong {
    color: var(--enterprise-accent);
}

.webchat-message {
    border-radius: 12px;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.35;
    max-width: 90%;
    padding: 0.58rem 0.66rem;
}

.webchat-message.agent {
    align-self: start;
    background: #eef6ff;
    color: var(--enterprise-ink);
    justify-self: start;
}

.webchat-message.visitor {
    align-self: end;
    background: var(--enterprise-accent);
    color: #ffffff;
    justify-self: end;
}

.webchat-chat-input {
    background: #f4f8fd;
    border: 1px solid #e0ebf7;
    border-radius: 999px;
    color: var(--enterprise-muted);
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1.2;
    padding: 0.48rem 0.62rem;
}

.webchat-chat-input-active {
    background: #edf6ff;
    border-color: #b9d9ff;
    color: var(--enterprise-accent);
}

.webchat-rate-bar {
    background: #e7f1ff;
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
}

.webchat-rate-bar i {
    background: var(--enterprise-accent);
    border-radius: inherit;
    display: block;
    height: 100%;
    width: 100%;
}

.webchat-chat-generic .webchat-rate-bar i {
    background: #9cc9ff;
    width: 67%;
}

.webchat-chat-seatext {
    animation: webchatSalesGlow 2.8s ease-in-out infinite;
    border-color: #b7d7ff;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.08);
}

.webchat-chat-card small {
    color: var(--enterprise-muted);
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.35;
}

@keyframes webchatSalesGlow {
    0%,
    100% {
        box-shadow: 0 18px 42px rgba(37, 99, 235, 0.08);
    }
    50% {
        box-shadow: 0 26px 58px rgba(37, 99, 235, 0.16);
    }
}

.seo-coverage-panel {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    box-shadow: 0 24px 55px rgba(37, 99, 235, 0.06);
    display: grid;
    gap: 1rem;
    min-height: 430px;
    padding: 1.25rem;
    width: 100%;
}

.seo-gap-card,
.seo-answer-factory,
.seo-proof-footer span {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
}

.seo-gap-card {
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) 150px;
    padding: 1rem;
}

.seo-gap-copy span {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.seo-gap-copy strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin: 0.35rem 0 0.55rem;
}

.seo-gap-copy p {
    color: var(--enterprise-muted);
    font-size: 0.84rem;
    line-height: 1.55;
    margin: 0;
}

.seo-gap-meter {
    display: flex;
    justify-content: center;
}

.seo-gap-ring {
    align-items: center;
    background:
        radial-gradient(circle at center, #ffffff 0 55%, transparent 56%),
        conic-gradient(var(--enterprise-accent) 0 18deg, #dbeafe 18deg 360deg);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    height: 128px;
    justify-content: center;
    width: 128px;
}

.seo-gap-ring span {
    color: var(--enterprise-ink);
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.seo-gap-ring small {
    color: var(--enterprise-muted);
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.seo-answer-factory {
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
    padding: 1rem;
}

.seo-answer-factory-focus {
    min-height: 270px;
    position: relative;
}

.seo-answer-factory-focus .seo-question-stream {
    bottom: 1rem;
    left: 1rem;
    pointer-events: none;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.seo-question-stream {
    display: grid;
    gap: 0.55rem;
    min-width: 0;
}

.seo-question-stream span {
    animation: seoQuestionFade 5.6s ease-in-out infinite;
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    color: var(--enterprise-ink);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.35;
    max-width: 150px;
    opacity: 0;
    padding: 0.45rem 0.55rem;
    position: absolute;
}

.seo-question-stream span:nth-child(1) {
    left: 0;
    top: 0.25rem;
}

.seo-question-stream span:nth-child(2) {
    animation-delay: 1.4s;
    right: 0;
    top: 1.5rem;
}

.seo-question-stream span:nth-child(3) {
    animation-delay: 2.8s;
    bottom: 1.2rem;
    left: 0.4rem;
}

.seo-question-stream span:nth-child(4) {
    animation-delay: 4.2s;
    bottom: 0.3rem;
    right: 0.35rem;
}

.seo-ai-core {
    align-items: center;
    background: linear-gradient(135deg, var(--enterprise-accent), var(--enterprise-accent-deep));
    border-radius: 999px;
    box-shadow: 0 22px 45px rgba(37, 99, 235, 0.22);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    grid-column: 1 / -1;
    height: 194px;
    justify-content: center;
    justify-self: center;
    position: relative;
    text-align: center;
    width: 194px;
    z-index: 2;
}

.seo-ai-core strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.05;
}

.seo-ai-core small {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.22;
    margin-top: 0.55rem;
    max-width: 138px;
}

.seo-proof-footer {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-proof-footer span {
    color: var(--enterprise-ink);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    min-height: 52px;
    padding: 0.75rem;
}

.abm-personalization-panel {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    box-shadow: 0 24px 55px rgba(37, 99, 235, 0.06);
    display: grid;
    gap: 1rem;
    min-height: 430px;
    padding: 1.25rem;
    width: 100%;
}

.abm-signal-strip,
.abm-adaptation-list {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.abm-signal-strip span,
.abm-adaptation-list span {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    color: var(--enterprise-ink);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.35;
    min-height: 52px;
    padding: 0.75rem;
}

.abm-signal-strip span {
    animation: abmSignalPulse 3.6s ease-in-out infinite;
    color: var(--enterprise-accent-deep);
}

.abm-signal-strip span:nth-child(2) {
    animation-delay: 0.35s;
}

.abm-signal-strip span:nth-child(3) {
    animation-delay: 0.7s;
}

.abm-page-pair {
    align-items: stretch;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.abm-page-card {
    background: #f8fbff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 1rem;
}

.abm-page-card > span {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.abm-page-card h4 {
    color: var(--enterprise-ink);
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0 0 0.7rem;
}

.abm-page-card p {
    color: var(--enterprise-muted);
    font-size: 0.84rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.abm-page-card button {
    align-self: flex-start;
    background: #ffffff;
    border: 1px solid #b7d7ff;
    border-radius: 999px;
    color: var(--enterprise-accent-deep);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    margin-top: auto;
    padding: 0.68rem 0.85rem;
}

.abm-proof-line {
    background: #ffffff;
    border: 1px solid var(--enterprise-line);
    border-radius: 6px;
    color: var(--enterprise-muted);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.35;
    margin-top: 0.75rem;
    padding: 0.65rem;
}

.abm-page-generic {
    opacity: 0.76;
}

.abm-page-personalized {
    animation: abmPersonalizedGlow 2.8s ease-in-out infinite;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.07)),
        #ffffff;
    border-color: #b7d7ff;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.08);
}

.abm-persona-row {
    align-items: center;
    background: #ffffff;
    border: 1px solid #b7d7ff;
    border-radius: 8px;
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    padding: 0.65rem;
}

.abm-persona-row img {
    background: #eef6ff;
    border: 1px solid #cfe4ff;
    border-radius: 999px;
    display: block;
    height: 48px;
    object-fit: cover;
    width: 48px;
}

.abm-persona-row span {
    color: var(--enterprise-accent);
    display: block;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.abm-persona-row strong {
    color: var(--enterprise-ink);
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 0.2rem;
}

.abm-page-personalized h4,
.abm-page-personalized button,
.abm-page-personalized .abm-proof-line {
    position: relative;
}

.abm-page-personalized h4::after,
.abm-page-personalized button::after,
.abm-page-personalized .abm-proof-line::after {
    animation: abmHighlightGrow 1.35s cubic-bezier(0.16, 1, 0.3, 1) both;
    background: linear-gradient(90deg, var(--enterprise-accent), #14b8a6);
    border-radius: 999px;
    bottom: -0.18rem;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transform-origin: left;
    width: 78%;
}

.abm-page-personalized button::after {
    animation-delay: 0.24s;
    left: 0.9rem;
    width: calc(100% - 1.8rem);
}

.abm-page-personalized .abm-proof-line::after {
    animation-delay: 0.42s;
    width: 64%;
}

@keyframes abmSignalPulse {
    0%,
    100% {
        border-color: var(--enterprise-line);
        box-shadow: 0 0 0 rgba(37, 99, 235, 0);
        transform: translateY(0);
    }
    45% {
        border-color: #b7d7ff;
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.1);
        transform: translateY(-2px);
    }
}

@keyframes abmPersonalizedGlow {
    0%,
    100% {
        box-shadow: 0 18px 42px rgba(37, 99, 235, 0.08);
    }
    50% {
        box-shadow: 0 26px 58px rgba(37, 99, 235, 0.16);
    }
}

@keyframes abmHighlightGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes translationLineDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes translationDotIn {
    to {
        opacity: 1;
    }
}

@keyframes translationBarRise {
    to {
        transform: scaleY(1);
    }
}

@keyframes sourceScan {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    20%,
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(82px);
    }
}

@keyframes sourcePulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes sourceActiveProduct {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(37, 99, 235, 0);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    }
}

@keyframes sourceRouteMove {
    0% {
        left: 0;
    }
    100% {
        left: calc(100% - 12px);
    }
}

@keyframes choiceBubblePulse {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(37, 99, 235, 0);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    }
}

@keyframes choiceScoreGrow {
    from {
        transform: scaleX(0.12);
    }
}

@keyframes softCroWinner {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(37, 99, 235, 0);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    }
}

@keyframes seoQuestionFade {
    0%,
    100% {
        opacity: 0;
        transform: translateY(4px);
    }
    15%,
    34% {
        opacity: 0.72;
        transform: translateY(0);
    }
    48% {
        opacity: 0;
        transform: translateY(-4px);
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 6rem 1.25rem 2.5rem !important;
    }

    .hero-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-product-row {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .agents-section-header {
        margin-top: 3.5rem;
    }

    .agent-lineup-row {
        gap: 2rem;
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 4rem 0;
    }

    .agent-lineup-copy,
    .agent-lineup-visual {
        position: static;
        top: auto;
    }

    .agent-lineup-row[data-stage="intro"] .agent-lineup-copy {
        text-align: left;
        transform: none;
    }

    .agent-lineup-row[data-stage="intro"] .agent-benefit-block,
    .agent-lineup-row[data-stage="intro"] .agent-lineup-points,
    .agent-lineup-row[data-stage="intro"] .agent-lineup-visual {
        display: block;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .translation-proof-grid {
        grid-template-columns: 1fr;
    }

    .source-flow-message,
    .source-flow-route {
        grid-template-columns: 1fr;
    }

    .source-ai-node {
        justify-self: center;
    }

    .source-route-arrow {
        height: 48px;
        justify-self: center;
        width: 3px;
    }

    .source-route-arrow::before {
        animation-name: sourceRouteMoveVertical;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .source-route-arrow::after {
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 10px solid var(--enterprise-accent);
        border-bottom: 0;
        bottom: -2px;
        left: 50%;
        right: auto;
        top: auto;
        transform: translateX(-50%);
    }

    .choice-proof-grid {
        grid-template-columns: 1fr;
    }

    .seo-gap-card,
    .bot-spend-card,
    .bot-report-card,
    .bot-proof-footer,
    .soft-cro-workspace,
    .soft-cro-footer,
    .webchat-rate-comparison,
    .seo-proof-footer,
    .abm-signal-strip,
    .abm-adaptation-list {
        grid-template-columns: 1fr;
    }

    .abm-page-pair {
        grid-template-columns: 1fr;
    }

    .seo-gap-meter,
    .bot-spend-ring,
    .seo-ai-core {
        justify-self: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .agent-lineup-row[data-enter="detail"] .agent-lineup-copy,
    .agent-lineup-row[data-enter="detail"] .agent-benefit-block,
    .agent-lineup-row[data-enter="detail"] .agent-lineup-points,
    .agent-lineup-row[data-enter="detail"] .agent-lineup-visual,
    .enterprise-agent-cloud span,
    .enterprise-agent-message {
        animation: none;
    }
}

@media (max-width: 900px) {
    .enterprise-proof-header {
        grid-template-columns: 1fr;
    }

    .enterprise-proof-stage {
        max-width: 620px;
    }
}

@media (max-width: 600px) {
    .hero h1.hero-headline-centered {
        font-size: 2.05rem !important;
        line-height: 1.04 !important;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .hero-demo-action {
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-demo-note {
        text-align: center;
        width: 100%;
    }

    .hero-benefits-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-system {
        padding: 4.5rem 1rem;
    }

    .enterprise-proof-header {
        min-height: 370px;
    }

    .enterprise-agent-cloud {
        gap: 1.1rem 1.4rem;
        grid-template-columns: repeat(2, max-content);
        justify-content: space-around;
    }

    .enterprise-agent-message {
        max-width: calc(100% - 1.5rem);
    }

    .enterprise-agent-message h2,
    .enterprise-agent-subtitle {
        font-size: clamp(1.35rem, 6.5vw, 1.8rem);
    }

    .enterprise-product-visual {
        min-height: 300px;
    }

    .agent-lineup {
        gap: 3.5rem;
    }

    .agent-lineup-visual {
        min-height: 300px;
    }

    .translation-proof-panel {
        min-height: 0;
        padding: 0.9rem;
    }

    .bot-refund-panel {
        min-height: 0;
        padding: 0.9rem;
    }

    .translation-proof-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .translation-market-pills {
        justify-content: flex-start;
    }

    .translation-proof-footer {
        grid-template-columns: 1fr;
    }

    .source-adaptation-panel {
        min-height: 0;
        padding: 0.9rem;
    }

    .source-flow-card {
        padding: 0.8rem;
    }

    .chatgpt-choice-panel {
        min-height: 0;
        padding: 0.9rem;
    }

    .seo-coverage-panel {
        min-height: 0;
        padding: 0.9rem;
    }

    .soft-cro-panel {
        min-height: 0;
        padding: 0.9rem;
    }

    .webchat-conversion-panel {
        min-height: 0;
        padding: 0.9rem;
    }

    .webchat-mini-site {
        min-height: 0;
    }

    .webchat-site-copy {
        max-width: none;
    }

    .webchat-widget {
        bottom: auto;
        margin-top: 0.95rem;
        max-width: none;
        position: relative;
        right: auto;
        width: 100%;
    }

    .webchat-widget::after {
        display: none;
    }

    .webchat-benchmark-header {
        display: block;
    }

    .webchat-benchmark-header small {
        margin-top: 0.35rem;
        text-align: left;
        max-width: none;
    }

    .soft-cro-header {
        display: block;
    }

    .soft-cro-header strong {
        margin-top: 0.35rem;
        text-align: left;
    }

    .seo-ai-core {
        height: 160px;
        width: 160px;
    }

    .seo-question-stream span {
        max-width: 118px;
    }

    .choice-chat-header {
        display: block;
    }

    .choice-chat-header strong {
        margin-top: 0.35rem;
        max-width: none;
        text-align: left;
    }

    .choice-brand-row {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .choice-brand-row strong {
        grid-column: 1 / -1;
        text-align: left;
    }

    .enterprise-product-visual-composite {
        grid-template-columns: 1fr;
    }

    .enterprise-product-visual-composite img {
        grid-column: auto;
    }
}

@keyframes sourceRouteMoveVertical {
    0% {
        top: 0;
    }
    100% {
        top: calc(100% - 12px);
    }
}

/* Keep the complete hero visible on short, wide viewports. The fluid values use
   viewport height as well as width, so a laptop in a shallow browser window
   does not lose the final message or calls to action below the fold. */
@media (min-width: 769px) and (max-height: 850px) {
    .hero {
        box-sizing: border-box;
        gap: clamp(1rem, 3.5vh, 2.5rem) !important;
        min-height: calc(100svh - 72px);
        padding: clamp(2rem, 6vh, 4.5rem) 2rem clamp(1.25rem, 3vh, 2.5rem) !important;
    }

    .hero-copy {
        gap: clamp(0.55rem, 1.6vh, 1rem) !important;
    }

    .hero h1.hero-headline-centered {
        font-size: clamp(2.55rem, min(5.5vw, 7.2vh), 4.25rem) !important;
    }

    .hero-lead {
        font-size: clamp(0.92rem, min(1.2vw, 2.1vh), 1.06rem);
        line-height: 1.55;
    }

    .hero-actions {
        gap: 0.75rem !important;
        padding-top: 0 !important;
    }

    .hero-actions .btn {
        min-height: 46px;
        min-width: 166px;
        padding: 0.72rem 1.15rem;
    }

    .hero-demo-action {
        gap: 0.3rem;
    }

    .hero-demo-note {
        font-size: 0.68rem;
    }

    .hero-benefits-grid {
        gap: 0.75rem !important;
    }

    .hero-benefit-card,
    .hero-benefit-card:hover {
        min-height: 0;
        padding: clamp(0.8rem, 1.8vh, 1rem) !important;
    }

    .hero-benefit-card .benefit-stat {
        font-size: clamp(1.55rem, 3.8vh, 1.95rem);
    }

    .hero-benefit-card .benefit-desc {
        font-size: 0.76rem;
        line-height: 1.42;
    }
}

@media (min-width: 769px) and (max-height: 680px) {
    .hero {
        gap: 0.85rem !important;
        padding: clamp(1rem, 3.5vh, 1.75rem) 2rem 1rem !important;
    }

    .hero h1.hero-headline-centered {
        font-size: clamp(2.15rem, min(4.8vw, 6.5vh), 3.2rem) !important;
    }

    .hero-eyebrow {
        font-size: 0.68rem;
    }

    .hero-lead {
        font-size: 0.88rem;
        line-height: 1.42;
    }

    .hero-actions .btn {
        min-height: 42px;
        padding: 0.62rem 1rem;
    }

    .hero-benefit-card .benefit-title {
        font-size: 0.78rem;
    }

    .hero-benefit-card .benefit-desc {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
}
