/* ============================================
   LEADFLOW DESIGN SYSTEM
   Professional Dark Theme — Enterprise SaaS
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Colors — Leadflow Brand */
    --bg-primary: #060d18;
    --bg-secondary: #0a1525;
    --bg-tertiary: #0e1b30;
    --bg-card: #0c1a2e;
    --bg-card-hover: #112240;

    --text-primary: #F1F5F9;
    --text-secondary: #8da4bf;
    --text-tertiary: #5a7a9b;
    --text-muted: #3d5a78;

    --accent-blue: #52b8e0;
    --accent-blue-dim: rgba(82, 184, 224, 0.12);
    --accent-blue-glow: rgba(82, 184, 224, 0.25);

    --brand-navy: #0c3150;
    --brand-cyan: #52b8e0;

    --product-lender: #52b8e0;
    --product-sell: #F97316;
    --product-investor: #22C55E;
    --product-prospect: #A855F7;
    --accent-warm: #F59E0B;

    --border-subtle: rgba(82, 184, 224, 0.06);
    --border-light: rgba(82, 184, 224, 0.10);
    --border-medium: rgba(82, 184, 224, 0.16);

    /* Typography — Mastercard-inspired one-font system (Sofia Sans = open-source MarkForMC substitute) */
    --font-display: 'Sofia Sans', 'SofiaSans', Arial, sans-serif;
    --font-body: 'Sofia Sans', 'SofiaSans', Arial, sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --max-width: 1440px;
    --nav-height: 72px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-base: 300ms;
    --duration-slow: 500ms;

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 12px;

    /* Responsive type tokens */
    --mobile-hero-title: clamp(2.75rem, 12vw, 4.1rem);
    --mobile-section-title: clamp(2.3rem, 10vw, 3.7rem);
    --mobile-body-copy: clamp(1rem, 4.4vw, 1.18rem);
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2000;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    background: #f8fbff;
    color: #07111f;
    font-weight: 800;
    transform: translateY(-140%);
    transition: transform 0.2s var(--ease-out);
}

.skip-link:focus {
    transform: translateY(0);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    /* Mastercard signature: 16px / weight 450 / line-height 1.4 — softer than 400, firmer than 500 */
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 450;
    line-height: 1.4;
    color: var(--text-secondary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Mastercard headlines: weight 500, tight -2% letter-spacing, line-height drops with size */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: -0.02em;  /* signature -2% tracking on headlines */
}
h1 { line-height: 1; }       /* hero: 1:1 line-height */
h2 { line-height: 1.22; }    /* section: 44/36 ≈ 1.22 */
h3 { line-height: 1.2; }     /* card title */
h4 { line-height: 1.3; font-weight: 700; letter-spacing: 0; }  /* subhead — heavier, no tracking */

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--duration-fast);
}

a:hover {
    color: #5B9AFF;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(var(--space-4), 3vw, var(--space-10));
}

.section {
    padding: var(--space-24) 0;
    position: relative;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-2);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    margin-top: var(--space-2);
    padding: 0 var(--space-6);
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
}

/* Scrolled state — blur backdrop, same width */
.nav.scrolled .nav-container {
    background: rgba(10, 15, 28, 0.5);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-color: var(--border-subtle);
}

/* Light section override — dark text when over light backgrounds */
.nav.scrolled.nav--light .nav-container {
    background: rgba(243, 246, 251, 0.7);
    border-color: rgba(10, 15, 28, 0.08);
}

.nav.nav--light .nav-link {
    color: #4A5568;
}

.nav.nav--light .nav-link:hover {
    color: #0A0F1C;
}

.nav.nav--light .nav-dropdown__chevron {
    color: #4A5568;
}

.nav.nav--light .logo-svg {
    filter: brightness(0) saturate(100%);
}

.nav.nav--light .nav-cta--outline {
    color: #4A5568;
    border-color: rgba(10, 15, 28, 0.15);
}

.nav.nav--light .nav-cta--outline:hover {
    color: #0A0F1C;
    background: rgba(10, 15, 28, 0.04);
    border-color: rgba(10, 15, 28, 0.25);
}

.nav.nav--light .nav-mobile-toggle svg {
    color: #0A0F1C;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    height: var(--nav-height);
    position: relative;
}

.nav-left {
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 30px;
    width: auto;
    transition: filter 0.3s ease;
}

/* Center links */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mastercard nav link: 16px / weight 500 / -3% tracking, no transform */
.nav-link {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown__trigger {
    border: 0;
    background: transparent;
    cursor: pointer;
}

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

.nav-link.is-active,
.nav-link[aria-current="page"],
.mobile-link.is-active,
.mobile-link[aria-current="page"] {
    color: var(--text-primary);
}

.nav-link.is-active::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 0.35rem;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.55;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -1rem;
    right: -1rem;
    height: 1.1rem;
}

.nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown__chevron {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    color: var(--text-muted);
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron {
    color: var(--accent-blue);
    transform: translateY(1px) rotate(45deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.95rem);
    left: 50%;
    width: 390px;
    padding: 0.65rem;
    border: 1px solid rgba(82, 184, 224, 0.14);
    border-radius: 18px;
    background: rgba(6, 13, 24, 0.94);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown__trigger[aria-expanded="true"] + .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-product-link {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 0.9rem 0.95rem;
    border: 1px solid transparent;
    border-radius: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.nav-product-link + .nav-product-link {
    margin-top: 0.35rem;
}

.nav-product-link:hover {
    color: var(--text-primary);
    border-color: color-mix(in srgb, var(--product-color) 24%, transparent);
    background: color-mix(in srgb, var(--product-color) 9%, transparent);
}

.nav-product-link.is-active,
.nav-product-link[aria-current="page"] {
    color: var(--text-primary);
    border-color: color-mix(in srgb, var(--product-color) 36%, transparent);
    background: color-mix(in srgb, var(--product-color) 13%, transparent);
}

.nav-product-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid color-mix(in srgb, var(--product-color) 26%, transparent);
    border-radius: 10px;
    background: color-mix(in srgb, var(--product-color) 10%, rgba(255, 255, 255, 0.02));
}

.nav-product-icon img {
    width: 19px;
    height: 19px;
    object-fit: contain;
}

.nav-product-link strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.93rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.nav-product-link strong em {
    display: inline-flex;
    align-items: center;
    margin-left: 0.35rem;
    padding: 0.08rem 0.38rem;
    border: 1px solid color-mix(in srgb, var(--product-color) 34%, transparent);
    border-radius: 999px;
    color: color-mix(in srgb, var(--product-color) 80%, #ffffff);
    font-size: 0.64rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    vertical-align: middle;
}

.nav-product-link small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-tertiary);
    font-size: 0.79rem;
    line-height: 1.35;
}

/* Right CTA buttons */
.nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.nav-cta {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.02em;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-md);
    transition: all 0.15s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-cta--outline {
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-light);
}

.nav-cta--outline:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-medium);
}

.nav-cta--primary {
    color: white;
    background: var(--accent-blue);
}

.nav-cta--primary:hover {
    background: #3a9ac2;
    color: white;
}

/* Scrolled-only CTA (hidden by default, shown when scrolled) */
.nav-cta--scrolled {
    display: none;
    color: white;
    background: var(--accent-blue);
}

.nav-cta--scrolled:hover {
    background: #3a9ac2;
    color: white;
}

.nav.scrolled .nav-cta--primary {
    display: none;
}

.nav.scrolled .nav-cta--scrolled {
    display: inline-flex;
}

/* Mobile toggle */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-2);
    margin: calc(var(--space-2) * -1);
    margin-right: calc(var(--space-4) * -1);
    position: relative;
    z-index: 20;
}

.nav-icon-menu,
.nav-icon-close {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-icon-close {
    position: absolute;
    inset: 0;
    margin: auto;
    transform: rotate(-180deg) scale(0);
    opacity: 0;
}

.nav[data-state="active"] .nav-icon-menu {
    transform: rotate(180deg) scale(0);
    opacity: 0;
}

.nav[data-state="active"] .nav-icon-close {
    transform: rotate(0) scale(1);
    opacity: 1;
}

/* Mobile panel */
.nav-mobile-panel {
    display: none;
}

.nav-mobile-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.mobile-link {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.15s ease;
}

.mobile-link--label {
    cursor: default;
}

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

.mobile-products {
    display: grid;
    gap: 0.85rem;
}

.mobile-product-links {
    display: grid;
    gap: 0.55rem;
    padding-left: 0.85rem;
    border-left: 1px solid var(--border-light);
}

.mobile-product-links a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    text-decoration: none;
}

.mobile-product-links img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 auto;
}

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

.mobile-product-links a.is-active,
.mobile-product-links a[aria-current="page"] {
    color: #ffffff;
}

.nav-mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

/* --- Buttons --- */
/* Mastercard button label: 16px / weight 500 / -3% letter-spacing, no uppercase */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 1;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--duration-fast);
}

.btn:hover svg {
    transform: translateX(2px);
}

.btn:active,
.nav-cta:active,
.pipeline-tab:active {
    transform: translateY(1px) scale(0.99);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(82, 184, 224, 0.75);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background: #3a9ac2;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(82, 184, 224, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

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

.btn-accent {
    background: linear-gradient(135deg, var(--accent-warm), #E88D0C);
    color: white;
}

.btn-accent:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
}

/* Staged contact modal */
body.contact-modal-open {
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

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

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(82,184,224,0.22), transparent 34rem),
        radial-gradient(circle at 82% 22%, rgba(139,92,246,0.16), transparent 30rem),
        rgba(3,8,15,0.76);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.contact-modal__dialog {
    position: relative;
    width: min(100%, 860px);
    max-height: min(92vh, 820px);
    overflow: auto;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(82,184,224,0.22);
    border-radius: 28px;
    background:
        linear-gradient(rgba(7,17,31,0.84), rgba(7,17,31,0.84)),
        linear-gradient(145deg, #0c1a2e, #06101d);
    box-shadow: 0 34px 120px rgba(0,0,0,0.5);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal.is-open .contact-modal__dialog {
    transform: translateY(0) scale(1);
}

.contact-modal__dialog::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(82,184,224,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82,184,224,0.07) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 76%);
}

.contact-modal__dialog > * {
    position: relative;
    z-index: 1;
}

.contact-modal [hidden] {
    display: none !important;
}

.contact-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.contact-modal__close:hover {
    color: #fff;
    border-color: rgba(82,184,224,0.28);
    background: rgba(82,184,224,0.12);
}

.contact-modal__close svg {
    width: 18px;
    height: 18px;
}

.contact-modal__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-right: 3.2rem;
}

