:root {
    --bg-light: #f8f9fb;
    --text-main: #0E1B2E;
    --text-muted: #5c6c80;
    --brand-deep: #0E1B2E;
    --brand-secondary: #163150;
    --accent-blue: #2A6DF5;
    --accent-hover: #1e58d6;
    --gold-main: #D4AF37;
    --gold-light: #FFF8B0;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(14, 27, 46, 0.06);
    --card-bg: #ffffff;
    --card-shadow: 0 16px 32px rgba(14, 27, 46, 0.04);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --header-height: 64px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

body.consult-open {
    overflow: hidden;
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 28px);
}

a,
button {
    font: inherit;
}

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

button {
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
}

svg {
    display: block;
}

:focus-visible {
    outline: 3px solid rgba(42, 109, 245, 0.28);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 300;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--brand-deep);
    color: #ffffff;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.brand-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--brand-deep);
}

p {
    margin: 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-deep) 0%, #3a4a63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    display: grid;
    gap: 16px;
}

.section-header--center {
    text-align: center;
}

.section-title {
    font-size: 40px;
}

.section-title--light {
    color: #ffffff;
}

.section-lead,
.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.6);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 28px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--brand-deep);
    color: #ffffff;
    border: 1px solid var(--brand-deep);
}

.btn-primary:hover {
    background-color: var(--brand-secondary);
    box-shadow: 0 8px 20px rgba(14, 27, 46, 0.15);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-light) 50%, var(--gold-main) 100%);
    color: var(--brand-deep);
    border: 1px solid var(--gold-main);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FFDF00 0%, #FFFFFF 50%, #FFDF00 100%);
    border-color: #FFDF00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--brand-deep);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-deep);
    padding: 14px 0;
    font-weight: 500;
}

.btn-secondary:hover {
    color: var(--accent-blue);
}

.btn[disabled] {
    cursor: not-allowed;
    opacity: 0.62;
    transform: none !important;
    box-shadow: none !important;
}

.svg-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    transition: var(--transition-smooth);
}

.site-nav.scrolled {
    background: rgba(248, 249, 251, 0.9);
    border-bottom: 1px solid rgba(14, 27, 46, 0.06);
}

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

