@font-face {
  font-family: 'Cal Sans';
  src: url('../assets/fonts/CalSans-Variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --logo-navy: #172b55;
  --navy-900: #131b33;
  --navy-800: #1c2a4a;
  --navy-700: #243456;
  --navy-600: #2e4066;
  --blue-600: #1e46e0;
  --blue-500: #2f5cff;
  --blue-400: #5b7fff;
  --blue-100: #e8edff;
  --orange-600: #e5502a;
  --orange-500: #ff6b35;
  --orange-400: #ff8b5c;
  --orange-100: #ffe9de;
  --gray-900: #12151c;
  --gray-800: #1f2430;
  --gray-700: #333a47;
  --gray-600: #4b5261;
  --gray-500: #6b7280;
  --gray-400: #9aa2b1;
  --gray-300: #cbd0d9;
  --gray-200: #e2e5ea;
  --gray-100: #eef0f3;
  --gray-50: #f7f8fa;
  --white: #fff;
  --success: #22c55e;
  --brand-500: var(--blue-500);
  --brand-600: var(--blue-600);
  --brand-50: var(--blue-100);
  --brand-glow: rgba(47, 92, 255, 0.18);
  --brand-glow-strong: rgba(47, 92, 255, 0.34);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cal Sans', var(--font-sans);
  --font-mono: 'Geist Mono', monospace;
  --shadow-sm: 0 1px 2px rgba(19, 27, 51, 0.05);
  --shadow-md: 0 10px 30px rgba(19, 27, 51, 0.08);
  --shadow-lg: 0 24px 70px rgba(19, 27, 51, 0.12);
  --radius-sm: 7px;
  --radius-md: 11px;
  --radius-lg: 17px;
  --radius-xl: 25px;
  --radius-full: 999px;
  --transition-fast: 0.16s ease;
  --transition-base: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-family: var(--font-sans); color: var(--navy-900); background: var(--gray-50); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; color: var(--gray-700); background: var(--gray-50); font-size: 15px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: none; color: inherit; cursor: pointer; font: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 3px; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
#features, #solutions, #how-it-works, #pricing, #contact { scroll-margin-top: 92px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 40px; padding: 10px 20px; border-radius: var(--radius-full); font-size: 13.5px; font-weight: 700; white-space: nowrap; transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast); }
.btn:active { transform: scale(.98); }
.btn-primary { color: var(--white); background: var(--blue-500); box-shadow: 0 4px 15px var(--brand-glow); }
.btn-primary:hover { background: var(--blue-600); box-shadow: 0 7px 24px var(--brand-glow-strong); }
.btn-secondary { color: var(--gray-800); background: var(--white); border: 1px solid var(--gray-200); }
.btn-secondary:hover { border-color: var(--gray-300); background: var(--gray-50); }
.btn-orange { color: var(--navy-900); background: var(--orange-500); box-shadow: 0 5px 22px rgba(255, 107, 53, .28); }
.btn-orange:hover { background: var(--orange-400); }
.btn-lg { min-height: 48px; padding: 13px 27px; font-size: 14.5px; }
.btn-block { width: 100%; }
.shadow-glow { box-shadow: 0 7px 26px var(--brand-glow-strong); }
.icon-sm { width: 17px; height: 17px; }

.brand-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo-image { width: 120px; height: auto; }

/* Navigation */
.header { position: fixed; top: 18px; left: 50%; z-index: 100; width: calc(100% - 40px); max-width: 1060px; transform: translateX(-50%); border: 1px solid rgba(0, 0, 0, .06); border-radius: var(--radius-full); background: rgba(255, 255, 255, .84); box-shadow: 0 8px 30px rgba(19, 27, 51, .06); backdrop-filter: blur(14px); transition: background var(--transition-base), box-shadow var(--transition-base); }
.header.scrolled { background: rgba(255, 255, 255, .94); box-shadow: 0 12px 36px rgba(19, 27, 51, .1); }
.header-container { display: flex; align-items: center; justify-content: space-between; height: 56px; padding: 0 9px 0 24px; }
.nav-list { display: flex; align-items: center; gap: 20px; }
.nav-link { color: var(--gray-500); font-size: 12.5px; font-weight: 600; transition: color var(--transition-fast); }
.nav-link:hover { color: var(--navy-900); }
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-actions .btn { min-height: 38px; padding: 8px 18px; font-size: 13px; }
.mobile-toggle { display: none; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; border-radius: var(--radius-md); }
.mobile-toggle svg { width: 20px; height: 20px; }

/* Shared section type */
.section-intro { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section-intro--compact { margin-bottom: 38px; }
.section-kicker { margin-bottom: 10px; color: var(--blue-500); font-size: 11.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.section-title { margin-bottom: 14px; color: var(--navy-900); font-family: var(--font-display); font-size: clamp(36px, 4vw, 48px); font-variation-settings: 'opsz' 32, 'GEOM' 50, 'wght' 600; font-weight: 600; letter-spacing: -.01em; line-height: 1.08; }
.section-description { color: var(--gray-500); font-size: 16px; line-height: 1.6; }
.canvas-label { color: var(--gray-500); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }

/* Hero */
.hero-section { position: relative; display: flex; align-items: center; min-height: min(800px, 94vh); padding: 142px 0 88px; overflow: hidden; background: var(--gray-50); }
.hero-dots-container { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: auto; }
.hero-dots-base { position: absolute; inset: 0; background-image: radial-gradient(circle at center, rgba(47, 92, 255, .16) 1.2px, transparent 1.4px); background-size: 24px 24px; }
.hero-dots-glow { position: absolute; inset: 0; opacity: 0; background-image: radial-gradient(circle at center, rgba(47, 92, 255, .55) 2px, transparent 2.2px); background-size: 24px 24px; mask-image: radial-gradient(circle at var(--mouse-x, -500px) var(--mouse-y, -500px), #000 70px, transparent 130px); transition: opacity .2s ease; }
.hero-ambient-glow { position: absolute; z-index: 0; top: 12%; left: 50%; width: 760px; height: 430px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(47, 92, 255, .1), transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 980px; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 25px; padding: 6px 14px; border: 1px solid var(--blue-100); border-radius: var(--radius-full); background: var(--brand-50); }
.badge-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-500); animation: pulse-ring 2s infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(47,92,255,.6); } 70% { box-shadow: 0 0 0 7px rgba(47,92,255,0); } 100% { box-shadow: 0 0 0 0 rgba(47,92,255,0); } }
.badge-text { color: var(--blue-600); font-size: 12.5px; font-weight: 700; }
.hero-title { max-width: 920px; margin: 0 auto 22px; color: var(--navy-900); font-family: var(--font-display); font-size: clamp(52px, 5.3vw, 72px); font-variation-settings: 'opsz' 32, 'GEOM' 50, 'wght' 600; font-weight: 600; letter-spacing: -.015em; line-height: 1.02; }
.hero-title-highlight { color: var(--blue-500); }
.hero-subtitle { max-width: 680px; margin: 0 auto 34px; color: var(--gray-500); font-size: 18px; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 22px; margin-bottom: 48px; }
.hero-text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gray-600); font-size: 13.5px; font-weight: 700; transition: color var(--transition-fast); }
.hero-text-link:hover { color: var(--blue-600); }
.hero-text-link svg { width: 16px; height: 16px; }
.hero-proof { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 10px 20px; border: 1px solid var(--gray-200); border-radius: var(--radius-full); background: rgba(255, 255, 255, .88); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.hero-proof-step { display: inline-flex; align-items: center; gap: 10px; padding: 4px 6px; }
.hero-proof-icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: var(--radius-full); background: var(--blue-100); color: var(--blue-500); flex-shrink: 0; }
.hero-proof-icon svg { width: 16px; height: 16px; }
.hero-proof-icon--result { background: var(--orange-100); color: var(--orange-500); }
.hero-proof-text { display: flex; flex-direction: column; text-align: left; }
.hero-proof-title { color: var(--gray-800); font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; line-height: 1.25; }
.hero-proof-step--result .hero-proof-title { color: var(--navy-900); }
.hero-proof-sub { color: var(--gray-500); font-size: 11.5px; font-weight: 500; line-height: 1.25; }
.hero-proof-connector { position: relative; width: 24px; height: 2px; border-radius: var(--radius-full); background: var(--gray-200); overflow: hidden; flex-shrink: 0; }
.hero-proof-pulse { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, var(--blue-500), transparent); animation: proofPulseHorizontal 2.4s cubic-bezier(.4, 0, .2, 1) infinite; }
.hero-proof-connector:nth-of-type(4) .hero-proof-pulse { animation-delay: .7s; }
.hero-proof-connector--final .hero-proof-pulse { background: linear-gradient(90deg, transparent, var(--orange-500), transparent); animation-delay: 1.4s; }