.contact-modal__brand img {
    width: 118px;
    height: auto;
}

.contact-modal__brand span,
.contact-modal__eyebrow {
    color: var(--accent-blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-modal__head {
    margin-top: 1.7rem;
}

.contact-modal__eyebrow {
    margin: 0 0 0.8rem;
}

.contact-modal__head h2 {
    max-width: 760px;
    margin: 0;
    color: #f8fbff;
    font-size: clamp(2rem, 3.45vw, 3.15rem);
    line-height: 1;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.contact-modal__head p {
    max-width: 590px;
    margin: 1rem 0 0;
    color: rgba(203,213,225,0.82);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-modal__progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    margin: 1.5rem 0;
}

.contact-modal__progress span {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    color: transparent;
    background: rgba(255,255,255,0.1);
}

.contact-modal__progress span::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-blue), #8b5cf6);
    opacity: 0;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: opacity 0.2s ease, transform 0.24s ease;
}

.contact-modal__progress span.is-active::before,
.contact-modal__progress span.is-complete::before {
    opacity: 1;
    transform: scaleX(1);
}

.contact-modal__form {
    display: grid;
    gap: 1rem;
}

.contact-modal__step {
    display: none;
    gap: 1rem;
}

.contact-modal__step.is-active {
    display: grid;
}

.contact-modal__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-modal label,
.contact-modal__fieldset {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    border: 0;
    color: rgba(226,232,240,0.86);
    font-size: 0.84rem;
    font-weight: 800;
}

.contact-modal__fieldset legend {
    margin-bottom: 0.7rem;
}

.contact-modal input,
.contact-modal select,
.contact-modal textarea {
    width: 100%;
    border: 1px solid rgba(148,163,184,0.22);
    border-radius: 15px;
    background: rgba(255,255,255,0.08);
    color: #f8fbff;
    font: inherit;
    font-weight: 600;
    padding: 0.92rem 0.95rem;
    outline: 0;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-modal select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23CBD5E1' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 2.5rem;
}

.contact-modal option {
    color: #07111f;
}

.contact-modal textarea {
    min-height: 102px;
    resize: vertical;
}

.contact-modal input:focus,
.contact-modal select:focus,
.contact-modal textarea:focus {
    border-color: var(--accent-blue);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 4px rgba(82,184,224,0.14);
}

.contact-modal__intent {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.contact-modal__intent label {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0.78rem 0.85rem;
    border: 1px solid rgba(148,163,184,0.18);
    border-radius: 15px;
    background: rgba(255,255,255,0.06);
    cursor: pointer;
}

.contact-modal[data-step="3"] .contact-modal__head {
    margin-top: 1.15rem;
}

.contact-modal[data-step="3"] .contact-modal__head p {
    margin-top: 0.7rem;
}

.contact-modal[data-step="3"] .contact-modal__progress {
    margin: 1.05rem 0 1.15rem;
}

.contact-modal[data-step="3"] .contact-modal__step {
    gap: 0.78rem;
}

.contact-modal[data-step="3"] .contact-modal__intent label {
    min-height: 50px;
    padding-block: 0.68rem;
}

.contact-modal[data-step="3"] textarea {
    min-height: 86px;
}

.contact-modal__intent input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 0 0.65rem 0 0;
    padding: 0;
    accent-color: var(--accent-blue);
}

.contact-modal__intent span {
    line-height: 1.25;
}

.contact-modal__actions {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    padding-top: 0.35rem;
}

.contact-modal__back {
    min-width: 110px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    color: rgba(226,232,240,0.86);
    background: rgba(255,255,255,0.05);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.contact-modal__back:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.contact-modal__next,
.contact-modal__submit {
    margin-left: auto;
}

.contact-modal__success {
    display: grid;
    justify-items: start;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 2rem) 0 0.5rem;
}

.contact-modal__success[hidden] {
    display: none !important;
}

.contact-modal__success-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(82,184,224,0.3);
    border-radius: 18px;
    color: #f8fbff;
    background: linear-gradient(135deg, var(--accent-blue), #8b5cf6);
    box-shadow: 0 18px 42px rgba(82,184,224,0.24);
}

.contact-modal__success-icon svg {
    width: 26px;
    height: 26px;
}

.contact-modal__success h2 {
    max-width: 620px;
    margin: 0;
    color: #f8fbff;
    font-size: clamp(2.15rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.contact-modal__success p:not(.contact-modal__eyebrow) {
    max-width: 560px;
    margin: 0;
    color: rgba(203,213,225,0.82);
    font-size: 1rem;
    line-height: 1.6;
}

/* Honeypot field — visually hidden, accessible only to bots filling all inputs. */
.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-modal__error,
.form-error {
    margin-top: 0.5rem;
    color: #ff8a8a;
    font-size: 0.9rem;
}

.contact-modal__error[hidden],
.form-error[hidden] {
    display: none;
}

.contact-form__success {
    display: grid;
    justify-items: start;
    gap: 1rem;
    margin-top: 2rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(82,184,224,0.08), rgba(34,197,94,0.04));
}

.contact-form__success[hidden] {
    display: none !important;
}

.contact-form__success-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: #f8fbff;
    background: linear-gradient(135deg, var(--accent-blue), #22c55e);
    box-shadow: 0 18px 42px rgba(82,184,224,0.24);
}

.contact-form__success-icon svg {
    width: 26px;
    height: 26px;
}

.contact-form__success .form-eyebrow {
    color: var(--accent-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin: 0;
}

.contact-form__success h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.85rem, 3.4vw, 2.6rem);
    line-height: 1.1;
}

.contact-form__success p:not(.form-eyebrow) {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 560px;
}

.early-form__success {
    display: grid;
    justify-items: start;
    gap: 1rem;
    margin-top: 2rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(82,184,224,0.08), rgba(245,158,11,0.04));
}

.early-form__success[hidden] {
    display: none !important;
}

.early-form__success h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.85rem, 3.4vw, 2.6rem);
    line-height: 1.1;
}

.early-form__success p:not(.form-eyebrow) {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 560px;
}

@media (max-width: 720px) {
    .contact-modal {
        align-items: stretch;
        padding: 0.75rem;
    }

    .contact-modal__dialog {
        width: 100%;
        max-height: calc(100vh - 1.5rem);
        padding: 1rem;
        border-radius: 22px;
    }

    .contact-modal__brand img {
        width: 112px;
    }

    .contact-modal__brand span {
        display: none;
    }

    .contact-modal__head {
        margin-top: 1.25rem;
    }

    .contact-modal__head h2 {
        font-size: clamp(2rem, 11vw, 3rem);
        white-space: normal;
    }

    .contact-modal__row,
    .contact-modal__intent {
        grid-template-columns: 1fr;
    }

    .contact-modal__actions {
        flex-direction: column-reverse;
    }

    .contact-modal__back,
    .contact-modal__next,
    .contact-modal__submit {
        width: 100%;
        min-height: 52px;
        margin-left: 0;
    }
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

/* Mesh gradient shader background */
.hero-shader-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-shader-veil {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: rgba(6, 13, 24, 0.25);
}

/* Background video — always full viewport width, cover behavior */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    overflow: hidden;
    width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-video-bg wistia-player {
    display: block;
    /* Always cover the viewport: use larger of 100vw or scaled-to-height width */
    width: max(100vw, 177.78vh);
    height: max(100vh, 56.25vw); /* 9/16 of viewport width — ensures coverage */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Override Wistia's default padding-top aspect ratio trick */
.hero-video-bg wistia-player:not(:defined) {
    padding-top: 0 !important;
    height: 100% !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-10) 0 0;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--accent-warm);
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-8);
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-warm);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    /* Mastercard H1 hero: weight 500, -2% tracking, ~1:1 line-height */
    font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.05;
    padding-bottom: 0.05em;
    margin-bottom: var(--space-6);
    background: linear-gradient(180deg, #FFFFFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-mobile {
    display: none;
}

.hero-subtitle {
    font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

/* Hero Flow Diagram — Full Width */
.hero-flow-diagram {
    position: relative;
    width: 100%;
    height: 320px;
    z-index: 1;
    flex-shrink: 0;
}

#flowCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Center logo — glassmorphism with pixel canvas */
.flow-center-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    overflow: hidden;
}

#pixelCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: inherit;
}

.flow-logo-img {
    position: relative;
    z-index: 1;
    width: 56px;
    height: auto;
    filter: drop-shadow(0 2px 12px rgba(82, 184, 224, 0.4));
}

/* Product nodes — scattered glassmorphism squares */
.flow-prod-node {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.flow-prod-node:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.flow-prod-node img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Ambient glows per product color */
.flow-prod-node[data-product="lender"] {
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(82, 184, 224, 0.2),
        0 0 60px rgba(82, 184, 224, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(82, 184, 224, 0.15);
}

.flow-prod-node[data-product="seller"] {
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(249, 115, 22, 0.2),
        0 0 60px rgba(249, 115, 22, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(249, 115, 22, 0.15);
}

.flow-prod-node[data-product="investor"] {
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(34, 197, 94, 0.2),
        0 0 60px rgba(34, 197, 94, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 197, 94, 0.15);
}

.flow-prod-node[data-product="prospect"] {
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(168, 85, 247, 0.2),
        0 0 60px rgba(168, 85, 247, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.15);
}

/* --- Stats Bar --- */
.stats-bar {
    padding: var(--space-12) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 160px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--accent-blue);
    line-height: 1;
    min-height: 1.5rem;
}

.stat-inline-suffix {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--accent-blue);
    margin-left: var(--space-2);
    letter-spacing: 0;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-top: var(--space-2);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border-light);
}

