@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
.section-title,
.cta h2 {
    font-family: Georgia, serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
}

/* ── Built word: letter-by-letter blink-in on load ── */
.built-word {
    position: relative;
    display: inline-block;
}

.built-letter {
    display: inline-block;
    opacity: 0;
    animation:
        letterBlinkIn 0.15s ease-out forwards,
        builtLetterFlicker 12s ease-in-out infinite;
}

@keyframes letterBlinkIn {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes builtLetterFlicker {
    0%   { text-shadow: none; }
    8%   { text-shadow: none; }
    20%  { text-shadow: 0 0 20px rgba(79,140,255,0.25), 0 0 60px rgba(79,140,255,0.10); }
    22%  { text-shadow: none; }
    24%  { text-shadow: 0 0 20px rgba(79,140,255,0.22), 0 0 60px rgba(79,140,255,0.09); }
    40%  { text-shadow: 0 0 40px rgba(79,140,255,0.35), 0 0 100px rgba(79,140,255,0.12); }
    60%  { text-shadow: 0 0 50px rgba(79,140,255,0.40), 0 0 120px rgba(79,140,255,0.14); }
    62%  { text-shadow: none; }
    64%  { text-shadow: 0 0 45px rgba(79,140,255,0.38), 0 0 110px rgba(79,140,255,0.13); }
    80%  { text-shadow: 0 0 30px rgba(79,140,255,0.25), 0 0 80px rgba(79,140,255,0.09); }
    95%  { text-shadow: none; }
    100% { text-shadow: none; }
}

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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #4f8cff;
    --accent-secondary: #7c5cfc;
    --accent-glow: rgba(79, 140, 255, 0.15);
    --border: #2a2a2a;
    --gradient-1: linear-gradient(135deg, #4f8cff 0%, #7c5cfc 100%);
    --gradient-2: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 14px 48px;
    background: rgba(10, 10, 10, 0.95);
}

.nav-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #e0e0e0;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--text-primary);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

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

.nav-login {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

.nav-cta {
    padding: 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--text-primary);
    color: var(--bg-primary) !important;
}

/* ===== HAMBURGER TOGGLE ===== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-toggle:hover span {
    background: var(--text-primary);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== SR-ONLY UTILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 30% 20%,
            rgba(79, 140, 255, 0.08) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 70% 80%,
            rgba(124, 92, 252, 0.06) 0%,
            transparent 60%
        ),
        var(--bg-primary);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    mask-image: radial-gradient(
        ellipse at center,
        black 30%,
        transparent 80%
    );
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(0%) brightness(1);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.4) 60%,
        var(--bg-primary) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #39ff14;
    box-shadow: 0 0 6px #39ff14, 0 0 12px rgba(57,255,20,0.5);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 6px #39ff14, 0 0 14px rgba(57,255,20,0.5);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 3px #39ff14, 0 0 6px rgba(57,255,20,0.3);
    }
}

.hero-prefix {
    display: inline-block;
    min-width: 1.5em;
    text-align: right;
    margin-right: -0.1em;
}

.hero h1 {
    font-size: clamp(62px, 9vw, 140px);
    font-family: Georgia, serif !important;
    font-weight: normal !important;
    line-height: 0.93;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #f5f0e8 0%, #d4c4a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 680px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    margin-top: 36px;
    padding: 16px 44px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 45px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.10);
    animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 45px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.10); }
    50% { box-shadow: 0 0 55px rgba(255, 255, 255, 0.30), 0 0 120px rgba(255, 255, 255, 0.12); }
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.35), 0 0 140px rgba(255, 255, 255, 0.14);
    animation: none;
}

/* ===== SECTION SHARED ===== */
section {
    padding: 120px 48px;
    position: relative;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
}

/* ===== ROTATING WORD ===== */
.rotating-word-wrapper {
    display: inline-block;
    position: relative;
    vertical-align: bottom;
    overflow: hidden;
    padding-bottom: 0.1em;
}

.rotating-word {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.rotating-word.active {
    opacity: 1;
    position: relative;
    transform: translateY(0);
}

.rotating-word.out {
    opacity: 0;
    transform: translateY(-100%);
}

/* ===== PLATFORM OVERVIEW (Ontology-style) ===== */
.platform {
    background: var(--bg-secondary);
}

.platform-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
}

.platform-description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Dashboard Mockup */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 60px;
}