@keyframes proofPulseHorizontal {
  0% { left: -100%; opacity: 0; }
  30% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes proofPulseVertical {
  0% { top: -100%; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Early mechanism */
/* Early mechanism / Journey */
.journey-section { padding: 88px 0 96px; border-block: 1px solid var(--gray-200); background: var(--white); }
.journey-sim-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; width: 100%; max-width: 1100px; margin: 0 auto; }
.sim-card { display: flex; flex-direction: column; border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--gray-200); transition: transform var(--transition-base), box-shadow var(--transition-base); }
.sim-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.sim-card--manual { border-color: rgba(255, 107, 53, .3); }
.sim-card--akuerda { border-color: rgba(47, 92, 255, .32); box-shadow: 0 16px 40px rgba(47, 92, 255, .08); }
.sim-card-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--gray-200); }
.sim-card--manual .sim-card-header { background: linear-gradient(135deg, var(--white), rgba(255, 233, 222, .55)); border-bottom-color: rgba(255, 107, 53, .16); }
.sim-card--akuerda .sim-card-header { background: linear-gradient(135deg, var(--white), rgba(232, 237, 255, .65)); border-bottom-color: rgba(47, 92, 255, .16); }
.sim-user { display: flex; align-items: center; gap: 11px; min-width: 0; }
.sim-avatar { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; font-size: 13px; font-weight: 750; flex-shrink: 0; }
.sim-avatar--lead { background: var(--orange-100); color: var(--orange-600); border: 1px solid rgba(229, 80, 42, .2); }
.sim-avatar--akuerda { background: var(--blue-500); padding: 8px; box-shadow: 0 4px 12px var(--brand-glow); }
.sim-avatar--akuerda img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.sim-user-info { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.sim-user-info strong { font-size: 13px; font-weight: 700; color: var(--navy-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sim-user-info small { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--gray-500); }
.sim-user-info small svg { width: 12px; height: 12px; }
.sim-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.sim-badge svg { width: 13px; height: 13px; }
.sim-badge--friction { color: var(--orange-600); background: var(--orange-100); border: 1px solid rgba(229, 80, 42, .2); }
.sim-badge--active { color: var(--blue-600); background: var(--blue-100); border: 1px solid rgba(47, 92, 255, .2); }
.sim-chat-body { display: flex; flex-direction: column; gap: 11px; padding: 22px 20px; background: #fafbfc; min-height: 330px; flex: 1; justify-content: center; }
.sim-bubble { position: relative; max-width: 86%; padding: 10px 14px 8px; border-radius: 14px; font-size: 12.5px; line-height: 1.45; text-align: left; box-shadow: 0 1px 3px rgba(19, 27, 51, .04); }
.sim-bubble p { margin-bottom: 2px; }
.sim-bubble--in { align-self: flex-start; background: var(--white); color: var(--gray-800); border: 1px solid var(--gray-200); border-bottom-left-radius: 4px; }
.sim-bubble--out { align-self: flex-end; background: #eef2ff; color: var(--navy-900); border-bottom-right-radius: 4px; }
.sim-bubble--akuerda { background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); color: var(--white); box-shadow: 0 4px 14px var(--brand-glow); }
.sim-bubble--akuerda .sim-time { color: rgba(255, 255, 255, .75); }
.sim-bubble--lost { border-color: rgba(229, 80, 42, .35); background: #fff8f5; color: var(--navy-900); }
.sim-bubble--confirmed { border-color: rgba(34, 197, 94, .35); background: #f0fdf4; color: var(--navy-900); font-weight: 600; }
.sim-time { display: inline-flex; align-items: center; justify-content: flex-end; gap: 4px; width: 100%; font-size: 10px; color: var(--gray-400); margin-top: 4px; font-family: var(--font-mono); }
.sim-time svg { width: 13px; height: 13px; }
.sim-read { color: #38bdf8; }
.sim-divider-time { display: flex; align-items: center; justify-content: center; margin: 4px 0; }
.sim-divider-time span { padding: 4px 13px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; color: var(--orange-600); background: var(--orange-100); border: 1px dashed rgba(229, 80, 42, .3); }
.sim-card-footer { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-top: 1px solid var(--gray-200); }
.sim-card-footer--friction { background: #fff8f5; border-top-color: rgba(255, 107, 53, .16); }
.sim-card-footer--active { background: #f4f7ff; border-top-color: rgba(47, 92, 255, .16); }
.sim-footer-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; }
.sim-card-footer--friction .sim-footer-icon { background: var(--orange-100); color: var(--orange-600); }
.sim-card-footer--active .sim-footer-icon { background: var(--blue-100); color: var(--blue-500); }
.sim-footer-icon svg { width: 17px; height: 17px; }
.sim-footer-text { display: flex; flex-direction: column; text-align: left; }
.sim-footer-text strong { font-size: 13px; font-weight: 700; color: var(--navy-900); }
.sim-footer-text small { font-size: 11.5px; color: var(--gray-500); }

/* Product storytelling */
.product-section { padding: 106px 0; background: var(--navy-800); }
.product-section .section-kicker { color: var(--orange-400); }
.product-section .section-title { color: var(--white); }
.product-section .section-description { color: var(--gray-300); }
.product-story { display: grid; grid-template-columns: 370px minmax(0, 1fr); gap: 32px; align-items: center; position: relative; }
.capability-accordion { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.accordion-item { overflow: hidden; border-radius: var(--radius-xl); border: 1px solid rgba(255, 255, 255, .08); background: rgba(255, 255, 255, .02); transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base); cursor: pointer; text-align: left; }
.accordion-item:hover { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .15); }
.accordion-item.active { background: var(--navy-700); border-color: var(--navy-600); box-shadow: 0 12px 32px rgba(5, 10, 25, .35); }
.accordion-header { display: flex; align-items: center; gap: 14px; padding: 16px 18px; }
.capability-index { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; color: var(--gray-400); background: var(--navy-600); font-family: var(--font-mono); font-size: 11px; font-weight: 750; flex-shrink: 0; }
.accordion-item.active .capability-index { color: var(--white); background: var(--blue-500); }
.accordion-title-wrap { display: flex; flex-direction: column; text-align: left; gap: 2px; flex: 1; min-width: 0; }
.accordion-title { font-size: 15px; font-weight: 700; color: var(--gray-300); line-height: 1.25; }
.accordion-item.active .accordion-title { color: var(--white); }
.accordion-sub { font-size: 12px; color: var(--gray-500); }
.accordion-item.active .accordion-sub { color: var(--orange-400); }
.accordion-arrow { width: 16px; height: 16px; color: var(--gray-500); transition: transform var(--transition-fast), color var(--transition-fast); flex-shrink: 0; }
.accordion-item.active .accordion-arrow { transform: rotate(180deg); color: var(--orange-400); }
.accordion-body { max-height: 0; opacity: 0; overflow: hidden; padding: 0 18px 0 66px; transition: max-height .35s cubic-bezier(.4, 0, .2, 1), opacity .3s ease, padding .35s ease; }
.accordion-item.active .accordion-body { max-height: 140px; opacity: 1; padding: 0 18px 18px 66px; }
.accordion-desc { font-size: 13px; line-height: 1.5; color: var(--gray-300); text-align: left; margin-bottom: 12px; }
.accordion-progress-bar { width: 100%; height: 3px; border-radius: var(--radius-full); background: rgba(255, 255, 255, .08); overflow: hidden; position: relative; }
.accordion-progress-fill { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--blue-600), var(--blue-400), #38bdf8); border-radius: var(--radius-full); }
.accordion-item.active .accordion-progress-fill { animation: accordionProgress 6s linear forwards; }
@keyframes accordionProgress { from { width: 0%; } to { width: 100%; } }
.product-canvas { min-width: 0; min-height: 520px; overflow: hidden; border: 1px solid var(--navy-600); border-radius: var(--radius-xl); background: var(--gray-50); box-shadow: 0 30px 80px rgba(5,10,25,.35); }
.product-canvas-bar { display: flex; align-items: center; justify-content: space-between; height: 52px; padding: 0 20px; border-bottom: 1px solid var(--gray-200); background: var(--white); }
.canvas-brand { display: flex; align-items: center; gap: 9px; color: var(--gray-800); font-size: 13px; font-weight: 700; }
.canvas-brand img { width: 22px; height: 22px; }
.canvas-status { display: flex; align-items: center; gap: 7px; color: var(--gray-600); font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.canvas-status > span { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(34,197,94,.15); }
.capability-panel { min-height: 468px; animation: panel-in .25s ease; }
@keyframes panel-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.capability-panel[data-panel="attend"] { display: grid; grid-template-columns: 240px 1fr; }
.inbox-column { padding: 18px 14px; border-right: 1px solid var(--gray-200); background: var(--gray-100); }
.inbox-column .canvas-label { margin: 3px 8px 13px; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; color: var(--gray-500); }
.inbox-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; margin-bottom: 6px; padding: 11px 10px; border: 1px solid transparent; border-radius: 11px; }
.inbox-item.active { border-color: var(--gray-200); background: var(--white); box-shadow: var(--shadow-sm); }
.inbox-item > span:nth-child(2) { display: flex; min-width: 0; flex-direction: column; gap: 2px; }
.inbox-item strong { overflow: hidden; color: var(--gray-800); font-size: 13px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.inbox-item small, .inbox-item time { color: var(--gray-500); font-size: 11px; }
.avatar { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; color: var(--blue-600); background: var(--blue-100); font-size: 11px; font-weight: 800; }
.avatar--orange { color: var(--orange-600); background: var(--orange-100); }
.avatar--gray { color: var(--gray-600); background: var(--gray-200); }
.conversation-column, .answer-preview { display: flex; min-width: 0; flex-direction: column; background: var(--white); }
.conversation-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--gray-100); }
.conversation-head > span:first-child { display: flex; min-width: 0; flex-direction: column; gap: 2px; }
.conversation-head strong { color: var(--gray-900); font-size: 14.5px; font-weight: 700; }
.conversation-head small { display: flex; align-items: center; gap: 5px; color: var(--gray-500); font-size: 12px; }
.conversation-head small svg { width: 13px; height: 13px; color: var(--success); }
.status-chip { display: inline-flex; align-items: center; padding: 4px 10px; border: 1px solid rgba(34,197,94,.25); border-radius: var(--radius-full); color: #117736; background: rgba(34,197,94,.12); font-size: 11px; font-weight: 750; white-space: nowrap; }
.status-chip--orange { border-color: rgba(255,107,53,.25); color: var(--orange-600); background: var(--orange-100); }
.chat-area { display: flex; flex: 1; flex-direction: column; gap: 14px; padding: 28px 24px; background-image: radial-gradient(circle, rgba(47,92,255,.09) 1px, transparent 1px); background-size: 22px 22px; }
.chat-bubble { max-width: 78%; padding: 12px 16px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; box-shadow: var(--shadow-sm); }
.chat-bubble--lead { align-self: flex-start; border-bottom-left-radius: 3px; color: var(--gray-800); background: var(--gray-100); border: 1px solid var(--gray-200); }
.chat-bubble--akuerda { align-self: flex-end; border-bottom-right-radius: 3px; color: var(--white); background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); box-shadow: 0 4px 14px var(--brand-glow); }
.response-time { display: inline-flex; align-items: center; align-self: center; gap: 6px; margin-top: auto; padding: 6px 12px; border: 1px solid var(--gray-200); border-radius: var(--radius-full); color: var(--gray-600); background: rgba(255,255,255,.92); font-size: 11.5px; font-weight: 700; }
.response-time svg { width: 13px; height: 13px; color: var(--orange-500); }
.knowledge-layout { display: grid; grid-template-columns: 42% 58%; min-height: 468px; }
.knowledge-library { padding: 22px 18px; border-right: 1px solid var(--gray-200); background: var(--gray-100); }
.knowledge-library .canvas-label { margin-bottom: 14px; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; color: var(--gray-500); }
.knowledge-file { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; margin-bottom: 8px; padding: 12px 14px; border: 1px solid var(--gray-200); border-radius: 11px; background: rgba(255,255,255,.75); }
.knowledge-file.active { border-color: rgba(47,92,255,.3); background: var(--white); box-shadow: var(--shadow-sm); }
.knowledge-file > svg:first-child { width: 18px; height: 18px; color: var(--blue-500); }
.knowledge-file > svg:last-child { width: 15px; height: 15px; color: var(--success); }
.knowledge-file > span { display: flex; flex-direction: column; gap: 2px; }
.knowledge-file strong { color: var(--gray-800); font-size: 13px; font-weight: 700; }
.knowledge-file small { color: var(--gray-500); font-size: 11px; }
.knowledge-boundary { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; padding: 13px 14px; border: 1px solid rgba(255,107,53,.22); border-radius: 11px; background: var(--orange-100); }
.knowledge-boundary > svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--orange-600); }
.knowledge-boundary span { display: flex; flex-direction: column; gap: 2px; }
.knowledge-boundary strong { color: var(--navy-900); font-size: 12.5px; font-weight: 700; }
.knowledge-boundary small { color: var(--gray-600); font-size: 11px; }
.source-note { display: flex; align-items: center; gap: 9px; margin-top: auto; padding: 11px 14px; border: 1px solid var(--gray-200); border-radius: 10px; background: rgba(255,255,255,.95); }
.source-note > svg { width: 18px; height: 18px; color: var(--blue-500); }
.source-note span { display: flex; flex-direction: column; color: var(--gray-500); font-size: 11px; }
.source-note strong { color: var(--gray-800); font-size: 12px; font-weight: 700; }
.qualification-layout { display: grid; grid-template-columns: 1.4fr .8fr; gap: 18px; min-height: 468px; padding: 22px; background: var(--gray-100); }
.qualification-main { overflow: hidden; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); }
.qualification-progress { height: 5px; background: var(--gray-100); }
.qualification-progress span { display: block; height: 100%; border-radius: var(--radius-full); background: linear-gradient(90deg, var(--blue-600), var(--blue-400), #38bdf8); }
.qualification-list { padding: 16px 20px; }
.qualification-row { display: flex; align-items: center; gap: 12px; padding: 13px 4px; border-bottom: 1px solid var(--gray-100); }
.qualification-row:last-child { border-bottom: 0; }
.qualification-row > svg { width: 22px; height: 22px; padding: 4px; border-radius: 50%; color: var(--gray-400); background: var(--gray-100); }
.qualification-row.complete > svg { color: var(--white); background: var(--blue-500); }
.qualification-row.current > svg { color: var(--orange-600); background: var(--orange-100); }
.qualification-row span { display: flex; flex-direction: column; gap: 2px; }
.qualification-row strong { color: var(--gray-800); font-size: 13.5px; font-weight: 700; }
.qualification-row small { color: var(--gray-500); font-size: 11.5px; }
.next-action-card { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: 22px; border: 1px solid rgba(47,92,255,.22); border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--white), var(--blue-100)); }
.next-action-card .canvas-label { font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; color: var(--blue-600); margin-bottom: 4px; }
.next-action-card > svg { width: 40px; height: 40px; margin: 20px 0 16px; padding: 9px; border-radius: 12px; color: var(--white); background: var(--blue-500); box-shadow: 0 8px 20px var(--brand-glow); }
.next-action-card > strong { color: var(--navy-900); font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.next-action-card p { margin: 8px 0 18px; color: var(--gray-600); font-size: 12.5px; line-height: 1.5; }
.next-action-card > span { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: var(--radius-full); color: #117736; background: rgba(34,197,94,.12); font-size: 11px; font-weight: 750; }
.next-action-card > span svg { width: 12px; height: 12px; }
.handoff-layout { display: flex; align-items: center; justify-content: center; min-height: 468px; padding: 26px; background-image: radial-gradient(circle, rgba(47,92,255,.12) 1px, transparent 1px); background-size: 22px 22px; }
.handoff-card { width: min(100%, 600px); overflow: hidden; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.handoff-header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--gray-100); }
.handoff-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; color: var(--white); background: var(--blue-500); }
.handoff-icon svg { width: 20px; height: 20px; }
.handoff-header > span:nth-child(2) { display: flex; flex-direction: column; gap: 2px; }
.handoff-header small, .handoff-grid small, .handoff-summary small { color: var(--gray-500); font-size: 10.5px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.handoff-header strong { color: var(--gray-900); font-size: 15px; font-weight: 700; }
.handoff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--gray-200); }
.handoff-grid div { display: flex; flex-direction: column; gap: 3px; padding: 14px 20px; background: var(--white); }
.handoff-grid strong { color: var(--gray-800); font-size: 13px; font-weight: 700; }
.handoff-summary { margin: 18px 20px; padding: 14px 16px; border: 1px solid var(--gray-200); border-radius: 11px; background: var(--gray-50); }
.handoff-summary p { margin-top: 4px; color: var(--gray-700); font-size: 12.5px; line-height: 1.5; }
.handoff-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; border-top: 1px solid var(--gray-100); color: var(--gray-600); font-size: 11.5px; font-weight: 700; }
.handoff-footer span { display: inline-flex; align-items: center; gap: 6px; }
.handoff-footer svg { width: 14px; height: 14px; color: var(--success); }
.product-control-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 920px; margin: 38px auto 0; overflow: hidden; border: 1px solid var(--navy-600); border-radius: var(--radius-xl); background: var(--navy-600); box-shadow: 0 12px 36px rgba(5,10,25,.3); }
.product-control-strip > span { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 62px; padding: 14px 18px; color: var(--gray-200); background: var(--navy-700); font-size: 13.5px; font-weight: 600; text-align: center; transition: background var(--transition-fast); }
.product-control-strip > span:hover { background: var(--navy-600); }
.product-control-strip svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--orange-400); }