/* --- Featured In --- */
.featured-in {
    padding: var(--space-12) 0;
}


.featured-label {
    text-align: center;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: var(--space-8);
}

.logo-scroll-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 40s linear infinite;
}

.logo-scroll-content {
    display: flex;
    gap: var(--space-12);
    align-items: center;
    flex-shrink: 0;
    padding-right: var(--space-12);
}

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

.featured-logo {
    height: 20px;
    width: auto;
    opacity: 0.35;
    filter: brightness(0) invert(1);
    transition: opacity var(--duration-base);
    flex-shrink: 0;
}

.featured-logo:hover {
    opacity: 0.6;
}

/* --- Section Headers — Mastercard eyebrow: 14px / 700 / +4% uppercase tracking --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;  /* +4% per Mastercard spec */
    color: var(--tag-color, var(--accent-blue));
    background: transparent;
    padding: var(--space-1) 0;
    margin-bottom: var(--space-4);
    position: relative;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tag-color, var(--accent-blue)), transparent);
    opacity: 0.4;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-16);
}

.section-title {
    /* Mastercard H2: weight 500, -2% tracking, line-height 1.22 */
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.22;
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Platform Section Light Theme --- */
.platform {
    background: #F3F6FB;
    position: relative;
}

.platform-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.platform-header-left {
    flex: 1.1;
    max-width: 560px;
}

.platform-header-left .section-tag {
    color: var(--accent-blue);
}

.platform-header-left .section-tag::after {
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    opacity: 0.3;
}

.platform-title {
    /* Mastercard H2 — weight 500, -2% tracking */
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 500;
    color: #0A0F1C;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.platform-header-right {
    flex: 0.8;
    display: flex;
    align-items: center;
    padding-top: var(--space-8);
}

.platform-subtitle {
    font-size: var(--text-base);
    color: #4A5568;
    line-height: 1.7;
}

/* --- Platform Delivers Grid (Animated Visual Cards) --- */
.delivers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.deliver-card {
    --card-main: #52b8e0;       /* primary accent (cyan) */
    --card-second: #F97316;     /* secondary accent */
    --card-grid: rgba(255,255,255,0.05);

    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    box-shadow: 0 14px 42px rgba(10,15,28,0), 0 4px 16px rgba(10,15,28,0);
    will-change: transform, box-shadow;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.7s var(--ease-out);
}

.deliver-card:hover {
    transform: translateY(-4px);
}

/* ── Visual area (top 180px) ── */
.card-visual {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

/* Grid pattern — tech-forward lattice, fades out at edges */
.card-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(to right, var(--card-grid) 1px, transparent 1px),
        linear-gradient(to bottom, var(--card-grid) 1px, transparent 1px);
    background-size: 22px 22px;
    background-position: center;
    opacity: 0.7;
    -webkit-mask-image: radial-gradient(ellipse 55% 55% at 50% 50%, #000 55%, transparent 100%);
    mask-image: radial-gradient(ellipse 55% 55% at 50% 50%, #000 55%, transparent 100%);
}

/* Radial glow behind the illustration */
.card-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse 50% 60% at 50% 55%,
        color-mix(in srgb, var(--card-main) 22%, transparent) 0%,
        color-mix(in srgb, var(--card-main) 10%, transparent) 35%,
        transparent 75%);
    transition: opacity 0.5s cubic-bezier(0.6, 0.6, 0, 1);
}
.deliver-card:hover .card-glow {
    opacity: 1.2;
}

/* Top-right pills */
.card-pills {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 6;
}

.card-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(10,15,28,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}
.card-pill--num {
    padding: 4px 8px;
    font-family: var(--font-display);
    font-weight: 600;
}
.pill-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--card-main);
    box-shadow: 0 0 6px var(--card-main);
}

/* Slide-down tooltip on hover */
.card-tooltip {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 7;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,15,28,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.6, 0.6, 0, 1),
                opacity 0.35s ease;
}
.deliver-card:hover .card-tooltip {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.08s;
}
.card-tooltip__title {
    margin: 0 0 4px;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.card-tooltip__text {
    margin: 0;
    padding: 0;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    opacity: 1;
}

/* Illustration base — each card has bespoke hover motion */
.card-illust {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
}
.card-illust svg {
    width: 100%;
    max-width: 260px;
    height: auto;
    overflow: visible;
}
.card-illust svg * {
    transform-box: fill-box;
    transform-origin: center;
}

/* Use punchy cubic-bezier for all card motion */
:root {
    --card-ease: cubic-bezier(0.6, 0.6, 0, 1);
}

/* ── Card 1: Signals — highlights pop with staggered scale + glow ── */
.card-illust--signals .sig-hl {
    transition: transform 0.6s var(--card-ease), filter 0.6s ease;
}
.card-illust--signals .sig-grid circle {
    transition: opacity 0.8s var(--card-ease);
}
.deliver-card:hover .card-illust--signals .sig-hl--1 { transform: scale(1.35); transition-delay: 0s; filter: drop-shadow(0 0 10px rgba(255,255,255,0.6)); }
.deliver-card:hover .card-illust--signals .sig-hl--2 { transform: scale(1.35); transition-delay: 0.08s; filter: drop-shadow(0 0 10px rgba(255,255,255,0.6)); }
.deliver-card:hover .card-illust--signals .sig-hl--3 { transform: scale(1.45); transition-delay: 0.16s; filter: drop-shadow(0 0 8px rgba(255,255,255,0.5)); }
.deliver-card:hover .card-illust--signals .sig-hl--4 { transform: scale(1.5); transition-delay: 0.24s; filter: drop-shadow(0 0 6px rgba(255,255,255,0.4)); }
.deliver-card:hover .card-illust--signals .sig-hl--5 { transform: scale(1.4); transition-delay: 0.32s; filter: drop-shadow(0 0 10px rgba(255,255,255,0.5)); }
.deliver-card:hover .card-illust--signals .sig-grid { opacity: 0.6; }

/* ── Card 2: Scoring — CSS fallback + primary hover animation.
   The original JS path depends on GSAP/CDN availability; these rules keep the
   predictive model rings working on file:// and live pages even if GSAP fails. */
@property --score-fill {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0deg;
}

.card-illust--scoring svg {
    position: relative;
    z-index: 1;
}

.card-illust--scoring .score-orbit {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    opacity: 1;
    --score-fill: 0deg;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 0 rgba(82, 184, 224, 0));
    transition:
        --score-fill 0.9s cubic-bezier(0.45, 0, 0.2, 1),
        filter 0.75s ease;
    pointer-events: none;
}

.card-illust--scoring .score-orbit::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(from -90deg, var(--orbit-color) 0deg var(--score-fill), var(--orbit-track) var(--score-fill) 360deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--orbit-width)), #000 calc(100% - var(--orbit-width)));
    mask: radial-gradient(farthest-side, transparent calc(100% - var(--orbit-width)), #000 calc(100% - var(--orbit-width)));
}

.card-illust--scoring .score-orbit--outer {
    width: 152px;
    height: 152px;
    --orbit-color: #8be3ff;
    --orbit-track: rgba(255, 255, 255, 0.055);
    --orbit-width: 8px;
}

.card-illust--scoring .score-orbit--mid {
    width: 110px;
    height: 110px;
    --orbit-color: rgba(255, 255, 255, 0.98);
    --orbit-track: rgba(255, 255, 255, 0.055);
    --orbit-width: 7px;
}

.card-illust--scoring .score-orbit--inner {
    width: 68px;
    height: 68px;
    --orbit-color: rgba(139, 227, 255, 0.92);
    --orbit-track: rgba(255, 255, 255, 0.055);
    --orbit-width: 6px;
}

.deliver-card:hover .card-illust--scoring .score-orbit {
    filter: drop-shadow(0 0 16px rgba(82, 184, 224, 0.72));
}

.deliver-card:hover .card-illust--scoring .score-orbit--outer {
    --score-fill: 304deg;
}

.deliver-card:hover .card-illust--scoring .score-orbit--mid {
    --score-fill: 232deg;
}

.deliver-card:hover .card-illust--scoring .score-orbit--inner {
    --score-fill: 165deg;
}

.card-illust--scoring .score-ring {
    opacity: 0;
    stroke: var(--accent-blue);
    stroke-width: 5;
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    transition:
        opacity 0.45s var(--card-ease),
        stroke-width 0.45s var(--card-ease),
        filter 0.45s ease;
    vector-effect: non-scaling-stroke;
}

.card-illust--scoring .score-ring--outer {
    stroke-dasharray: 350 121.24;
    stroke-dashoffset: 0;
}

.card-illust--scoring .score-ring--mid {
    stroke-dasharray: 218 121.29;
    stroke-dashoffset: -38;
    stroke: rgba(255, 255, 255, 0.92);
}

.card-illust--scoring .score-ring--inner {
    stroke-dasharray: 118 89.35;
    stroke-dashoffset: -72;
    stroke: rgba(82, 184, 224, 0.72);
}

.card-illust--scoring .score-center {
    transition:
        transform 0.45s var(--card-ease),
        filter 0.45s ease,
        opacity 0.45s ease;
}

.deliver-card:hover .card-illust--scoring .score-ring {
    opacity: 0;
}

.deliver-card:hover .card-illust--scoring .score-center {
    transform: scale(1.45);
    opacity: 0.95;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
}