.logo {
    font-weight: 700;
    font-size: 18px;
    color: var(--brand-deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-cta {
    background: transparent;
    background-image: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-light) 50%, var(--gold-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--gold-main);
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: none;
}

.nav-cta:hover {
    background-image: linear-gradient(135deg, #FFDF00 0%, #FFFFFF 50%, #FFDF00 100%);
    transform: translateY(-1px);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--brand-deep);
}

.mobile-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-icon--close {
    display: none;
}

.mobile-menu-btn.is-open .mobile-menu-icon--menu {
    display: none;
}

.mobile-menu-btn.is-open .mobile-menu-icon--close {
    display: flex;
}

.mobile-nav-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.94);
    z-index: 99;
    display: flex;
    justify-content: center;
    padding: 40px 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-panel {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-panel a {
    font-size: 18px;
    color: var(--brand-deep);
    text-decoration: none;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-nav-cta {
    color: var(--gold-main) !important;
    font-weight: 700 !important;
}

.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-tags {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-tags span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 300px;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid var(--glass-border);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.matrix-nodes {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.matrix-nodes::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(14, 27, 46, 0.1);
    z-index: 0;
}

.matrix-nodes::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -10%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    z-index: 0;
    transform: translateY(-50%);
    animation: dataStream 3.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.ui-node {
    width: 56px;
    height: 56px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: var(--brand-secondary);
    box-shadow: 0 4px 12px rgba(14, 27, 46, 0.03);
    animation: floatNode 4s ease-in-out infinite;
}

.ui-node:nth-child(1) {
    animation-delay: 0s;
}

.ui-node:nth-child(2) {
    animation-delay: 0.8s;
}

.ui-node:nth-child(4) {
    animation-delay: 1.6s;
}

.ui-node:nth-child(5) {
    animation-delay: 2.4s;
}

.ui-node.core {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    border: 1px solid rgba(42, 109, 245, 0.3);
    color: var(--accent-blue);
    box-shadow: 0 8px 24px rgba(42, 109, 245, 0.1);
    animation: corePulseGlow 3s ease-in-out infinite;
    z-index: 2;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.problem-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.problem-card:hover,
.bento-card:hover,
.blueprint-layer:hover,
.gov-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(14, 27, 46, 0.06);
    border-color: rgba(14, 27, 46, 0.1);
}

.problem-card h3 {
    font-size: 20px;
    color: var(--brand-deep);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.problem-card h3::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 20px;
    background: var(--text-muted);
    border-radius: 4px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.span-2,
.span-3 {
    min-width: 0;
}

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

.span-3 {
    grid-column: span 3;
}

.bento-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    z-index: 2;
}

.bento-card p {
    font-size: 15px;
    color: var(--text-muted);
    z-index: 2;
    max-width: 85%;
}

.bento-icon-container {
    width: 48px;
    height: 48px;
    background: rgba(42, 109, 245, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    margin-bottom: 24px;
    z-index: 2;
}

.bento-card-alt {
    background: var(--bg-light);
}

.bento-icon-container-alt {
    background: rgba(14, 27, 46, 0.05);
    color: var(--brand-deep);
}

.bento-ui-mockup {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 220px;
    height: 160px;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: -10px -10px 30px rgba(14, 27, 46, 0.03);
    z-index: 1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mockup-toolbar,
.ui-mockup-header {
    height: 24px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 4px;
    border-bottom: 1px solid var(--glass-border);
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mock-search-area {
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-search-box {
    border: 1px solid rgba(42, 109, 245, 0.3);
    border-radius: 6px;
    padding: 6px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-search-text {
    width: 120px;
    overflow: hidden;
}

.typing-text {
    width: 100%;
    white-space: nowrap;
    font-size: 9px;
    color: var(--brand-deep);
    font-weight: 600;
    animation: typeText 3s steps(20) infinite;
}

.mock-result-card {
    background: #ffffff;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    animation: popupCard 3s infinite;
}

.mock-line {
    height: 4px;
    border-radius: 2px;
    background: #cbd5e1;
    margin-bottom: 6px;
}

.mock-line:last-child {
    margin-bottom: 0;
}

.line-40 {
    width: 40%;
}

.line-50 {
    width: 50%;
}

.line-60 {
    width: 60%;
}

.line-70 {
    width: 70%;
}

.line-75 {
    width: 75%;
}

.line-80 {
    width: 80%;
}

.line-85 {
    width: 85%;
}

.line-90 {
    width: 90%;
}

.line-100 {
    width: 100%;
}

.line-brand {
    background: var(--brand-deep);
}

.line-accent {
    background: var(--accent-blue);
}

.line-accent-soft {
    background: rgba(42, 109, 245, 0.3);
}

.mock-memory-area {
    padding: 16px;
    position: relative;
    height: 100%;
}

.mock-document {
    width: 48px;
    height: 60px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    animation: fileDrop 4s infinite;
}

.mock-document-head {
    background: #e2e8f0;
    height: 12px;
    width: 100%;
    margin-bottom: 6px;
}

.mock-document-line {
    height: 3px;
    background: #f1f5f9;
    border-radius: 2px;
    margin: 4px 6px;
}

.mock-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(180deg, transparent, rgba(42, 109, 245, 0.2), transparent);
    border-bottom: 1px solid var(--accent-blue);
    animation: fileScan 4s infinite;
}

.mock-tag {
    position: absolute;
    top: 60px;
    right: 40px;
    background: var(--brand-deep);
    color: #ffffff;
    font-size: 8px;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 700;
    animation: tagPop 4s infinite;
}

.mock-split {
    flex-direction: row;
    align-items: stretch;
}

.mock-split-pane {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
}

.mock-split-pane--left {
    flex: 1;
    border-right: 1px solid var(--glass-border);
}

.mock-split-pane--right {
    flex: 1.5;
    background: #ffffff;
}

.anim-slide-up {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.anim-infinite {
    animation-iteration-count: infinite;
    animation-duration: 2s;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.block-8 {
    height: 8px;
}

.mock-kanban {
    display: flex;
    gap: 8px;
    padding: 12px;
    height: 100%;
}

.mock-kanban-col {
    flex: 1;
    background: #f1f5f9;
    border-radius: 4px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.mock-kanban-col--active .mock-kanban-card--move {
    position: absolute;
    top: 16px;
    left: 6px;
    right: 6px;
    animation: kanbanCardMove 3s infinite;
}

.mock-kanban-col--alert {
    animation: kanbanAlert 3s infinite;
}

.mock-kanban-card {
    background: #ffffff;
    height: 16px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mock-dashboard {
    justify-content: flex-end;
    padding: 16px;
}

.mock-dashboard-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 4px;
}

.bar {
    width: 16px;
    background: #cbd5e1;
    border-radius: 2px 2px 0 0;
}

.bar-30 {
    height: 30%;
}

.bar-45 {
    height: 45%;
}

.bar-50 {
    height: 50%;
}

.bar-accent {
    height: 80%;
    background: var(--brand-deep);
    animation: dashGrow 3s infinite ease-in-out;
}

.mock-dashboard-status {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 8px;
    font-weight: 700;
    color: var(--text-muted);
}

.status-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #27c93f;
}

.gold-text {
    color: var(--gold-main);
}

.blueprint-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.blueprint-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    z-index: 1;
}

.blueprint-stack::before {
    content: "";
    position: absolute;
    left: 59px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(14, 27, 46, 0.08), transparent);
    z-index: 0;
}

.blueprint-layer {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 8px 24px rgba(14, 27, 46, 0.02);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.blueprint-layer::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--brand-deep);
    opacity: 0.8;
}

.layer-l4::after {
    background: var(--gold-main);
}

.layer-l3::after,
.layer-l2::after {
    background: var(--accent-blue);
}

.layer-badge {
    flex: 0 0 56px;
    height: 56px;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.layer-l4 .layer-badge {
    background: rgba(212, 175, 55, 0.1);
    color: #b8860b;
    border-color: rgba(212, 175, 55, 0.3);
}

.layer-l3 .layer-badge,
.layer-l2 .layer-badge {
    background: rgba(42, 109, 245, 0.1);
    color: var(--accent-blue);
    border-color: rgba(42, 109, 245, 0.2);
}

.layer-header {
    flex: 0 0 220px;
}

.layer-header h3 {
    font-size: 22px;
    color: var(--brand-deep);
    margin-bottom: 6px;
}

.layer-header p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.layer-l4 .layer-header p {
    color: #b8860b;
}

.layer-l3 .layer-header p,
.layer-l2 .layer-header p {
    color: var(--accent-blue);
}

.layer-body {
    flex: 1;
    padding-left: 32px;
    border-left: 1px solid var(--glass-border);
}

.layer-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.layer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.layer-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-deep);
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    transition: all 0.2s ease;
}

.layer-tag:hover {
    background: rgba(14, 27, 46, 0.04);
}

.gold-tag {
    background: rgba(212, 175, 55, 0.1) !important;
    color: #b8860b !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.workflow-section {
    background: #ffffff;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 80px;
    padding-bottom: 40px;
}

.timeline-track {
    position: absolute;
    top: 32px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(14, 27, 46, 0.05);
    z-index: 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--gold-main));
    width: 0%;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1), height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 18%;
}

.step-visual-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-muted);
    box-shadow: 0 4px 12px rgba(14, 27, 46, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.timeline-step.active .step-visual-box {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: 0 8px 24px rgba(42, 109, 245, 0.15);
    transform: translateY(-4px);
}

.step-icon-inner {
    transition: all 0.3s ease;
}

.timeline-step.active .step-icon-spin {
    animation: spinGear 3s linear infinite;
}

.timeline-step.active .step-icon-pulse {
    animation: pulseCheck 2s infinite;
}

.timeline-step.active .step-icon-cursor {
    animation: cursorClick 2.5s infinite;
}

.step-icon-cursor {
    position: absolute;
    top: 2px;
    left: 2px;
}

.timeline-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.timeline-step p {
    font-size: 14px;
    color: var(--text-muted);
}

.governance-section {
    background-color: var(--brand-deep);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.governance-container {
    position: relative;
    z-index: 2;
}

.gov-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.gov-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.gov-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.gov-ui-panel {
    height: 120px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gov-ui-panel-light {
    background: rgba(255, 255, 255, 0.05);
}

.gov-ui-panel-terminal {
    background: #000000;
    justify-content: flex-start;
    padding: 12px;
    align-items: flex-start;
}

.gov-approval-card {
    background: var(--brand-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px;
    width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.gov-approval-title {
    font-size: 9px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
}

.gov-approval-actions {
    display: flex;
    gap: 6px;
}

.gov-approval-actions div {
    flex: 1;
    height: 16px;
    border-radius: 3px;
}

.gov-approval-actions div:first-child {
    background: rgba(255, 255, 255, 0.1);
}

.gov-approval-actions div:last-child {
    background: var(--accent-blue);
}

.gov-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #ffffff;
}

.gov-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.gov-terminal-log {
    font-family: monospace;
    font-size: 9px;
    color: #27c93f;
    animation: terminalScroll 6s infinite linear;
}

.gov-terminal-log span {
    display: block;
}

.gov-terminal-highlight {
    color: #4FD1FF;
}

.scenarios-showcase {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.scenario-tabs {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scenario-tab-btn {
    text-align: left;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scenario-tab-btn svg {
    width: 18px;
    height: 18px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.scenario-tab-btn.active,
.scenario-tab-btn[aria-selected="true"] {
    background: rgba(42, 109, 245, 0.05);
    color: var(--accent-blue);
    border-color: rgba(42, 109, 245, 0.2);
}

.scenario-tab-btn.active svg,
.scenario-tab-btn[aria-selected="true"] svg {
    opacity: 1;
    transform: translateX(0);
}

.scenario-tab-btn:hover:not(.active) {
    background: rgba(14, 27, 46, 0.02);
    color: var(--brand-deep);
}

.scenario-panes {
    flex: 1;
    position: relative;
}

.scenario-pane {
    display: none;
    animation: fadeInPane 0.4s ease forwards;
}

.scenario-pane.active {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.pane-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pane-text h3 {
    font-size: 28px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.scenario-content {
    font-size: 15px;
    color: var(--text-muted);
}

.scenario-content .label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-deep);
    margin-top: 20px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pane-visual {
    flex: 0 0 340px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(14, 27, 46, 0.05);
}

.ui-mockup-header {
    height: 32px;
    padding: 0 12px;
    gap: 6px;
}

.ui-mac-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ui-mac-dot.red {
    background: #ff5f56;
}

.ui-mac-dot.yellow {
    background: #ffbd2e;
}

.ui-mac-dot.green {
    background: #27c93f;
}

.ui-mockup-title {
    margin-left: auto;
    font-size: 11px;
    color: #86868b;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.ui-mockup-body {
    flex: 1;
    padding: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ui-mockup-body--meeting {
    flex-direction: row;
    gap: 12px;
    background: #f8f9fb;
}

.ui-mockup-body--stack {
    background: #ffffff;
    gap: 12px;
}

.mock-note-card {
    flex: 1;
    background: #ffffff;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.mock-overlay-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(180deg, transparent, rgba(42, 109, 245, 0.1), transparent);
    border-bottom: 1px solid rgba(42, 109, 245, 0.5);
    animation: scanLine 2s infinite linear;
}

.meeting-task-list {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meeting-task-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 4px;
}

.meeting-task-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border-left: 2px solid #e2e8f0;
}

.meeting-task-card--primary {
    border-left-color: var(--accent-blue);
}

.task-check {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 1px solid #cbd5e1;
}

.task-check--filled {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.ai-progress-box {
    background: rgba(42, 109, 245, 0.05);
    border: 1px solid rgba(42, 109, 245, 0.2);
    border-radius: 8px;
    padding: 12px;
    position: relative;
    margin: 8px 0;
}

.ai-progress-head {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-blue);
}

.ai-progress-track {
    width: 100%;
    height: 2px;
    background: rgba(42, 109, 245, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.ai-progress-bar {
    width: 50%;
    height: 100%;
    background: var(--accent-blue);
    animation: scanLine 1.5s infinite ease-in-out alternate;
}

.chat-layout {
    background: #f8f9fb;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 11px;
    max-width: 85%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.chat-bubble--user {
    align-self: flex-end;
    background: var(--brand-deep);
    color: #ffffff;
    border-radius: 12px 12px 0 12px;
}

.chat-bubble--assistant {
    align-self: flex-start;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    border-radius: 12px 12px 12px 0;
}

.citation-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(42, 109, 245, 0.08);
    color: var(--accent-blue);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    margin-top: 8px;
}

.funnel-layout {
    background: #f4f5f7;
    flex-direction: row;
    gap: 8px;
    padding: 12px;
}

.funnel-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.funnel-head {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
}

.funnel-head--active {
    color: var(--text-main);
}

.funnel-card {
    background: #ffffff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.funnel-card--highlight {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--gold-main);
}

.funnel-tags {
    display: flex;
    gap: 4px;
    margin: 8px 0;
}

.funnel-tag {
    background: #f1f5f9;
    color: var(--text-muted);
    font-size: 8px;
    padding: 2px 4px;
    border-radius: 3px;
}

.funnel-tag--gold {
    background: rgba(212, 175, 55, 0.15);
    color: #b8860b;
    font-weight: 700;
}

.funnel-insight {
    background: rgba(42, 109, 245, 0.05);
    border: 1px dashed rgba(42, 109, 245, 0.2);
    border-radius: 4px;
    padding: 6px;
    margin-top: 8px;
}

.funnel-insight-head {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
    font-size: 8px;
    color: var(--accent-blue);
    font-weight: 600;
}

.intel-chart {
    flex: 1;
    background: #f8f9fb;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    padding: 12px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.intel-bar {
    flex: 1;
    background: rgba(42, 109, 245, 0.2);
    height: 30%;
    border-radius: 4px 4px 0 0;
}

.intel-bar:nth-child(2) {
    background: rgba(42, 109, 245, 0.4);
    height: 50%;
}

.intel-bar:nth-child(3) {
    background: rgba(42, 109, 245, 0.6);
    height: 40%;
}

.intel-bar--active {
    background: var(--accent-blue);
    height: 80%;
    position: relative;
}

.intel-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-deep);
    color: #ffffff;
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.intel-summary-card {
    background: #ffffff;
    border: 1px solid rgba(42, 109, 245, 0.2);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(42, 109, 245, 0.05);
}

.intel-summary-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-deep);
}

.intel-summary-icon {
    width: 16px;
    height: 16px;
    background: var(--accent-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supplier-table-head,
.supplier-row {
    display: flex;
    font-size: 9px;
    font-weight: 700;
}

.supplier-table-head {
    background: #f8f9fb;
    padding: 8px;
    border-radius: 4px;
    color: var(--text-muted);
}

.supplier-table-head span,
.supplier-row span {
    flex: 1;
}

.supplier-table-head span:nth-child(2),
.supplier-row span:nth-child(2) {
    text-align: center;
}

.supplier-table-head span:nth-child(3),
.supplier-row span:nth-child(3) {
    text-align: right;
}

.supplier-row {
    padding: 8px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 10px;
    color: var(--brand-deep);
    font-weight: 500;
}

.supplier-row--alert {
    background: rgba(255, 95, 86, 0.05);
    border: 1px solid rgba(255, 95, 86, 0.2);
    border-radius: 6px;
    position: relative;
    margin-top: 4px;
}

.supplier-name-alert {
    display: flex;
    align-items: center;
    gap: 4px;
}

.supplier-dot {
    width: 6px;
    height: 6px;
    background: #ff5f56;
    border-radius: 50%;
}

.price-alert {
    color: #ff5f56;
    font-weight: 700;
}

.supplier-tooltip {
    position: absolute;
    top: -20px;
    right: 10px;
    background: var(--brand-deep);
    color: #ffffff;
    font-size: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
}

.cta-section {
    text-align: center;
    padding: 140px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    border-top: 1px solid var(--glass-border);
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
}

.cta-copy {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-copy strong {
    color: var(--brand-deep);
}

.cta-button {
    font-size: 16px;
    padding: 16px 40px;
}

.cta-footnote {
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
}

footer {
    background-color: #ffffff;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 16px;
    justify-content: center;
}

.footer-copy {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.footer-legal {
    border-top: 1px solid var(--glass-border);
    width: 100%;
    padding-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
}

.consult-modal {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.consult-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.consult-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 27, 46, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.consult-modal__dialog {
    position: relative;
    width: min(960px, 100%);
    max-height: calc(100vh - 64px);
    overflow: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.98));
    border: 1px solid rgba(14, 27, 46, 0.08);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(14, 27, 46, 0.18);
    padding: 40px;
}

.consult-modal__dialog::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 140px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(180deg, rgba(42, 109, 245, 0.06), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.consult-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-deep);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(14, 27, 46, 0.08);
    z-index: 2;
    transition: var(--transition-smooth);
}

.consult-modal__close:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(14, 27, 46, 0.08);
}

.consult-modal__intro {
    display: grid;
    gap: 12px;
    margin-top: -8px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.consult-modal__intro h2 {
    font-size: clamp(28px, 4vw, 40px);
}

.consult-modal__intro p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
}

.consult-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(42, 109, 245, 0.06);
    color: var(--accent-blue);
    font-size: 13px;
    font-weight: 700;
}

.consult-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.consult-trust__item {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(14, 27, 46, 0.06);
    box-shadow: 0 10px 24px rgba(14, 27, 46, 0.04);
}

.consult-trust__item strong {
    display: block;
    font-size: 14px;
    color: var(--brand-deep);
    margin-bottom: 4px;
}

.consult-trust__item span {
    display: block;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-muted);
}

.consult-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.consult-progress__step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.84);
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.consult-progress__step span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: rgba(14, 27, 46, 0.06);
    color: var(--brand-deep);
}

.consult-progress__step strong {
    font-size: 15px;
}

.consult-progress__step.is-active {
    border-color: rgba(42, 109, 245, 0.22);
    background: rgba(42, 109, 245, 0.06);
    color: var(--accent-blue);
}

.consult-progress__step.is-active span {
    background: var(--accent-blue);
    color: #ffffff;
}

.consult-progress__step.is-complete {
    border-color: rgba(14, 27, 46, 0.12);
    color: var(--brand-deep);
}

.consult-progress__step.is-complete span {
    background: var(--brand-deep);
    color: #ffffff;
}

.consult-form {
    display: grid;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.consult-panel {
    display: none;
}

.consult-panel.is-active {
    display: block;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(14, 27, 46, 0.06);
    box-shadow: 0 16px 40px rgba(14, 27, 46, 0.04);
}

.consult-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.consult-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.consult-panel__header h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.consult-panel__header p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 620px;
}

.consult-panel__kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-blue);
}

.consult-panel__estimate {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 27, 46, 0.05);
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 700;
}

.consult-grid--nested {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.consult-field {
    display: grid;
    gap: 8px;
}

.consult-field--full {
    grid-column: 1 / -1;
}

.consult-field label,
.consult-scene-pack__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-deep);
}

.required-mark {
    color: var(--accent-blue);
}

.consult-field input,
.consult-field select,
.consult-field textarea {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(14, 27, 46, 0.1);
    background: #ffffff;
    color: var(--brand-deep);
    padding: 0 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consult-field textarea {
    min-height: 120px;
    padding: 14px;
    resize: vertical;
}

.consult-field input:focus,
.consult-field select:focus,
.consult-field textarea:focus {
    outline: none;
    border-color: rgba(42, 109, 245, 0.32);
    box-shadow: 0 0 0 4px rgba(42, 109, 245, 0.08);
}

.consult-field input[type="file"] {
    min-height: 56px;
    padding: 12px 14px;
}

.consult-field__hint {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.consult-field__meta,
.consult-panel__hint {
    font-size: 13px;
    color: var(--text-muted);
}

.consult-panel__hint {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(14, 27, 46, 0.03);
    border: 1px solid rgba(14, 27, 46, 0.05);
}

.consult-scene-brief {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(14, 27, 46, 0.98) 0%, rgba(22, 49, 80, 0.96) 100%);
    margin-bottom: 20px;
}

.consult-scene-brief__badge {
    flex: 0 0 auto;
    min-width: 82px;
    padding: 10px 12px;
    border-radius: 999px;
    text-align: center;
    background: rgba(212, 175, 55, 0.16);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
}

.consult-scene-brief h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 6px;
}

.consult-scene-brief p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.consult-check-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.consult-check-grid--compact {
    gap: 8px;
}

.consult-check {
    position: relative;
}

.consult-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.consult-check span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(14, 27, 46, 0.08);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.consult-check input:checked + span {
    color: var(--accent-blue);
    border-color: rgba(42, 109, 245, 0.22);
    background: rgba(42, 109, 245, 0.07);
    box-shadow: 0 8px 18px rgba(42, 109, 245, 0.08);
}

.consult-scene-pack {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(14, 27, 46, 0.06);
}

.consult-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.consult-security {
    padding: 18px;
    border-radius: 18px;
    background: rgba(14, 27, 46, 0.03);
    border: 1px solid rgba(14, 27, 46, 0.06);
}

.consult-security__label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-deep);
}