/* Use cases */
.solutions-section { padding: 106px 0; border-bottom: 1px solid var(--gray-200); background: var(--gray-50); }
.solutions-tabs { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 34px; flex-wrap: wrap; }
.sol-tab-btn { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 10px 18px; border: 1px solid var(--gray-200); border-radius: var(--radius-full); color: var(--gray-600); background: var(--white); font-size: 13px; font-weight: 700; transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast); }
.sol-tab-btn svg { width: 15px; height: 15px; }
.sol-tab-btn:hover { border-color: var(--gray-300); color: var(--navy-900); transform: translateY(-1px); }
.sol-tab-btn.active { border-color: var(--blue-500); color: var(--white); background: var(--blue-500); box-shadow: 0 6px 20px var(--brand-glow); }
.solution-display { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; min-height: 520px; padding: 48px 52px; border: 1px solid var(--gray-200); border-radius: var(--radius-xl); background: var(--white); box-shadow: 0 20px 60px rgba(19,27,51,.06); }
.solution-display.sol-fade-in { animation: solFadeIn .3s cubic-bezier(.4, 0, .2, 1); }
@keyframes solFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.solution-display > * { min-width: 0; }
.solution-copy { max-width: 440px; }
.solution-badge { display: inline-flex; margin-bottom: 16px; padding: 5px 12px; border-radius: var(--radius-full); color: var(--blue-600); background: var(--blue-100); font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.solution-copy h3 { margin-bottom: 16px; color: var(--navy-900); font-family: var(--font-display); font-size: clamp(26px, 2.5vw, 32px); font-weight: 700; line-height: 1.18; }
.solution-copy > p { margin-bottom: 24px; color: var(--gray-600); font-size: 15px; line-height: 1.6; }
.solution-points { display: flex; flex-direction: column; gap: 12px; }
.solution-points li { display: flex; align-items: center; gap: 10px; color: var(--gray-700); font-size: 14px; font-weight: 600; }
.solution-points svg { width: 18px; height: 18px; flex-shrink: 0; padding: 3px; border-radius: 50%; color: var(--white); background: var(--blue-500); }

/* Case visual (Flow diagram) */
.case-visual { position: relative; display: flex; align-items: center; flex-direction: column; padding: 22px 28px 28px; border: 1px solid var(--gray-200); border-radius: var(--radius-xl); background: var(--gray-100); box-shadow: inset 0 2px 6px rgba(0,0,0,.02); }
.case-visual-top { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-200); color: var(--gray-600); font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.case-visual-top span:first-child { display: inline-flex; align-items: center; gap: 7px; color: #117736; }
.case-visual-top svg { width: 14px; height: 14px; }
.case-tag-pill { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: var(--radius-full); background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-600); font-size: 11px; }
.case-source-card, .case-result-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; width: min(100%, 420px); padding: 16px 18px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.case-card-body { display: flex; flex-direction: column; gap: 2px; }
.case-source-card small, .case-result-card small { color: var(--gray-500); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.case-source-card strong, .case-result-card strong { color: var(--gray-900); font-size: 14px; font-weight: 700; }
.case-source-card em, .case-result-card em { color: var(--gray-500); font-size: 12px; font-style: normal; }
.case-source-icon, .case-result-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; color: var(--blue-600); background: var(--blue-100); }
.case-source-icon svg, .case-result-icon svg { width: 18px; height: 18px; }
.case-result-card { border-color: rgba(47,92,255,.3); }
.case-result-icon { color: var(--orange-600); background: var(--orange-100); }
.case-result-badge { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--blue-100); color: var(--blue-600); }
.case-result-badge svg { width: 14px; height: 14px; }