/* ── Card 3: History — ellipses cascade outward like ripples ── */
.card-illust--history .hist-ellipse,
.card-illust--history .hist-top {
    transition: transform 0.7s var(--card-ease);
}
.deliver-card:hover .card-illust--history .hist-ellipse--1 { transform: scaleX(1.15) translateY(3px); transition-delay: 0s; }
.deliver-card:hover .card-illust--history .hist-ellipse--2 { transform: scaleX(1.12) translateY(2px); transition-delay: 0.05s; }
.deliver-card:hover .card-illust--history .hist-ellipse--3 { transform: scaleX(1.10) translateY(1px); transition-delay: 0.10s; }
.deliver-card:hover .card-illust--history .hist-ellipse--4 { transform: scaleX(1.08); transition-delay: 0.15s; }
.deliver-card:hover .card-illust--history .hist-ellipse--5 { transform: scaleX(1.06) translateY(-1px); transition-delay: 0.20s; }
.deliver-card:hover .card-illust--history .hist-ellipse--6 { transform: scaleX(1.04) translateY(-2px); transition-delay: 0.25s; }
.deliver-card:hover .card-illust--history .hist-top {
    transform: translateY(-6px) scale(1.08);
    transition-delay: 0.30s;
    filter: drop-shadow(0 4px 12px rgba(255,255,255,0.3));
}

/* ── Card 4: Delivery — center pulses, lines flow with dashed particles ── */
.card-illust--delivery .del-outer,
.card-illust--delivery .del-inner {
    transition: transform 0.6s var(--card-ease), opacity 0.4s ease;
}
.card-illust--delivery .del-endpoint {
    transition: transform 0.5s var(--card-ease), opacity 0.5s ease;
}
.card-illust--delivery .del-line {
    stroke-dashoffset: 0;
    animation: del-flow 1.2s linear infinite;
    animation-play-state: paused;
    transition: opacity 0.5s ease;
}
@keyframes del-flow {
    to { stroke-dashoffset: -16; }
}
.deliver-card:hover .card-illust--delivery .del-outer {
    transform: scale(1.4);
    opacity: 0.15;
}
.deliver-card:hover .card-illust--delivery .del-inner {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(10,15,28,0.4));
}
.deliver-card:hover .card-illust--delivery .del-line {
    animation-play-state: running;
    opacity: 0.4;
}
.deliver-card:hover .card-illust--delivery .del-endpoint {
    opacity: 0.18;
    transform: scale(1.05);
}

/* ── Card 5: Compliance — radar ping outward from center ── */
.card-illust--compliance .comp-ring,
.card-illust--compliance .comp-center {
    transition: transform 0.7s var(--card-ease), opacity 0.7s var(--card-ease);
}
.deliver-card:hover .card-illust--compliance .comp-center {
    transform: scale(1.8);
    transition-delay: 0s;
    filter: drop-shadow(0 0 6px rgba(10,15,28,0.3));
}
.deliver-card:hover .card-illust--compliance .comp-ring--5 { transform: scale(1.1); transition-delay: 0.05s; opacity: 0.45; }
.deliver-card:hover .card-illust--compliance .comp-ring--4 { transform: scale(1.08); transition-delay: 0.12s; opacity: 0.4; }
.deliver-card:hover .card-illust--compliance .comp-ring--3 { transform: scale(1.06); transition-delay: 0.19s; opacity: 0.35; }
.deliver-card:hover .card-illust--compliance .comp-ring--2 { transform: scale(1.04); transition-delay: 0.26s; opacity: 0.3; }
.deliver-card:hover .card-illust--compliance .comp-ring--1 { transform: scale(1.02); transition-delay: 0.33s; opacity: 0.25; }

/* ── Card 6: Entity — outer nodes converge, center expands, lines brighten ── */
.card-illust--entity .ent-outer,
.card-illust--entity .ent-mid,
.card-illust--entity .ent-center {
    transition: transform 0.7s var(--card-ease), opacity 0.6s ease;
}
.card-illust--entity .ent-line,
.card-illust--entity .ent-inner-line {
    transition: opacity 0.5s ease;
}
.deliver-card:hover .card-illust--entity .ent-outer {
    transform: scale(0.6) translate(calc(var(--dx, 0) * 1px), calc(var(--dy, 0) * 1px));
}
.deliver-card:hover .card-illust--entity .ent-mid {
    transform: scale(1.2);
    opacity: 0.3;
}
.deliver-card:hover .card-illust--entity .ent-center {
    transform: scale(1.4);
    filter: drop-shadow(0 0 10px rgba(10,15,28,0.4));
}
.deliver-card:hover .card-illust--entity .ent-line {
    opacity: 0.25;
}
.deliver-card:hover .card-illust--entity .ent-inner-line {
    opacity: 0.45;
}

/* ── Body area (below visual) ── */
.card-body {
    padding: 18px 22px 22px;
    border-top: 1px solid var(--card-grid);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.card-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    padding: 0;
}

.card-desc {
    font-size: 13px;
    line-height: 1.6;
    padding: 0;
    opacity: 0.7;
}

