: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;
            }
        }

        * {
            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;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

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

        .header-meta {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 6rem;
        }

        .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: 3rem;
        }

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

        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: 4rem;
        }

        .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-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;
            }

            .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;
            }

            .intro {
                font-size: 1.25rem;
            }

            section {
                padding: 4rem 0;
            }

            .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;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.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 {
    color: var(--text);
}