/* Clean flow connector */
.case-flow-connector { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; height: 34px; margin: 2px 0; }
.case-flow-connector::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); background: var(--gray-200); }
.case-flow-connector svg { position: relative; z-index: 2; width: 20px; height: 20px; padding: 3px; border: 1px solid var(--gray-200); border-radius: 50%; color: var(--blue-500); background: var(--white); box-shadow: var(--shadow-sm); }
.case-flow-connector--final svg { color: var(--orange-500); border-color: rgba(255,107,53,.25); }

/* Processing card */
.case-processing-card { width: min(100%, 450px); padding: 18px 20px; border: 1px solid var(--navy-600); border-radius: var(--radius-xl); color: var(--white); background: var(--navy-800); box-shadow: 0 16px 36px rgba(19,27,51,.22); }
.case-processing-header { display: flex; align-items: center; gap: 7px; margin-bottom: 6px; color: var(--gray-300); }
.case-processing-header small { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.processing-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
.case-processing-card > strong { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); }
.case-capture-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 14px; }
.case-capture-grid span { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--navy-600); border-radius: 10px; color: var(--gray-200); background: var(--navy-700); }
.case-capture-grid svg { width: 14px; height: 14px; color: var(--success); flex-shrink: 0; }
.case-capture-grid em { font-size: 12px; font-style: normal; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* How it works */
.how-section { padding: 106px 0; background: var(--white); }
.how-rail { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto; align-items: start; max-width: 1040px; margin: 0 auto 42px; }
.how-step-btn { display: flex; align-items: center; flex-direction: column; gap: 10px; width: 130px; color: var(--gray-500); text-align: center; cursor: pointer; }
.how-step-btn span { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--gray-200); border-radius: 50%; color: var(--gray-500); background: var(--gray-50); font-family: var(--font-mono); font-size: 12px; font-weight: 800; transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast); }
.how-step-btn:hover span { transform: translateY(-1px); border-color: var(--gray-300); color: var(--navy-900); }
.how-step-btn strong { font-size: 13px; font-weight: 700; line-height: 1.3; }
.how-step-btn.active { color: var(--navy-900); }
.how-step-btn.active span { border-color: var(--blue-500); color: var(--white); background: var(--blue-500); box-shadow: 0 6px 18px var(--brand-glow); }
.how-step-btn.completed span { border-color: rgba(47,92,255,.35); color: var(--blue-600); background: var(--blue-100); }
.how-rail-line { position: relative; height: 4px; margin-top: 19px; background: var(--gray-200); border-radius: var(--radius-full); overflow: hidden; }
.how-rail-line-fill { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, #1E46E0, #5C82FF, #38bdf8); border-radius: var(--radius-full); }
.how-rail-line.active .how-rail-line-fill { animation: howLineProgress 5.5s linear forwards; }
.how-rail-line.completed .how-rail-line-fill { width: 100%; animation: none; background: var(--blue-500); }
@keyframes howLineProgress { from { width: 0%; } to { width: 100%; } }
.how-detail { display: grid; grid-template-columns: .88fr 1.12fr; gap: 52px; align-items: center; max-width: 990px; min-height: 320px; margin: 0 auto; padding: 44px 50px; border: 1px solid var(--gray-200); border-radius: var(--radius-xl); background: var(--gray-50); box-shadow: var(--shadow-sm); }
.how-detail.how-fade-in { animation: howFadeIn .3s cubic-bezier(.4, 0, .2, 1); }
@keyframes howFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.how-step-label { display: inline-block; margin-bottom: 14px; color: var(--blue-600); font-family: var(--font-mono); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.how-detail-copy h3 { margin-bottom: 14px; color: var(--navy-900); font-family: var(--font-display); font-size: 26px; font-weight: 700; line-height: 1.2; }
.how-detail-copy p { color: var(--gray-600); font-size: 14.5px; line-height: 1.6; }

/* Event card */
.event-card { overflow: hidden; border: 1px solid var(--navy-600); border-radius: var(--radius-xl); color: var(--white); background: var(--navy-800); box-shadow: 0 20px 44px rgba(19,27,51,.2); }
.event-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--navy-600); }
.event-card-status-wrap { display: flex; align-items: center; gap: 8px; }
.event-status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
.event-card-head strong { font-size: 13px; font-weight: 700; color: var(--white); }
.event-card-head time { color: var(--gray-400); font-family: var(--font-mono); font-size: 11px; }
.event-card-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--navy-600); }
.event-field-box { display: flex; min-width: 0; flex-direction: column; gap: 4px; padding: 18px 16px; background: var(--navy-700); }
.event-field-box small { color: var(--gray-400); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.event-field-box strong { overflow: hidden; color: var(--white); font-size: 13.5px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.event-card-footer { display: flex; align-items: center; gap: 8px; padding: 14px 20px; border-top: 1px solid rgba(255,255,255,.05); background: var(--navy-800); }
.event-card-footer svg { width: 15px; height: 15px; color: var(--success); flex-shrink: 0; }
.event-card-footer em { color: var(--gray-300); font-size: 12.5px; font-style: normal; font-weight: 500; }

/* Outcome band - Dark Navy centered layout */
.outcome-band { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; max-width: 990px; margin: 44px auto 0; padding: 40px 44px; border: 1px solid var(--navy-600); border-radius: var(--radius-xl); background: var(--navy-800); box-shadow: 0 20px 48px rgba(11,19,43,.22); }
.outcome-copy .section-kicker { color: #38bdf8; margin-bottom: 10px; font-size: 11px; }
.outcome-copy h3 { max-width: 720px; margin: 0 auto; color: var(--white); font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: 1.3; }
.outcome-flow { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; width: 100%; }
.outcome-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--navy-600); border-radius: var(--radius-md); background: var(--navy-700); color: var(--gray-200); font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.outcome-pill svg { width: 15px; height: 15px; color: #38bdf8; flex-shrink: 0; }
.outcome-pill em { font-style: normal; }
.outcome-arrow { width: 16px; height: 16px; flex-shrink: 0; color: var(--gray-400); }
.outcome-pill--goal { border-color: rgba(47,92,255,.6); color: var(--white); background: linear-gradient(135deg, #1E46E0, #2F5CFF); box-shadow: 0 4px 18px rgba(47,92,255,.4); }
.outcome-pill--goal svg { color: var(--white); }

/* Pricing */
.pricing-section { padding: 106px 0; border-block: 1px solid var(--gray-200); background: var(--gray-50); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-card { position: relative; display: flex; justify-content: space-between; flex-direction: column; min-height: 440px; padding: 34px 28px; border: 1px solid var(--gray-200); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-sm); transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast); }
.pricing-card:hover { transform: translateY(-4px); border-color: var(--gray-300); box-shadow: var(--shadow-md); }
.pricing-card.highlighted { border-color: var(--blue-500); box-shadow: 0 16px 42px rgba(47,92,255,.14); }
.popular-ribbon { position: absolute; top: -13px; right: 24px; padding: 5px 12px; border-radius: var(--radius-full); color: var(--white); background: var(--blue-500); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; box-shadow: 0 4px 12px var(--brand-glow); }
.tier-name { display: block; margin-bottom: 14px; color: var(--blue-600); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.tier-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-100); }
.tier-price > span { width: 100%; color: var(--gray-500); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.tier-price strong { color: var(--navy-900); font-family: var(--font-display); font-size: clamp(34px, 3.2vw, 44px); font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.tier-price small { color: var(--gray-500); font-size: 12px; font-weight: 700; white-space: nowrap; }
.tier-price--contact strong { font-size: clamp(26px, 2.3vw, 32px); line-height: 1.1; }
.pricing-card h3 { margin-bottom: 12px; color: var(--navy-900); font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1.22; }
.tier-desc { color: var(--gray-600); font-size: 13.5px; line-height: 1.6; }
.tier-features { display: flex; flex-direction: column; gap: 12px; margin: 26px 0; padding-top: 22px; border-top: 1px solid var(--gray-100); }
.tier-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-700); font-size: 13.5px; line-height: 1.5; }
.tier-features svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue-500); margin-top: 2px; }
.pricing-note { display: flex; align-items: center; justify-content: center; gap: 8px; max-width: 720px; margin: 28px auto 0; color: var(--gray-500); font-size: 12px; text-align: center; }
.pricing-note svg { width: 15px; height: 15px; flex-shrink: 0; }
.assurance-strip { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 920px; margin: 44px auto 0; padding: 20px 24px; border: 1px solid var(--gray-200); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-sm); }
.assurance-strip > span { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 34px; border-right: 1px solid var(--gray-200); color: var(--navy-900); font-size: 13px; font-weight: 700; }
.assurance-strip > span:last-child { border-right: 0; }
.assurance-strip svg { width: 18px; height: 18px; color: var(--blue-500); }

