*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 92px;
        }

        :root {
            --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --serif: 'Instrument Serif', Georgia, serif;
            --black: #0c0c0c;
            --dark: #1a1a1a;
            --gray: #666;
            --light: #999;
            --faint: #ccc;
            --border: #e0e0e0;
            --bg: #f6f6f4;
            --cream: #faf9f7;
            --accent: #0077a8;
            --wrap: 1100px;
            --panel-window: var(--wrap);
        }

        body {
            font-family: var(--sans);
            color: var(--black);
            background: #fff;
            -webkit-font-smoothing: antialiased;
        }

        body.modal-open { overflow: hidden; }

        a { color: inherit; }
        img, video { display: block; }

        /* ═══ NAV ═══ */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 50;
            transition: background 0.4s, border-color 0.4s;
            border-bottom: 1px solid transparent;
        }

        .nav.solid {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom-color: var(--border);
        }

        .nav-inner {
            max-width: var(--wrap);
            margin: 0 auto;
            padding: 18px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            text-decoration: none;
            display: flex; align-items: center;
        }

        .logo svg { display: block; }

        .nav-over-dark .logo .logo-sq { fill: none; stroke: #fff; stroke-width: 2; }
        .nav-over-dark .logo .logo-dot { fill: #fff; }
        .nav-over-dark .logo .logo-txt { fill: #fff; }

        .nav.solid .logo .logo-sq,
        .logo .logo-sq { fill: none; stroke: var(--accent); stroke-width: 2; }
        .nav.solid .logo .logo-dot,
        .logo .logo-dot { fill: var(--accent); }
        .nav.solid .logo .logo-txt,
        .logo .logo-txt { fill: var(--black); }

        .nav-links {
            display: flex; align-items: center; gap: 32px;
        }

        .nav-links a {
            text-decoration: none; font-size: 14px;
            color: var(--gray); transition: color 0.2s;
        }

        .nav-over-dark .nav-links a { color: rgba(255,255,255,0.6); }
        .nav-over-dark .nav-links a:hover { color: #fff; }
        .nav.solid .nav-links a { color: var(--gray); }
        .nav.solid .nav-links a:hover { color: var(--black); }
        .nav-links a:hover { color: var(--black); }
        .nav-links a.nav-active { color: var(--accent); }
        .nav-over-dark .nav-links a.nav-active { color: #fff; }
        .nav-dd { position: relative; }
        .nav-dd > button {
            border: 0; background: none; padding: 0; color: var(--gray);
            font: inherit; font-size: 14px; cursor: pointer;
        }
        .nav-over-dark .nav-dd > button { color: rgba(255,255,255,0.6); }
        .nav-dd:hover > button, .nav-dd:focus-within > button { color: var(--black); }
        .nav-over-dark .nav-dd:hover > button, .nav-over-dark .nav-dd:focus-within > button { color: #fff; }
        .nav-dd-menu {
            position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
            min-width: 210px; display: none; flex-direction: column; gap: 2px;
            padding: 10px; border: 1px solid var(--hairline); border-radius: 8px;
            background: rgba(255,255,255,0.98); box-shadow: 0 18px 44px rgba(12,12,12,0.12);
        }
        .nav-dd-menu::before { content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
        .nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { display: flex; }
        .nav-dd-menu a { padding: 8px 10px; border-radius: 6px; color: var(--gray) !important; white-space: nowrap; }
        .nav-dd-menu a:hover { background: var(--cream); color: var(--black) !important; }
        .nav-dd-menu a span { display: block; margin-bottom: 1px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--light); }

        .nav-links .cta {
            border: 1px solid var(--border);
            padding: 8px 20px;
            border-radius: 100px;
            font-weight: 500;
            color: var(--black);
        }

        .nav-over-dark .nav-links .cta {
            border-color: rgba(255,255,255,0.25);
            color: #fff;
        }

        .nav.solid .nav-links .cta {
            border-color: var(--border);
            color: var(--black);
        }

        .nav-links .cta:hover { background: rgba(0,0,0,0.04); }
        .nav-over-dark .nav-links .cta:hover { background: rgba(255,255,255,0.08); }

        .menu-btn {
            display: none; background: none; border: none;
            cursor: pointer; padding: 4px;
        }

        .menu-btn svg { display: block; }

        .nav-over-dark .menu-btn { color: #fff; }
        .nav.solid .menu-btn { color: var(--black); }

        .m-nav {
            display: none; position: fixed; inset: 0;
            background: #fff; z-index: 100;
            flex-direction: column; justify-content: center;
            align-items: center; gap: 28px;
        }

        .m-nav.open { display: flex; }
        .m-nav a { text-decoration: none; font-size: 28px; font-family: var(--serif); color: var(--black); }
        .m-close { position: absolute; top: 20px; right: 32px; background: none; border: none; cursor: pointer; font-size: 32px; line-height: 1; }

        /* ═══ HERO ═══ */
        .hero {
            height: 90vh;
            min-height: 640px;
            background: var(--black);
            color: #fff;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .hero-video {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.2s ease;
        }
        .hero-video.active { opacity: 0.82; }

        .hero-tint {
            position: absolute; inset: 0;
            z-index: 1;
            pointer-events: none;
            mix-blend-mode: screen;
            opacity: 0.6;
            background: radial-gradient(120% 85% at 50% 100%, var(--tint-color, transparent) 0%, transparent 62%);
            transition: background 1.4s ease;
        }

        .hero::after {
            content: '';
            position: absolute; inset: 0;
            background:
                linear-gradient(to top, rgba(12,12,12,0.92) 0%, rgba(12,12,12,0.5) 30%, transparent 58%);
            pointer-events: none;
            z-index: 1;
        }

        .hero-scroll {
            position: absolute; z-index: 3;
            left: 50%; bottom: 26px;
            transform: translateX(-50%);
            display: flex; flex-direction: column;
            align-items: center; gap: 8px;
            text-decoration: none;
            color: rgba(255,255,255,0.72);
            transition: color 0.25s ease, opacity 0.35s ease, visibility 0.35s ease;
        }
        .hero-scroll:hover { color: #fff; }
        .hero-scroll.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
        .hero-scroll-chevron svg {
            width: 24px; height: 24px;
            fill: none; stroke: currentColor; stroke-width: 2;
            animation: heroScrollBob 1.8s ease-in-out infinite;
        }
        @keyframes heroScrollBob {
            0%, 100% { transform: translateY(0); opacity: 0.6; }
            50% { transform: translateY(6px); opacity: 1; }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-scroll-chevron svg { animation: none; }
        }

        .hero-body {
            position: relative; z-index: 2;
            max-width: var(--wrap);
            margin: 0 auto;
            padding: 0 32px;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding-bottom: 48px;
        }

        .hero h1 {
            font-family: var(--serif);
            font-weight: 400;
            font-size: 96px;
            line-height: 0.95;
            letter-spacing: 0;
            margin-bottom: 26px;
        }

        .hero h1 i { font-style: italic; }

        .hero-rotate {
            display: grid;
            position: relative;
        }

        .hero-rotate-line {
            grid-area: 1 / 1;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-rotate-line.active {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-rotate-line.exit {
            opacity: 0;
            transform: translateY(-40px);
        }

        .hero-sub {
            display: block;
            font-size: 0.6em;
            margin-top: -0.15em;
        }

        .hero-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 40px;
        }

        .hero-desc {
            font-size: 15px;
            line-height: 1.75;
            color: rgba(255,255,255,0.65);
            max-width: 400px;
            display: grid;
        }

        .hero-desc-line {
            grid-area: 1 / 1;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .hero-desc-line.active {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-desc-line.exit {
            opacity: 0;
            transform: translateY(-12px);
        }

        .hero-ctas {
            display: flex;
            gap: 14px;
            flex-shrink: 0;
        }

        .hero-cta {
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.25);
            padding: 14px 32px;
            border-radius: 100px;
            white-space: nowrap;
            transition: background 0.2s, border-color 0.2s;
            flex-shrink: 0;
        }

        .hero-cta:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.4);
        }

        /* ═══ USE CASES ═══ */
        .usecases {
            background: #fff;
            padding: 92px 32px 112px;
        }

        .usecases-inner {
            max-width: var(--wrap);
            margin: 0 auto;
        }

        .usecases-header {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            align-items: center;
            margin-bottom: 56px;
        }

        .usecases-header p {
            font-size: 15px;
            line-height: 1.75;
            color: var(--gray);
        }

        .usecases-copy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            width: 100%;
            max-width: none;
        }

        .usecases-proof {
            padding: 28px 30px;
            border: 1px solid var(--border);
            border-radius: 12px;
            background: var(--cream);
            font-size: 14px;
            line-height: 1.45;
        }

        .usecases-proof ul {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .usecases-proof li {
            margin: 0;
        }

        .usecases-proof a {
            display: grid;
            grid-template-columns: 6px minmax(0, 1fr);
            column-gap: 12px;
            align-items: start;
            color: var(--gray);
            text-decoration: none;
            transition: color 0.25s ease, transform 0.25s ease;
        }

        .usecases-proof a::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.8;
            margin-top: 0.48em;
            grid-row: 1 / span 2;
        }

        .usecases-proof strong {
            display: block;
            color: var(--black);
            font-size: 15px;
            font-weight: 600;
            line-height: 1.25;
        }

        .usecases-proof span {
            display: block;
            margin-top: 8px;
            color: var(--gray);
            font-size: 14px;
            line-height: 1.6;
        }

        .usecases-proof a:hover,
        .usecases-proof a:focus-visible {
            color: var(--accent);
            transform: translateX(2px);
        }

        .usecases-proof a:hover strong,
        .usecases-proof a:focus-visible strong {
            color: var(--accent);
        }

        .usecase-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .usecase-window {
            position: relative;
            width: min(var(--panel-window), 100%);
            max-height: 612px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
        }

        .usecase-window::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 5;
            height: 86px;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(255,255,255,0), #fff 88%);
        }

        .usecase-window .usecase-grid {
            max-height: 612px;
            overflow-y: auto;
            overscroll-behavior: auto;
            padding: 4px 8px 92px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .usecase-window .usecase-grid::-webkit-scrollbar {
            display: none;
        }

        .usecase-card {
            --uc-tone: var(--accent);
            --uc-image: url('/assets/usecases/industrial-diagnostics.svg');
            --parallax-x: 0px;
            --parallax-y: 0px;
            position: relative;
            min-height: 300px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: #fff;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
        }

        .usecase-card::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.98) 100%);
            opacity: 1;
            pointer-events: none;
        }

        .usecase-card:focus-visible,
        .usecase-card:hover {
            transform: translateY(-2px);
            border-color: rgba(0,119,168,0.24);
            box-shadow: 0 14px 36px rgba(12,12,12,0.08);
        }

        .usecase-media {
            position: absolute;
            inset: -18px;
            z-index: 0;
            background-image:
                linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.16)),
                var(--uc-image);
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            filter: saturate(0.88) contrast(0.96);
            transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1.03);
            transition: opacity 0.45s ease, filter 0.45s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .usecase-card[data-usecase="industrial"] .usecase-media {
            --uc-image: url('/assets/usecases/industrial-diagnostics.svg');
        }

        .usecase-card[data-usecase="energy"] .usecase-media {
            --uc-image: url('/assets/usecases/energy-grids.svg');
        }

        .usecase-card[data-usecase="defense"] .usecase-media {
            --uc-image: url('/assets/usecases/infrastructure-defense.svg');
        }

        .usecase-card[data-usecase="medical"] .usecase-media {
            --uc-image: url('/assets/usecases/medical-review.svg');
        }

        .usecase-card[data-usecase="perception"] .usecase-media {
            --uc-image: url('/assets/usecases/autonomous-perception.svg');
        }

        .usecase-card[data-usecase="finance"] .usecase-media {
            --uc-image: url('/assets/usecases/legal-finance.svg');
        }

        .usecase-card[data-usecase="supply"] .usecase-media {
            --uc-image: url('/assets/usecases/supply-chain.svg');
        }

        .usecase-card[data-usecase="edge"] .usecase-media {
            --uc-image: url('/assets/usecases/edge-sensors.svg');
        }

        .usecase-card:focus-visible .usecase-media,
        .usecase-card:hover .usecase-media {
            opacity: 0.52;
            filter: saturate(0.96) contrast(1);
            transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1.07);
        }

        .usecase-content {
            position: relative;
            z-index: 2;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            padding: 30px 26px 28px;
            transition: color 0.3s ease;
        }

        .usecase-icon {
            width: 44px;
            height: 44px;
            margin-bottom: 18px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.5;
            transition: stroke 0.3s ease, opacity 0.3s ease;
        }

        .usecase-card h3 {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .usecase-card p {
            font-size: 13px;
            line-height: 1.7;
            color: var(--gray);
            transition: color 0.3s ease;
        }

        .usecase-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: auto;
            padding-top: 24px;
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
            line-height: 1;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .usecase-more::after {
            content: '\2192';
            transform: translateY(-1px);
        }

        .usecase-card:focus-visible .usecase-icon,
        .usecase-card:hover .usecase-icon {
            stroke: var(--accent);
            opacity: 0.9;
        }

        .usecase-card:focus-visible .usecase-more,
        .usecase-card:hover .usecase-more {
            color: var(--accent);
        }

        .usecase-card:focus-visible .usecase-more,
        .usecase-card:hover .usecase-more {
            transform: translateX(4px);
        }

        .usecase-modal[hidden] {
            display: none;
        }

        .usecase-modal {
            position: fixed;
            inset: 0;
            z-index: 120;
            display: grid;
            place-items: center;
            padding: 32px;
        }

        .usecase-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(6,8,10,0.64);
            backdrop-filter: blur(12px);
        }

        .usecase-modal-shell {
            position: relative;
            width: min(1080px, 100%);
            max-height: calc(100vh - 64px);
            overflow: auto;
            background: #fff;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 8px;
            box-shadow: 0 34px 90px rgba(0,0,0,0.35);
        }

        .usecase-modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            z-index: 3;
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255,255,255,0.24);
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            color: #fff;
            cursor: pointer;
            font-size: 24px;
            line-height: 1;
        }

        .usecase-modal-hero {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 420px;
            gap: 48px;
            align-items: stretch;
            padding: 58px;
            background: #0c0c0c;
            color: #fff;
        }

        .usecase-modal-kicker {
            display: inline-block;
            margin-bottom: 18px;
            color: var(--accent);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0;
        }

        .usecase-modal-hero h3 {
            max-width: 560px;
            font-family: var(--serif);
            font-size: clamp(34px, 4vw, 56px);
            font-weight: 400;
            line-height: 1.02;
            letter-spacing: 0;
        }

        .usecase-modal-hero p {
            max-width: 620px;
            margin-top: 22px;
            color: rgba(255,255,255,0.76);
            font-size: 16px;
            line-height: 1.75;
        }

        .usecase-modal-visual {
            min-height: 330px;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            background:
                radial-gradient(circle at 75% 15%, rgba(0,119,168,0.24), transparent 34%),
                linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
            overflow: hidden;
        }

        .usecase-modal-visual svg {
            width: 100%;
            height: 100%;
            min-height: 330px;
            display: block;
        }

        .usecase-modal-body {
            display: grid;
            grid-template-columns: 1.1fr 1fr 1fr;
            gap: 1px;
            background: var(--border);
            border-top: 1px solid var(--border);
        }

        .usecase-modal-section {
            background: #fff;
            padding: 36px;
        }

        .usecase-modal-section h4 {
            margin-bottom: 16px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0;
            color: var(--accent);
        }

        .usecase-modal-section p,
        .usecase-modal-section li {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.75;
        }

        .usecase-modal-section ul {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .usecase-modal-section li {
            position: relative;
            padding-left: 18px;
        }

        .usecase-modal-section li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.82em;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
        }

        .usecase-modal-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 28px 36px;
            background: var(--cream);
        }

        .usecase-modal-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .modal-nav {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .modal-nav-btn {
            min-height: 40px;
            padding: 0 16px;
            border: 1px solid var(--border);
            border-radius: 999px;
            background: #fff;
            color: var(--gray);
            font-family: var(--sans);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
        }

        .modal-nav-btn:hover,
        .modal-nav-btn:focus-visible {
            border-color: rgba(0,119,168,0.32);
            color: var(--accent);
            background: rgba(0,119,168,0.04);
        }

        .usecase-modal-primary,
        .usecase-modal-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 20px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
        }

        .usecase-modal-primary {
            background: var(--black);
            color: #fff;
        }

        .usecase-modal-secondary {
            border: 1px solid var(--border);
            color: var(--black);
            background: #fff;
        }

        .section-anchor {
            display: block;
            position: relative;
            top: -92px;
            height: 0;
            visibility: hidden;
        }

        /* ═══ DIVIDER ═══ */
        .divider {
            max-width: var(--wrap);
            margin: 0 auto;
            padding: 0 32px;
        }

        .divider hr {
            border: none;
            border-top: 1px solid var(--border);
        }

        /* ═══ NATURE GRID ═══ */
        .nature {
            padding: 120px 32px;
            max-width: var(--wrap);
            margin: 0 auto;
        }

        .nature-header {
            display: block;
            margin-bottom: 76px;
            padding: 0;
        }

        .nature-statement {
            font-family: var(--serif);
            font-weight: 400;
            font-size: clamp(42px, 5.6vw, 76px);
            color: var(--black);
            max-width: 1120px;
            line-height: 0.98;
            letter-spacing: 0;
            text-align: left;
        }

        .nature-support {
            max-width: 760px;
            margin-top: 24px;
            color: var(--gray);
            font-size: 18px;
            line-height: 1.75;
        }

        .nature-window {
            position: relative;
            width: min(var(--panel-window), 100%);
            max-height: 560px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
        }

        .nature-window::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 5;
            height: 84px;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(255,255,255,0), #fff 88%);
        }

        .nature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .nature-window .nature-grid {
            max-height: 560px;
            overflow-y: auto;
            overscroll-behavior: auto;
            padding: 4px 8px 92px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .nature-window .nature-grid::-webkit-scrollbar {
            display: none;
        }

        .nature-card {
            background: #fff;
            padding: 44px 36px;
            border: 1px solid var(--border);
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
        }

        .nature-card:focus-visible,
        .nature-card:hover {
            transform: translateY(-2px);
            border-color: rgba(0,119,168,0.24);
            box-shadow: 0 14px 36px rgba(12,12,12,0.07);
        }

        .nature-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 20px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.5;
        }

        .nature-num {
            font-family: var(--serif);
            font-size: 48px;
            color: var(--faint);
            line-height: 1;
            margin-bottom: 28px;
        }

        .nature-card h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .nature-card p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--gray);
        }

        .trust-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 24px;
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
            line-height: 1;
            transition: transform 0.25s ease;
        }

        .trust-more::after {
            content: '\2192';
            transform: translateY(-1px);
        }

        .nature-card:focus-visible .trust-more,
        .nature-card:hover .trust-more {
            transform: translateX(4px);
        }

        .trust-modal .usecase-modal-shell {
            width: min(920px, 100%);
        }

        .trust-modal .usecase-modal-hero {
            grid-template-columns: 1fr;
            padding: 54px 58px 46px;
        }

        .trust-modal .usecase-modal-hero h3 {
            max-width: 760px;
        }

        .trust-modal .usecase-modal-body {
            grid-template-columns: 1fr 1fr 1fr;
        }

        /* ═══ CAPABILITIES (tabbed Shield + AI Models) ═══ */
        .caps {
            background: var(--black);
            color: #fff;
            padding: 160px 32px 120px;
        }

        .caps-inner {
            max-width: var(--wrap);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* — Shared hero — */
        .caps-hero {
            text-align: center;
            max-width: 800px;
            margin-bottom: 64px;
        }

        .caps-eyebrow {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 24px;
        }

        .caps-hero h1 {
            font-family: var(--serif);
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 400;
            line-height: 1.05;
            letter-spacing: -0.03em;
        }

        .caps-hero h1 i { font-style: italic; }

        .caps-tagline {
            margin-top: 20px;
            font-size: 17px;
            line-height: 1.6;
            color: rgba(255,255,255,0.65);
        }

        /* — Tab switcher — */
        .caps-tabs {
            display: flex;
            background: rgba(255,255,255,0.06);
            border-radius: 999px;
            padding: 4px;
            margin-bottom: 80px;
            position: relative;
        }

        .caps-tab {
            position: relative;
            z-index: 1;
            padding: 12px 36px;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            background: none;
            border: none;
            border-radius: 999px;
            cursor: pointer;
            transition: color 0.3s;
            white-space: nowrap;
            font-family: var(--sans);
            letter-spacing: 0.02em;
        }

        .caps-tab:hover { color: rgba(255,255,255,0.85); }

        .caps-tab.active {
            color: var(--black);
        }

        .caps-pill {
            position: absolute;
            top: 4px;
            left: 4px;
            height: calc(100% - 8px);
            background: #fff;
            border-radius: 999px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        /* — Tab panels — */
        .caps-panels {
            width: 100%;
            position: relative;
        }

        .caps-panel {
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 80px;
            width: 100%;
            animation: capsFadeIn 0.5s ease;
        }

        .caps-panel.active {
            display: flex;
            animation: capsFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @keyframes capsFadeIn {
            0% { opacity: 0; transform: translateY(20px) scale(0.99); }
            100% { opacity: 1; transform: none; }
        }

        /* — Shared panel elements — */
        .caps-metrics {
            display: flex;
            justify-content: center;
            gap: 80px;
            text-align: center;
        }

        .caps-metric-val {
            font-family: var(--serif);
            font-size: clamp(36px, 5vw, 64px);
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: 8px;
        }

        .caps-metric-label {
            font-size: 12px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
        }

        .caps-diagram {
            width: 100%;
            max-width: 960px;
            margin: 0 auto 60px;
            opacity: 0.85;
        }

        .caps-diagram svg {
            width: 100%;
            height: auto;
        }

        .energy-language-callout {
            width: 100%;
            max-width: 960px;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            padding: 38px 40px;
            background: rgba(255,255,255,0.035);
            display: grid;
            grid-template-columns: minmax(0, 1fr) 280px;
            gap: 40px;
            align-items: center;
        }

        .energy-language-quote {
            font-family: var(--serif);
            font-size: clamp(30px, 4vw, 48px);
            line-height: 1.08;
            color: #fff;
        }

        .energy-language-quote span {
            display: block;
            margin-bottom: 16px;
            font-family: var(--sans);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--accent);
        }

        .energy-language-quote cite {
            display: block;
            margin-top: 20px;
            font-family: var(--sans);
            font-size: 13px;
            font-style: normal;
            line-height: 1.55;
            color: rgba(255,255,255,0.48);
        }

        .energy-language-copy p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,0.65);
            margin-bottom: 20px;
        }

        .energy-language-copy a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
        }

        .energy-language-copy a svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .caps-body {
            text-align: center;
            max-width: 740px;
        }

        .caps-body h3 {
            font-family: var(--serif);
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 400;
            color: #fff;
            margin-bottom: 20px;
            letter-spacing: -0.01em;
        }

        .caps-body p {
            font-size: 19px;
            line-height: 1.85;
            color: rgba(255,255,255,0.7);
        }

        .caps-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            width: 100%;
        }

        .caps-feature {
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 40px 32px;
            text-align: center;
            transition: border-color 0.3s, background 0.3s;
        }

        .caps-feature:hover {
            border-color: rgba(255,255,255,0.25);
            background: rgba(255,255,255,0.03);
        }

        .caps-feature-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 20px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.5;
        }

        .caps-feature h4 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .caps-feature p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,0.65);
        }

        .caps-platforms {
            text-align: center;
        }

        .caps-platforms-label {
            font-size: 12px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.55);
            margin-bottom: 16px;
        }

        .caps-badges {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .caps-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 999px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
        }

        .caps-badge svg {
            width: 16px; height: 16px;
            fill: currentColor;
        }

        .caps-ctas {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .caps-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: #fff;
            color: var(--black);
            border-radius: 999px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: opacity 0.25s;
        }

        .caps-cta-primary:hover { opacity: 0.85; }

        .caps-cta-primary svg {
            width: 16px; height: 16px;
            stroke: currentColor; fill: none;
            stroke-width: 2;
        }

        .caps-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 999px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: border-color 0.25s, background 0.25s;
        }

        .caps-cta-secondary:hover {
            border-color: rgba(255,255,255,0.5);
            background: rgba(255,255,255,0.05);
        }

        .caps-cta-secondary svg {
            width: 16px; height: 16px;
            stroke: currentColor; fill: none;
            stroke-width: 2;
        }

        /* ═══ COMPARE ═══ */
        .compare {
            background: var(--bg);
            color: var(--black);
            padding: 120px 32px;
        }

        .compare-inner {
            max-width: var(--wrap);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 80px;
            align-items: center;
        }

        .compare-logo-story {
            text-align: center;
        }

        .compare-logo-mark {
            display: block;
            width: 180px;
            height: 180px;
            margin: 0 auto 40px;
        }

        .compare-logo-story h2 {
            font-family: var(--serif);
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .compare-logo-story h2 i { font-style: italic; }

        .compare-logo-story > p {
            font-size: 15px;
            line-height: 1.75;
            color: var(--gray);
            max-width: 340px;
            margin: 0 auto;
        }

        .compare-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
        }

        .compare-item {
            background: #fff;
            padding: 36px 28px;
            text-align: center;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.25s ease;
        }

        .compare-item:focus-visible,
        .compare-item:hover {
            background: var(--cream);
            transform: translateY(-1px);
        }

        .compare-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--light);
            margin-bottom: 8px;
        }

        .compare-new {
            font-size: 15px;
            font-weight: 600;
            color: var(--black);
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .compare-old {
            font-size: 13px;
            color: var(--light);
            text-decoration: line-through;
            line-height: 1.5;
            margin-top: auto;
        }

        .compare-more {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: auto;
            padding-top: 18px;
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
            line-height: 1;
            transition: transform 0.25s ease;
        }

        .compare-more::after {
            content: '\2192';
            transform: translateY(-1px);
        }

        .compare-item:focus-visible .compare-more,
        .compare-item:hover .compare-more {
            transform: translateX(4px);
        }

        .compare-modal .usecase-modal-shell {
            width: min(980px, 100%);
        }

        .compare-modal .usecase-modal-body {
            grid-template-columns: 1fr 1fr;
        }

        /* ═══ NEWSROOM ═══ */
        .newsroom {
            background: #fff;
            border-top: 1px solid var(--border);
            padding: 120px 32px;
        }

        .newsroom-inner {
            max-width: var(--wrap);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.72fr 1.55fr;
            gap: 64px;
            align-items: start;
        }

        .newsroom-kicker {
            display: block;
            margin-bottom: 18px;
            color: var(--accent);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .newsroom h2 {
            font-family: var(--serif);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 400;
            line-height: 1.08;
            letter-spacing: 0;
            margin-bottom: 22px;
        }

        .newsroom h2 i { font-style: italic; }

        .newsroom-header p {
            max-width: 420px;
            color: var(--gray);
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .newsroom-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--black);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .newsroom-link:hover { color: var(--accent); }

        .newsroom-search { margin-top: 28px; display: block; }
        .newsroom-search input { width: 100%; max-width: 320px; }

        /* ── Shield threat-report charts (used in the case study body) ── */
        .sr-chart { margin: 26px 0 34px; }
        .sr-cap { font-size: 13px; color: var(--light); margin: -6px 0 16px; }
        .sr-bar { margin-bottom: 13px; }
        .sr-bar-top { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; margin-bottom: 5px; }
        .sr-bar-lab { color: var(--ink); font-weight: 500; min-width: 0; }
        .sr-bar-val { color: var(--gray); font-variant-numeric: tabular-nums; white-space: nowrap; }
        .sr-track { height: 10px; background: var(--cream); border: 1px solid var(--hairline); border-radius: 100px; overflow: hidden; }
        .sr-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #3aa6cf); border-radius: 100px; }
        .sr-fill.hot { background: linear-gradient(90deg, #b5341f, #e0673f); }
        .sr-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
        .sr-chip { font-size: 12px; color: var(--gray); background: var(--cream); border: 1px solid var(--hairline); border-radius: 100px; padding: 4px 12px; }
        .sr-evolve { display: grid; gap: 10px; margin: 18px 0 6px; }
        .sr-evolve-row { display: grid; grid-template-columns: 1fr auto; gap: 10px 16px; align-items: center; background: var(--cream); border: 1px solid var(--hairline); border-radius: 10px; padding: 13px 16px; font-size: 14px; }
        .sr-evolve-row .p { font-weight: 600; color: var(--ink); }
        .sr-evolve-row .mv { font-variant-numeric: tabular-nums; white-space: nowrap; }
        .sr-evolve-row .mv .from { color: var(--light); text-decoration: line-through; }
        .sr-evolve-row .mv .arrow { color: var(--accent); margin: 0 6px; }
        .sr-evolve-row .mv .to { color: var(--accent); font-weight: 700; }
        .sr-evolve-row .why { grid-column: 1 / -1; font-size: 12.5px; color: var(--gray); }
        .sr-evolve-row .why code { font-size: 12px; }

        /* ── Shield proof strip ── */
        .proof-strip { background: #fff; border-bottom: 1px solid var(--border); padding: 52px 32px; }
        .proof-strip-inner { max-width: var(--wrap); margin: 0 auto; }
        .proof-strip-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
        .proof-strip-kicker { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 11px; }
        .proof-strip-kicker::before { content: ''; width: 26px; height: 1px; background: currentColor; opacity: 0.55; }
        .proof-strip-link { font-size: 14px; color: var(--black); text-decoration: none; font-weight: 500; display: inline-flex; gap: 8px; align-items: center; transition: color 0.2s ease, gap 0.2s ease; }
        .proof-strip-link:hover { color: var(--accent); gap: 12px; }
        .proof-strip-link svg { width: 16px; height: 16px; }
        .proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .proof-stat-val { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
        .proof-stat-label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--light); margin-top: 8px; }
        @media (max-width: 760px) { .proof-strip { padding: 40px 22px; } .proof-stats { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; } }

        /* ── Partners & coverage strip ── */
        .partners {
            background: linear-gradient(180deg, #ffffff 0%, #ffffff 20%, #e1e4e9 58%, #d4d8de 100%);
            color: var(--ink);
            padding: 60px 32px 120px;
        }
        /* Flow straight into the dark CTA below — no seam line. */
        .partners + .free-cta { border-top: none; }
        .partners-inner { max-width: var(--wrap); margin: 0 auto; text-align: center; }
        .partners-kicker {
            font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
            color: var(--light); margin-bottom: 34px;
        }
        .partners-row {
            display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
            gap: 26px 48px;
        }
        .partner-logo { display: inline-flex; align-items: center; justify-content: center; height: 34px; text-decoration: none; }
        /* Distilled to shades of grey by default; true logo/colour on hover. */
        .partner-logo img {
            max-height: 30px; width: auto; max-width: 150px;
            filter: grayscale(1) opacity(0.55);
            transition: filter 0.3s ease;
        }
        .partner-logo:hover img { filter: grayscale(0) opacity(1); }
        /* White-only raster logos (no dark variant): force a dark silhouette to match. */
        .partner-logo--mono img { filter: brightness(0) opacity(0.5); }
        .partner-logo--mono:hover img { filter: brightness(0) opacity(0.9); }
        /* The EU emblem is a filled flag — a touch larger. */
        .partner-logo--flag { height: 42px; }
        .partner-logo--flag img { max-height: 42px; border-radius: 2px; }
        .partner-logo--text {
            font-size: 21px; font-weight: 600; letter-spacing: 0.01em; color: var(--ink); opacity: 0.5;
            transition: color 0.3s ease, opacity 0.3s ease;
        }
        .partner-logo--text:hover { opacity: 1; color: var(--accent); }
        @media (max-width: 640px) {
            .partners { padding: 44px 22px; }
            .partners-row { gap: 22px 30px; }
            .partner-logo img { max-height: 24px; }
            .partner-logo--text { font-size: 18px; }
        }

        .newsroom-link svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .newsroom-window {
            position: relative;
            width: 100%;
            max-height: 520px;
            overflow: hidden;
            border-radius: 12px;
        }

        .newsroom-window::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 5;
            height: 78px;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(255,255,255,0), #fff 88%);
        }

        /* Scroll cue is the bottom fade gradient on ::after (defined above per window).
           The decorative up/down arrow glyphs were removed: they re-targeted the same
           ::after pseudo-element and collapsed the full-width fade into a 34x60 corner box. */

        .newsroom-feed {
            display: grid;
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
        }

        .newsroom-window .newsroom-feed {
            max-height: 520px;
            overflow-y: auto;
            overscroll-behavior: auto;
            padding-bottom: 84px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .newsroom-window .newsroom-feed::-webkit-scrollbar {
            display: none;
        }

        .news-item {
            display: grid;
            grid-template-columns: 118px minmax(0, 1fr) 24px;
            column-gap: 30px;
            row-gap: 12px;
            align-items: start;
            background: #fff;
            color: var(--black);
            padding: 30px 32px;
            text-decoration: none;
            transition: background 0.25s ease;
        }

        .news-item:hover {
            background: var(--cream);
        }

        .news-age {
            grid-column: 1;
            grid-row: 1 / span 2;
            align-self: start;
            margin-top: 2px;
            color: var(--light);
            font-size: 12px;
            font-weight: 600;
            line-height: 1;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .news-meta {
            grid-column: 2;
            grid-row: 1;
            padding-bottom: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            color: var(--light);
            font-size: 12px;
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .news-type {
            color: var(--accent);
            font-weight: 700;
        }

        .news-copy {
            grid-column: 2;
            grid-row: 2;
        }

        .news-arrow {
            grid-column: 3;
            grid-row: 1 / span 2;
            justify-self: end;
            margin-top: 2px;
        }

        .news-item h3 {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .news-item p {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.7;
        }

        .news-arrow {
            color: var(--light);
            transition: color 0.25s ease, transform 0.25s ease;
        }

        .news-arrow svg {
            width: 22px;
            height: 22px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
        }

        .news-item:hover .news-arrow {
            color: var(--accent);
            transform: translate(2px, -2px);
        }

        /* ═══ FREE CTA ═══ */
        .free-cta {
            background: radial-gradient(900px 460px at 50% -8%, rgba(77,181,224,0.10), transparent 60%), #262626;
            color: #fff;
            padding: 104px 32px;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.07);
        }

        .free-cta-inner {
            max-width: 640px;
            margin: 0 auto;
        }

        .free-cta-eyebrow {
            display: inline-block;
            font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
            color: var(--accent-on-dark, #4db5e0); margin-bottom: 22px;
        }

        .free-cta h2 {
            font-family: var(--serif);
            font-size: clamp(44px, 8vw, 88px);
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .free-cta h2 i { font-style: italic; }

        .free-cta p {
            font-size: 16px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .free-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 44px;
            background: #fff;
            color: var(--black);
            border-radius: 999px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: opacity 0.25s;
        }

        .free-cta-btn:hover { opacity: 0.85; }

        .free-cta-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; align-items: center; }
        .free-cta-btn.ghost {
            background: transparent; color: #fff;
            border: 1px solid rgba(255,255,255,0.28);
        }
        .free-cta-btn.ghost:hover { background: rgba(255,255,255,0.08); opacity: 1; border-color: rgba(255,255,255,0.55); }

        .free-cta-btn svg {
            width: 18px; height: 18px;
            stroke: currentColor; fill: none;
            stroke-width: 2;
        }

        .free-cta-note {
            margin-top: 16px;
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        /* — Case study highlight — */
        .caps-proof {
            width: 100%;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 48px 40px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }

        .caps-proof-left h3 {
            font-family: var(--serif);
            font-size: clamp(22px, 2.5vw, 28px);
            font-weight: 400;
            line-height: 1.25;
            margin-bottom: 16px;
        }

        .caps-proof-left h3 i { font-style: italic; }

        .caps-proof-left > p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,0.65);
        }

        .caps-proof-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .caps-proof-stat-val {
            font-family: var(--serif);
            font-size: clamp(28px, 3vw, 40px);
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: 4px;
        }

        .caps-proof-stat-label {
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
        }

        /* — AI Models: application grid — */
        .caps-apps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            width: 100%;
        }

        .caps-app {
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 36px 28px;
            transition: border-color 0.3s, background 0.3s, transform 0.3s;
        }

        .caps-app:hover {
            border-color: rgba(255,255,255,0.25);
            background: rgba(255,255,255,0.03);
        }

        .caps-app[data-model-family] {
            cursor: pointer;
        }

        .caps-app[data-model-family]:focus-visible,
        .caps-app[data-model-family]:hover {
            transform: translateY(-2px);
        }

        .caps-app-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 20px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.5;
        }

.caps-app h4 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .caps-app > p {
            font-size: 14px;
            line-height: 1.65;
            color: rgba(255,255,255,0.65);
        }

        .caps-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 22px;
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
            line-height: 1;
            transition: transform 0.25s ease;
        }

        .caps-more::after {
            content: '\2192';
            transform: translateY(-1px);
        }

        .caps-app[data-model-family]:focus-visible .caps-more,
        .caps-app[data-model-family]:hover .caps-more {
            transform: translateX(4px);
        }

        .model-modal .usecase-modal-shell {
            width: min(980px, 100%);
        }

        .model-modal .usecase-modal-body {
            grid-template-columns: 1fr 1fr 1fr;
        }

        /* — Value props row — */
        .caps-values {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            width: 100%;
        }

        .caps-value {
            text-align: center;
            padding: 32px 24px;
        }

        .caps-value-icon {
            width: 44px;
            height: 44px;
            margin: 0 auto 16px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.5;
        }

        .caps-value h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .caps-value p {
            font-size: 14px;
            line-height: 1.65;
            color: rgba(255,255,255,0.6);
        }

        /* ═══ ABOUT ═══ */
        .about {
            background: #fff;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .about-inner {
            max-width: var(--wrap);
            margin: 0 auto;
            padding: 120px 32px;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 100px;
            align-items: start;
        }

        .about-inner h1 {
            font-family: var(--serif);
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 30px;
        }
        .about-head { position: sticky; top: 100px; align-self: start; }

        .about-body p {
            font-size: 16px;
            line-height: 1.85;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .about-body p:last-child { margin-bottom: 0; }
        .about-body strong { color: var(--black); font-weight: 600; }

        .about-mv {
            display: grid; gap: 24px;
        }
        .about-mv-block h3 {
            font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
            color: var(--accent); margin-bottom: 9px;
        }
        .about-mv-block p {
            font-family: var(--serif); font-weight: 400;
            font-size: 20px; line-height: 1.35; color: var(--ink); margin: 0;
        }

        /* ═══ CONTACT ═══ */
        .contact {
            padding: 120px 32px;
            max-width: var(--wrap);
            margin: 0 auto;
        }

        .contact-split {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 100px;
            align-items: start;
        }

        .contact-left h1 {
            font-family: var(--serif);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .contact-left h1 i { font-style: italic; }

        .contact-left > p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--gray);
            max-width: 420px;
            margin-bottom: 48px;
        }

        .contact-links {
            padding-top: 28px;
            border-top: 1px solid var(--border);
            display: flex; flex-direction: column; gap: 16px;
        }

        .contact-links a {
            text-decoration: none; font-size: 14px;
            color: var(--gray); display: flex;
            align-items: center; gap: 10px;
            transition: color 0.2s;
        }

        .contact-links a:hover { color: var(--black); }

        .contact-links svg {
            width: 18px; height: 18px;
            stroke: var(--accent); fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex-shrink: 0;
        }

        .c-form { display: flex; flex-direction: column; }

        .c-field { border-bottom: 1px solid var(--border); position: relative; }

        .c-field label {
            position: absolute; top: 14px; left: 0;
            font-size: 11px; letter-spacing: 0.08em;
            text-transform: uppercase; color: var(--light);
            pointer-events: none;
        }

        .c-field input, .c-field textarea {
            width: 100%; border: none; background: transparent;
            padding: 34px 0 12px;
            font-family: var(--sans); font-size: 15px;
            color: var(--black); outline: none;
        }

        .c-field textarea { resize: none; min-height: 90px; }
        .c-field input::placeholder, .c-field textarea::placeholder { color: var(--faint); }
        .c-field input:focus, .c-field textarea:focus { border-bottom-color: var(--accent); }

        .c-btn {
            margin-top: 24px; align-self: flex-start;
            background: var(--black); color: #fff;
            border: none; padding: 13px 32px;
            font-family: var(--sans); font-size: 14px;
            font-weight: 500; border-radius: 100px;
            cursor: pointer; transition: background 0.2s;
        }

        .c-btn:hover { background: #333; }

        .c-status { margin-top: 14px; font-size: 14px; display: none; }
        .c-status.ok { display: block; color: #1a8a5a; }
        .c-status.err { display: block; color: #c03030; }

        /* ═══ FOOTER ═══ */
        footer {
            background: var(--black);
            color: #fff;
            padding: 80px 32px 40px;
        }

        .foot-inner {
            max-width: var(--wrap);
            margin: 0 auto;
        }

        .foot-top {
            display: grid;
            grid-template-columns: 1.2fr repeat(3, 1fr);
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 32px;
        }

        .foot-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,0.4);
            margin-top: 16px;
        }

        .foot-col h3 {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            margin-bottom: 16px;
        }

        .foot-col a {
            display: block;
            text-decoration: none;
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            margin-bottom: 10px;
            transition: color 0.2s;
        }

        .foot-col a:hover { color: #fff; }

        .foot-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .foot-bottom span {
            font-size: 13px;
            color: rgba(255,255,255,0.3);
        }

        .foot-eu {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

        .foot-eu img {
            width: 28px;
            height: 19px;
            border-radius: 2px;
        }

        /* ═══ ANIM ═══ */
        .rv { opacity: 0; transform: translateY(14px); transition: opacity 0.56s cubic-bezier(0.16, 1, 0.3, 1), transform 0.56s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
        .rv.in { opacity: 1; transform: none; }

        /* Staggered children */
        .rv-stagger > * { opacity: 0; transform: translateY(12px); transition: opacity 0.46s cubic-bezier(0.16, 1, 0.3, 1), transform 0.46s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
        .rv-stagger.in > *:nth-child(1) { transition-delay: 0s; }
        .rv-stagger.in > *:nth-child(2) { transition-delay: 0.04s; }
        .rv-stagger.in > *:nth-child(3) { transition-delay: 0.08s; }
        .rv-stagger.in > *:nth-child(4) { transition-delay: 0.12s; }
        .rv-stagger.in > *:nth-child(5) { transition-delay: 0.16s; }
        .rv-stagger.in > *:nth-child(6) { transition-delay: 0.20s; }
        .rv-stagger.in > *:nth-child(7) { transition-delay: 0.24s; }
        .rv-stagger.in > *:nth-child(8) { transition-delay: 0.28s; }
        .rv-stagger.in > * { opacity: 1; transform: none; }

        /* Scale-in for feature cards */
        .rv-scale { opacity: 0; transform: scale(0.985) translateY(8px); transition: opacity 0.52s cubic-bezier(0.16, 1, 0.3, 1), transform 0.52s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
        .rv-scale.in { opacity: 1; transform: none; }

        @media (prefers-reduced-motion: reduce) {
            .rv,
            .rv-stagger > *,
            .rv-scale {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* No-JS / script-failure fallback: never leave reveal content hidden.
           <html> ships with class="no-js"; the inline script removes it first thing,
           so if JS is disabled or the script fails to parse, content stays visible. */
        .no-js .rv,
        .no-js .rv-stagger > *,
        .no-js .rv-scale { opacity: 1 !important; transform: none !important; }


        /* Smooth section transitions */
        section { transition: opacity 0.4s ease; }

        /* Hero parallax-like depth on scroll */
        .hero-body { transition: transform 0.1s linear; }

        /* ═══ RESPONSIVE ═══ */
        @media (max-width: 900px) {
            .hero { min-height: 500px; }
            .hero h1 { font-size: 76px; }
            .hero-row { gap: 28px; }
            .usecases-header { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }
            .usecases-proof ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .usecase-window { max-width: 100%; }
            .usecase-grid { grid-template-columns: repeat(2, 1fr); }
            .usecase-modal-hero { grid-template-columns: 1fr; padding: 42px; }
            .usecase-modal-body { grid-template-columns: 1fr; }
            .usecase-modal-footer { align-items: flex-start; flex-direction: column; }
            .nature-grid { grid-template-columns: 1fr; }
            .caps-features { grid-template-columns: repeat(2, 1fr); }

            .caps-proof { grid-template-columns: 1fr; }
            .caps-apps { grid-template-columns: repeat(2, 1fr); }
            .caps-values { grid-template-columns: repeat(2, 1fr); }
            .energy-language-callout { grid-template-columns: 1fr; gap: 24px; }
            .compare-inner { grid-template-columns: 1fr; gap: 48px; }
            .compare-grid { grid-template-columns: repeat(2, 1fr); }
            .compare-logo-mark { width: 120px; height: 120px; }
            .foot-top { grid-template-columns: repeat(2, 1fr); }
            .about-inner, .contact-split { grid-template-columns: 1fr; gap: 48px; }
            .about-head { position: static; }
            .nature-header p { max-width: 100%; text-align: left; }
        }

        /* ═══ ACCESSIBILITY ═══ */
        .skip-link {
            position: absolute; top: -100%; left: 16px;
            background: var(--accent); color: #fff;
            padding: 12px 24px; border-radius: 0 0 8px 8px;
            font-size: 14px; font-weight: 600;
            z-index: 100; text-decoration: none;
            transition: top 0.2s;
        }
        .skip-link:focus { top: 0; }

        *:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Nav link hover underlines */
        .nav-links a:not(.cta) {
            position: relative;
        }
        .nav-links a:not(.cta)::after {
            content: '';
            position: absolute; left: 0; bottom: -4px;
            width: 0; height: 1.5px;
            background: currentColor;
            transition: width 0.25s ease;
        }
        .nav-links a:not(.cta):hover::after,
        .nav-links a:not(.cta).nav-active::after { width: 100%; }

        /* Back to top */
        .back-to-top {
            position: fixed; bottom: 32px; right: 32px;
            width: 44px; height: 44px;
            background: rgba(0,0,0,0.7); color: #fff;
            border: none; border-radius: 50%; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none;
            transition: opacity 0.3s, background 0.2s;
            z-index: 40;
        }
        .back-to-top.visible { opacity: 1; pointer-events: auto; }
        .back-to-top:hover { background: var(--accent); }
        .back-to-top svg { width: 20px; height: 20px; }

        /* ═══ PRINT ═══ */
        @media print {
            .nav, .hero-video, .m-nav, .back-to-top, .hero-ctas, .menu-btn { display: none !important; }
            body { color: #000; background: #fff; }
            section { padding: 32px 0 !important; break-inside: avoid; }
            .hero { min-height: auto; background: #fff; }
            .hero h1 { font-size: 36px; color: #000; }
            a { color: #000; text-decoration: underline; }
            .caps-diagram svg { max-width: 100%; }
        }

        @media (max-width: 640px) {
            .nav-links a:not(.cta) { display: none; }
            .nav-links .nav-dd { display: none; }
            .menu-btn { display: block; }
            .nav-links .cta { display: none; }
            .hero { height: auto; min-height: 560px; }
            .hero-body { padding: 0 24px 40px; }
            .hero h1 { font-size: 54px; margin-bottom: 24px; }
            .hero-row { flex-direction: column; align-items: flex-start; gap: 28px; }
            .hero-desc { max-width: 100%; }
            .usecases { padding: 72px 24px 84px; }
            .usecases-proof ul { grid-template-columns: 1fr; }
            .usecase-window,
            .usecase-window .usecase-grid { max-height: 560px; }
            .usecase-grid { grid-template-columns: 1fr; }
            .usecase-card,
            .usecase-content { min-height: 260px; }
            .usecase-modal { padding: 0; }
            .usecase-modal-shell { max-height: 100vh; border-radius: 0; }
            .usecase-modal-hero { padding: 38px 24px 28px; gap: 28px; }
            .usecase-modal-hero h3 { font-size: 34px; }
            .usecase-modal-visual,
            .usecase-modal-visual svg { min-height: 220px; }
            .usecase-modal-section { padding: 28px 24px; }
            .usecase-modal-footer { padding: 24px; }
            .usecase-modal-actions,
            .usecase-modal-primary,
            .usecase-modal-secondary { width: 100%; }
            .energy-language-callout { padding: 30px 24px; }
            .nature, .contact { padding: 80px 24px; }
            .caps { padding: 80px 24px; }
            .caps-metrics { flex-direction: column; gap: 40px; }
            .caps-features { grid-template-columns: 1fr; }

            .caps-ctas { flex-direction: column; align-items: stretch; }
            .caps-cta-primary, .caps-cta-secondary { justify-content: center; }
            .caps-proof { grid-template-columns: 1fr; padding: 32px 24px; }
            .caps-proof-stats { grid-template-columns: repeat(2, 1fr); }
            .caps-apps { grid-template-columns: 1fr; }
            .caps-values { grid-template-columns: 1fr; }
            .caps-tabs { flex-wrap: wrap; border-radius: 16px; gap: 2px; }
            .caps-pill { display: none; }
            .caps-tab { padding: 10px 20px; font-size: 13px; }
            .caps-tab.active { background: #fff; border-radius: 12px; }
            .hero-ctas { flex-direction: column; gap: 10px; }
            .compare { padding: 80px 24px; }
            .compare-grid { grid-template-columns: 1fr; }
            .compare-logo-mark { width: 100px; height: 100px; margin-bottom: 24px; }
            .free-cta { padding: 80px 24px; }
            .about-inner { padding: 80px 24px; }
            footer { padding: 48px 24px 32px; }
            .foot-top { grid-template-columns: 1fr; gap: 32px; }
            .foot-bottom { flex-direction: column; gap: 16px; align-items: center; text-align: center; }
        }

        /* ═══ LIST SEARCH (newsroom + careers) ═══ */
        .list-search { position: relative; flex: 0 0 auto; }
        .list-search input {
            width: 240px; max-width: 100%;
            padding: 9px 16px 9px 38px;
            border: 1px solid var(--border); border-radius: 100px;
            background: #fff; font-family: var(--sans); font-size: 13px; color: var(--ink);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .list-search input::placeholder { color: var(--light); }
        .list-search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,119,168,0.1); }
        .list-search svg {
            position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
            width: 15px; height: 15px; stroke: var(--light); fill: none; stroke-width: 2; pointer-events: none;
        }
        @media (max-width: 640px) {
            .list-search, .list-search input { width: 100%; }
        }

        /* ═══ RELAXED LAYOUT PASS ═══ */
        :root {
            --wrap: 1200px;
            --panel-window: var(--wrap);
        }

        .hero-desc {
            max-width: 480px;
            color: #fff;
        }

        .hero {
            height: 76vh;
            min-height: 720px;
            max-height: 880px;
        }

        .hero-body {
            padding-bottom: 64px;
        }

        .usecases {
            padding: 120px 40px 140px;
        }

        .usecases-header {
            grid-template-columns: 1fr;
            gap: 0;
            margin-bottom: 64px;
        }

        .usecases-header p {
            font-size: 16px;
            line-height: 1.85;
            max-width: 440px;
        }

        .usecases-copy {
            max-width: none;
        }

        .usecase-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
        }

        .usecase-card,
        .usecase-content {
            min-height: 270px;
        }

        .usecase-content {
            padding: 32px 30px;
        }

        .usecase-card p,
        .nature-card p,
        .caps-feature p,
        .caps-app > p,
        .caps-value p,
        .caps-proof-left > p {
            font-size: 14px;
            line-height: 1.78;
        }

        .nature {
            padding: 148px 40px;
        }

        .nature-header {
            margin-bottom: 84px;
            padding: 0;
        }

        .nature-statement {
            max-width: 1120px;
        }

        .nature-support {
            font-size: 19px;
        }

        .nature-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px;
        }

        .nature-card {
            padding: 52px 44px;
            border-radius: 8px;
        }

        .caps {
            padding: 184px 40px 152px;
        }

        .caps-hero {
            max-width: 880px;
            margin-bottom: 84px;
        }

        .caps-tagline,
        .caps-body p,
        .energy-language-copy p,
        .energy-language-quote cite,
        .caps-feature p,
        .caps-app > p,
        .caps-value p,
        .caps-proof-left > p,
        .free-cta p,
        .free-cta-note {
            color: #fff;
        }

        .caps-tabs {
            margin-bottom: 96px;
        }

        .caps-panel {
            gap: 64px;
        }

        .caps-body {
            max-width: 840px;
        }

        .caps-diagram {
            max-width: 1040px;
            margin-bottom: 20px;
        }

        .energy-language-callout {
            max-width: 1040px;
            padding: 52px;
            grid-template-columns: minmax(0, 1fr) 340px;
            gap: 56px;
        }

        .caps-features,
        .caps-apps {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px;
        }

        .caps-feature,
        .caps-app {
            padding: 46px 40px;
        }

        .caps-values {
            gap: 32px;
        }

        .caps-value {
            padding: 40px 30px;
        }

        .caps-proof {
            padding: 58px 52px;
            gap: 56px;
        }

        .compare {
            padding: 148px 40px;
        }

        .compare-inner {
            gap: 108px;
        }

        .newsroom {
            padding: 132px 40px;
        }

        .newsroom-inner {
            gap: 108px;
        }

        .compare-logo-story > p {
            max-width: 420px;
            font-size: 16px;
            line-height: 1.85;
        }

        .compare-grid {
            gap: 18px;
            background: transparent;
            border: 0;
            border-radius: 0;
            overflow: visible;
        }

        .compare-item {
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 44px 34px;
        }

        .free-cta {
            padding: 132px 40px;
        }

        .free-cta-inner {
            max-width: 720px;
        }

        .free-cta p {
            font-size: 17px;
            line-height: 1.75;
        }

        .about-inner {
            padding: 148px 40px;
            grid-template-columns: 340px 1fr;
            gap: 120px;
        }

        .about-body p {
            max-width: 760px;
        }

        .contact {
            padding: 148px 40px;
        }

        .contact-split {
            grid-template-columns: 1fr 440px;
            gap: 120px;
        }

        footer {
            padding: 96px 40px 48px;
        }

        .foot-top {
            gap: 64px;
            padding-bottom: 60px;
            margin-bottom: 40px;
        }

        @media (max-width: 900px) {
            :root {
                --wrap: 100%;
            }

            .hero {
                height: auto;
                min-height: 740px;
                max-height: none;
            }

            .usecases,
            .nature,
            .caps,
            .compare,
            .newsroom,
            .free-cta,
            .contact {
                padding-left: 32px;
                padding-right: 32px;
            }

            .usecases {
                padding-top: 104px;
                padding-bottom: 120px;
            }

            .usecase-grid,
            .nature-grid,
            .caps-features,
            .caps-apps,
            .caps-values,
            .compare-grid {
                grid-template-columns: 1fr;
            }

            .usecase-window,
            .usecase-window .usecase-grid,
            .nature-window,
            .nature-window .nature-grid,
            .newsroom-window,
            .newsroom-window .newsroom-feed {
                max-height: 540px;
            }

            .usecases-header,
            .nature-header,
            .compare-inner,
            .newsroom-inner,
            .about-inner,
            .contact-split {
                gap: 52px;
            }

            .newsroom-inner {
                grid-template-columns: 1fr;
            }

            .energy-language-callout {
                grid-template-columns: 1fr;
                padding: 42px;
                gap: 36px;
            }

            .caps-panel {
                gap: 76px;
            }

            .about-inner {
                grid-template-columns: 1fr;
                padding: 120px 32px;
            }

            .contact-split {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero {
                min-height: 720px;
            }

            .usecases,
            .nature,
            .caps,
            .compare,
            .newsroom,
            .free-cta,
            .about-inner,
            .contact {
                padding-left: 24px;
                padding-right: 24px;
            }

            .usecases,
            .nature,
            .caps,
            .compare,
            .newsroom,
            .free-cta,
            .about-inner,
            .contact {
                padding-top: 88px;
                padding-bottom: 96px;
            }

            .news-item {
                grid-template-columns: 1fr 22px;
                gap: 18px;
                padding: 26px 24px;
            }

            .usecase-window,
            .usecase-window .usecase-grid,
            .nature-window,
            .nature-window .nature-grid,
            .newsroom-window,
            .newsroom-window .newsroom-feed {
                max-height: 520px;
            }

            .news-age {
                grid-column: 1;
                grid-row: 3;
                align-self: start;
                margin-top: 2px;
            }

            .news-meta {
                grid-column: 1;
                grid-row: 1;
                padding-bottom: 0;
            }

            .news-copy {
                grid-column: 1;
                grid-row: 2;
            }

            .news-arrow {
                grid-column: 2;
                grid-row: 1;
            }

            .nature-card,
            .caps-feature,
            .caps-app,
            .caps-proof,
            .energy-language-callout,
            .compare-item {
                padding: 30px 26px;
            }

            .usecase-content {
                min-height: 260px;
                padding: 30px 26px;
            }

            .usecases-header,
            .nature-header {
                margin-bottom: 52px;
            }

            .caps-hero {
                margin-bottom: 56px;
            }

            .caps-tabs {
                margin-bottom: 64px;
            }
        }

        /* ═══ READABILITY TYPE PASS ═══ */
        body {
            font-size: 17px;
            line-height: 1.6;
        }

        .nav-links a {
            font-size: 15px;
        }

        .hero-desc {
            font-size: 16px;
            line-height: 1.82;
        }

        .hero-cta,
        .caps-tab,
        .usecase-more,
        .caps-cta-primary,
        .caps-cta-secondary,
        .free-cta-btn,
        .usecase-modal-primary,
        .usecase-modal-secondary,
        .c-btn {
            font-size: 15px;
        }

        .usecases-proof {
            font-size: 15px;
        }

        .usecases-proof strong,
        .usecase-card h3,
        .nature-card h3,
        .caps-feature h4,
        .caps-app h4,
        .compare-item h3 {
            font-size: 17px;
        }

        .usecases-proof span,
        .usecase-card p,
        .nature-card p,
        .caps-feature p,
        .caps-app > p,
        .caps-value p,
        .caps-proof-left > p,
        .compare-item p,
        .news-item p,
        .foot-col a,
        .foot-desc,
        .foot-bottom,
        .free-cta-note {
            font-size: 15px;
            line-height: 1.76;
        }

        .caps-tagline,
        .caps-body p,
        .energy-language-copy p,
        .compare-logo-story > p,
        .newsroom-header p,
        .free-cta p,
        .about-body p,
        .contact-intro p,
        .usecase-modal-hero p,
        .usecase-modal-section p,
        .usecase-modal-section li,
        .usecase-modal-footer p {
            font-size: 17px;
            line-height: 1.82;
        }

        .usecase-modal-kicker,
        .usecase-modal-section h4,
        .caps-kicker,
        .caps-proof-label,
        .c-field label,
        .foot-col h3 {
            font-size: 13px;
        }

        .c-form input,
        .c-form textarea {
            font-size: 16px;
        }

        @media (max-width: 640px) {
            body {
                font-size: 16px;
            }

            .hero-desc,
            .caps-tagline,
            .caps-body p,
            .energy-language-copy p,
            .compare-logo-story > p,
            .newsroom-header p,
            .free-cta p,
            .about-body p,
            .contact-intro p,
            .usecase-modal-hero p,
            .usecase-modal-section p,
            .usecase-modal-section li,
            .usecase-modal-footer p {
                font-size: 16px;
            }
        }

        /* ═══════════════════════════════════════════════════════
           EXECUTIVE POLISH PASS
           Bold-but-systematic refinement layer. Cascades over all
           earlier rules. Themes: rhythm, wayfinding, seams, motion,
           surface refinement, performance. Fully self-contained.
           ═══════════════════════════════════════════════════════ */

        :root {
            --ink: #0a0d12;                 /* deep heading ink with a hint of blue */
            --hairline: #e7e6e2;            /* refined divider tone */
            --accent-on-dark: #4db5e0;      /* AA-legible accent on dark sections */
            --sec-y: clamp(108px, 12vw, 184px);   /* unified vertical rhythm (roomier) */
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* — Unified vertical rhythm (top/bottom only; horizontal preserved) — */
        .usecases, .caps, .nature, .compare, .newsroom,
        .free-cta, .about-inner, .contact {
            padding-top: var(--sec-y);
            padding-bottom: var(--sec-y);
        }

        /* — Heading hierarchy: confident, tightly tracked display type — */
        .nature-statement, .compare-logo-story h2, .newsroom-header h2,
        .about h1, .contact-left h1, .sec-title {
            color: var(--ink);
            letter-spacing: -0.018em;
        }
        /* Free-CTA is a DARK section — keep the inherited #fff, tighten tracking only */
        .free-cta-inner h2 { letter-spacing: -0.018em; }
        .hero h1 { letter-spacing: -0.02em; }

        /* — Wayfinding: one eyebrow + title system for every section — */
        .sec-eyebrow,
        .newsroom-kicker,
        .caps-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            font-family: var(--sans);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 22px;
        }
        .sec-eyebrow::before,
        .newsroom-kicker::before,
        .caps-eyebrow::before {
            content: '';
            width: 26px;
            height: 1px;
            background: currentColor;
            opacity: 0.55;
        }
        /* Dark caps section needs a lighter accent for WCAG-AA legibility */
        .caps .caps-eyebrow { color: var(--accent-on-dark); }

        .sec-title {
            font-family: var(--serif);
            font-weight: 400;
            font-size: clamp(34px, 4.4vw, 58px);
            line-height: 1.02;
            letter-spacing: -0.018em;
            color: var(--ink);
            max-width: 940px;
            margin-bottom: 22px;
        }
        .sec-title i { font-style: italic; }

        /* In the use-cases flex column, let the 18px gap own the rhythm (no margin stacking) */
        .usecases-copy > .sec-eyebrow,
        .usecases-copy > .sec-title { margin-bottom: 0; }

        /* Hero kicker above the rotating headline */
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 12.5px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.74);
            margin-bottom: 24px;
        }
        .hero-eyebrow::before {
            content: '';
            width: 28px;
            height: 1px;
            background: var(--accent);
        }

        /* — Section seams: clean cuts, defined by a single crisp hairline — */

        /* Light-section definition: consistent hairline seams */
        .compare {
            border-top: 1px solid var(--hairline);
            border-bottom: 1px solid var(--hairline);
        }
        .newsroom, .about { border-color: var(--hairline); }

        /* Compare intro: left-align the editorial block — centered body copy read
           awkwardly and the eyebrow's leading rule reads best left-aligned. */
        .compare-logo-story { text-align: left; }
        .compare-logo-mark { margin-left: 0; }
        .compare-logo-story > p { margin-left: 0; max-width: 440px; }

        /* Use-case "proof" links → a compact 4-up "jump to product" strip, kept deliberately
           lighter than the detailed library cards below so the two don't read as one wall of tiles. */
        .usecases-proof { padding: 0; border: 0; background: transparent; border-radius: 0; }
        .usecases-proof ul { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
        .usecases-proof li { display: flex; margin: 0; }
        .usecases-proof a {
            flex: 1;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 13px;
            padding: 15px 18px;
            background: var(--cream);
            border: 1px solid transparent;
            border-radius: 8px;
            color: var(--black);
            transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
        }
        .usecases-proof a::before { content: none; }
        .usecases-proof a::after { content: none; }
        .usecases-proof span { display: none; }   /* descriptions live on the library cards below */
        .usecases-proof strong { font-size: 14px; font-weight: 600; line-height: 1.25; }
        .usecases-proof .proof-icon {
            width: 26px;
            height: 26px;
            margin-bottom: 0;
            flex-shrink: 0;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.6;
        }
        .usecases-proof a:hover,
        .usecases-proof a:focus-visible {
            background: #fff;
            border-color: rgba(0,119,168,0.22);
            box-shadow: 0 8px 22px rgba(12,12,12,0.06);
            color: var(--accent);
        }
        @media (max-width: 900px) { .usecases-proof ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
        @media (max-width: 520px) { .usecases-proof ul { grid-template-columns: 1fr; } }

        /* De-crowd: let the card galleries lay out fully instead of clipping rows behind a scroll-fade */
        .usecase-window, .nature-window, .newsroom-window { max-height: none; overflow: visible; }
        .usecase-window .usecase-grid,
        .nature-window .nature-grid,
        .newsroom-window .newsroom-feed { max-height: none; overflow: visible; padding-bottom: 6px; }
        .usecase-window::after, .nature-window::after, .newsroom-window::after { content: none; }

        /* Slightly larger card body copy now that gallery heights aren't constrained */
        .usecase-card p, .nature-card p, .compare-item p,
        .caps-feature p, .caps-app > p { font-size: 16px; line-height: 1.82; }

        /* — Surface refinement: calmer borders, softer lift — */
        .usecase-card, .nature-card, .compare-item,
        .usecases-proof, .news-item {
            border-color: var(--hairline);
        }
        .usecase-card, .nature-card, .compare-item {
            transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
        }
        .usecase-card:hover, .usecase-card:focus-visible,
        .nature-card:hover, .nature-card:focus-visible,
        .compare-item:hover, .compare-item:focus-visible {
            transform: translateY(-3px);
            border-color: rgba(0,119,168,0.30);
            box-shadow: 0 18px 44px rgba(12,12,12,0.09);
        }
        .caps-feature:hover, .caps-app:hover {
            border-color: rgba(255,255,255,0.28);
            background: rgba(255,255,255,0.04);
        }

        /* — Buttons: precise, executive — */
        .hero-cta, .caps-cta-primary, .caps-cta-secondary,
        .free-cta-btn, .usecase-modal-primary, .newsroom-link {
            transition: transform 0.25s var(--ease), background 0.25s var(--ease),
                        border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
        }
        .free-cta-btn:hover, .caps-cta-primary:hover,
        .usecase-modal-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.22);
        }

        /* — Nav: subtle shrink + crisper glass once scrolled — */
        .nav-inner { transition: padding 0.35s var(--ease); }
        .nav.solid {
            background: rgba(255,255,255,0.86);
            backdrop-filter: blur(22px) saturate(1.4);
            -webkit-backdrop-filter: blur(22px) saturate(1.4);
        }
        .nav.solid .nav-inner { padding-top: 13px; padding-bottom: 13px; }

        /* — Motion: slightly longer travel, refined easing — */
        .rv { transform: translateY(20px); transition-duration: 0.7s; }
        .rv-stagger > * { transform: translateY(16px); }

        /* ── PERFORMANCE ──
           Release compositor layers once the reveal settles, and
           skip rendering work for the always-below-fold footer. */
        .rv.in,
        .rv-stagger.in > *,
        .rv-scale.in { will-change: auto; }

        footer {
            content-visibility: auto;
            contain-intrinsic-size: auto 520px;
        }

        @media (prefers-reduced-motion: reduce) {
            .usecase-card:hover, .usecase-card:focus-visible,
            .nature-card:hover, .nature-card:focus-visible,
            .compare-item:hover, .compare-item:focus-visible,
            .free-cta-btn:hover, .caps-cta-primary:hover, .usecase-modal-primary:hover {
                transform: none;
            }
        }

        @media (max-width: 640px) {
            .sec-eyebrow, .hero-eyebrow { margin-bottom: 16px; }
        }

        /* Print legibility for dark-section text — placed last so it wins on
           source order over the later base color rules (no !important needed). */
        @media print {
            .hero-eyebrow { color: #000; }
            .free-cta { background: #fff; color: #000; }
            .free-cta-inner h2,
            .free-cta p,
            .free-cta-note { color: #000; }
        }

/* ── Multi-page additions: footer extras + active nav ── */
.foot-social { display: flex; gap: 12px; margin-top: 16px; }
.foot-social a { color: rgba(255,255,255,0.55); display: inline-flex; transition: color 0.2s ease; }
.foot-social a:hover { color: #fff; }
.foot-place { color: rgba(255,255,255,0.45); font-size: 13px; }
.foot-legal { display: flex; gap: 16px; }
.foot-legal a { color: rgba(255,255,255,0.55); transition: color 0.2s ease; }
.foot-legal a:hover { color: #fff; }
body[data-page="platform"]  .nav-links a[data-nav="platform"],
body[data-page="use-cases"] .nav-links a[data-nav="use-cases"],
body[data-page="news"]      .nav-links a[data-nav="news"],
body[data-page="careers"]   .nav-links a[data-nav="careers"],
body[data-page="about"]     .nav-links a[data-nav="about"],
body[data-page="contact"]   .nav-links a[data-nav="contact"] { color: var(--accent); }

/* ── Homepage newsroom: compact list (links to /briefings articles) ── */
.news-list {
    list-style: none; margin: 0; padding: 0;
    max-height: 392px; overflow-y: auto; overscroll-behavior: auto;
    scrollbar-width: none; -ms-overflow-style: none;
}
.news-list::-webkit-scrollbar { display: none; }
.news-list .news-row {
    display: flex; align-items: baseline; gap: 24px;
    padding: 22px 8px; border-top: 1px solid var(--hairline);
    text-decoration: none; color: var(--black);
    transition: background 0.2s ease, padding 0.2s ease, color 0.2s ease;
}
.news-list li:last-child .news-row { border-bottom: 1px solid var(--hairline); }
.news-list .news-row:hover { background: var(--cream); padding-left: 16px; padding-right: 16px; }
.news-row-date { flex: 0 0 96px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--light); }
.news-row-title { flex: 1; font-size: 17px; font-weight: 500; line-height: 1.4; color: var(--ink); }
.news-list .news-row:hover .news-row-title { color: var(--accent); }
.news-row-tag {
    flex: 0 0 auto; padding: 4px 12px; border-radius: 100px;
    background: rgba(0,119,168,0.06); border: 1px solid rgba(0,119,168,0.18);
    font-size: 11px; letter-spacing: 0.03em; color: var(--accent); font-weight: 500; white-space: nowrap;
}
/* Small thumbnail — present only on rows whose article has an image */
.news-row-thumb {
    flex: 0 0 72px; width: 72px; height: 48px; object-fit: cover;
    border-radius: 8px; align-self: center; background: var(--cream);
}
.news-empty { list-style: none; color: var(--light); padding: 22px 8px; }
@media (max-width: 640px) {
    .news-list .news-row { flex-wrap: wrap; gap: 6px 14px; padding: 18px 6px; }
    .news-row-date { flex: 0 0 auto; order: 1; }
    .news-row-thumb { flex: 0 0 64px; width: 64px; height: 44px; order: 1; }
    .news-row-tag { order: 2; }
    .news-row-title { flex: 1 1 100%; order: 3; }
}

/* ── Legal / document pages (Terms, Privacy) + 404 ── */
.doc-page { max-width: 820px; margin: 0 auto; padding: 168px 40px 110px; }
.doc-eyebrow {
    display: inline-flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.doc-eyebrow::before { content: ''; width: 26px; height: 1px; background: currentColor; opacity: 0.55; }
.doc-page h1 {
    font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6vw, 68px);
    line-height: 1.02; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px;
}
.doc-updated { color: var(--light); font-size: 14px; margin-bottom: 44px; }
.doc-page h2 {
    font-family: var(--serif); font-weight: 400; color: var(--ink);
    font-size: clamp(24px, 3vw, 32px); line-height: 1.15; letter-spacing: -0.015em; margin: 48px 0 14px;
}
.doc-page h3 { font-size: 18px; font-weight: 600; color: var(--black); margin: 30px 0 10px; }
.doc-page p, .doc-page li { font-size: 16px; line-height: 1.8; color: #2a2a2a; }
.doc-page p { margin-bottom: 16px; }
.doc-page ul, .doc-page ol { margin: 14px 0 20px; padding-left: 24px; }
.doc-page li { margin-bottom: 8px; }
.doc-page a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.doc-page strong { color: var(--black); }
.doc-note {
    background: var(--cream); border: 1px solid var(--hairline);
    border-radius: 10px; padding: 20px 24px; margin: 28px 0; font-size: 15px; color: var(--gray);
}
@media (max-width: 640px) { .doc-page { padding: 124px 22px 80px; } }

.notfound { min-height: 72vh; display: grid; place-items: center; text-align: center; padding: 168px 24px 110px; }
.notfound-inner { max-width: 560px; }
.notfound .code { font-family: var(--serif); font-size: clamp(80px, 18vw, 160px); line-height: 1; color: var(--ink); }
.notfound h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 4vw, 40px); color: var(--ink); margin: 8px 0 14px; }
.notfound p { color: var(--gray); font-size: 17px; margin-bottom: 30px; }
.notfound-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.notfound-actions a {
    display: inline-flex; align-items: center; padding: 12px 24px; border-radius: 100px;
    font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s ease;
}
.notfound-actions .primary { background: var(--black); color: #fff; }
.notfound-actions .primary:hover { background: var(--accent); }
.notfound-actions .ghost { border: 1px solid var(--border); color: var(--black); }
.notfound-actions .ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Editor-inserted images: bounded to the container, full-width default, centered.
   Applies on custom pages / anywhere the article markup is reused. */
.article-img { display: block; max-width: 100%; width: 100%; height: auto; margin: 28px auto; border-radius: 10px; }

/* ── In-article video: play-card thumbnail + click-to-play lightbox ── */
.video-embed {
    display: flex; align-items: center; gap: 18px;
    margin: 28px 0; padding: 20px 24px;
    background: var(--cream, #faf9f7); border: 1px solid var(--hairline, #e7e6e2);
    border-left: 3px solid var(--accent); border-radius: 12px;
    text-decoration: none; color: var(--ink, #0a0d12);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.video-embed:hover {
    border-color: var(--accent); border-left-color: var(--accent);
    box-shadow: 0 10px 30px rgba(12,12,12,.08); transform: translateY(-1px);
}
.video-embed-play {
    flex: none; width: 52px; height: 52px; border-radius: 50%;
    background: var(--accent); display: grid; place-items: center;
    box-shadow: 0 6px 18px rgba(0,119,168,.35); transition: background .2s ease;
}
.video-embed:hover .video-embed-play { background: var(--accent-deep, #055f86); }
.video-embed-play::before {
    content: ''; width: 0; height: 0; margin-left: 4px;
    border-style: solid; border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent #fff;
}
.video-embed-label { min-width: 0; font-size: 16px; font-weight: 600; line-height: 1.4; overflow-wrap: anywhere; }
.video-embed-label small { display: block; font-weight: 500; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--light, #999); margin-bottom: 3px; }

.video-lightbox[hidden] { display: none !important; }
.video-lightbox {
    position: fixed; inset: 0; z-index: 10050;
    display: flex; align-items: center; justify-content: center; padding: 24px;
}
.video-lightbox-backdrop { position: absolute; inset: 0; background: rgba(8,10,14,.86); backdrop-filter: blur(4px); }
.video-lightbox-shell {
    position: relative; z-index: 1; width: min(960px, 100%);
    max-height: calc(100vh - 48px); display: flex; flex-direction: column;
}
.video-lightbox-video {
    width: 100%; max-height: calc(100vh - 48px);
    border-radius: 12px; background: #000; box-shadow: 0 24px 70px rgba(0,0,0,.5);
}
.video-lightbox-close {
    position: absolute; top: -44px; right: 0;
    width: 36px; height: 36px; border: 0; border-radius: 50%;
    background: rgba(255,255,255,.12); color: #fff; font-size: 24px; line-height: 1;
    cursor: pointer; transition: background .2s ease;
}
.video-lightbox-close:hover { background: rgba(255,255,255,.24); }
@media (max-width: 640px) {
    .article-img, .article-content img { margin: 20px auto; border-radius: 8px; }
    .video-embed { gap: 13px; padding: 15px 16px; margin: 22px 0; }
    .video-embed-play { width: 44px; height: 44px; }
    .video-embed-play::before { border-width: 8px 0 8px 13px; }
    .video-embed-label { font-size: 15px; }
    /* Give the player the whole viewport and keep the close button on-screen
       (over the video's top-right) no matter how tall the clip is. */
    .video-lightbox { padding: 10px; }
    .video-lightbox-shell, .video-lightbox-video { max-height: calc(100vh - 20px); }
    .video-lightbox-video { border-radius: 8px; }
    .video-lightbox-close {
        top: 8px; right: 8px; transform: none;
        background: rgba(0,0,0,.55); box-shadow: 0 2px 10px rgba(0,0,0,.4);
    }
    .video-lightbox-close:hover { background: rgba(0,0,0,.72); }
}

/* ── Share bar (articles, briefings, job posts) ─────────────────── */
.share-bar { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.share-bar-label {
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--light);
}
.share-bar-btns { display: inline-flex; align-items: center; gap: 8px; }
.share-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: #fff; border: 1px solid var(--hairline, #e3e3e3);
    color: var(--gray, #555); cursor: pointer; padding: 0;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.share-btn svg { width: 17px; height: 17px; display: block; }
.share-btn:hover {
    color: #fff; background: var(--accent, #0077a8); border-color: var(--accent, #0077a8);
    transform: translateY(-2px);
}
.share-bar-msg { font-size: 13px; color: var(--accent, #0077a8); }
.article-share { margin-top: 30px; }
.article-foot .share-bar { width: 100%; justify-content: flex-start; }
@media (max-width: 560px) { .share-btn { width: 36px; height: 36px; } }