/* ── Dark variant (cards 1 & 2) ── */
.deliver-card--dark {
    background: linear-gradient(180deg, #0f1a2e 0%, #0a1222 100%);
    color: #F1F5F9;
    border-color: rgba(82,184,224,0.12);
    box-shadow: 0 14px 42px rgba(82,184,224,0), 0 4px 16px rgba(0,0,0,0.14);
    --card-main: #52b8e0;
    --card-second: #A855F7;
    --card-grid: rgba(82,184,224,0.1);
}
.deliver-card--dark:hover {
    border-color: rgba(82,184,224,0.25);
    box-shadow: 0 20px 60px rgba(82,184,224,0.15), 0 6px 20px rgba(0,0,0,0.3);
}
.deliver-card--dark .card-title { color: #F1F5F9; }
.deliver-card--dark .card-desc { color: #94A3B8; }

/* ── Accent variant (card 3) ── */
.deliver-card--accent {
    background: linear-gradient(180deg, #F97316 0%, #c75109 100%);
    color: #fff;
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 14px 42px rgba(249,115,22,0), 0 4px 16px rgba(249,115,22,0.08);
    --card-main: #ffffff;
    --card-second: #FEF3C7;
    --card-grid: rgba(255,255,255,0.12);
}
.deliver-card--accent:hover {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(249,115,22,0.35), 0 6px 20px rgba(249,115,22,0.2);
}
.deliver-card--accent .card-title { color: #fff; }
.deliver-card--accent .card-desc { color: rgba(255,255,255,0.85); }
.deliver-card--accent .card-glow {
    background: radial-gradient(ellipse 50% 60% at 50% 55%,
        rgba(255,255,255,0.25) 0%,
        rgba(255,255,255,0.1) 35%,
        transparent 75%);
}
.deliver-card--accent .card-pill {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.2);
}
.deliver-card--accent .card-tooltip {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.22);
}
.deliver-card--accent .pill-dot {
    background: #fff;
    box-shadow: 0 0 6px rgba(255,255,255,0.6);
}

/* ── Light variant (cards 4 & 5) ── */
.deliver-card--light {
    background: linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
    color: #0A0F1C;
    border-color: rgba(10,15,28,0.08);
    box-shadow: 0 14px 42px rgba(10,15,28,0.02), 0 4px 16px rgba(10,15,28,0.01);
    --card-main: #52b8e0;
    --card-second: #A855F7;
    --card-grid: rgba(10,15,28,0.08);
}
.deliver-card--light:hover {
    border-color: rgba(82,184,224,0.3);
    box-shadow: 0 20px 60px rgba(10,15,28,0.1), 0 6px 20px rgba(10,15,28,0.05);
}
.deliver-card--light .card-title { color: #0A0F1C; }
.deliver-card--light .card-desc { color: #4A5568; }
.deliver-card--light .card-glow {
    background: radial-gradient(ellipse 50% 60% at 50% 55%,
        rgba(82,184,224,0.18) 0%,
        rgba(82,184,224,0.08) 35%,
        transparent 75%);
}
.deliver-card--light .card-pill {
    background: rgba(255,255,255,0.85);
    border-color: rgba(10,15,28,0.1);
    color: #0A0F1C;
}
.deliver-card--light .card-tooltip {
    background: rgba(255,255,255,0.92);
    border-color: rgba(10,15,28,0.1);
}
.deliver-card--light .card-tooltip__title { color: #0A0F1C; }
.deliver-card--light .card-tooltip__text { color: #4A5568; }
.deliver-card--light .pill-dot { box-shadow: 0 0 6px rgba(82,184,224,0.5); }

/* ── Muted variant (card 6) ── */
.deliver-card--muted {
    background: linear-gradient(180deg, #eef0f4 0%, #e2e6ee 100%);
    color: #0A0F1C;
    border-color: rgba(10,15,28,0.06);
    box-shadow: 0 14px 42px rgba(10,15,28,0.025), 0 4px 16px rgba(10,15,28,0.012);
    --card-main: #52b8e0;
    --card-second: #3d5a78;
    --card-grid: rgba(10,15,28,0.08);
}
.deliver-card--muted:hover {
    border-color: rgba(82,184,224,0.3);
    box-shadow: 0 20px 60px rgba(10,15,28,0.12), 0 6px 20px rgba(10,15,28,0.06);
}
.deliver-card--muted .card-title { color: #0A0F1C; }
.deliver-card--muted .card-desc { color: #4A5568; }
.deliver-card--muted .card-glow {
    background: radial-gradient(ellipse 50% 60% at 50% 55%,
        rgba(82,184,224,0.2) 0%,
        rgba(82,184,224,0.08) 35%,
        transparent 75%);
}
.deliver-card--muted .card-pill {
    background: rgba(255,255,255,0.85);
    border-color: rgba(10,15,28,0.1);
    color: #0A0F1C;
}
.deliver-card--muted .card-tooltip {
    background: rgba(255,255,255,0.92);
    border-color: rgba(10,15,28,0.1);
}
.deliver-card--muted .card-tooltip__title { color: #0A0F1C; }
.deliver-card--muted .card-tooltip__text { color: #4A5568; }
.deliver-card--muted .pill-dot { box-shadow: 0 0 6px rgba(82,184,224,0.5); }

/* ── Legacy deliver-card-top (unused now, kept for safety) ── */
.deliver-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5) 0;
}

.deliver-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.5;
}

.deliver-number {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    opacity: 0.35;
    border: 1px solid currentColor;
    border-radius: 4px;
    padding: 2px 7px;
    line-height: 1.3;
}

/* Illustration area */
.deliver-illustration {
    padding: var(--space-6) var(--space-4) var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.deliver-illustration svg {
    width: 100%;
    max-width: 280px;
    height: auto;
}

/* Legacy h3/p — unused now, handled via .card-title / .card-desc */

/* --- Score ring animations handled by GSAP in script.js, no CSS transitions --- */

/* Score ring fills handled in card-illust--scoring hover section above */

/* --- Illustration Hover Interactions --- */

/* (Legacy SVG transition rule removed — interfered with GSAP attr animations) */

/* Card 1: Signals — highlighted circles scale up, grid circles brighten */
.deliver-card:nth-child(1):hover .deliver-illustration svg g {
    opacity: 0.5;
}

.deliver-card:nth-child(1):hover .deliver-illustration svg circle[fill="white"] {
    r: 18;
}

.deliver-card:nth-child(1):hover .deliver-illustration svg circle[opacity="0.6"] {
    opacity: 0.85;
    r: 15;
}

.deliver-card:nth-child(1):hover .deliver-illustration svg circle[opacity="0.4"] {
    opacity: 0.7;
    r: 13;
}

.deliver-card:nth-child(1):hover .deliver-illustration svg circle[opacity="0.7"] {
    opacity: 0.9;
    r: 17;
}

/* (Card 2 scoring hover rules live higher up with --scoring scope) */

/* Card 3: History — ellipses breathe and shift vertically */
.deliver-card:nth-child(3):hover .deliver-illustration svg ellipse:nth-child(1) {
    ry: 28;
    opacity: 0.35;
}

.deliver-card:nth-child(3):hover .deliver-illustration svg ellipse:nth-child(2) {
    ry: 26;
    cy: 126;
    opacity: 0.4;
}

.deliver-card:nth-child(3):hover .deliver-illustration svg ellipse:nth-child(3) {
    ry: 24;
    cy: 105;
    opacity: 0.45;
}

.deliver-card:nth-child(3):hover .deliver-illustration svg ellipse:nth-child(4) {
    ry: 22;
    cy: 84;
}

.deliver-card:nth-child(3):hover .deliver-illustration svg ellipse:nth-child(5) {
    ry: 20;
    cy: 63;
}

.deliver-card:nth-child(3):hover .deliver-illustration svg ellipse:nth-child(6) {
    ry: 18;
    cy: 42;
    rx: 52;
}

.deliver-card:nth-child(3):hover .deliver-illustration svg ellipse:nth-child(7) {
    ry: 14;
    cy: 26;
    rx: 38;
}

/* Card 4: Delivery — nodes spread outward, center pulses */
.deliver-card:nth-child(4):hover .deliver-illustration svg circle[r="8"] {
    r: 10;
}

.deliver-card:nth-child(4):hover .deliver-illustration svg circle[r="20"] {
    r: 24;
    opacity: 0.12;
}

.deliver-card:nth-child(4):hover .deliver-illustration svg rect {
    fill-opacity: 0.1;
    stroke-opacity: 0.2;
}

.deliver-card:nth-child(4):hover .deliver-illustration svg line {
    opacity: 0.3;
}

/* Card 5: Compliance — ellipses expand concentrically */
.deliver-card:nth-child(5):hover .deliver-illustration svg ellipse:nth-child(1) {
    rx: 128;
    ry: 80;
    opacity: 0.16;
}

.deliver-card:nth-child(5):hover .deliver-illustration svg ellipse:nth-child(2) {
    rx: 103;
    ry: 66;
    opacity: 0.2;
}

.deliver-card:nth-child(5):hover .deliver-illustration svg ellipse:nth-child(3) {
    rx: 78;
    ry: 50;
    opacity: 0.26;
}

.deliver-card:nth-child(5):hover .deliver-illustration svg ellipse:nth-child(4) {
    rx: 52;
    ry: 35;
    opacity: 0.32;
}

.deliver-card:nth-child(5):hover .deliver-illustration svg ellipse:nth-child(5) {
    rx: 28;
    ry: 20;
    opacity: 0.38;
}

.deliver-card:nth-child(5):hover .deliver-illustration svg circle {
    r: 10;
}

/* Card 6: Entity — outer nodes drift inward, center grows */
.deliver-card:nth-child(6):hover .deliver-illustration svg circle[r="14"] {
    r: 18;
}

.deliver-card:nth-child(6):hover .deliver-illustration svg circle[r="8"] {
    r: 10;
    opacity: 0.25;
}

.deliver-card:nth-child(6):hover .deliver-illustration svg circle[r="6"] {
    r: 8;
    opacity: 0.2;
}

.deliver-card:nth-child(6):hover .deliver-illustration svg circle[r="5"] {
    r: 7;
    opacity: 0.18;
}

.deliver-card:nth-child(6):hover .deliver-illustration svg circle[r="4"] {
    r: 6;
    opacity: 0.15;
}

.deliver-card:nth-child(6):hover .deliver-illustration svg line {
    opacity: 0.25;
}

/* Card variants are defined inline above in the new card styles */

/* --- Architecture (V2) --- */
.architecture {
    background: var(--bg-secondary);
}

.arch-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-16);
}

/* Badges */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    color: var(--product-investor);
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.15);
}

.suite-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-4);
}

.suite-status--dev { color: var(--accent-warm); }

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.status-dot--live {
    background: var(--product-investor);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}
.status-dot--dev {
    background: var(--accent-warm);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}

/* Scope block */
.scope-block { margin-bottom: var(--space-6); }
.scope-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-10);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--border-subtle);
}
.scope-title {
    font-size: var(--text-3xl);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-2);
}
.scope-sub {
    font-size: var(--text-sm);
    color: var(--accent-blue);
    font-weight: 500;
}
.scope-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 460px;
    text-align: right;
}

/* Scope product cards — horizontal 4-col */
.scope-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}
.scope-prod {
    display: flex;
    flex-direction: column;
    padding: var(--space-6) var(--space-5);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.4s var(--ease-out);
}
.scope-prod:hover {
    border-color: color-mix(in srgb, var(--pc) 30%, transparent);
    background: color-mix(in srgb, var(--pc) 4%, var(--bg-card));
    transform: translateY(-3px);
}
/* Header row: icon + title side-by-side */
.scope-prod__head {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}
.scope-prod__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--pc) 10%, transparent);
    flex-shrink: 0;
}
.scope-prod__icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}
.scope-prod h4 {
    font-size: var(--text-lg);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
}
.scope-prod p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: 1.6;
    flex: 1;
}
.scope-prod__arrow {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    color: var(--text-muted);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all 0.3s var(--ease-out);
}
.scope-prod__arrow svg { width: 16px; height: 16px; }
.scope-prod:hover .scope-prod__arrow {
    opacity: 1;
    color: var(--pc);
    transform: translate(0, 0);
}

/* Intelligence Suite block */
.intel-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(245,158,11,0.12);
    background: linear-gradient(135deg, rgba(245,158,11,0.03) 0%, var(--bg-card) 40%);
    overflow: hidden;
}
.intel-block__content {
    padding: var(--space-10);
}
.intel-block__title {
    font-size: var(--text-3xl);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-2);
}
.intel-block__sub {
    font-size: var(--text-sm);
    color: var(--accent-warm);
    font-weight: 500;
    margin-bottom: var(--space-4);
}
.intel-block__body {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-5);
}
.intel-block__body em { color: var(--text-primary); font-style: italic; }
/* Refined Coming-Soon callout with tag + date row */
.intel-callout {
    margin-bottom: var(--space-6);
    padding: var(--space-5) var(--space-5);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.02));
    border: 1px solid rgba(245,158,11,0.2);
    position: relative;
    overflow: hidden;
}
.intel-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-warm), rgba(245,158,11,0.3));
}
.intel-callout__label {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
}
.intel-callout__tag {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-warm);
}
.intel-callout__divider {
    flex: 0 0 12px;
    height: 1px;
    background: rgba(245,158,11,0.4);
}
.intel-callout__date {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    color: rgba(245,158,11,0.7);
    letter-spacing: 0.04em;
}
.intel-callout__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 4px;
}
.intel-callout__sub {
    font-size: var(--text-sm);
    font-weight: 450;
    color: var(--text-tertiary);
    margin: 0;
    line-height: 1.5;
}

/* Architecture visual — Unsplash image with gradient overlay */
.intel-block__visual {
    position: relative;
    overflow: hidden;
    min-height: 360px;
}
.intel-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s var(--ease-out);
}
.intel-block:hover .intel-visual-img {
    transform: scale(1.04);
}
.intel-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(225deg,
            rgba(245, 158, 11, 0.25) 0%,
            rgba(6, 13, 24, 0.55) 45%,
            rgba(6, 13, 24, 0.85) 100%),
        linear-gradient(180deg,
            transparent 0%,
            rgba(6, 13, 24, 0.2) 100%);
    pointer-events: none;
}

/* --- Stats (V2) --- */
.stats-bar {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-6);
}
.stat {
    text-align: center;
    flex: 1;
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
    display: inline;
}
.stat-suffix-inline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--accent-blue);
    margin-left: var(--space-2);
}
.stat-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-top: var(--space-3);
}

/* --- Industries (V2 — vertical list) --- */
.industries {
    background: #F3F6FB;
}
.ind-head {
    max-width: 680px;
    margin-bottom: var(--space-16);
}
.ind-head .section-title {
    color: #0A0F1C;
}
.ind-head .section-tag {
    color: var(--accent-blue);
}
.ind-head .section-tag::after {
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    opacity: 0.3;
}