.dash-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dash-card:hover {
    border-color: rgba(79, 140, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dash-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dash-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash-card-badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(79, 140, 255, 0.15);
    color: var(--accent);
    font-weight: 600;
}

.dash-metric {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 4px;
}

.dash-metric-label {
    font-size: 14px;
    color: var(--text-muted);
}

.dash-bar-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.dash-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-bar-label {
    font-size: 12px;
    color: var(--text-secondary);
    min-width: 90px;
}

.dash-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.dash-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--gradient-1);
    width: 0%;
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-bar-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 36px;
    text-align: right;
}

/* Status indicators */
.dash-status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.dash-status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.green {
    background: #22c55e;
}
.status-dot.yellow {
    background: #eab308;
}
.status-dot.red {
    background: #ef4444;
}
.status-dot.blue {
    background: var(--accent);
}

/* Featured card chart simulation */
.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 120px;
    margin-top: 20px;
    padding-top: 12px;
}

.dash-chart-bar {
    flex: 1;
    background: var(--gradient-1);
    border-radius: 3px 3px 0 0;
    opacity: 0.4;
    min-height: 4px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition:
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.6s ease;
}

.dash-chart-bar:hover {
    opacity: 1;
}

.dash-chart-bar.animated {
    transform: scaleY(1);
    opacity: 0.7;
}

/* Mini table */
.dash-table {
    width: 100%;
    margin-top: 16px;
}

.dash-table-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.dash-table-row:last-child {
    border-bottom: none;
}

.dash-table-label {
    color: var(--text-secondary);
}

.dash-table-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* ===== CAPABILITIES TABS ===== */
.capabilities {
    background: var(--bg-primary);
}

.cap-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 48px 0;
}

.cap-tab {
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
}

.cap-tab:hover,
.cap-tab.active {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.cap-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    animation: fadeIn 0.4s ease;
}

.cap-content.active {
    display: grid;
}

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

.cap-text h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.cap-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cap-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cap-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.cap-feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(79, 140, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.cap-feature-icon::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.cap-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.cap-visual-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.cap-visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}

.cap-visual-dot:nth-child(1) {
    background: #ef4444;
}
.cap-visual-dot:nth-child(2) {
    background: #eab308;
}
.cap-visual-dot:nth-child(3) {
    background: #22c55e;
}

/* ===== IMPACT / METRICS ===== */
.impact {
    background: var(--bg-secondary);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 64px;
    border: 1px solid var(--border);
}

.impact-card {
    background: var(--bg-secondary);
    padding: 48px 36px;
    transition: background 0.3s;
}

.impact-card:hover {
    background: var(--bg-card);
}

.impact-number {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -3px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.impact-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.impact-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@property --resolved-border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.resolved-callout {
    margin-top: 64px;
    position: relative;
}

.resolved-callout-glow {
    position: absolute;
    inset: -40px;
    border-radius: 32px;
    background: radial-gradient(ellipse at center, rgba(79, 140, 255, 0.12) 0%, rgba(124, 92, 252, 0.06) 40%, transparent 70%);
    pointer-events: none;
    animation: resolvedGlowPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes resolvedGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
}

.resolved-callout-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 56px;
    border-radius: 20px;
    background: rgba(79, 140, 255, 0.03);
    border: 1px solid transparent;
    background-clip: padding-box;
    text-align: center;
}

/* Animated gradient border */
.resolved-callout-inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: conic-gradient(from var(--resolved-border-angle), var(--accent), #22c55e, var(--accent-secondary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: resolvedBorderSpin 4s linear infinite;
    pointer-events: none;
}

@keyframes resolvedBorderSpin {
    to { --resolved-border-angle: 360deg; }
}

.resolved-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.resolved-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resolved-stat-number {
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(79, 140, 255, 0.4));
}

.resolved-stat-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.resolved-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    flex-shrink: 0;
}

.resolved-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-top: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-tracker {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.join-us-link {
    color: var(--accent);
    text-decoration: none;
    font-size: inherit;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}

.join-us-link:hover {
    color: var(--text-primary);
}

.coverage-tracker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #39ff14;
    flex-shrink: 0;
}

