        :root {
            /* Paleta base WorkTeam: solo neutros + naranja oficial */
            --orange-main: #FF8200;
            --orange-soft: rgba(255, 130, 0, 0.10);
            --orange-medium: rgba(255, 130, 0, 0.22);
            --orange-strong: rgba(255, 130, 0, 0.50);
            --orange-glow: rgba(255, 130, 0, 0.35);
            --bg-primary: #FFFFFF;
            --bg-secondary: #D0D3D4;
            --bg-glass: rgba(255, 255, 255, 0.72);
            --border-soft: rgba(0, 0, 0, 0.14);
            --text-primary: #000000;
            --text-secondary: #646566;
            --text-muted: #888888;

            --orange: var(--orange-main);
            --bg: var(--bg-primary);
            --text: var(--text-primary);
            --text-soft: var(--text-secondary);
            --muted: var(--text-muted);
            --muted-deep: var(--text-muted);
            --surface: #FFFFFF;
            --surface-strong: rgba(255, 255, 255, 0.88);
            --surface-edge: var(--orange-medium);
            --line: rgba(0, 0, 0, 0.12);
            --line-soft: var(--orange-medium);
            --shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.11);
            --shadow-glass: 0 12px 24px rgba(0, 0, 0, 0.09);
            --shadow-glow: 0 0 26px var(--orange-glow);
            --radius-sm: 12px;
            --radius-md: 18px;
            --radius-lg: 28px;
            --space: clamp(1rem, 2.5vw, 2.2rem);
            --maxw: 1460px;
            --hero-feature-height: 500px;

            /* Estado funcional opcional */
            --success: #22C55E;
            --warning: #F59E0B;
            --danger: #EF4444;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text);
            line-height: 1.55;
            background:
                radial-gradient(circle at 12% 8%, rgba(255, 130, 0, 0.08), transparent 20%),
                radial-gradient(circle at 88% 86%, rgba(255, 130, 0, 0.07), transparent 24%),
                var(--bg-primary);
            min-height: 100vh;
            overflow-x: hidden;
        }

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

        .container {
            width: min(var(--maxw), 100% - 2rem);
            margin: 0 auto;
        }

        .glass {
            background: var(--bg-glass);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-md);
            backdrop-filter: blur(14px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 16px 34px rgba(0, 0, 0, 0.12);
        }

        h1,
        h2,
        h3,
        .display {
            font-family: "Space Grotesk", "Manrope", sans-serif;
            margin: 0;
            line-height: 1.08;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(2.15rem, 5.2vw, 4.05rem);
        }

        h2 {
            font-size: clamp(1.8rem, 3.3vw, 2.65rem);
        }

        h3 {
            font-size: 1.34rem;
        }

        p {
            margin: 0;
            color: var(--text-soft);
            font-size: clamp(1rem, 2vw, 1.08rem);
        }

        .eyebrow {
            margin: 0;
            color: var(--orange);
            font-size: .82rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            font-weight: 700;
        }

        .section {
            position: relative;
            padding: 90px 0;
            background:
                radial-gradient(circle at 18% 2%, rgba(255, 130, 0, 0.04), transparent 34%),
                radial-gradient(circle at 84% 94%, rgba(208, 211, 212, 0.5), transparent 24%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
        }

        .section::before,
        .section::after {
            content: "";
            pointer-events: none;
            position: absolute;
            width: min(480px, 50vw);
            height: min(480px, 50vw);
            border-radius: 50%;
            opacity: .14;
            background: radial-gradient(circle, rgba(255, 130, 0, 0.22), transparent 64%);
            z-index: 0;
        }

        .section::before {
            right: -280px;
            top: 42px;
            filter: blur(18px);
        }

        .section::after {
            left: -250px;
            bottom: -180px;
            filter: blur(20px);
            transform: rotate(14deg);
            opacity: .1;
        }

        .section-heading h2 {
            color: #000000;
        }

        .section > .container {
            position: relative;
            z-index: 1;
        }

        .section-heading > p {
            color: #646566;
            max-width: 70ch;
        }

        .section:not(.hero):nth-of-type(even) {
            background:
                radial-gradient(circle at 82% 14%, rgba(255, 130, 0, 0.04), transparent 33%),
                radial-gradient(circle at 14% 88%, rgba(208, 211, 212, 0.42), transparent 28%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
        }

        .section-heading {
            max-width: 740px;
            margin-bottom: 1.8rem;
        }

        .btn {
            border: 0;
            border-radius: 999px;
            font-weight: 700;
            padding: .86rem 1.2rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .45rem;
            transition: transform .2s ease, box-shadow .25s ease, background-color .2s ease, border-color .2s ease;
        }

        .btn:focus-visible {
            outline: 2px solid var(--orange);
            outline-offset: 3px;
        }

        .btn-primary {
            color: #000000;
            background: linear-gradient(180deg, var(--orange-main), rgba(255, 130, 0, 0.82));
            border: 1px solid rgba(255, 130, 0, 0.55);
            box-shadow: var(--shadow-glow);
        }

        .btn-secondary {
            color: #000000;
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.14);
        }

        .btn-secondary:hover {
            background: rgba(255, 130, 0, 0.16);
            border-color: var(--orange-soft);
        }

        .btn:hover {
            box-shadow: 0 10px 28px rgba(255, 130, 0, 0.26);
            transform: translateY(-1px);
        }

        .btn:active {
            transform: translateY(0);
        }

        .header-shell {
            position: sticky;
            top: 0;
            z-index: 25;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(18px);
            background: rgba(255, 255, 255, 0.85);
            transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
        }

        .header-shell.scrolled {
            border-color: var(--line-soft);
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
        }

        .nav-inner {
            min-height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .brand {
            font-family: "Space Grotesk", sans-serif;
            display: inline-flex;
            align-items: center;
            gap: .65rem;
            padding: .2rem .46rem;
            border: 1px solid rgba(255, 130, 0, 0.25);
            border-radius: 12px;
            background: linear-gradient(130deg, rgba(208, 211, 212, 0.55), rgba(255, 130, 0, 0.16));
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 0 0 1px rgba(255, 130, 0, 0.12);
            font-weight: 800;
            letter-spacing: .06em;
            color: var(--text);
            color: #000000;
        }

        .brand-logo {
            display: block;
            width: 142px;
            height: auto;
            filter:
                drop-shadow(0 1px 0 rgba(0, 0, 0, 0.28)) drop-shadow(0 0 6px rgba(0, 0, 0, 0.08));
        }

        .top-nav {
            display: flex;
            align-items: center;
            gap: .85rem;
        }

        .top-nav a {
            font-size: .93rem;
            color: var(--text-soft);
            padding: .28rem .04rem;
            position: relative;
            color: #000000;
        }

        .top-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width .2s ease;
        }

        .top-nav a:hover,
        .top-nav a:focus-visible {
            color: #000000;
        }

        .top-nav a:hover::after,
        .top-nav a:focus-visible::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            position: relative;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(0, 0, 0, 0.14);
            border-radius: 11px;
            padding: 0;
            background: rgba(255, 255, 255, 0.9);
            color: #000000;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            gap: 4px;
            flex-direction: column;
            z-index: 35;
        }

        .menu-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: #000000;
            transition: transform .2s ease, opacity .2s ease;
            border-radius: 10px;
        }

        .menu-backdrop {
            display: none;
        }

        .nav-cta-mobile {
            display: none;
        }

        /* Hero premium: light tech con capas claras + acento naranja */
        .hero {
            position: relative;
            isolation: isolate;
            padding-top: 4rem;
            padding-bottom: 4.5rem;
            overflow: hidden;
            color: #000000;
            /* Fondo de operación claro con luz naranja controlada */
            background:
                radial-gradient(circle at 67% 20%, rgba(255, 130, 0, 0.16), transparent 46%),
                radial-gradient(circle at 20% 82%, rgba(255, 130, 0, 0.10), transparent 50%),
                radial-gradient(circle at 50% 100%, rgba(208, 211, 212, 0.22), transparent 58%),
                #FFFFFF;
        }

        .hero::before,
        .hero::after {
            z-index: 0;
        }

        .hero::before,
        .hero::after {
            content: "";
            position: absolute;
            pointer-events: none;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            z-index: -1;
            filter: blur(24px);
        }

        .hero::before {
            background: radial-gradient(circle at 72% 28%, rgba(255, 130, 0, 0.16), transparent 56%);
            top: -130px;
            right: -180px;
            opacity: .78;
            animation: heroGlow 16s ease-in-out infinite;
        }

        .hero::after {
            background: radial-gradient(circle at 16% 78%, rgba(255, 130, 0, 0.12), transparent 58%);
            left: -160px;
            right: auto;
            top: 180px;
            opacity: .48;
            animation: heroGlow 20s ease-in-out infinite reverse;
        }

        .hero-layout {
            padding: 1.3rem;
            position: relative;
            z-index: 1;
            border-radius: var(--radius-lg);
            background:
                linear-gradient(150deg, #FFFFFF 0%, rgba(255, 255, 255, 0.94) 58%, rgba(208, 211, 212, 0.35) 100%),
                radial-gradient(circle at 0% 0%, rgba(255, 130, 0, 0.12), transparent 50%);
            border: 1px solid rgba(208, 211, 212, 0.56);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 32px 68px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(9px);
            display: grid;
            gap: 1.2rem;
            grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
            align-items: stretch;
            transition: box-shadow .3s ease, border-color .3s ease;
        }

        .hero-stage {
            display: grid;
            gap: 1.3rem;
            grid-template-columns: minmax(0, 1.42fr) minmax(410px, 0.9fr);
            align-items: stretch;
        }

        .hero-stage-main {
            display: grid;
            gap: 1rem;
            min-width: 0;
            height: 100%;
        }

        .hero-console {
            display: grid;
            gap: .9rem;
            align-content: start;
            grid-template-rows: repeat(2, minmax(0, 1fr));
        }

        .hero-copy {
            padding: clamp(1.2rem, 2.2vw, 2rem);
            background:
                linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82)),
                radial-gradient(circle at 95% 12%, rgba(255, 130, 0, 0.10), transparent 52%);
            position: relative;
            z-index: 1;
            overflow: hidden;
            height: 100%;
            min-height: var(--hero-feature-height);
            border: 1px solid rgba(208, 211, 212, 0.52);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.95),
                0 18px 34px rgba(0, 0, 0, 0.12),
                0 0 20px rgba(255, 130, 0, 0.10);
            border-radius: 16px;
            display: grid;
            align-content: start;
        }

        .hero-copy::before {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--orange-soft), transparent 68%);
            pointer-events: none;
            opacity: .3;
            top: -92px;
            right: -104px;
        }

        .hero-copy>* {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            max-width: 18ch;
            margin-top: .45rem;
            color: #000000;
        }

        .lead {
            margin-top: 0.8rem;
            max-width: 56ch;
            color: #646566;
        }

        .hero-definition {
            margin-top: 1rem;
            font-size: 1rem;
            line-height: 1.5;
            color: #4B5563;
            font-weight: 600;
            max-width: 48ch;
        }

        .actions {
            margin-top: 1.5rem;
            display: flex;
            gap: .75rem;
            flex-wrap: wrap;
        }

        .ia-modal-backdrop {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: grid;
            place-items: center;
            padding: 1.2rem;
            background: rgba(17, 24, 39, 0.36);
            backdrop-filter: blur(10px);
        }

        .ia-modal {
            width: min(1120px, 100%);
            max-height: min(88vh, 920px);
            overflow: auto;
            padding: 0 1.4rem 1.4rem;
            border-radius: 26px;
            border: 1px solid rgba(255, 130, 0, 0.18);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
        }

        .ia-demo-section {
            position: relative;
            padding: 0;
            min-width: 0;
            margin-top: .35rem;
            display: flex;
        }

        .ia-demo-section::before,
        .ia-demo-section::after {
            content: none;
        }

        .ia-demo-section .ia-modal {
            width: 100%;
            max-height: none;
            overflow: visible;
            padding: 1.15rem;
            height: 100%;
            position: sticky;
            top: calc(var(--header-offset, 72px) + 1rem);
            border-radius: 24px;
            border-color: rgba(255, 130, 0, 0.14);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
            display: grid;
            align-content: start;
        }

        .ia-demo-section .ia-modal::before {
            content: "";
            position: absolute;
            left: -34px;
            top: 76px;
            width: 26px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(255, 130, 0, 0), rgba(255, 130, 0, 0.55));
            opacity: .7;
        }

        .ia-demo-body {
            display: grid;
            gap: .9rem;
        }

        .ia-demo-bridge {
            margin-top: .55rem;
            font-size: .92rem;
            color: #646566;
            font-weight: 600;
            max-width: 34ch;
        }

        .ia-profile-card-compact {
            gap: .9rem;
            background: rgba(255, 255, 255, 0.82);
            min-height: var(--hero-feature-height);
        }

        .ia-demo-summary {
            display: grid;
            gap: .8rem;
            grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
            align-items: stretch;
        }

        .ia-demo-meta {
            display: grid;
            gap: .45rem;
            padding: .9rem .95rem;
            border-radius: 18px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
        }

        .ia-demo-meta p {
            font-size: .92rem;
            color: #646566;
        }

        .ia-analysis-block-compact {
            padding: .95rem 1rem;
        }

        .ia-analysis-block-compact .ia-list {
            gap: .55rem;
        }

        .ia-inline-trigger {
            width: 100%;
        }

        .ia-modal-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.15rem;
            position: sticky;
            top: 0;
            z-index: 2;
            margin-inline: -1.4rem;
            padding: 1.4rem 1.4rem .95rem;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(255, 255, 255, 0.97));
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 10px 18px rgba(255, 255, 255, 0.9);
        }

        .ia-demo-section .ia-modal-header {
            position: static;
            margin: 0 0 1rem;
            padding: 0 0 .95rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            background: transparent;
            backdrop-filter: none;
            box-shadow: none;
        }

        .ia-modal-header h2 {
            font-size: clamp(1.6rem, 2.4vw, 2.2rem);
            color: #000000;
            margin-top: .28rem;
        }

        .ia-modal-header p:not(.eyebrow) {
            margin-top: .4rem;
            max-width: 62ch;
            font-size: .98rem;
            color: #646566;
        }

        .ia-modal-close {
            width: 42px;
            height: 42px;
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.92);
            color: #000000;
            font-size: 1.4rem;
            line-height: 1;
            display: inline-grid;
            place-items: center;
            cursor: pointer;
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }

        .ia-modal-close:hover,
        .ia-modal-close:focus-visible {
            transform: translateY(-1px);
            border-color: rgba(255, 130, 0, 0.35);
            box-shadow: 0 12px 24px rgba(255, 130, 0, 0.14);
        }

        .ia-modal-layout {
            display: grid;
            gap: 1rem;
            grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.3fr);
        }

        .ia-profile-card,
        .ia-analysis-card {
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.86);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 16px 30px rgba(0, 0, 0, 0.08);
        }

        .ia-demo-section .ia-analysis-card {
            display: none;
        }

        .ia-profile-card {
            padding: 1.2rem;
            display: grid;
            gap: 1rem;
            align-content: start;
        }

        .ia-profile-head {
            display: flex;
            align-items: stretch;
            gap: 1rem;
        }

        .ia-avatar {
            width: 132px;
            min-width: 132px;
            height: 154px;
            border-radius: 24px;
            overflow: hidden;
            background: linear-gradient(160deg, rgba(255, 130, 0, 0.18), rgba(255, 255, 255, 0.88));
            border: 1px solid rgba(255, 130, 0, 0.25);
            box-shadow: 0 16px 34px rgba(255, 130, 0, 0.16);
        }

        .ia-avatar img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center top;
        }

        .ia-profile-identity {
            display: grid;
            gap: .75rem;
            align-content: start;
        }

        .ia-profile-head h3,
        .ia-analysis-block h3 {
            color: #000000;
        }

        .ia-profile-head p {
            margin-top: .22rem;
            color: #646566;
            font-size: .96rem;
        }

        .ia-profile-highlights {
            display: grid;
            gap: .75rem;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .ia-highlight-card {
            padding: .9rem .95rem;
            border-radius: 18px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
        }

        .ia-highlight-card span {
            display: block;
            font-size: .78rem;
            text-transform: uppercase;
            letter-spacing: .08em;
            font-weight: 700;
            color: #888888;
        }

        .ia-highlight-card strong {
            display: block;
            margin-top: .35rem;
            color: #000000;
            font-family: "Space Grotesk", sans-serif;
            font-size: 1.2rem;
            line-height: 1.15;
        }

        .ia-highlight-accent {
            border-color: rgba(255, 130, 0, 0.22);
            background: linear-gradient(180deg, rgba(255, 130, 0, 0.12), rgba(255, 255, 255, 0.96));
        }

        .ia-profile-grid {
            margin: 0;
            display: grid;
            gap: .8rem;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .ia-profile-grid div {
            padding: .8rem .85rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .ia-profile-grid dt {
            font-size: .78rem;
            text-transform: uppercase;
            letter-spacing: .09em;
            font-weight: 700;
            color: #888888;
            margin-bottom: .2rem;
        }

        .ia-profile-grid dd {
            margin: 0;
            color: #000000;
            font-weight: 700;
            line-height: 1.35;
        }

        .ia-profile-wide {
            grid-column: 1 / -1;
        }

        .ia-profile-tags,
        .ia-variable-grid {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
        }

        .ia-chip,
        .ia-soft-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            padding: .46rem .78rem;
            font-size: .84rem;
            font-weight: 700;
            line-height: 1;
        }

        .ia-chip {
            border: 1px solid rgba(255, 130, 0, 0.3);
            background: rgba(255, 130, 0, 0.12);
            color: #000000;
        }

        .ia-soft-chip {
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.92);
            color: #646566;
            font-weight: 600;
        }

        .ia-analysis-card {
            padding: 1.2rem;
            display: grid;
            gap: 1rem;
        }

        .ia-analysis-summary {
            display: grid;
            gap: .8rem;
            grid-template-columns: 180px 1fr;
        }

        .ia-score-card {
            padding: 1rem;
            border-radius: 18px;
            border: 1px solid rgba(255, 130, 0, 0.24);
            background: linear-gradient(180deg, rgba(255, 130, 0, 0.12), rgba(255, 255, 255, 0.96));
            text-align: center;
        }

        .ia-score-card span {
            display: block;
            font-size: .82rem;
            letter-spacing: .08em;
            text-transform: uppercase;
            font-weight: 700;
            color: #646566;
        }

        .ia-score-card strong {
            display: block;
            margin-top: .4rem;
            font-family: "Space Grotesk", sans-serif;
            font-size: 2.1rem;
            color: #000000;
        }

        .ia-score-meta {
            padding: 1rem;
            border-radius: 18px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.92);
            display: grid;
            gap: .45rem;
        }

        .ia-score-meta p,
        .ia-analysis-block p {
            color: #646566;
            font-size: .98rem;
        }

        .ia-analysis-block {
            padding: 1rem;
            border-radius: 18px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.92);
        }

        .ia-list {
            margin: .8rem 0 0;
            padding-left: 1.1rem;
            display: grid;
            gap: .48rem;
            color: #646566;
        }

        .ia-list li::marker {
            color: var(--orange-main);
        }

        .ia-disclaimer {
            padding: .95rem 1rem;
            border-radius: 16px;
            border: 1px dashed rgba(255, 130, 0, 0.28);
            background: rgba(255, 130, 0, 0.06);
            color: #646566;
            font-size: .92rem;
        }

        /* Tarjetas de métricas premium para el bloque final del hero */
        .hero-stats {
            margin-top: 1.35rem;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1rem;
            grid-column: 1 / -1;
        }

        .stat {
            padding: 1.05rem 1rem;
            border-radius: 18px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.94)),
                radial-gradient(circle at 100% 0%, rgba(255, 130, 0, 0.10), transparent 46%);
            border: 1px solid rgba(255, 130, 0, 0.18);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.92),
                0 18px 34px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 130, 0, 0.06);
            transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
            position: relative;
            overflow: hidden;
        }

        .hero > .container {
            width: min(var(--maxw), 100% - 1.5rem);
        }

        .stat::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            border-radius: inherit;
            background: linear-gradient(135deg, rgba(255, 130, 0, 0.12), transparent 46%);
            opacity: .75;
        }

        .stat::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 4px;
            background: linear-gradient(90deg, rgba(255, 130, 0, 0.92), rgba(255, 130, 0, 0.35));
            opacity: .95;
        }

        .stat:hover {
            transform: translateY(-4px) scale(1.01);
            border-color: rgba(255, 130, 0, 0.34);
            box-shadow:
                0 22px 38px rgba(255, 130, 0, 0.18),
                0 0 0 1px rgba(255, 130, 0, 0.10);
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.96)),
                radial-gradient(circle at 100% 0%, rgba(255, 130, 0, 0.14), transparent 46%);
        }

        .stat:hover::before {
            opacity: 1;
        }

        .stat-label {
            display: inline-flex;
            margin-bottom: .55rem;
            font-size: .72rem;
            line-height: 1;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--orange-main);
            position: relative;
            z-index: 1;
        }

        .stat strong {
            display: block;
            color: #000000;
            font-size: clamp(1.9rem, 3vw, 2.5rem);
            font-family: "Space Grotesk", sans-serif;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: .95;
            margin-bottom: .45rem;
            position: relative;
            z-index: 1;
        }

        .stat p {
            color: #3f4347;
            font-size: .94rem;
            line-height: 1.35;
            letter-spacing: 0.01em;
            font-weight: 600;
            position: relative;
            z-index: 1;
            max-width: 18ch;
        }

        .hero-tile {
            position: relative;
            padding: 1.05rem;
            min-height: 130px;
            overflow: hidden;
            display: grid;
            gap: .6rem;
            background: var(--bg-glass);
            border: 1px solid rgba(208, 211, 212, 0.45);
            border-radius: 14px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85),
                0 12px 26px rgba(0, 0, 0, 0.1);
            transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
        }

        .hero-main-tile {
            min-height: 250px;
            animation: panelPulse 8.4s ease-in-out infinite;
            border-color: rgba(255, 130, 0, 0.28);
            background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86));
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.85),
                0 20px 38px rgba(0, 0, 0, 0.2);
        }

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

        .hero-mini-unified {
            grid-column: 1 / -1;
            min-height: 250px;
            align-content: space-between;
        }

        .hero-mini-title,
        .hero-mini-body {
            min-width: 0;
        }

        .hero-mini-body {
            display: grid;
            gap: .7rem;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .decision-mini-card {
            padding: .8rem .85rem;
            border-radius: 14px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.92);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .decision-mini-card-accent {
            border-color: rgba(255, 130, 0, 0.24);
            background: linear-gradient(180deg, rgba(255, 130, 0, 0.1), rgba(255, 255, 255, 0.95));
        }

        .decision-mini-label {
            display: inline-block;
            margin-bottom: .35rem;
            font-size: .74rem;
            text-transform: uppercase;
            letter-spacing: .1em;
            font-weight: 700;
            color: #888888;
        }

        .decision-mini-card p {
            margin: 0;
            font-size: .92rem;
            line-height: 1.45;
            color: #646566;
        }

        .decision-meta {
            margin-top: .75rem;
            padding-top: .75rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .decision-meta p {
            margin: 0;
            font-size: .92rem;
            line-height: 1.45;
            color: #646566;
        }

        .hero-tile::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            border: 1px solid rgba(208, 211, 212, 0.4);
            pointer-events: none;
            transition: border-color .22s ease;
        }

        .hero-tile:hover {
            transform: translateY(-3px);
            border-color: rgba(255, 130, 0, 0.45);
            box-shadow: 0 16px 28px rgba(255, 130, 0, 0.16);
        }

        .hero-tile .hud-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: .6rem;
            flex-wrap: wrap;
        }

        .hud-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: .6rem;
            flex-wrap: wrap;
        }

        .hud-title {
            margin: 0;
            font-size: 1.02rem;
            color: #000000;
        }

        .hud-badge {
            font-size: .78rem;
            padding: .31rem .7rem;
            border-radius: 999px;
            border: 1px solid rgba(208, 211, 212, 0.56);
            color: #000000;
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            background: rgba(255, 255, 255, 0.76);
            box-shadow: 0 0 0 1px rgba(255, 130, 0, 0.12);
            letter-spacing: .01em;
        }

        .pulse-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--orange);
            box-shadow: 0 0 16px var(--orange-glow);
            animation: pulseDot 1.6s ease-in-out infinite;
        }

        .hud-chart {
            display: grid;
            align-items: end;
            grid-template-columns: repeat(11, 1fr);
            gap: .62rem;
            min-height: 92px;
            padding: .4rem 0;
            border-top: 1px solid rgba(208, 211, 212, 0.56);
            border-bottom: 1px solid rgba(208, 211, 212, 0.56);
            position: relative;
        }

        .hud-bar {
            display: block;
            border-radius: 999px;
            height: var(--bar-live, var(--bar));
            background: linear-gradient(180deg, var(--orange-main), rgba(255, 255, 255, 0.08));
            box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.3), 0 0 10px var(--orange-glow);
            transform-origin: bottom;
            animation: barsWave 3.2s cubic-bezier(.22, .61, .36, 1) infinite;
            animation-delay: calc(var(--i) * .09s);
        }

        .hud-chart::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            border-radius: 10px;
            background:
                repeating-linear-gradient(
                    90deg,
                    transparent 0%,
                    transparent 9%,
                    rgba(255, 255, 255, 0.03) 9.5%,
                    transparent 10.5%,
                    transparent 33%,
                    rgba(255, 130, 0, 0.07) 33.5%,
                    transparent 34%,
                    transparent 66.5%,
                    rgba(255, 130, 0, 0.05) 67%,
                    transparent 67.8%,
                    transparent 100%
                );
            mix-blend-mode: soft-light;
            z-index: -1;
        }

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

        .metric-band div {
            background: linear-gradient(168deg, var(--bg-glass), rgba(255, 255, 255, 0.92));
            border: 1px solid rgba(208, 211, 212, 0.56);
            border-radius: 11px;
            padding: .7rem .8rem;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85),
                0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .metric-band p {
            color: #646566;
            font-size: .75rem;
        }

        .metric-band strong {
            color: #000000;
            font-family: "Space Grotesk", sans-serif;
            font-size: .95rem;
            line-height: 1.2;
            letter-spacing: .01em;
        }

        .metric-highlight {
            color: var(--orange-main);
        }

        .metric-band .metric-label {
            color: #646566;
        }

        .decision-tag {
            font-size: .75rem;
            color: var(--text);
            margin-bottom: .3rem;
            display: inline-flex;
            text-transform: uppercase;
            letter-spacing: .11em;
            font-weight: 700;
            color: var(--orange);
        }

        .decision-line {
            font-size: 1rem;
            margin: .26rem 0 0;
            color: #000000;
            font-family: "Space Grotesk", sans-serif;
            line-height: 1.2;
            font-weight: 600;
        }

        .hero-tile p {
            color: #646566;
            font-size: .95rem;
        }

        .hero-quick-text {
            margin: .5rem 0 0;
            color: #646566;
            max-width: 56ch;
        }

        .hero-proof {
            margin-top: .9rem;
            max-width: 54ch;
            color: #4B5563;
            font-weight: 600;
            line-height: 1.5;
        }

        .hero-ia-preview {
            margin-top: 1rem;
            display: grid;
            gap: .75rem;
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .hero-ia-card {
            padding: .95rem 1rem;
            border-radius: 18px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.86);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 14px 28px rgba(0, 0, 0, 0.08);
        }

        .hero-ia-card-accent {
            border-color: rgba(255, 130, 0, 0.24);
            background: linear-gradient(180deg, rgba(255, 130, 0, 0.10), rgba(255, 255, 255, 0.94));
        }

        .hero-ia-label {
            display: block;
            font-size: .76rem;
            text-transform: uppercase;
            letter-spacing: .08em;
            font-weight: 700;
            color: #888888;
        }

        .hero-ia-card strong {
            display: block;
            margin-top: .35rem;
            color: #000000;
            font-family: "Space Grotesk", sans-serif;
            font-size: 1.05rem;
            line-height: 1.2;
        }

        .hero-ia-card p {
            margin-top: .4rem;
            font-size: .9rem;
            color: #646566;
        }

        .hero .btn-primary {
            color: #000000;
            background: linear-gradient(180deg, #FF8200, rgba(255, 130, 0, 0.84));
            border: 1px solid rgba(255, 130, 0, 0.45);
        }

        .hero .btn-secondary {
            color: #000000;
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.16);
        }

        .hero .btn-secondary:hover {
            background: rgba(255, 130, 0, 0.12);
            border-color: rgba(255, 130, 0, 0.45);
        }

        .cards-grid {
            margin-top: 1rem;
            display: grid;
            gap: var(--space);
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .card {
            border-radius: var(--radius-md);
            padding: 1.25rem;
            min-height: 190px;
            position: relative;
            transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
            background: var(--bg-glass);
            border: 1px solid rgba(0, 0, 0, 0.10);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), var(--shadow-glass);
        }

        .card::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            border: 1px solid transparent;
            transition: border-color .22s ease;
            pointer-events: none;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 26px 45px rgba(255, 130, 0, 0.18);
        }

        .card:hover::after {
            border-color: var(--line-soft);
        }

        .icon-chip {
            width: 34px;
            aspect-ratio: 1;
            border-radius: 10px;
            display: inline-grid;
            place-items: center;
            margin-bottom: .7rem;
            background: rgba(255, 130, 0, 0.22);
            border: 1px solid rgba(255, 130, 0, 0.42);
            color: #000000;
        }

        .card h3 {
            color: #000000;
            margin-bottom: .5rem;
        }

        .card p {
            color: #646566;
        }

        .split {
            display: grid;
            gap: var(--space);
            grid-template-columns: 1fr 1fr;
            margin-top: 1rem;
        }

        .tag {
            display: inline-flex;
            border-radius: 999px;
            border: 1px solid rgba(255, 130, 0, 0.34);
            padding: .38rem .7rem;
            margin-bottom: .7rem;
            font-size: .8rem;
            color: #000000;
            font-weight: 700;
        }

        .split ul {
            padding: 0 0 0 1rem;
            margin: .9rem 0 0;
            display: grid;
            gap: .45rem;
            color: #646566;
            font-size: .96rem;
        }

        .split li::marker {
            color: var(--orange);
        }

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

        .cta {
            margin-top: 1rem;
            text-align: center;
            padding: 2.2rem 1.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 130, 0, 0.28);
            background:
                linear-gradient(130deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82)),
                radial-gradient(circle at 100% 30%, rgba(255, 130, 0, 0.12), transparent 48%);
            box-shadow: 0 22px 46px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(14px);
        }

        .cta,
        .hero-layout,
        .split > article,
        .benefits article,
        .cards-grid article,
        .hero .metric-band div,
        .hero-stats .stat {
            position: relative;
        }

        .hero-stats .stat strong {
            color: #000000;
        }

        .cta p {
            max-width: 62ch;
            margin: .8rem auto 0;
            color: #646566;
        }

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

        .site-contact {
            margin-top: 1.2rem;
        }

        .site-contact .site-contact-card {
            padding: 1.5rem;
            display: grid;
            gap: .95rem;
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
        }

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

        .site-contact-item {
            padding: .78rem .85rem;
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 14px;
            display: grid;
            gap: .18rem;
            min-height: 92px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 20px rgba(0, 0, 0, 0.09);
        }

        .site-contact-item strong {
            color: #000000;
            font-family: "Space Grotesk", sans-serif;
            letter-spacing: -0.01em;
        }

        .site-contact-item a {
            display: inline-block;
            color: #000000;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 130, 0, 0.35);
        }

        .site-contact-item a:hover,
        .site-contact-item a:focus-visible {
            border-bottom-color: transparent;
        }

        .site-contact-note {
            margin-top: -.2rem;
            margin-bottom: .5rem;
        }

        footer {
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 130, 0, 0.20);
            padding: 2rem 0 2.4rem;
            color: var(--text-soft);
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(208, 211, 212, 0.55)),
                radial-gradient(circle at 82% 30%, rgba(255, 130, 0, 0.10), transparent 58%);
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(circle at 12% 20%, rgba(255, 130, 0, 0.06), transparent 62%);
            opacity: .55;
        }

        .copyright {
            text-align: center;
            color: #000000;
            margin: 0;
            position: relative;
            letter-spacing: .012em;
        }

        .foot-links {
            margin-top: .9rem;
            display: flex;
            justify-content: center;
            gap: .85rem;
            flex-wrap: wrap;
            font-size: .95rem;
        }

        .foot-links a {
            color: var(--text-soft);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            border: 1px solid rgba(255, 130, 0, 0.20);
            border-radius: 999px;
            padding: .33rem .88rem;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 18px rgba(255, 130, 0, 0.12);
            transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        .foot-links a:hover,
        .foot-links a:focus-visible {
            border-color: var(--orange);
            color: #000000;
            box-shadow: 0 14px 24px rgba(255, 130, 0, 0.18);
            transform: translateY(-1px);
        }

        .skip-link {
            position: absolute;
            left: -100000px;
            top: 0.5rem;
            background: var(--text);
            color: var(--bg);
            padding: .5rem .8rem;
            z-index: 100;
        }

        .skip-link:focus {
            left: 1rem;
        }

        [data-reveal] {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity .72s ease, transform .72s ease;
        }

        [data-reveal].is-visible {
            opacity: 1;
            transform: none;
        }

        .ambient-dot {
            position: fixed;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            pointer-events: none;
            right: -120px;
            top: -95px;
            opacity: .2;
            background: radial-gradient(circle, rgba(255, 130, 0, 0.65), transparent 64%);
            filter: blur(8px);
        }

        .chat-bubble {
            position: fixed;
            right: 1rem;
            bottom: 1rem;
            z-index: 1000;
            width: 56px;
            height: 56px;
            border: 1px solid rgba(208, 211, 212, 0.2);
            border-radius: 999px;
            background: linear-gradient(180deg, var(--orange-main), rgba(255, 130, 0, 0.68));
            color: #000000;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.45rem;
            box-shadow: 0 14px 28px rgba(255, 130, 0, 0.35);
            cursor: pointer;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .chat-bubble:hover,
        .chat-bubble:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 16px 30px rgba(255, 130, 0, 0.42);
        }

        .chat-bubble:focus-visible {
            outline: 2px solid #d0d3d4;
            outline-offset: 2px;
        }

        .hidden {
            display: none !important;
        }

        .chat-popup {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 350px;
            height: 500px;
            border-radius: 10px;
            box-shadow: var(--shadow-soft);
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid rgba(0, 0, 0, 0.12);
            z-index: 9999;
            overflow: hidden;
            flex-direction: column;
            display: flex;
        }

        .chat-header {
            padding: 10px;
            background: linear-gradient(180deg, var(--orange-main), rgba(255, 130, 0, 0.68));
            color: #000000;
            font-weight: 700;
            text-align: center;
            flex-shrink: 0;
        }

        .chat-body {
            flex: 1;
            padding: 10px;
            overflow-y: auto;
            color: #646566;
            display: flex;
            flex-direction: column;
            gap: .55rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .chat-input {
            display: flex;
            flex-shrink: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin: 0;
        }

        .chat-input input {
            flex: 1;
            border: none;
            padding: 10px;
            outline: none;
            color: #000000;
            background: #FFFFFF;
        }

        .chat-input button {
            border: 0;
            padding: 10px 16px;
            background: #FF8200;
            color: #000000;
            cursor: pointer;
            font-weight: 700;
        }

        .chat-message {
            max-width: 80%;
            display: flex;
            flex-direction: column;
            gap: .15rem;
        }

        .user-message {
            margin-left: auto;
            align-items: flex-end;
        }

        .bot-message {
            margin-right: auto;
            align-items: flex-start;
        }

        .chat-message .message-content {
            padding: .5rem .65rem;
            border-radius: 10px;
            max-width: 100%;
            color: #646566;
            line-height: 1.35;
            font-size: .95rem;
            word-wrap: break-word;
        }

        .user-message .message-content {
            background: rgba(255, 130, 0, 0.2);
            color: #000000;
        }

        .bot-message .message-content {
            background: rgba(255, 255, 255, 0.92);
            color: #1f2937;
        }

        @keyframes pulseGlow {
            0%,
            100% {
                box-shadow: inset 0 0 0 rgba(255, 130, 0, 0);
            }

            50% {
                box-shadow: inset 0 0 58px rgba(255, 130, 0, 0.12);
            }
        }

        @keyframes heroGlow {
            0%,
            100% {
                transform: scale(0.98);
                opacity: 0.22;
            }

            50% {
                transform: scale(1.02);
                opacity: 0.48;
            }
        }

        @keyframes barsWave {
            0%,
            100% {
                transform: scaleY(.86);
                opacity: .72;
            }

            50% {
                transform: scaleY(1.04);
                opacity: 1;
            }
        }

        @keyframes pulseDot {
            0%,
            100% {
                opacity: .25;
                transform: scale(0.9);
            }

            50% {
                opacity: 1;
                transform: scale(1.06);
            }
        }

        @keyframes panelPulse {
            0%,
            100% {
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 28px rgba(0, 0, 0, 0.3);
                border-color: var(--border-soft);
            }

            50% {
                box-shadow: inset 0 1px 0 rgba(255, 130, 0, 0.14), 0 16px 34px rgba(255, 130, 0, 0.12);
                border-color: rgba(255, 130, 0, 0.38);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-tile::before,
            .hero::before,
            .hero::after,
            .hero-main-tile,
            .pulse-dot,
            .hud-bar,
            .stat {
            animation: none !important;
            transition: none !important;
        }
        }

        @media (max-width: 1024px) {
            .hero-stage {
                grid-template-columns: 1fr;
            }

            .hero-stage-main,
            .ia-demo-section,
            .ia-demo-section .ia-modal {
                height: auto;
                position: static;
                top: auto;
            }

            .ia-demo-section .ia-modal::before {
                content: none;
            }

            .ia-demo-section .ia-analysis-card {
                display: block;
            }

            .ia-modal-layout,
            .ia-analysis-summary,
            .ia-demo-summary {
                grid-template-columns: 1fr;
            }

            .hero-layout,
            .hero-console,
            .hero-minis,
            .hero-ia-preview,
            .cards-grid,
            .benefits,
            .split {
                grid-template-columns: 1fr;
            }

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

            .hero-console {
                grid-template-rows: none;
            }

            .hero {
                padding-top: 2.4rem;
            }

            .hero-copy::before {
                display: none;
            }

            .hero-copy,
            .ia-profile-card-compact {
                min-height: auto;
            }
        }

        @media (max-width: 760px) {
            .ia-modal-backdrop {
                padding: .8rem;
            }

            .ia-modal,
            .ia-profile-card,
            .ia-analysis-card {
                padding: 1rem;
            }

            .ia-modal-header {
                margin-inline: -1rem;
                padding: 1rem 1rem .9rem;
            }

            .ia-demo-section .ia-modal-header {
                margin: 0 0 .9rem;
                padding: 0 0 .9rem;
            }

            .ia-profile-grid {
                grid-template-columns: 1fr;
            }

            .ia-profile-head,
            .ia-profile-highlights {
                grid-template-columns: 1fr;
            }

            .ia-profile-head {
                display: grid;
            }

            .ia-avatar {
                width: min(100%, 220px);
                min-width: 0;
                height: 220px;
            }

            .hero-title {
                max-width: 26ch;
            }

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

            .hero-copy,
            .hero-tile {
                padding: 1rem;
            }

            .hero-minis {
                grid-template-columns: 1fr;
                gap: .75rem;
            }

            .hero-minis .hero-tile {
                min-height: auto;
                display: grid;
                gap: .55rem;
                align-content: start;
            }

            .hero-mini-body {
                grid-template-columns: 1fr;
            }

            .decision-meta {
                margin-top: .6rem;
                padding-top: .6rem;
            }

            .hero-minis .hero-tile p {
                margin: 0;
            }

            .hero-minis .decision-line {
                font-size: .92rem;
            }

            .hero-minis .hero-tile p:not(.decision-line):not(.decision-tag) {
                font-size: .88rem;
                line-height: 1.42;
            }

            .nav-inner {
                min-height: 64px;
                flex-wrap: nowrap;
                gap: .5rem;
            }

            .brand {
                border-radius: 10px;
                padding: .18rem .36rem;
            }

            .brand-logo {
                width: 122px;
            }

            .menu-toggle {
                display: inline-flex;
            }

            .menu-backdrop {
                position: fixed;
                inset: 0;
                z-index: 24;
                background: rgba(0, 0, 0, 0.32);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.2s ease;
            }

            .top-nav {
                position: fixed;
                top: calc(var(--header-offset, 72px) + 0.5rem);
                left: 1rem;
                right: 1rem;
                max-width: 360px;
                margin: 0 auto;
                max-height: calc(100dvh - var(--header-offset, 72px) - 1.4rem);
                overflow-y: auto;
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: .65rem .6rem;
                border: 1px solid rgba(0, 0, 0, 0.14);
                border-radius: 14px;
                background: rgba(255, 255, 255, 0.98);
                box-shadow: 0 18px 42px rgba(0, 0, 0, 0.15);
                z-index: 30;
            }

            .top-nav a {
                font-size: .79rem;
                line-height: 1.15;
                padding: .55rem .62rem;
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            }

            .top-nav a:last-of-type {
                border-bottom: none;
            }

            .top-nav a::after {
                content: none;
            }

            .nav-cta-mobile {
                margin: .35rem .45rem 0;
                justify-content: center;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: .85rem;
            }

            .site-contact-grid {
                grid-template-columns: 1fr;
            }

            .metric-band {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 64px 0;
            }

            .header-shell {
                overflow: visible;
            }

        .header-shell .btn {
            flex: 0 0 auto;
            font-size: .8rem;
            padding: .58rem 1rem;
            white-space: nowrap;
            margin-inline-start: auto;
            display: none;
        }

        .header-actions {
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            margin-inline-start: auto;
        }

            .nav-cta-mobile {
                display: inline-flex !important;
                justify-content: center;
                margin-top: .35rem;
            }
        }

        body.menu-open .top-nav {
            display: flex;
        }

        body.menu-open {
            overflow: hidden;
        }

        body.ia-modal-open {
            overflow: hidden;
        }

        body.menu-open .menu-backdrop {
            display: block;
            opacity: 1;
            pointer-events: auto;
        }

        body.menu-open .menu-toggle span:first-child {
            transform: translateY(6px) rotate(45deg);
        }

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

        body.menu-open .menu-toggle span:last-child {
            transform: translateY(-6px) rotate(-45deg);
        }