.verticals {
    display: flex;
    flex-direction: column;
}
.vertical {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-8) 0;
    border-top: 1px solid rgba(10,15,28,0.08);
    transition: background 0.3s ease;
}
.vertical:last-child { border-bottom: 1px solid rgba(10,15,28,0.08); }
.vertical:hover { background: rgba(82,184,224,0.02); }

/* Square image with overlay */
.vertical__image {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}
.vertical__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}
.vertical:hover .vertical__image img {
    transform: scale(1.05);
}
/* Dark navy overlay that fades outward from the corners */
.vertical__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 13, 24, 0.75) 0%, rgba(6, 13, 24, 0.35) 60%, rgba(6, 13, 24, 0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Circular number badge on top of image */
.vertical__num {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: #0A0F1C;
    letter-spacing: 0.02em;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(6, 13, 24, 0.15);
}
.vertical__name {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #0A0F1C;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-2);
    line-height: 1.2;
}
.vertical__desc {
    font-size: var(--text-sm);
    color: #4A5568;
    line-height: 1.7;
    max-width: 480px;
}
.vertical__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    padding-top: 6px;
    justify-content: flex-end;
}
.ind-footnote {
    font-size: var(--text-sm);
    color: #64748B;
    margin-top: var(--space-12);
    max-width: 640px;
    line-height: 1.7;
}
.ind-footnote a { color: var(--accent-blue); font-weight: 500; }
.ind-footnote a:hover { text-decoration: underline; }

/* --- CTA (V2 + shader) --- */
.cta-section {
    padding: var(--space-32) 0;
    background: #060d18;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-shader {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
/* Darker overlay over the pixel canvas — radial vignette plus subtle wash
   so the headline + body remain crisply legible while the shimmer breathes
   through at the edges. */
.cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 60% at 50% 50%,
            rgba(6, 13, 24, 0.85) 0%,
            rgba(6, 13, 24, 0.65) 45%,
            rgba(6, 13, 24, 0.35) 100%),
        linear-gradient(180deg,
            rgba(6, 13, 24, 0.4) 0%,
            rgba(6, 13, 24, 0.55) 100%);
}
.cta-block {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}
.cta-headline {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-6);
    line-height: 1.12;
}
.cta-body {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-10);
}
.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

/* --- How It Works --- */
.how-it-works {
    background: var(--bg-primary);
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.step-item {
    display: grid;
    grid-template-columns: 60px 1fr 280px;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-8);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all var(--duration-base);
}

.step-item:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.step-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: rgba(82, 184, 224, 0.15);
    letter-spacing: -0.02em;
}

.step-content h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.step-content p {
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* Step Animations */
.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-anim {
    width: 200px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Signal Stream Animation */
.signal-stream {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.signal-particle {
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    border-radius: 2px;
    animation: stream-flow 3s linear infinite;
    opacity: 0;
}

.signal-particle:nth-child(1) { top: 15%; animation-delay: 0s; }
.signal-particle:nth-child(2) { top: 30%; animation-delay: 0.5s; }
.signal-particle:nth-child(3) { top: 45%; animation-delay: 1s; }
.signal-particle:nth-child(4) { top: 60%; animation-delay: 1.5s; }
.signal-particle:nth-child(5) { top: 75%; animation-delay: 2s; }
.signal-particle:nth-child(6) { top: 90%; animation-delay: 2.5s; }

@keyframes stream-flow {
    0% { left: -20%; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { left: 120%; opacity: 0; }
}

/* Resolve Nodes Animation */
.resolve-nodes {
    width: 100%;
    height: 100%;
    position: relative;
}

.resolve-node {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    border: 2px solid var(--accent-blue);
    background: var(--bg-card);
}

.resolve-node--1 { top: 10%; left: 15%; animation: orbit-resolve 4s ease-in-out infinite; }
.resolve-node--2 { top: 10%; right: 15%; animation: orbit-resolve 4s ease-in-out infinite 1.3s; }
.resolve-node--3 { bottom: 10%; left: 50%; transform: translateX(-50%); animation: orbit-resolve 4s ease-in-out infinite 2.6s; }

.resolve-center {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-blue);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(82, 184, 224, 0.3);
}

.resolve-lines {
    position: absolute;
    inset: 0;
}

@keyframes orbit-resolve {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Score Bars Animation */
.score-bars {
    display: flex;
    align-items: flex-end;
    gap: var(--space-2);
    height: 120px;
    width: 100%;
    padding: 0 var(--space-4);
}

.score-bar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(180deg, var(--color), color-mix(in srgb, var(--color) 30%, transparent));
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: var(--space-2);
    animation: grow-bar 1.5s var(--ease-out) forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.score-bar span {
    font-size: 10px;
    font-weight: 700;
    color: white;
    opacity: 0.9;
}

@keyframes grow-bar {
    to { transform: scaleY(1); }
}

/* Delivery Endpoints */
.delivery-endpoints {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.endpoint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-3);
    background: rgba(82, 184, 224, 0.05);
    border: 1px solid rgba(82, 184, 224, 0.1);
    border-radius: var(--radius-sm);
    color: var(--accent-blue);
    font-size: var(--text-xs);
    font-weight: 500;
}

.endpoint svg {
    width: 18px;
    height: 18px;
}

/* Outcome Rings */
.outcome-rings {
    position: relative;
    width: 140px;
    height: 140px;
}

.outcome-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(34, 197, 94, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring-expand 3s ease-out infinite;
}

.outcome-ring--1 { width: 60px; height: 60px; animation-delay: 0s; }
.outcome-ring--2 { width: 100px; height: 100px; animation-delay: 1s; }
.outcome-ring--3 { width: 140px; height: 140px; animation-delay: 2s; }

.outcome-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--product-investor);
}

.outcome-core svg {
    width: 28px;
    height: 28px;
}

@keyframes ring-expand {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
}

/* --- Cascade / SellScope --- */
.cascade {
    background: var(--bg-secondary);
    overflow: hidden;
}

.cascade-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.cascade-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.cascade-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.cascade-item strong {
    color: var(--text-primary);
}

.cascade-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dot-color);
    flex-shrink: 0;
    margin-top: 6px;
}

/* Cascade Visual */
.cascade-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cascade-ripple-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.cascade-center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid rgba(249, 115, 22, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    z-index: 2;
    color: var(--product-sell);
}

.cascade-center-node svg {
    width: 20px;
    height: 20px;
}

.cascade-center-node span {
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cascade-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.cascade-ripple--1 {
    width: 160px;
    height: 160px;
    animation: cascade-pulse 4s ease-out infinite;
}

.cascade-ripple--2 {
    width: 260px;
    height: 260px;
    animation: cascade-pulse 4s ease-out infinite 1.3s;
}

.cascade-ripple--3 {
    width: 360px;
    height: 360px;
    animation: cascade-pulse 4s ease-out infinite 2.6s;
}

@keyframes cascade-pulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}

.cascade-orbit-node {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid color-mix(in srgb, var(--color) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color);
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    --orbit-radius: 150px;
    transform:
        translate(-50%, -50%)
        rotate(var(--angle))
        translateY(calc(-1 * var(--orbit-radius)))
        rotate(calc(-1 * var(--angle)));
    animation: fade-in-node 0.6s var(--ease-out) var(--delay) forwards;
    opacity: 0;
}

.cascade-orbit-node svg {
    width: 18px;
    height: 18px;
}

@keyframes fade-in-node {
    to { opacity: 1; }
}

/* --- Industries --- */
/* --- Industries Section --- */
.industries {
    background: #F3F6FB;
}

.industries-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.industries-header-left {
    flex: 1.2;
    max-width: 600px;
}

.industries-header-left .section-tag {
    color: var(--accent-blue);
}

.industries-header-left .section-tag::after {
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    opacity: 0.3;
}

.industries-title {
    font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
    font-weight: 500;
    color: #0A0F1C;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.industries-header-right {
    flex: 0.6;
    display: flex;
    align-items: center;
    padding-top: var(--space-8);
}

.industries-subtitle {
    font-size: var(--text-base);
    color: #4A5568;
    line-height: 1.7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
}

.industry-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.45, 0, 0.55, 1),
                box-shadow 0.9s cubic-bezier(0.45, 0, 0.55, 1);
    background: #FFFFFF;
    border: 1px solid rgba(10, 15, 28, 0.06);
    position: relative;
}

/* Spotlight overlay */
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at 50% 40%, rgba(58, 130, 255, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 1;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(10, 15, 28, 0.08), 0 6px 16px rgba(10, 15, 28, 0.04);
}

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

/* Featured first card — dark variant spanning full width */
.industry-card--featured {
    grid-column: 1 / -1;
    background: #141B2D;
    border-color: rgba(255, 255, 255, 0.06);
}

.industry-card--featured::before {
    background: radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.industry-card--featured:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.industry-card--featured h3 {
    color: #F1F5F9;
}

.industry-card--featured p {
    color: #94A3B8;
}

.industry-card--featured .industry-label,
.industry-card--featured .industry-num {
    color: rgba(255, 255, 255, 0.5);
}

.industry-card--featured .industry-num {
    border-color: rgba(255, 255, 255, 0.15);
}

.industry-card-inner {
    padding: var(--space-8);
    position: relative;
    z-index: 2;
}

.industry-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
}

.industry-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748B;
}

.industry-num {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: rgba(10, 15, 28, 0.3);
    border: 1px solid rgba(10, 15, 28, 0.1);
    border-radius: 4px;
    padding: 2px 7px;
    line-height: 1.3;
}

.industry-card h3 {
    font-size: var(--text-xl);
    font-weight: 650;
    margin-bottom: var(--space-3);
    color: #0A0F1C;
    letter-spacing: -0.01em;
}

.industry-card p {
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-5);
    color: #4A5568;
}