.consult-captcha {
    min-height: 66px;
    display: flex;
    align-items: center;
}

.consult-captcha > div {
    max-width: 100%;
}

.consult-privacy-note {
    margin-top: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(14, 27, 46, 0.04);
    border: 1px solid rgba(14, 27, 46, 0.05);
}

.consult-privacy-note strong {
    flex: 0 0 auto;
    color: var(--brand-deep);
    font-size: 13px;
}

.consult-privacy-note span {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.consult-form-status {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(42, 109, 245, 0.12);
    background: rgba(42, 109, 245, 0.06);
    color: var(--brand-deep);
    font-size: 13px;
    line-height: 1.6;
}

.consult-form-status.is-error {
    border-color: rgba(229, 62, 62, 0.16);
    background: rgba(229, 62, 62, 0.06);
    color: #8b1f1f;
}

.consult-form-status.is-success {
    border-color: rgba(39, 201, 63, 0.18);
    background: rgba(39, 201, 63, 0.08);
    color: #1d6f2b;
}

.consult-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: sticky;
    bottom: -40px;
    padding-top: 18px;
    background: linear-gradient(180deg, rgba(248, 249, 251, 0), rgba(248, 249, 251, 0.96) 35%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.consult-actions__back {
    padding: 14px 20px;
    border: 1px solid rgba(14, 27, 46, 0.08);
    border-radius: 6px;
    background: #ffffff;
}

.consult-actions__next,
.consult-actions__submit {
    margin-left: auto;
}

.consult-success {
    text-align: center;
    display: grid;
    gap: 18px;
}

.consult-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--brand-secondary) 100%);
    box-shadow: 0 14px 30px rgba(42, 109, 245, 0.2);
}