/* CTA */
.cta-section { padding: 100px 0; background: var(--white); }
.cta-card { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; overflow: hidden; padding: 64px; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-xl); color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--logo-navy) 62%, var(--navy-700)); box-shadow: 0 28px 70px rgba(19,27,51,.26); }
.cta-card::before { content: ''; position: absolute; top: -55%; left: 28%; width: 680px; height: 430px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(47,92,255,.32), transparent 70%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-kicker { margin-bottom: 12px; color: var(--orange-400); font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cta-title { max-width: 570px; margin-bottom: 16px; color: var(--white); font-family: var(--font-display); font-size: clamp(36px, 4vw, 48px); font-weight: 700; line-height: 1.08; }
.cta-description { max-width: 510px; margin-bottom: 30px; color: var(--gray-300); font-size: 16px; line-height: 1.6; }

/* Chat widget mock */
.cta-chat { position: relative; z-index: 1; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-xl); background: var(--white); box-shadow: 0 24px 50px rgba(7,12,28,.3); transform: rotate(1deg); transition: transform var(--transition-fast); }
.cta-chat:hover { transform: rotate(0deg) translateY(-2px); }
.cta-chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--gray-200); color: var(--gray-900); }
.cta-chat-avatar { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 12px; background: var(--blue-100); }
.cta-chat-avatar img { width: 22px; height: 22px; }
.cta-chat-info { display: flex; flex-direction: column; gap: 2px; }
.cta-chat-info strong { font-size: 13.5px; font-weight: 700; color: var(--navy-900); }
.cta-chat-info small { display: flex; align-items: center; gap: 6px; color: var(--gray-500); font-size: 11px; }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
.cta-chat-body { display: flex; flex-direction: column; gap: 12px; min-height: 200px; padding: 24px 20px; background-image: radial-gradient(circle, rgba(47,92,255,.08) 1px, transparent 1px); background-size: 20px 20px; background-color: var(--gray-50); }
.cta-message { max-width: 84%; padding: 12px 16px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; font-weight: 500; }
.cta-message--user { align-self: flex-end; border-bottom-right-radius: 4px; color: var(--white); background: var(--blue-500); box-shadow: 0 4px 12px rgba(47,92,255,.2); }
.cta-message--akuerda { align-self: flex-start; border-bottom-left-radius: 4px; color: var(--gray-800); background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.cta-chat-input { display: flex; align-items: center; justify-content: space-between; margin: 0 16px 16px; padding: 11px 16px; border: 1px solid var(--gray-200); border-radius: var(--radius-full); color: var(--gray-400); background: var(--white); font-size: 12px; }
.cta-chat-input svg { width: 15px; height: 15px; color: var(--blue-500); }

/* Footer */
.footer { padding: 80px 0 36px; border-top: 1px solid var(--gray-200); background: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.3fr 2fr; gap: 90px; margin-bottom: 56px; }
.footer-brand { display: flex; align-items: flex-start; flex-direction: column; gap: 16px; }
.footer-brand .brand-logo-image { height: 26px; }
.footer-tagline { max-width: 340px; color: var(--gray-600); font-size: 13.5px; line-height: 1.6; }
.footer-system-status { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border: 1px solid var(--gray-200); border-radius: var(--radius-full); color: var(--gray-600); background: var(--gray-50); font-size: 11.5px; font-weight: 600; }
.footer-system-status .status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col-title { margin-bottom: 16px; color: var(--navy-900); font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--gray-500); font-size: 13.5px; font-weight: 500; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--blue-600); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 30px; border-top: 1px solid var(--gray-200); }
.footer-copy { color: var(--gray-500); font-size: 12.5px; }
.footer-country-tags { display: flex; gap: 10px; }
.country-tag { padding: 4px 10px; border: 1px solid var(--gray-200); border-radius: var(--radius-full); background: var(--gray-50); color: var(--gray-600); font-size: 12px; font-weight: 600; }