.industry-products {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.industry-tag {
    font-size: 11px;
    font-weight: 500;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    background: color-mix(in srgb, var(--tag-bg) 12%, transparent);
    color: var(--tag-bg);
    border: 1px solid color-mix(in srgb, var(--tag-bg) 20%, transparent);
}

.expanding-note {
    text-align: center;
    padding: var(--space-6) var(--space-8);
    margin-top: var(--space-6);
    border-radius: var(--radius-lg);
    position: relative;
}

.expanding-note p {
    font-size: var(--text-sm);
    color: #64748B;
}

.expanding-note a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.expanding-note a:hover {
    text-decoration: underline;
}

/* --- Credibility --- */
.credibility {
    background: var(--bg-secondary);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.credibility::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(82, 184, 224, 0.03), transparent 60%);
    pointer-events: none;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
    position: relative;
}

.credibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-8) var(--space-4);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all var(--duration-base);
}

.credibility-item:hover {
    border-color: var(--border-subtle);
    background: rgba(255, 255, 255, 0.02);
}

.credibility-icon {
    color: var(--accent-blue);
    opacity: 0.4;
}

.credibility-icon svg {
    width: 20px;
    height: 20px;
}

.credibility-stat {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.credibility-label {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: 1.4;
}

/* --- CTA Section --- */
/* --- CTA Section --- */
.cta-section {
    background: var(--bg-primary);
    padding: var(--space-32) 0;
}

.cta-block {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: var(--space-6);
}

.cta-body {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-10);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-blue);
    background: rgba(82, 184, 224, 0.04);
    box-shadow: 0 0 0 3px rgba(82, 184, 224, 0.08);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

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

/* --- Footer --- */
.footer {
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: var(--space-4);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-col h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.footer-col a {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    transition: color var(--duration-fast);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--text-secondary);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* --- Cursor Glow Effect (Linear/Vercel style) --- */
.industry-card,
.suite-card {
    --glow-x: 50%;
    --glow-y: 50%;
}

.industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        250px circle at var(--glow-x) var(--glow-y),
        rgba(82, 184, 224, 0.06),
        transparent 60%
    );
    opacity: 0;
    transition: opacity var(--duration-base);
    pointer-events: none;
}

.industry-card:hover::after {
    opacity: 1;
}