.consult-success h3 {
    font-size: 28px;
}

.consult-success p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

.consult-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 6px;
}

.consult-summary__item {
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(14, 27, 46, 0.06);
    background: rgba(255, 255, 255, 0.86);
    text-align: left;
}

.consult-summary__item span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.consult-summary__item strong {
    display: block;
    color: var(--brand-deep);
    font-size: 15px;
    line-height: 1.5;
}

.consult-success__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes dataStream {
    0% {
        left: -20%;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes floatNode {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
        box-shadow: 0 12px 20px rgba(14, 27, 46, 0.06);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes corePulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(42, 109, 245, 0.15);
        border-color: rgba(42, 109, 245, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 16px 40px rgba(42, 109, 245, 0.5);
        border-color: rgba(42, 109, 245, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(42, 109, 245, 0.15);
        border-color: rgba(42, 109, 245, 0.3);
    }
}

@keyframes typeText {
    0% {
        width: 0;
    }
    50%,
    100% {
        width: 100%;
    }
}

@keyframes popupCard {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fileDrop {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }
    20%,
    80% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-40px);
        opacity: 0;
    }
}

@keyframes fileScan {
    0%,
    20% {
        top: 0%;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        top: 100%;
        opacity: 1;
    }
    80%,
    100% {
        opacity: 0;
    }
}

@keyframes tagPop {
    0%,
    40% {
        opacity: 0;
        transform: scale(0.8);
    }
    50%,
    80% {
        opacity: 1;
        transform: scale(1);
    }
    90%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes kanbanCardMove {
    0%,
    20% {
        transform: translate(0, 0);
    }
    40%,
    80% {
        transform: translate(75px, -15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes kanbanAlert {
    0%,
    40% {
        background: #e2e8f0;
    }
    50%,
    80% {
        background: #FFDF00;
    }
    100% {
        background: #e2e8f0;
    }
}

@keyframes dashGrow {
    0%,
    20% {
        height: 10%;
    }
    40% {
        height: 40%;
    }
    60% {
        height: 30%;
    }
    80%,
    100% {
        height: 80%;
    }
}

@keyframes spinGear {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseCheck {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
        color: #27c93f;
    }
}

@keyframes cursorClick {
    0% {
        transform: translate(15px, 15px);
    }
    50% {
        transform: translate(0px, 0px);
    }
    60% {
        transform: scale(0.9);
    }
    100% {
        transform: translate(15px, 15px);
    }
}

@keyframes terminalScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes fadeInPane {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scanLine {
    0% {
        top: 0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@media (max-width: 1000px) {
    .blueprint-layer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .layer-header {
        flex: auto;
        width: 100%;
    }

    .layer-body {
        padding-left: 0;
        border-left: none;
    }

    .scenarios-showcase {
        flex-direction: column;
        padding: 24px;
    }

    .scenario-tabs {
        flex: auto;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 12px;
        gap: 8px;
    }

    .scenario-tab-btn {
        white-space: nowrap;
        padding: 12px 16px;
    }

    .scenario-tab-btn svg {
        display: none;
    }

    .scenario-pane.active {
        flex-direction: column;
    }

    .pane-visual {
        height: 300px;
        flex: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .span-3,
    .span-2 {
        grid-column: span 6;
    }

    .timeline-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        margin-left: 16px;
    }

    .timeline-track {
        width: 1px;
        height: 100%;
        top: 0;
        left: 32px;
        right: auto;
    }

    .timeline-progress {
        width: 100%;
        height: 0%;
        top: 0;
        left: 0;
    }

    .timeline-step {
        width: 100%;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 24px;
    }

    .step-visual-box {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .gov-grid {
        grid-template-columns: 1fr;
    }

    .consult-modal {
        padding: 16px;
    }

    .consult-modal__dialog {
        padding: 24px 20px;
        max-height: calc(100vh - 32px);
    }

    .consult-modal__close {
        top: 16px;
        right: 16px;
    }

    .consult-trust {
        grid-template-columns: 1fr;
    }

    .consult-progress {
        grid-template-columns: 1fr;
    }

    .consult-grid,
    .consult-grid--nested,
    .consult-summary {
        grid-template-columns: 1fr;
    }

    .consult-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .consult-actions__next,
    .consult-actions__submit,
    .consult-actions__back {
        margin-left: 0;
        width: 100%;
    }

    .consult-panel.is-active {
        padding: 18px;
    }

    .consult-panel__header {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 96px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .hero {
        padding-top: 128px;
    }

    .hero-tags {
        gap: 12px;
    }

    .bento-grid {
        gap: 20px;
    }

    .bento-card {
        padding: 32px;
    }

    .bento-card p {
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .consult-scene-brief {
        flex-direction: column;
    }

    .consult-check-grid {
        gap: 8px;
    }

    .consult-check span {
        width: 100%;
        justify-content: center;
    }

    .consult-privacy-note {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .mobile-nav-overlay {
        transition: none;
    }

    .consult-modal {
        transition: none;
    }
}