.coverage-ticker {
    font-variant-numeric: tabular-nums;
    color: var(--text-primary);
    transition: opacity 0.3s;
}

/* ===== USE CASES (Sticky scroll) ===== */
.use-cases {
    background: var(--bg-primary);
}

.use-cases-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.use-cases-left {
    position: sticky;
    top: 140px;
    align-self: start;
}

.use-cases-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: rgba(79, 140, 255, 0.3);
    box-shadow: 0 0 60px rgba(79, 140, 255, 0.05);
}

.use-case-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.use-case-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.use-case-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.use-case-stats {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.use-case-stat-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.use-case-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== CLIENT LOGOS ===== */
.ira-banner {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 48px;
}

.ira-banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ira-banner-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ira-banner-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.ira-banner-cta {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.ira-banner-cta:hover {
    opacity: 0.8;
}

/* ===== ARCHITECTURE DIAGRAM ===== */
.architecture {
    background: var(--bg-secondary);
    overflow: hidden;
}

.arch-visual {
    margin-top: 80px;
    position: relative;
}

.arch-layers {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.arch-layer {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.arch-layer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s;
}

.arch-layer:hover::before {
    opacity: 1;
}

.arch-layer:hover {
    border-color: rgba(79, 140, 255, 0.2);
    background: var(--bg-card-hover);
}

.arch-layer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.arch-layer-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(79, 140, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.arch-layer-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.arch-layer-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 2px;
}

.arch-layer-tags {
    display: flex;
    gap: 8px;
}

.arch-tag {
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.arch-connector {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.arch-connector-line {
    width: 2px;
    height: 24px;
    background: linear-gradient(
        to bottom,
        var(--accent),
        transparent
    );
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(79, 140, 255, 0.3);
    transform: translateY(-2px);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== CTA / CONTACT ===== */
.cta {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(79, 140, 255, 0.08) 0%,
        transparent 70%
    );
}

.cta-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-content {
    position: sticky;
    top: 140px;
}

.cta h2 {
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.cta p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 14px 32px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary {
    padding: 16px 40px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* ===== FOOTER ===== */
footer {
    padding: 64px 48px 32px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 100px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered reveal for grid children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) {
    transition-delay: 0.05s;
}
.reveal-stagger.visible > *:nth-child(2) {
    transition-delay: 0.1s;
}
.reveal-stagger.visible > *:nth-child(3) {
    transition-delay: 0.15s;
}
.reveal-stagger.visible > *:nth-child(4) {
    transition-delay: 0.2s;
}
.reveal-stagger.visible > *:nth-child(5) {
    transition-delay: 0.25s;
}
.reveal-stagger.visible > *:nth-child(6) {
    transition-delay: 0.3s;
}
.reveal-stagger.visible > *:nth-child(7) {
    transition-delay: 0.35s;
}
.reveal-stagger.visible > *:nth-child(8) {
    transition-delay: 0.4s;
}

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Live pulse for badges */
.dash-card-badge {
    position: relative;
}

.dash-card-badge::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    margin-right: 6px;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

/* Subtle glow on featured card */
.dash-card.featured {
    box-shadow: 0 0 80px rgba(79, 140, 255, 0.04);
}

.dash-card.featured:hover {
    box-shadow: 0 0 80px rgba(79, 140, 255, 0.08);
}

/* ===== ANIMATED COMPLIANCE RING ===== */
.compliance-ring-container {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
}

.compliance-ring {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.compliance-ring svg {
    transform: rotate(-90deg);
    width: 90px;
    height: 90px;
}

.compliance-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 6;
}

.compliance-ring-fill {
    fill: none;
    stroke: url(#ringGradient);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.compliance-ring-fill.animated {
    stroke-dashoffset: 13.3;
}

.compliance-ring-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.compliance-ring-labels {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compliance-ring-label-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.compliance-ring-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== HERO FLOATING PARTICLES ===== */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(40px);
    }
}

/* ===== SPARKLINE ===== */
.sparkline-container {
    margin-top: 16px;
    height: 50px;
    position: relative;
    overflow: hidden;
}

.sparkline-svg {
    width: 100%;
    height: 100%;
}

.sparkline-path {
    fill: none;
    stroke: url(#sparklineGrad);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sparkline-path.animated {
    stroke-dashoffset: 0;
}

.sparkline-area {
    opacity: 0;
    transition: opacity 1.5s ease 1.2s;
}

.sparkline-area.animated {
    opacity: 0.15;
}

.sparkline-dot {
    fill: var(--accent);
    r: 3;
    opacity: 0;
    transition: opacity 0.3s ease 3.2s;
}

.sparkline-dot.animated {
    opacity: 1;
    animation: sparkDotPulse 2s infinite;
}

@keyframes sparkDotPulse {
    0%,
    100% {
        r: 3;
    }
    50% {
        r: 5;
    }
}

/* ===== ANIMATED GRADIENT BORDERS ===== */
.dash-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(79, 140, 255, 0.3) 50%,
        transparent 60%
    );
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderShimmer 3s ease infinite;
    pointer-events: none;
}

.dash-card:hover::before {
    opacity: 1;
}

@keyframes borderShimmer {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* ===== ARCHITECTURE ANIMATED CONNECTORS ===== */
.arch-connector-line {
    position: relative;
    overflow: hidden;
}

.arch-connector-line::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: dataFlowDown 2s ease-in-out infinite;
}

@keyframes dataFlowDown {
    0% {
        top: -4px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

/* Architecture layer entrance animation */
.arch-layer {
    opacity: 0;
    transform: translateX(-30px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-layer.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== LIVE DATA TICKER for audit card ===== */
.data-ticker {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.ticker-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-family: "SF Mono", "Fira Code", monospace;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.ticker-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.ticker-timestamp {
    color: var(--accent);
    opacity: 0.6;
}

.ticker-action {
    color: #22c55e;
}

/* ===== NUMBER MORPHING GLOW ===== */
.dash-metric,
.impact-number {
    position: relative;
}

/* ===== USE CASE CARD NUMBER ANIMATION ===== */
.use-case-number {
    position: relative;
    display: inline-block;
}

.use-case-number::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.use-case-card.visible .use-case-number::after {
    transform: scaleX(1);
}

/* ===== HERO TAGLINE ===== */
.hero-tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8dcc8;
    margin-bottom: 24px;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(79, 140, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(79, 140, 255, 0.3) 50%,
        transparent 60%
    );
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderShimmer 3s ease infinite;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(79, 140, 255, 0.1);
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== ORIGIN STORY SECTION ===== */
.origin-story {
    background: var(--bg-secondary);
}

.origin-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.origin-left {
    position: sticky;
    top: 140px;
    align-self: start;
}

.origin-timeline {
    position: relative;
    padding-left: 40px;
}

.origin-timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-secondary), transparent);
}

.origin-chapter {
    position: relative;
    margin-bottom: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
}

.origin-chapter:last-child {
    margin-bottom: 0;
}

.origin-chapter:hover {
    border-color: rgba(79, 140, 255, 0.3);
}

.origin-chapter::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 40px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    z-index: 1;
}

.origin-chapter-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.origin-chapter h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.origin-chapter p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== TEAM SECTION ===== */
.team {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: rgba(79, 140, 255, 0.3);
    transform: translateY(-2px);
}

.team-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(79, 140, 255, 0.1);
    color: var(--accent);
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .platform-header,
    .cap-content.active,
    .use-cases-container,
    .origin-container,
    .cta-layout {
        grid-template-columns: 1fr;
    }

    .cta-content {
        position: relative;
        top: 0;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .origin-left {
        position: relative;
        top: 0;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .dash-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .use-cases-left {
        position: relative;
        top: 0;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 16px 24px;
    }

    .nav-toggle {
        display: block;
    }

    #navbar.menu-open {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        background: #0a0a0a;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    #navbar.menu-open .nav-logo,
    #navbar.menu-open .nav-toggle {
        position: absolute;
        top: 16px;
    }

    #navbar.menu-open .nav-logo {
        left: 24px;
    }

    #navbar.menu-open .nav-toggle {
        right: 24px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        width: 100%;
        flex-grow: 1;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 18px;
        font-weight: 500;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .nav-toggle {
        z-index: 1001;
    }

    section {
        padding: 80px 24px;
    }

    .hero {
        padding: 40px 24px 0;
    }

    .hero-cta {
        padding: 14px 36px;
        font-size: 14px;
        margin-top: 28px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-prefix {
        min-width: auto;
    }

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

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

    .dash-card.featured {
        grid-column: span 1;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .origin-timeline {
        padding-left: 32px;
    }

    .origin-chapter::before {
        left: -32px;
        width: 14px;
        height: 14px;
    }

    .ira-banner {
        padding: 48px 24px;
    }

    .resolved-callout-inner {
        padding: 32px 24px;
    }

    .resolved-stats {
        flex-direction: column;
        gap: 24px;
    }

    .resolved-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

    .resolved-stat-number {
        font-size: clamp(36px, 10vw, 56px);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .coverage-tracker {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .footer-badges {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* ===== CASE STUDY / ARTICLE ===== */
.article-hero {
    max-width: 800px;
    margin: 0 auto;
    padding: 160px 48px 40px;
    position: relative;
}

.article-hero .section-title {
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: -1px;
    line-height: 1.2;
}

.article-hero .section-description {
    margin-top: 16px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px 120px;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 64px 0 20px;
    line-height: 1.1;
}

.article-body h2:first-of-type {
    margin-top: 0;
}

.article-body h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 40px 0 16px;
}

.article-body p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.article-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.article-body ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.article-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.article-body ul li strong {
    color: var(--text-primary);
}

.article-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 0 16px 24px;
    margin: 32px 0;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-secondary);
}

.blockquote-attr {
    font-style: normal;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
    display: inline-block;
}

.article-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
}

.article-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.article-summary-value {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.article-summary-label {
    font-size: 13px;
    color: var(--text-muted);
}

.article-cta-inline {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.article-cta-inline p {
    margin: 0;
    font-size: 16px;
    color: var(--text-secondary);
}

.article-cta-inline .btn-secondary {
    white-space: nowrap;
    padding: 12px 28px;
    font-size: 14px;
    flex-shrink: 0;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 32px;
}

.article-body th,
.article-body td {
    text-align: left;
    padding: 12px 16px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.article-body th {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-body td {
    color: var(--text-secondary);
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin: 32px 0;
}

.article-metric {
    background: var(--bg-primary);
    padding: 24px;
    text-align: center;
}

.article-metric-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.article-metric-label {
    font-size: 13px;
    color: var(--text-muted);
}

.article-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.article-comparison-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}

.article-comparison-col h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.article-comparison-col.after h4 {
    color: var(--accent);
}

.article-comparison-col ul {
    gap: 10px;
}

.article-comparison-col li {
    font-size: 15px;
}

.article-cta {
    margin-top: 64px;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
}

.article-cta p {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 24px;
}

.article-divider {
    height: 1px;
    background: var(--border);
    margin: 64px 0;
}

@media (max-width: 768px) {
    .article-hero {
        padding: 120px 24px 32px;
    }

    .article-body {
        padding: 0 24px 80px;
    }

    .article-body h2 {
        font-size: 26px;
    }

    .article-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .article-comparison {
        grid-template-columns: 1fr;
    }

    .article-summary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .article-cta-inline {
        flex-direction: column;
        text-align: center;
    }
}

/* =============================================
   PRODUCT ARTIFACT STYLES
   Visual product-like UI elements for sections
   ============================================= */

/* ===== SERVICE CARD ARTIFACTS ===== */
.service-artifact {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Status rows (Full-Service card) */
.artifact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: var(--text-muted);
}

.artifact-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.artifact-dot.green { background: #22c55e; }
.artifact-dot.yellow { background: #eab308; }
.artifact-dot.red { background: #ef4444; }

.artifact-label {
    flex: 1;
    color: var(--text-secondary);
}

.artifact-value {
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 11px;
}

.artifact-value.artifact-pass { color: #22c55e; }
.artifact-value.artifact-review { color: #eab308; }
.artifact-value.artifact-fail { color: #ef4444; }

/* Timeline (Look-Back card) */
.artifact-timeline {
    padding: 8px 0;
}

.artifact-timeline-flags {
    position: relative;
    height: 22px;
    margin-bottom: 6px;
}

.artifact-timeline-flag {
    position: absolute;
    transform: translateX(-50%);
    font-size: 10px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    white-space: nowrap;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.artifact-timeline-flag.red {
    color: #ef4444;
    background: rgba(239,68,68,0.1);
}

.artifact-timeline-flag.yellow {
    color: #eab308;
    background: rgba(234,179,8,0.1);
}

.artifact-timeline-bar {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    position: relative;
}

.artifact-timeline-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.artifact-timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 8px;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* Upload zone (Software Platform card) */
.artifact-upload {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.artifact-upload-zone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px dashed rgba(79,140,255,0.3);
    border-radius: 8px;
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: var(--accent);
}

.artifact-upload-zone svg {
    color: var(--accent);
    flex-shrink: 0;
}

.artifact-upload-progress {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}

.artifact-upload-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #22c55e);
    border-radius: 2px;
    transition: width 2s ease-out;
}

.artifact-upload-progress-fill.animated {
    width: 100%;
}

.artifact-upload-status {
    font-size: 11px;
    color: #22c55e;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* Classification table (A&R card) */
.artifact-classification {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.artifact-class-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    background: rgba(255,255,255,0.02);
}

.artifact-class-row.highlight {
    background: rgba(234,179,8,0.06);
    border: 1px solid rgba(234,179,8,0.15);
}

.artifact-class-code {
    color: var(--text-muted);
    min-width: 48px;
}

.artifact-class-trade {
    flex: 1;
    color: var(--text-secondary);
}

.artifact-class-rate {
    font-weight: 600;
    color: var(--text-primary);
}

.artifact-class-rate.yellow {
    color: #eab308;
}

/* Pulse grid (Ongoing Monitoring card) */
.artifact-pulse-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.artifact-pulse-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.artifact-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.artifact-pulse-dot.live {
    background: #22c55e;
    animation: livePulse 2s infinite;
}

.artifact-pulse-label {
    flex: 1;
    color: var(--text-secondary);
}

.artifact-pulse-status {
    font-weight: 600;
}

.artifact-pulse-status.green { color: #22c55e; }
.artifact-pulse-status.yellow { color: #eab308; }

/* Training modules (Compliance Training card) */
.artifact-modules {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.artifact-module-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 6px 0;
}

.artifact-module-check {
    color: #22c55e;
    font-size: 11px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.artifact-module-item.active {
    color: var(--accent);
}

.artifact-module-progress {
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(79,140,255,0.4);
    border-top-color: transparent;
    border-radius: 50%;
    animation: moduleSpinner 1.2s linear infinite;
    flex-shrink: 0;
    margin-left: 1px;
}

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

/* ===== INTEGRATION TILES ===== */
.integration-tile {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: border-color 0.3s;
}

.integration-tile:hover {
    border-color: rgba(79, 140, 255, 0.3);
}

.integration-tile.accent {
    border-color: rgba(79, 140, 255, 0.2);
    background: rgba(79, 140, 255, 0.04);
}

.integration-tile-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
}

.integration-tile-dot.connected {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

/* ===== USE CASE CARD ARTIFACTS ===== */
.usecase-artifact {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
}

.usecase-artifact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.usecase-artifact-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.usecase-artifact-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
}

.usecase-artifact-badge.live {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
}

.usecase-artifact-badge.live::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    margin-right: 4px;
    animation: livePulse 2s infinite;
}

.usecase-artifact-badge.secure {
    background: rgba(34,197,94,0.1);
    color: #22c55e;
}

/* Bar group for EPC use case */
.usecase-artifact-bar-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.usecase-artifact-bar-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.usecase-bar-label {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.usecase-bar-track {
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}

.usecase-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.apprentice-bar-fill {
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.usecase-bar-fill.green { background: linear-gradient(90deg, #22c55e, #4ade80); }
.usecase-bar-fill.yellow { background: linear-gradient(90deg, #eab308, #facc15); }

/* Funding stack for Project Owners use case */
.usecase-funding-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.usecase-funding-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    padding: 6px 10px;
    background: rgba(34,197,94,0.04);
    border-radius: 6px;
}

.usecase-funding-label {
    color: var(--text-muted);
    min-width: 70px;
}

.usecase-funding-amount {
    flex: 1;
    color: var(--text-primary);
    font-weight: 600;
}

.usecase-funding-status {
    font-size: 11px;
}

.usecase-funding-status.green { color: #22c55e; }

/* Queue for Compliance Teams use case */
.usecase-queue {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.usecase-queue-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--text-secondary);
}

.usecase-queue-item.done {
    background: rgba(34,197,94,0.04);
}

.usecase-queue-item.processing {
    background: rgba(79,140,255,0.06);
    border: 1px solid rgba(79,140,255,0.15);
}

.usecase-queue-icon {
    color: #22c55e;
    font-size: 11px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.usecase-queue-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid var(--accent);
    border-top-color: transparent;
    border-radius: 50%;
    animation: moduleSpinner 1s linear infinite;
    flex-shrink: 0;
}

.usecase-queue-time {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 10px;
}

/* Diligence report for Investors use case */
.usecase-diligence {
    display: flex;
    align-items: center;
    gap: 20px;
}

.usecase-diligence-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.usecase-diligence-ring {
    width: 48px;
    height: 48px;
    position: relative;
}

.usecase-diligence-ring svg {
    width: 100%;
    height: 100%;
}

.usecase-diligence-ring span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.usecase-diligence-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.usecase-diligence-checks {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: var(--text-secondary);
}

/* ===== IMPACT SECTION TICKER ===== */
.impact-ticker {
    margin-top: 48px;
    margin-bottom: 0;
}

.impact-ticker-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.impact-ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    margin-top: 4px;
    flex-shrink: 0;
    animation: livePulse 2s infinite;
}

.impact-ticker-content {
    flex: 1;
}

.impact-ticker-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.impact-ticker-feed {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.impact-ticker-item {
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: var(--text-secondary);
}

.ticker-ts {
    color: var(--accent);
    opacity: 0.6;
    margin-right: 8px;
}

/* ===== ORIGIN STORY ARTIFACTS ===== */
.origin-artifact {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Terminal artifact */
.origin-artifact-terminal {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    margin-bottom: 10px;
}

.origin-terminal-prompt {
    color: #22c55e;
}

.origin-terminal-text {
    color: var(--text-secondary);
}

.origin-terminal-cursor {
    width: 8px;
    height: 16px;
    background: var(--accent);
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.origin-artifact-stat {
    font-size: 12px;
    color: var(--text-muted);
}

.origin-artifact-stat span {
    font-weight: 700;
    color: var(--accent);
}

/* Signal artifact */
.origin-artifact-signal {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.origin-signal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
}

.origin-signal-item.highlight {
    background: rgba(79,140,255,0.08);
    color: var(--accent);
    border: 1px solid rgba(79,140,255,0.15);
}

.origin-signal-icon {
    font-size: 11px;
}

/* Merge artifact */
.origin-artifact-merge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.origin-merge-branch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: var(--text-secondary);
    padding: 4px 0;
}

.origin-merge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.origin-merge-dot.blue { background: var(--accent); }
.origin-merge-dot.purple { background: var(--accent-secondary); }
.origin-merge-dot.green { background: #22c55e; }

.origin-merge-connector {
    width: 1px;
    height: 8px;
    background: rgba(255,255,255,0.1);
    margin-left: 3.5px;
}

.origin-merge-result {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 4px;
    padding: 4px 12px;
    background: rgba(79,140,255,0.08);
    border: 1px solid rgba(79,140,255,0.2);
    border-radius: 6px;
}

/* ===== TEAM CARD ARTIFACTS ===== */
.team-artifact {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.team-credential {
    font-size: 11px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ===== TESTIMONIAL METRIC BADGES ===== */
.testimonial-metric-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: rgba(79,140,255,0.06);
    border: 1px solid rgba(79,140,255,0.12);
    border-radius: 10px;
}

.testimonial-metric-value {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-metric-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ===== RESPONSIVE for new artifacts ===== */
@media (max-width: 768px) {
    .usecase-diligence {
        flex-direction: column;
        align-items: flex-start;
    }

    .impact-ticker-inner {
        max-width: 100%;
    }
}