/* --- Animations / Reveals --- */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CSS-only fallback: auto-reveal hero elements after page load */
.hero .animate-in { animation: hero-reveal 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero .hero-content .animate-in:nth-child(2) { animation-delay: 0.45s; }
.hero .hero-content .animate-in:nth-child(3) { animation-delay: 0.6s; }
.hero .hero-flow-diagram { animation-delay: 0.8s; }

@keyframes hero-reveal {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
}

body.motion-ready .reveal:not(.visible) {
    opacity: 0;
    transform: translateY(22px);
}

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

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

body.motion-ready .scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.72s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

body.motion-ready .scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.motion-ready .featured-in .scroll-reveal,
body.motion-ready .stats-bar .scroll-reveal {
    transform: translateY(14px);
}

body.motion-ready .featured-in .scroll-reveal.is-visible,
body.motion-ready .stats-bar .scroll-reveal.is-visible {
    transform: translateY(0);
}

.deliver-card.reveal,
.deliver-card.reveal.visible {
    transition:
        opacity 0.7s var(--ease-out),
        transform 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.85s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.deliver-card.reveal.visible:hover {
    transform: translateY(-4px);
}

/* Page hero entrances for non-home pages. */
.how-page .how-hero .animate-in,
.industries-page .industries-hero .animate-in,
.about-page .about-hero .animate-in,
.contact-page .contact-hero .animate-in,
.intelligence-page .intel-hero .animate-in {
    animation: hero-reveal 0.82s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.how-page .how-hero .animate-in:nth-child(2),
.industries-page .industries-hero .animate-in:nth-child(2),
.about-page .about-hero .animate-in:nth-child(2),
.contact-page .contact-hero .animate-in:nth-child(2),
.intelligence-page .intel-hero .animate-in:nth-child(2) {
    animation-delay: 0.12s;
}

.how-page .how-hero .animate-in:nth-child(3),
.industries-page .industries-hero .animate-in:nth-child(3),
.about-page .about-hero .animate-in:nth-child(3),
.contact-page .contact-hero .animate-in:nth-child(3),
.intelligence-page .intel-hero .animate-in:nth-child(3) {
    animation-delay: 0.24s;
}

.how-page .how-hero .animate-in:nth-child(4),
.industries-page .industries-hero .animate-in:nth-child(4),
.about-page .about-hero .animate-in:nth-child(4),
.contact-page .contact-hero .animate-in:nth-child(4),
.intelligence-page .intel-hero .animate-in:nth-child(4) {
    animation-delay: 0.36s;
}

.how-page .how-hero .scope-engine.animate-in,
.industries-page .industries-hero .industries-hero__marquee.animate-in,
.about-page .about-hero .about-hero__photo.animate-in,
.intelligence-page .intel-hero .intel-hero__visual.animate-in,
.contact-page .contact-hero .contact-stats-panel.animate-in {
    animation-delay: 0.48s;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .platform-header {
        flex-direction: column;
        gap: var(--space-4);
    }

    .platform-header-left {
        max-width: 100%;
    }

    .platform-header-right {
        padding-top: 0;
    }

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

    .industries-header {
        flex-direction: column;
        gap: var(--space-4);
    }

    .industries-header-left {
        max-width: 100%;
    }

    .industries-header-right {
        padding-top: 0;
    }

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

    .intel-block {
        grid-template-columns: 1fr;
    }

    .intel-block__visual {
        padding: var(--space-8);
    }

    .scope-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .scope-desc {
        text-align: left;
    }

    .vertical {
        grid-template-columns: 96px 1fr;
        gap: var(--space-4);
    }

    .vertical__image {
        width: 96px;
        height: 96px;
    }

    .vertical__num {
        width: 26px;
        height: 26px;
        font-size: 10px;
        top: var(--space-2);
        left: var(--space-2);
    }

    .vertical__tags {
        grid-column: 2;
        justify-content: flex-start;
        padding-top: var(--space-3);
    }

    .cascade-orbit-node {
        --orbit-radius: 120px;
    }

    .step-item {
        grid-template-columns: 50px 1fr;
    }

    .step-visual {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav-center {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav-container {
        transition:
            background 0.24s ease,
            border-color 0.24s ease;
    }

    .nav.scrolled .nav-container,
    .nav.scrolled.nav--light .nav-container {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav.scrolled .nav-container {
        background: rgba(10, 15, 28, 0.72);
    }

    .nav.scrolled.nav--light .nav-container {
        background: rgba(243, 246, 251, 0.9);
    }

    .nav[data-state="active"] .nav-container {
        background: transparent;
        border-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav[data-state="active"] .nav-bar {
        position: relative;
        z-index: 1002;
        min-height: 54px;
    }

    .nav[data-state="active"] .logo-svg {
        filter: none;
    }

    .nav[data-state="active"] .nav-mobile-toggle svg {
        color: #f8fbff;
    }

    .nav-mobile-panel {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: grid;
        width: 100vw;
        max-width: none;
        height: 100vh;
        height: 100dvh;
        align-content: center;
        min-height: 100dvh;
        padding: calc(var(--nav-height) + 3.5rem) clamp(1.25rem, 6vw, 2rem) 2rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        border: 0;
        border-radius: 0;
        background:
            radial-gradient(ellipse at 18% 12%, rgba(82,184,224,0.2), transparent 22rem),
            radial-gradient(ellipse at 84% 78%, rgba(139,92,246,0.14), transparent 24rem),
            linear-gradient(145deg, rgba(5,12,22,0.995), rgba(8,27,47,0.995) 56%, rgba(4,9,18,0.995));
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-18px) scale(0.985);
        transition:
            opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0.34s;
    }

    .nav-mobile-panel::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        opacity: 0.36;
        background-image:
            linear-gradient(rgba(139,227,255,0.07) 1px, transparent 1px),
            linear-gradient(90deg, rgba(139,227,255,0.07) 1px, transparent 1px);
        background-size: 58px 58px;
        mask-image: radial-gradient(ellipse 88% 70% at 50% 32%, #000, transparent 82%);
    }

    .nav[data-state="active"] .nav-mobile-panel {
        display: grid;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition:
            opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s;
    }

    .nav-mobile-links,
    .nav-mobile-ctas {
        position: relative;
        z-index: 1;
        width: min(100%, 440px);
        margin-inline: auto;
    }

    .nav-mobile-links {
        gap: 1rem;
        margin-bottom: 1.45rem;
    }

    .mobile-link {
        display: flex;
        align-items: center;
        min-height: 46px;
        color: rgba(248,251,255,0.9);
        font-family: var(--font-display);
        font-size: clamp(1.65rem, 7vw, 2.55rem);
        font-weight: 600;
        line-height: 0.98;
        letter-spacing: -0.045em;
    }

    .mobile-link.is-active::after {
        content: "";
        width: 0.42rem;
        height: 0.42rem;
        margin-left: 0.65rem;
        border-radius: 999px;
        background: var(--accent-blue);
        box-shadow: 0 0 16px rgba(82,184,224,0.55);
    }

    .mobile-link:hover {
        color: #ffffff;
    }

    .mobile-products {
        gap: 0.72rem;
    }

    .mobile-product-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0.1rem 0 0.25rem;
        border: 0;
    }

    .mobile-product-links a {
        min-height: 46px;
        padding: 0.55rem 0.1rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: rgba(226,239,255,0.86);
        font-family: var(--font-display);
        font-size: 0.98rem;
        font-weight: 600;
        letter-spacing: -0.02em;
    }

    .mobile-product-links a span {
        display: inline-flex;
        align-items: baseline;
        gap: 0.45rem;
    }

    .mobile-product-links a small {
        color: color-mix(in srgb, var(--product-color) 82%, #ffffff);
        font-family: var(--font-primary);
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .mobile-product-links a.is-active {
        color: #ffffff;
    }

    .mobile-product-links img {
        width: 22px;
        height: 22px;
        padding: 3px;
        border-radius: 8px;
        background: color-mix(in srgb, var(--product-color) 12%, rgba(255,255,255,0.04));
    }

    .nav-mobile-ctas {
        gap: 0.75rem;
        padding-top: 0.35rem;
    }

    .nav-mobile-ctas .nav-cta {
        justify-content: center;
        min-height: 54px;
        width: 100%;
        border-radius: 16px;
        font-size: 1rem;
        font-weight: 700;
        box-shadow: 0 18px 42px rgba(82,184,224,0.2);
    }

    .nav-mobile-ctas .nav-cta--outline {
        min-height: 48px;
        border-color: rgba(139,227,255,0.22);
        background: rgba(255,255,255,0.035);
        color: rgba(226,239,255,0.82);
        box-shadow: none;
    }

    .hero-content {
        padding: var(--space-10) var(--space-2) var(--space-6);
    }

    .hero-title {
        font-size: var(--mobile-hero-title);
        line-height: 1;
        text-wrap: balance;
    }

    .hero-subtitle {
        font-size: var(--mobile-body-copy);
        line-height: 1.55;
        max-width: 34rem;
    }

    .hero-video-bg,
    .product-page .product-hero .hero-video-bg {
        display: none !important;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 360px);
        margin-inline: auto;
    }

    .hero-ctas .btn {
        justify-content: center;
    }

    .hero-flow-diagram {
        height: 200px;
    }

    .flow-center-logo {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .flow-logo-img {
        width: 40px;
    }

    .flow-prod-node {
        width: 44px;
        height: 44px;
        border-radius: 11px;
    }

    .flow-prod-node img {
        width: 24px;
        height: 24px;
    }

    .hero-platform-viz {
        padding: var(--space-4);
    }

    .viz-nodes {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        flex-direction: column;
        gap: var(--space-8);
    }

    .stats-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-4);
        align-items: stretch;
    }

    .stats-row .stat {
        display: grid;
        align-content: center;
        min-height: 128px;
        padding: var(--space-5) var(--space-3);
        text-align: center;
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-lg);
        background: rgba(255,255,255,0.03);
    }

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

    .platform .deliver-card.is-mobile-active {
        transform: translateY(-4px);
    }

    .platform .deliver-card--dark.is-mobile-active {
        border-color: rgba(82,184,224,0.25);
        box-shadow: 0 20px 60px rgba(82,184,224,0.15), 0 6px 20px rgba(0,0,0,0.3);
    }

    .platform .deliver-card--accent.is-mobile-active {
        border-color: rgba(255,255,255,0.2);
        box-shadow: 0 20px 60px rgba(249,115,22,0.35), 0 6px 20px rgba(249,115,22,0.2);
    }

    .platform .deliver-card--light.is-mobile-active,
    .platform .deliver-card--muted.is-mobile-active {
        border-color: rgba(82,184,224,0.3);
        box-shadow: 0 20px 60px rgba(10,15,28,0.1), 0 6px 20px rgba(10,15,28,0.05);
    }

    .platform .deliver-card.is-mobile-active .card-glow {
        opacity: 1.2;
    }

    .platform .deliver-card.is-mobile-active .card-illust--signals .sig-hl--1 { transform: scale(1.35); transition-delay: 0s; filter: drop-shadow(0 0 10px rgba(255,255,255,0.6)); }
    .platform .deliver-card.is-mobile-active .card-illust--signals .sig-hl--2 { transform: scale(1.35); transition-delay: 0.08s; filter: drop-shadow(0 0 10px rgba(255,255,255,0.6)); }
    .platform .deliver-card.is-mobile-active .card-illust--signals .sig-hl--3 { transform: scale(1.45); transition-delay: 0.16s; filter: drop-shadow(0 0 8px rgba(255,255,255,0.5)); }
    .platform .deliver-card.is-mobile-active .card-illust--signals .sig-hl--4 { transform: scale(1.5); transition-delay: 0.24s; filter: drop-shadow(0 0 6px rgba(255,255,255,0.4)); }
    .platform .deliver-card.is-mobile-active .card-illust--signals .sig-hl--5 { transform: scale(1.4); transition-delay: 0.32s; filter: drop-shadow(0 0 10px rgba(255,255,255,0.5)); }
    .platform .deliver-card.is-mobile-active .card-illust--signals .sig-grid { opacity: 0.6; }

    .platform .deliver-card.is-mobile-active .card-illust--scoring .score-orbit {
        filter: drop-shadow(0 0 16px rgba(82, 184, 224, 0.72));
    }

    .platform .deliver-card.is-mobile-active .card-illust--scoring .score-orbit--outer { --score-fill: 304deg; }
    .platform .deliver-card.is-mobile-active .card-illust--scoring .score-orbit--mid { --score-fill: 232deg; }
    .platform .deliver-card.is-mobile-active .card-illust--scoring .score-orbit--inner { --score-fill: 165deg; }
    .platform .deliver-card.is-mobile-active .card-illust--scoring .score-center {
        transform: scale(1.45);
        opacity: 0.95;
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
    }

    .platform .deliver-card.is-mobile-active .card-illust--history .hist-ellipse--1 { transform: scaleX(1.15) translateY(3px); transition-delay: 0s; }
    .platform .deliver-card.is-mobile-active .card-illust--history .hist-ellipse--2 { transform: scaleX(1.12) translateY(2px); transition-delay: 0.05s; }
    .platform .deliver-card.is-mobile-active .card-illust--history .hist-ellipse--3 { transform: scaleX(1.10) translateY(1px); transition-delay: 0.10s; }
    .platform .deliver-card.is-mobile-active .card-illust--history .hist-ellipse--4 { transform: scaleX(1.08); transition-delay: 0.15s; }
    .platform .deliver-card.is-mobile-active .card-illust--history .hist-ellipse--5 { transform: scaleX(1.06) translateY(-1px); transition-delay: 0.20s; }
    .platform .deliver-card.is-mobile-active .card-illust--history .hist-ellipse--6 { transform: scaleX(1.04) translateY(-2px); transition-delay: 0.25s; }
    .platform .deliver-card.is-mobile-active .card-illust--history .hist-top {
        transform: translateY(-6px) scale(1.08);
        transition-delay: 0.30s;
        filter: drop-shadow(0 4px 12px rgba(255,255,255,0.3));
    }

    .platform .deliver-card.is-mobile-active .card-illust--delivery .del-outer {
        transform: scale(1.4);
        opacity: 0.15;
    }

    .platform .deliver-card.is-mobile-active .card-illust--delivery .del-inner {
        transform: scale(1.2);
        filter: drop-shadow(0 0 8px rgba(10,15,28,0.4));
    }

    .platform .deliver-card.is-mobile-active .card-illust--delivery .del-line {
        animation-play-state: running;
        opacity: 0.4;
    }

    .platform .deliver-card.is-mobile-active .card-illust--delivery .del-endpoint {
        opacity: 0.18;
        transform: scale(1.05);
    }

    .platform .deliver-card.is-mobile-active .card-illust--compliance .comp-center {
        transform: scale(1.8);
        transition-delay: 0s;
        filter: drop-shadow(0 0 6px rgba(10,15,28,0.3));
    }

    .platform .deliver-card.is-mobile-active .card-illust--compliance .comp-ring--5 { transform: scale(1.1); transition-delay: 0.05s; opacity: 0.45; }
    .platform .deliver-card.is-mobile-active .card-illust--compliance .comp-ring--4 { transform: scale(1.08); transition-delay: 0.12s; opacity: 0.4; }
    .platform .deliver-card.is-mobile-active .card-illust--compliance .comp-ring--3 { transform: scale(1.06); transition-delay: 0.19s; opacity: 0.35; }
    .platform .deliver-card.is-mobile-active .card-illust--compliance .comp-ring--2 { transform: scale(1.04); transition-delay: 0.26s; opacity: 0.3; }
    .platform .deliver-card.is-mobile-active .card-illust--compliance .comp-ring--1 { transform: scale(1.02); transition-delay: 0.33s; opacity: 0.25; }

    .platform .deliver-card.is-mobile-active .card-illust--entity .ent-outer {
        transform: scale(0.6) translate(calc(var(--dx, 0) * 1px), calc(var(--dy, 0) * 1px));
    }

    .platform .deliver-card.is-mobile-active .card-illust--entity .ent-mid {
        transform: scale(1.2);
        opacity: 0.3;
    }

    .platform .deliver-card.is-mobile-active .card-illust--entity .ent-center {
        transform: scale(1.4);
        filter: drop-shadow(0 0 10px rgba(10,15,28,0.4));
    }

    .platform .deliver-card.is-mobile-active .card-illust--entity .ent-line {
        opacity: 0.25;
    }

    .platform .deliver-card.is-mobile-active .card-illust--entity .ent-inner-line {
        opacity: 0.45;
    }

    .scope-products {
        grid-template-columns: 1fr;
    }

    .scope-prod {
        padding-right: var(--space-12);
    }

    .scope-prod__arrow {
        opacity: 1;
        color: var(--pc);
        transform: translate(0, 0);
    }

    .section {
        padding: var(--space-16) 0;
    }

    .section-header {
        margin-bottom: var(--space-10);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .step-item {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: var(--space-6);
    }

    .step-number {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(3rem, 13vw, 3.45rem);
    }

    .hero-title-desktop {
        display: none;
    }

    .hero-title-mobile {
        display: inline;
    }

    .hero-subtitle {
        font-size: 1.08rem;
    }

    .stat-number {
        font-size: clamp(2rem, 11vw, 2.8rem);
    }

    .cascade-ripple-container {
        width: 260px;
        height: 260px;
    }

    .cascade-orbit-node {
        --orbit-radius: 95px;
        width: 36px;
        height: 36px;
    }

    .cascade-orbit-node svg {
        width: 14px;
        height: 14px;
    }
}

/* --- Prefers Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .logo-scroll-content {
        animation: none;
    }

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

    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .animate-in {
        opacity: 1;
        transform: none;
    }

    .nav-mobile-panel {
        transition: none !important;
    }
}
