@view-transition {
    navigation: auto;
}

:root {
            color-scheme: light;
            --bg: #fff;
            --text: #000;
            --muted: #666;
            --subtle: #999;
            --line: #e5e5e5;
            --surface: #fafafa;
            --button-bg: transparent;
            --button-border: #e5e5e5;
            --button-text: #000;
            --button-hover-bg: #000;
            --button-hover-text: #fff;
            --faint: #ccc;
        }

        @media (prefers-color-scheme: dark) {
            :root {
                color-scheme: dark;
                --bg: #101214;
                --text: #f4efe8;
                --muted: #c1b8ab;
                --subtle: #938c84;
                --line: #2c3238;
                --surface: #181c20;
                --button-bg: rgba(255, 255, 255, 0.03);
                --button-border: #394149;
                --button-text: #f4efe8;
                --button-hover-bg: #f4efe8;
                --button-hover-text: #101214;
                --faint: #5a636d;
            }
        }

        :root[data-theme="light"] {
            color-scheme: light;
            --bg: #fff;
            --text: #000;
            --muted: #666;
            --subtle: #999;
            --line: #e5e5e5;
            --surface: #fafafa;
            --button-bg: transparent;
            --button-border: #e5e5e5;
            --button-text: #000;
            --button-hover-bg: #000;
            --button-hover-text: #fff;
            --faint: #ccc;
        }

        :root[data-theme="dark"] {
            color-scheme: dark;
            --bg: #101214;
            --text: #f4efe8;
            --muted: #c1b8ab;
            --subtle: #938c84;
            --line: #2c3238;
            --surface: #181c20;
            --button-bg: rgba(255, 255, 255, 0.03);
            --button-border: #394149;
            --button-text: #f4efe8;
            --button-hover-bg: #f4efe8;
            --button-hover-text: #101214;
            --faint: #5a636d;
        }

        @keyframes fade-shift {
            0% {
                color: #80cbc4;
            }

            50% {
                color: #c42b8c;
            }

            100% {
                color: #80cbc4;
            }
        }

        html {
    scroll-behavior: smooth;
}

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

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

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.5;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            transition: background-color 0.35s ease, color 0.35s ease;
            position: relative;
            overflow-x: hidden;
        }

        .landscape-bg-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1600px;
            max-height: none;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
            opacity: 1;
            transition: opacity 0.15s ease-out;
            will-change: opacity;
        }

        .landscape-bg-container::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 400px;
            background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
            pointer-events: none;
            z-index: 1;
        }

        .landscape-bg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
        }

        .landscape-bg-container-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1400px;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
            opacity: 1;
            transition: opacity 0.15s ease-out;
            will-change: opacity;
        }

        .landscape-bg-container-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 350px;
            background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
            pointer-events: none;
            z-index: 1;
        }

        .landscape-bg-canvas-bottom {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
            transform: scaleY(-1);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            position: relative;
            z-index: 1;
        }

        header {
            padding: 8rem 0 0rem 0;
            /* border-bottom: 1px solid var(--line); */
        }

        .header-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 6rem;
            position: relative;
            width: 100%;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 1000;
        }

        .header-placeholder {
            display: none;
            width: 100%;
        }

        .header-meta.is-scrolled {
            position: fixed;
            top: 1rem;
            left: 50%;
            transform: translateX(-50%);
            width: min(calc(100% - 3rem), 1340px);
            margin-bottom: 0;
            padding: 0.65rem 1.5rem;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--line);
            box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.08),
                        0 4px 10px -2px rgba(0, 0, 0, 0.04);
            animation: headerSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes headerSlideDown {
            from {
                transform: translate(-50%, -10px);
                opacity: 0.9;
            }
            to {
                transform: translate(-50%, 0);
                opacity: 1;
            }
        }

        @media (prefers-color-scheme: dark) {
            .header-meta.is-scrolled {
                background: rgba(24, 28, 32, 0.85);
                border-color: rgba(255, 255, 255, 0.1);
                box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5),
                            0 4px 12px -2px rgba(0, 0, 0, 0.3);
            }
        }

        :root[data-theme="light"] .header-meta.is-scrolled {
            background: rgba(255, 255, 255, 0.88);
            border-color: var(--line);
            box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.08),
                        0 4px 10px -2px rgba(0, 0, 0, 0.04);
        }

        :root[data-theme="dark"] .header-meta.is-scrolled {
            background: rgba(24, 28, 32, 0.85);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5),
                            0 4px 12px -2px rgba(0, 0, 0, 0.3);
        }

        .header-meta.is-scrolled .logo {
            font-size: 1rem;
        }

        .header-meta.is-scrolled .logo-icon {
            font-size: 1.25rem;
        }

        .header-meta.is-scrolled .nav-links {
            gap: 1.25rem;
        }

        .header-meta.is-scrolled .nav-links a {
            font-size: 0.85rem;
        }

        .header-meta.is-scrolled .theme-toggle,
        .header-meta.is-scrolled .nav-toggle {
            width: 34px;
            height: 34px;
        }

        .header-meta.is-scrolled .theme-toggle .material-symbols-outlined,
        .header-meta.is-scrolled .nav-toggle .material-symbols-outlined {
            font-size: 18px;
        }

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

        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo {
            font-size: 1.125rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-transform: uppercase;
        }

        .logo-icon {
            font-size: 1.5rem;
            animation: fade-shift 15s infinite ease-in-out;
            transition: color 0.5s;
        }

        h1 {
            font-size: 5.5rem;
            font-weight: 300;
            line-height: 1.1;
            letter-spacing: -0.03em;
            max-width: 900px;
            margin-bottom: 2rem;
        }

        .hero-eyebrow {
            font-size: 0.875rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--subtle);
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .intro {
            font-size: 1.5rem;
            font-weight: 300;
            line-height: 1.6;
            color: var(--muted);
            max-width: 760px;
            margin-bottom: 2.5rem;
        }

        /* Buttons & Actions */
        .hero-actions {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0.02em;
            padding: 0.85rem 1.75rem;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.25s ease;
            cursor: pointer;
            border: 1px solid transparent;
        }

        .btn-primary {
            background: var(--text);
            color: var(--bg);
            border-color: var(--text);
        }

        .btn-primary:hover {
            opacity: 0.88;
            transform: translateY(-1px);
            color: var(--bg);
        }

        .btn-primary .material-symbols-outlined {
            font-size: 1.2rem;
            transition: transform 0.2s ease;
        }

        .btn-primary:hover .material-symbols-outlined {
            transform: translateX(3px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            border-color: var(--button-border);
        }

        .btn-secondary:hover {
            border-color: var(--text);
            background: var(--surface);
            color: var(--text);
        }

        .btn-large {
            padding: 1rem 2.25rem;
            font-size: 1.05rem;
        }

        section,
        [id] {
            scroll-margin-top: 5.5rem;
        }

        section {
            padding: 8rem 0;
            border-bottom: 1px solid var(--line);
        }

        section:last-of-type {
            border-bottom: none;
        }

        .section-label {
            font-size: 0.875rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--subtle);
            margin-bottom: 1.5rem;
        }

        .section-heading {
            font-size: 3rem;
            font-weight: 300;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 3.5rem;
            max-width: 900px;
        }

        /* The Product Portfolio / Dilemma Section */
        .dilemma-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .carousel-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3.5rem;
            gap: 2rem;
        }

        .carousel-header-text {
            flex: 1;
        }

        .carousel-header .section-heading {
            margin-bottom: 0;
        }

        .carousel-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
            padding-bottom: 0.25rem;
        }

        .carousel-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--line);
            background: var(--surface);
            color: var(--text);
            cursor: pointer;
            transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
        }

        .carousel-btn:hover,
        .carousel-btn:focus-visible {
            border-color: var(--subtle);
            background: var(--bg);
            transform: scale(1.06);
            outline: none;
        }

        .carousel-btn .material-symbols-outlined {
            font-size: 1.25rem;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 1rem 0.75rem 1.5rem 0.75rem;
            margin: -1rem -0.75rem -0.5rem -0.75rem;
        }

        .carousel-track {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            overflow-y: visible;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0.75rem 0.5rem 1.25rem 0.5rem;
            margin: -0.5rem -0.5rem 0 -0.5rem;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .carousel-slide {
            flex: 0 0 calc((100% - 4rem) / 3);
            min-width: 320px;
            scroll-snap-align: start;
            display: flex;
            padding: 0.25rem 0;
        }

        .carousel-slide .dilemma-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .dilemma-card {
            border: 1px solid var(--line);
            background: var(--surface);
            padding: 2.5rem 2rem;
            border-radius: 8px;
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            will-change: transform;
        }

        .dilemma-card:hover {
            border-color: var(--subtle);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }

        :root[data-theme="dark"] .dilemma-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        }

        .card-num {
            font-family: monospace;
            font-size: 0.875rem;
            color: var(--subtle);
            margin-bottom: 1.25rem;
        }

        .card-title {
            font-size: 1.35rem;
            font-weight: 400;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .card-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .card-title a:hover {
            color: var(--muted);
        }

        .card-desc {
            font-size: 1.05rem;
            color: var(--muted);
            line-height: 1.5;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            color: var(--muted);
            font-size: 0.9rem;
            text-decoration: none;
            margin-top: auto;
            transition: color 0.25s ease, gap 0.25s ease;
        }

        .card-link .material-symbols-outlined {
            font-size: 1rem;
            transition: transform 0.25s ease;
        }

        .dilemma-card:hover .card-link {
            color: var(--text);
            gap: 0.5rem;
        }

        .dilemma-card:hover .card-link .material-symbols-outlined {
            transform: translate(2px, -2px);
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--line);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.3s ease;
        }

        .carousel-dot:hover {
            background: var(--subtle);
        }

        .carousel-dot.active {
            background: var(--text);
            width: 24px;
            border-radius: 4px;
        }

        /* Transformation Pillars Section */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .pillar-card {
            border: 1px solid var(--line);
            background: var(--surface);
            padding: 3rem 2.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pillar-card:hover {
            border-color: var(--subtle);
            transform: translateY(-2px);
        }

        .pillar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .pillar-icon {
            font-size: 2.25rem;
            color: var(--text);
        }

        .pillar-tag {
            font-size: 0.75rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.3rem 0.65rem;
            border-radius: 4px;
            background: var(--line);
            color: var(--muted);
        }

        .pillar-title {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .pillar-desc {
            font-size: 1.05rem;
            color: var(--muted);
            line-height: 1.55;
            margin-bottom: 0;
        }

        /* 3-Phase Delivery Framework */
        .framework-timeline {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .timeline-step {
            border: 1px solid var(--line);
            background: var(--surface);
            padding: 2.5rem 2rem;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }

        .timeline-step:hover {
            border-color: var(--subtle);
        }

        .step-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.25rem;
        }

        .step-phase {
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text);
        }

        .step-duration {
            font-size: 0.875rem;
            color: var(--subtle);
        }

        .step-title {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .step-desc {
            font-size: 1.05rem;
            color: var(--muted);
            line-height: 1.5;
            margin-bottom: 1.75rem;
            flex-grow: 1;
        }

        .step-deliverables {
            font-size: 0.85rem;
            color: var(--subtle);
            border-top: 1px solid var(--line);
            padding-top: 1rem;
            line-height: 1.45;
        }

        /* Leadership Section */
        .section-leadership {
            background: transparent;
        }

        .leadership-content {
            max-width: 850px;
        }

        .leadership-title {
            font-size: 2.75rem;
            font-weight: 300;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 1.75rem;
            color: var(--text);
        }

        .leadership-body {
            font-size: 1.25rem;
            color: var(--muted);
            line-height: 1.65;
            margin-bottom: 2.25rem;
        }

        .leadership-highlight-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.65rem 1.25rem;
            border-radius: 100px;
            background: var(--surface);
            border: 1px solid var(--line);
            font-size: 0.95rem;
            color: var(--text);
        }

        .leadership-highlight-pill .material-symbols-outlined {
            font-size: 1.2rem;
            color: var(--text);
        }

        /* Flagship 2-Week Audit Card */
        .audit-card {
            border: 1px solid var(--line);
            background: var(--surface);
            border-radius: 12px;
            padding: 4rem 3.5rem;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        }

        .audit-badges {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .section-label-inline {
            font-size: 0.875rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--subtle);
        }

        .badge-flagship {
            font-size: 0.75rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 600;
            padding: 0.25rem 0.65rem;
            border-radius: 4px;
            background: var(--text);
            color: var(--bg);
        }

        .audit-title {
            font-size: 2.75rem;
            font-weight: 300;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
            color: var(--text);
        }

        .audit-desc {
            font-size: 1.25rem;
            color: var(--muted);
            line-height: 1.55;
            max-width: 800px;
        }

        .audit-body {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 3rem;
            align-items: center;
            border-top: 1px solid var(--line);
            padding-top: 2.5rem;
        }

        .audit-checklist {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }

        .checklist-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 1.1rem;
            color: var(--text);
            line-height: 1.4;
        }

        .check-icon {
            font-size: 1.35rem;
            color: var(--text);
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .audit-action-box {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            align-items: flex-start;
        }

        .audit-subtext {
            font-size: 0.875rem;
            color: var(--subtle);
        }

        /* Contact Section */
        .contact-intro {
            font-size: 1.25rem;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .capabilities {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem 6rem;
        }

        .capability {
            font-size: 1.75rem;
            font-weight: 300;
            line-height: 1.3;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-top: 4rem;
        }

        .product {
            border-right: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
            transition: background 0.4s ease;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .product-content {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .product-name {
            font-size: 1.5rem;
            font-weight: 400;
        }

        .product-name a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .product-name a:hover,
        .product-name a:focus-visible {
            color: var(--muted);
        }

        .product-description {
            font-size: 1rem;
            color: var(--muted);
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        .product-link {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .product-link .material-symbols-outlined {
            font-size: 1.1em;
        }

        .product:nth-child(3n) {
            border-right: none;
        }

        .product:hover {
            background: var(--surface);
        }

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

        .retired-section {
            margin-top: 6rem;
        }

        .retired-grid {
            display: flex;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .retired-item {
            font-size: 1rem;
            color: var(--subtle);
        }

        .retired-item a {
            color: var(--subtle);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .retired-item a:hover {
            color: var(--muted);
        }

        .nyt-badge {
            font-size: 0.75rem;
            color: var(--faint);
            margin-left: 0.5rem;
        }

        .contact-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
            position: relative;
        }

        .email {
            font-size: 1.75rem;
            font-weight: 300;
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .email:hover {
            color: var(--muted);
        }

        .copy-btn {
            background: var(--button-bg);
            border: 1px solid var(--button-border);
            padding: 0.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 4px;
            color: var(--button-text);
        }

        .copy-btn:hover {
            border-color: var(--button-hover-bg);
            background: var(--button-hover-bg);
            color: var(--button-hover-text);
        }

        .copy-btn:hover svg {
            stroke: currentColor;
        }

        .copy-btn svg {
            stroke: currentColor;
            transition: stroke 0.3s ease;
        }

        .copy-feedback {
            position: absolute;
            left: 0;
            top: -2rem;
            font-size: 0.875rem;
            color: var(--text);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .copy-feedback.show {
            opacity: 1;
        }

        .theme-toggle {
            appearance: none;
            border: 1px solid var(--button-border);
            background: var(--button-bg);
            color: var(--button-text);
            border-radius: 50%;
            width: 38px;
            height: 38px;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        .theme-toggle .material-symbols-outlined {
            font-size: 20px;
        }

        .theme-toggle:hover {
            border-color: var(--button-hover-bg);
            background: var(--button-hover-bg);
            color: var(--button-hover-text);
        }

        .theme-toggle:focus-visible,
        .copy-btn:focus-visible,
        .email:focus-visible,
        .retired-item a:focus-visible,
        .product-link:focus-visible {
            outline: 2px solid var(--text);
            outline-offset: 3px;
        }

        footer {
            padding: 4rem 0;
            font-size: 0.875rem;
            color: var(--subtle);
        }

        @media (max-width: 1024px) {
            .container {
                padding: 0 2rem;
            }

            h1 {
                font-size: 4rem;
            }

            .section-heading {
                font-size: 2.5rem;
            }

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

            .carousel-slide {
                flex: 0 0 calc((100% - 2rem) / 2);
                min-width: 280px;
            }

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

            .audit-body {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .capabilities {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem 4rem;
            }

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

            .product:nth-child(3n) {
                border-right: 1px solid var(--line);
            }

            .product:nth-child(2n) {
                border-right: none;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 4rem 0 6rem;
            }

            .header-meta {
                gap: 1.5rem;
                margin-bottom: 3rem;
            }

            h1 {
                font-size: 2.5rem;
            }

            .section-heading {
                font-size: 2rem;
                margin-bottom: 2.5rem;
            }

            .carousel-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
                margin-bottom: 2rem;
            }

            .carousel-slide {
                flex: 0 0 88%;
                min-width: 260px;
            }

            .intro {
                font-size: 1.25rem;
            }

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

            .btn {
                justify-content: center;
            }

            section {
                padding: 4rem 0;
            }

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

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

            .framework-timeline {
                grid-template-columns: 1fr;
            }

            .audit-card {
                padding: 2.5rem 1.5rem;
            }

            .audit-title {
                font-size: 2rem;
            }

            .audit-desc {
                font-size: 1.1rem;
            }

            .leadership-title {
                font-size: 2rem;
            }

            .leadership-body {
                font-size: 1.1rem;
            }

            .capabilities {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .product {
                border-right: none;
            }

            .product:nth-child(3n),
            .product:nth-child(2n) {
                border-right: none;
            }
        }

        p {
            font-size: 1.5rem;
            /* Approx 18px */
            line-height: 1.6;
            /* Spacious vertical breathing room */
            /*max-width: 65ch;           /* Optimal line length for focus */
            /*color: #333;               /* High contrast but softer than pure black */
            text-align: left;
            /* Predictable starting point for eyes */
            text-wrap: pretty;
            /* Prevents awkward line endings */
            margin-bottom: 1.5em;
            /* Clear separation between paragraphs */
        }

        a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease, text-decoration-color 0.3s ease;
        }

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links .nav-item {
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
    color: var(--text);
}

.nav-toggle {
    appearance: none;
    border: 1px solid var(--button-border);
    background: var(--button-bg);
    color: var(--button-text);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-toggle .material-symbols-outlined {
    font-size: 20px;
}

.nav-toggle:hover {
    border-color: var(--button-hover-bg);
    background: var(--button-hover-bg);
    color: var(--button-hover-text);
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--text);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .header-meta {
        gap: 1rem;
        margin-bottom: 3.5rem;
        align-items: center;
    }

    .header-meta.is-scrolled {
        width: calc(100% - 2rem);
        top: 0.75rem;
        padding: 0.55rem 1rem;
        border-radius: 9999px;
    }

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

    .header-nav-wrapper {
        position: static;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        width: 100%;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 0.75rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        z-index: 100;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .nav-links.open {
        display: flex;
        animation: navFadeDown 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes navFadeDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links .nav-item {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
        letter-spacing: 0.03em;
        color: var(--text);
    }

    .nav-links a:hover,
    .nav-links a:focus-visible,
    .nav-links a.active {
        background: var(--line);
        color: var(--text);
    }
}