/* Progressive enhancement: reveal the visual story as it enters the viewport. */
@media (prefers-reduced-motion: no-preference) {
  .motion-ready .reveal-target { opacity: 0; transform: translateY(18px); transition: opacity .58s ease var(--reveal-delay, 0ms), transform .58s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms); }
  .motion-ready .reveal-target.is-visible { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title { font-size: 58px; }
  .product-story { grid-template-columns: 270px minmax(0,1fr); gap: 20px; }
  .capability-panel[data-panel="attend"] { grid-template-columns: 190px 1fr; }
  .inbox-column { padding-inline: 9px; }
  .knowledge-layout { grid-template-columns: 46% 54%; }
  .solution-display { gap: 34px; padding: 40px; }
  .pricing-card { padding: 28px 22px; }
  .cta-card { gap: 45px; padding: 54px; }
}

@media (max-width: 900px) {
  .nav-menu { display: none; position: absolute; top: calc(100% + 8px); right: 0; left: 0; padding: 14px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-lg); }
  .nav-menu.open { display: block; }
  .nav-list { align-items: stretch; flex-direction: column; gap: 3px; }
  .nav-link { display: flex; align-items: center; min-height: 44px; padding: 0 12px; border-radius: var(--radius-md); font-size: 14px; }
  .nav-link:hover { background: var(--gray-50); }
  .mobile-toggle { display: flex; }
  .product-story { grid-template-columns: 1fr; gap: 24px; }
  .capability-accordion { gap: 8px; }
  .accordion-body { padding: 0 16px 0 58px; }
  .accordion-item.active .accordion-body { padding: 0 16px 16px 58px; max-height: 120px; }
  .accordion-header { padding: 14px 16px; }
  .product-canvas { min-height: 470px; }
  .solution-display { grid-template-columns: 1fr; }
  .solution-copy { max-width: 620px; }
  .case-visual { width: min(100%, 620px); margin: 0 auto; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child { grid-column: 1 / -1; min-height: 370px; }
  .cta-card { grid-template-columns: 1fr 340px; }
  .outcome-band { grid-template-columns: 1fr; gap: 24px; }
  .outcome-flow { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .container { padding-inline: 20px; }
  .header { top: max(12px, env(safe-area-inset-top)); width: calc(100% - 24px); border-radius: var(--radius-lg); }
  .header-container { padding: 0 6px 0 16px; }
  .brand-logo-image { width: 104px; }
  .hero-section { min-height: auto; padding: 128px 0 76px; }
  .hero-proof { display: flex; flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; padding: 18px 22px; border-radius: var(--radius-xl); gap: 0; }
  .hero-proof-step { display: flex; align-items: center; gap: 14px; padding: 5px 0; }
  .hero-proof-icon { width: 38px; height: 38px; }
  .hero-proof-icon svg { width: 18px; height: 18px; }
  .hero-proof-title { font-size: 14px; }
  .hero-proof-sub { font-size: 12px; }
  .hero-proof-connector { width: 2px; height: 16px; margin: 0 0 0 18px; background: var(--gray-200); }
  .hero-proof-pulse { left: 0; top: -100%; width: 100%; height: 100%; background: linear-gradient(180deg, transparent, var(--blue-500), transparent); animation: proofPulseVertical 2.4s cubic-bezier(.4, 0, .2, 1) infinite; }
  .hero-proof-connector--final .hero-proof-pulse { background: linear-gradient(180deg, transparent, var(--orange-500), transparent); }
  .journey-section, .product-section, .solutions-section, .how-section, .pricing-section, .cta-section { padding-block: 82px; }
  .section-intro { margin-bottom: 38px; }
  .section-title { font-size: clamp(34px, 7vw, 43px); }
  .journey-sim-grid { grid-template-columns: 1fr; gap: 20px; }
  .sim-card-header { padding: 14px 16px; flex-wrap: wrap; }
  .sim-bubble { max-width: 92%; font-size: 12px; }
  .sim-chat-body { padding: 16px 14px; min-height: 0; }
  .sim-card-footer { padding: 12px 16px; }
  .capability-panel[data-panel="attend"] { grid-template-columns: 1fr; }
  .inbox-column { display: none; }
  .knowledge-layout, .qualification-layout { grid-template-columns: 1fr; }
  .knowledge-library { display: none; }
  .qualification-layout { padding: 16px; }
  .next-action-card { min-height: 180px; }
  .next-action-card > svg { margin: 16px 0 10px; }
  .solution-display { min-height: 0; padding: 34px 28px; }
  .solutions-tabs { justify-content: flex-start; overflow-x: auto; margin-inline: -4px; padding: 4px 4px 10px; scrollbar-width: none; }
  .solutions-tabs::-webkit-scrollbar { display: none; }
  .sol-tab-btn { flex: 0 0 auto; min-height: 44px; }
  .how-rail { display: flex; align-items: flex-start; overflow-x: auto; padding: 3px 3px 13px; scrollbar-width: none; }
  .how-rail::-webkit-scrollbar { display: none; }
  .how-step-btn { flex: 0 0 118px; }
  .how-rail-line { min-width: 26px; flex: 0 0 26px; }
  .how-detail { grid-template-columns: 1fr; gap: 30px; padding: 36px; }
  .product-control-strip { grid-template-columns: 1fr; }
  .product-control-strip > span { justify-content: flex-start; text-align: left; }
  .outcome-flow { flex-wrap: wrap; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card, .pricing-card:last-child { grid-column: auto; min-height: 380px; }
  .assurance-strip { grid-template-columns: 1fr; }
  .assurance-strip > span { justify-content: flex-start; padding: 11px; border-right: 0; border-bottom: 1px solid var(--gray-200); }
  .assurance-strip > span:last-child { border-bottom: 0; }
  .cta-card { grid-template-columns: 1fr; gap: 42px; padding: 50px 38px; text-align: center; }
  .cta-content { display: flex; align-items: center; flex-direction: column; }
  .cta-chat { width: min(100%, 390px); margin: 0 auto; transform: none; text-align: left; }
  .footer-top { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .brand-logo-image { width: 96px; }
  .header-actions .btn { padding-inline: 14px; font-size: 12px; }
  .hero-section { padding: 118px 0 64px; }
  .hero-badge { margin-bottom: 20px; }
  .badge-text { font-size: 11px; }
  .hero-title { font-size: clamp(37px, 10.2vw, 47px); }
  .hero-subtitle { margin-bottom: 27px; font-size: 15px; line-height: 1.55; }
  .hero-actions { flex-direction: column; gap: 15px; margin-bottom: 36px; }
  .hero-actions .btn { width: 100%; }
  .section-title { font-size: clamp(31px, 8.5vw, 38px); }
  .section-description { font-size: 14.5px; }
  .journey-section, .product-section, .solutions-section, .how-section, .pricing-section, .cta-section { padding-block: 70px; }
  .product-canvas { min-height: 500px; border-radius: var(--radius-lg); }
  .product-canvas-bar { padding-inline: 13px; }
  .canvas-brand span { font-size: 10px; }
  .canvas-status { font-size: 8px; }
  .capability-panel { min-height: 450px; }
  .conversation-head { padding: 14px; }
  .chat-area { padding: 24px 14px; }
  .chat-bubble { max-width: 92%; font-size: 12px; }
  .qualification-layout { padding: 10px; }
  .next-action-card { padding: 18px; }
  .handoff-layout { padding: 14px 10px; }
  .handoff-grid { grid-template-columns: 1fr; }
  .handoff-footer { align-items: flex-start; flex-direction: column; }
  .solution-display { gap: 30px; padding: 28px 20px; border-radius: var(--radius-lg); }
  .solution-copy h3 { font-size: 27px; }
  .case-visual { padding-inline: 12px; }
  .case-capture-grid { grid-template-columns: 1fr; }
  .how-detail { padding: 28px 20px; border-radius: var(--radius-lg); }
  .outcome-band { padding: 25px 20px; border-radius: var(--radius-lg); }
  .outcome-copy h3 { font-size: 22px; }
  .outcome-flow { display: grid; grid-template-columns: 1fr auto; width: 100%; }
  .outcome-flow span, .outcome-flow strong { white-space: normal; }
  .outcome-flow svg { transform: rotate(90deg); }
  .outcome-flow strong { grid-column: 1 / -1; text-align: center; }
  .how-detail-copy h3 { font-size: 25px; }
  .event-card-body { grid-template-columns: 1fr; }
  .event-card-body div { padding: 11px 14px; }
  .pricing-card { min-height: 365px; padding: 27px 22px; }
  .pricing-note { text-align: left; }
  .cta-card { padding: 46px 20px; border-radius: var(--radius-lg); }
  .cta-title { font-size: clamp(32px, 9vw, 39px); }
  .cta-description { font-size: 14.5px; }
  .cta-content .btn { width: 100%; }
  .footer { padding: 62px 0 28px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 15px; }
}

@media (max-width: 360px) {
  .header-actions .btn-primary { display: none; }
  .hero-title { font-size: 36px; }
  .footer-links-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .badge-pulse { animation: none; }
  .hero-dots-glow, .capability-panel { transition: none; animation: none; }
}

/* The hover pause lives in JS (features.js / how-it-works.js) and only stops the timer.
   Without this the progress bar keeps running, parks at 100% and announces an advance
   that never comes while the pointer rests on the section. */
.product-story:hover .accordion-progress-fill,
.how-rail:hover .how-rail-line-fill,
.how-detail:hover .how-rail-line-fill { animation-play-state: paused; }
