        :root {
            --deep-forest: #1A3A2A;
            --sage-mist: #D4E8D8;
            --spoke-amber: #E8A020;
            --near-black: #1C1C1C;
            --off-white: #F7F5F1;
            --mid-green: #2E7D52;
            /* Hero animation */
            --parchment: #E9DCC0;
            --ink: #5A3E22;
            --darktext: #1A3A2A;
            --wood-out: #4A3A24;
            --wood-felloe: #C7A063;
            --wood-spoke: #BE9455;
            --wood-hub: #B08748;
            --wood-ring: #7A5A2E;
            --wood-band: #5E4A2E;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--near-black);
            background: var(--off-white);
            overflow-x: hidden;
        }

        /* ── Fixed rotating wheel ── */
        .fixed-spoke {
            position: fixed;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 200;
            width: 128px;
            height: 128px;
            pointer-events: none;
        }

        .fixed-spoke {
            transition: opacity 0.5s ease;
        }

        .fixed-spoke.fixed-spoke--hidden {
            opacity: 0;
            pointer-events: none;
        }

        @media (max-width: 767px) {
            .fixed-spoke { display: none; }
        }

        /* CSS vars per background — JS reads these to colour spokes */
        .fixed-spoke.spoke--on-dark  { --rim-col: #D4E8D8; --hi-col: #E8A020; }
        .fixed-spoke.spoke--on-sage  { --rim-col: #0F2418; --hi-col: #E8A020; }
        .fixed-spoke.spoke--on-light { --rim-col: #1A3A2A; --hi-col: #E8A020; }

        /* ── Navigation ── */
        nav {
            position: sticky;
            top: 0;
            z-index: 500;
            background: var(--off-white);
            border-bottom: 1px solid rgba(26, 58, 42, 0.08);
            padding: 0 2.5rem;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: box-shadow 0.2s;
        }

        nav.scrolled {
            box-shadow: 0 2px 20px rgba(26, 58, 42, 0.08);
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .nav-logo-svg {
            width: auto;
            height: 48px;
            flex-shrink: 0;
        }

        .nav-wordmark {
            display: flex;
            flex-direction: column;
            line-height: 1;
            gap: 2px;
        }

        .wm-spoke {
            font-family: 'DM Serif Display', serif;
            font-size: 1.45rem;
            color: var(--deep-forest);
            letter-spacing: 0.03em;
        }

        .wm-systems {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.78rem;
            color: var(--deep-forest);
            letter-spacing: 0.28em;
            text-transform: uppercase;
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        @media (max-width: 480px) {
            nav { padding: 0 1.25rem; }
            .nav-links { gap: 1rem; }
            .nav-links a:not(.btn) { display: none; }
            .nav-logo-svg { height: 38px; }
            .wm-spoke { font-size: 1.2rem; }
        }

        .nav-links a {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            color: var(--deep-forest);
            text-decoration: none;
            font-weight: 500;
        }

        .nav-links a:hover {
            opacity: 0.7;
        }

        .btn {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            text-decoration: none;
            transition: opacity 0.18s, transform 0.18s;
            cursor: pointer;
        }

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

        .btn-sm {
            background: var(--spoke-amber);
            color: var(--near-black);
            padding: 0.5rem 1.2rem;
            border-radius: 4px;
            font-size: 0.875rem;
        }

        .btn-lg {
            background: var(--spoke-amber);
            color: var(--near-black);
            padding: 0.9rem 2.25rem;
            border-radius: 4px;
            font-size: 1rem;
        }

        /* ── Shared section layout ── */
        .section-inner {
            max-width: 1080px;
            margin: 0 auto;
            padding: 6.5rem 2.5rem;
        }

        @media (max-width: 480px) {
            .section-inner { padding: 3.5rem 1.25rem; }
        }

        /* ── Hero ── */
        #hero {
            position: relative;
            background: var(--parchment);
            overflow: hidden;
        }

        .hero-svg-wrap {
            display: block;
            width: 100%;
        }

        .hero-svg-wrap svg {
            display: block;
            width: 100%;
            height: auto;
        }

        /* Real HTML text overlaid on the SVG for accessibility and click-through */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .hero-overlay-inner {
            position: absolute;
            top: 16.5%;
            left: 6.7%;
            max-width: 52%;
        }

        .hero-overlay h1 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.15rem, 3.75vw, 2.25rem);
            color: var(--darktext);
            line-height: 1.28;
            margin-bottom: 1.5rem;
        }

        .hero-overlay .btn {
            pointer-events: auto;
        }

        @media (max-width: 640px) {
            .hero-overlay-inner {
                max-width: 70%;
                top: 8%;
            }
            .hero-overlay h1 {
                font-size: clamp(1rem, 4.5vw, 1.6rem);
                margin-bottom: 1rem;
            }
            .hero-overlay .btn-lg {
                padding: 0.65rem 1.5rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            .hero-overlay-inner {
                max-width: 80%;
                top: 5%;
            }
        }

        /* ── Workflow stack section ── */
        #workflow-stack {
            background: var(--deep-forest);
        }

        .wf-inner {
            display: flex;
            align-items: center;
            gap: 5rem;
        }

        .wf-left {
            flex: 1;
        }

        .wf-eyebrow {
            font-size: 0.72rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--sage-mist);
            opacity: 0.45;
            font-weight: 500;
            margin-bottom: 1.1rem;
        }

        .wf-heading {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.75rem, 3.5vw, 2.4rem);
            color: var(--off-white);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .wf-heading em {
            font-style: italic;
            color: var(--spoke-amber);
        }

        .wf-body {
            font-size: 0.95rem;
            color: var(--sage-mist);
            opacity: 0.65;
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 380px;
        }

        .wf-proofs {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .wf-proofs li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.9rem;
            color: var(--sage-mist);
            opacity: 0.8;
            line-height: 1.55;
        }

        .wf-proofs li strong {
            color: var(--off-white);
            font-weight: 500;
        }

        .wf-proof-check {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(232, 160, 32, 0.12);
            border: 1px solid rgba(232, 160, 32, 0.35);
            flex-shrink: 0;
            margin-top: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wf-proof-check::after {
            content: '';
            display: block;
            width: 5px;
            height: 8px;
            border-right: 1.5px solid var(--spoke-amber);
            border-bottom: 1.5px solid var(--spoke-amber);
            transform: rotate(45deg) translate(-1px, -1px);
        }

        .wf-right {
            flex: 0 0 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .wf-stack {
            width: 260px;
            height: 280px;
            position: relative;
            cursor: pointer;
        }

        .wf-card {
            position: absolute;
            left: 0;
            width: 260px;
            height: 58px;
            border-radius: 10px;
            border: 1px solid rgba(212, 232, 216, 0.18);
            background: rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            padding: 0 14px;
            gap: 12px;
            overflow: hidden;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                        border-color 0.4s ease,
                        background 0.4s ease;
        }

        .wf-card:nth-child(1) { top: 0px; }
        .wf-card:nth-child(2) { top: 50px; }
        .wf-card:nth-child(3) { top: 100px; }
        .wf-card:nth-child(4) { top: 150px; }
        .wf-card:nth-child(5) { top: 200px; }

        .wf-card--anchor {
            border-color: rgba(232, 160, 32, 0.3);
            background: rgba(232, 160, 32, 0.05);
        }

        .wf-stack:hover .wf-card:nth-child(1) { transform: translateY(-36px); }
        .wf-stack:hover .wf-card:nth-child(2) { transform: translateY(-18px); }
        .wf-stack:hover .wf-card:nth-child(3) { transform: translateY(0); }
        .wf-stack:hover .wf-card:nth-child(4) { transform: translateY(18px); }
        .wf-stack:hover .wf-card:nth-child(5) { transform: translateY(36px); }

        .wf-stack:hover .wf-card {
            border-color: rgba(212, 232, 216, 0.3);
        }

        .wf-logo {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            font-family: 'DM Sans', sans-serif;
            background-color: #fff !important;
            background-repeat: no-repeat !important;
            background-position: center !important;
            background-size: 18px 18px !important;
        }

        .wf-logo svg { display: none; }
        .wf-card:nth-child(1) .wf-logo { background-image: url('../assets/logos/make.svg') !important; }
        .wf-card:nth-child(2) .wf-logo { background-image: url('../assets/logos/zapier.svg') !important; }
        .wf-card:nth-child(3) .wf-logo { background-image: url('../assets/logos/hubspot.svg') !important; }
        .wf-card:nth-child(4) .wf-logo { background-image: url('../assets/logos/googleworkspace.svg') !important; }
        .wf-card:nth-child(5) .wf-logo { background-image: url('../assets/logos/slack.svg') !important; }

        .wf-label {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
        }

        .wf-name {
            font-size: 12px;
            font-weight: 500;
            color: var(--off-white);
        }

        .wf-action {
            font-size: 11px;
            color: var(--sage-mist);
            opacity: 0;
            transition: opacity 0.35s 0.1s;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .wf-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
            opacity: 0;
            transition: opacity 0.3s 0.15s;
        }

        .wf-stack:hover .wf-action { opacity: 0.7; }
        .wf-stack:hover .wf-dot    { opacity: 1; }

        .wf-hint {
            font-size: 11px;
            color: var(--sage-mist);
            opacity: 0.3;
            letter-spacing: 0.06em;
            text-align: center;
        }

        @media (max-width: 860px) {
            .wf-inner {
                flex-direction: column;
                gap: 3rem;
                text-align: center;
            }
            .wf-body { max-width: 100%; margin-left: auto; margin-right: auto; }
            .wf-proofs li { text-align: left; }
            .wf-right { width: 100%; }
        }

        @media (max-width: 480px) {
            .wf-stack { width: 100%; max-width: 320px; }
            .wf-card { width: 100%; }
            .wf-hint { display: none; }
        }

        @media (hover: none) {
            .wf-stack .wf-card { border-color: rgba(212, 232, 216, 0.28); }
            .wf-stack .wf-card:nth-child(1) { transform: translateY(-28px); }
            .wf-stack .wf-card:nth-child(2) { transform: translateY(-14px); }
            .wf-stack .wf-card:nth-child(3) { transform: translateY(0); }
            .wf-stack .wf-card:nth-child(4) { transform: translateY(14px); }
            .wf-stack .wf-card:nth-child(5) { transform: translateY(28px); }
            .wf-stack .wf-action { opacity: 0.6; }
            .wf-stack .wf-dot { opacity: 1; }
        }

        /* ── Bespoke section ── */
        #bespoke {
            background: var(--off-white);
        }

        #bespoke h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.75rem, 3.5vw, 2.6rem);
            color: var(--deep-forest);
            max-width: 580px;
            line-height: 1.2;
            margin-bottom: 3.5rem;
        }

        .bespoke-cols {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .bespoke-col {
            border-top: 3px solid var(--spoke-amber);
            padding-top: 1.5rem;
        }

        .bespoke-col h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.2rem;
            color: var(--deep-forest);
            margin-bottom: 0.9rem;
            line-height: 1.3;
        }

        .bespoke-col p {
            font-size: 0.95rem;
            line-height: 1.75;
            color: var(--near-black);
        }

        @media (max-width: 768px) {
            .bespoke-cols { grid-template-columns: 1fr; gap: 2rem; }
            #bespoke h2 { margin-bottom: 2rem; }
        }

        /* ── Problems section ── */
        #problems {
            background: var(--sage-mist);
        }

        .problems-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .problems-left h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.75rem, 3vw, 2.4rem);
            color: var(--deep-forest);
            line-height: 1.2;
            margin-bottom: 1.25rem;
        }

        .problems-left p {
            font-size: 1rem;
            color: var(--near-black);
            line-height: 1.7;
        }

        .problems-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            padding-top: 0.25rem;
        }

        .problems-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            font-size: 1rem;
            line-height: 1.55;
            color: var(--near-black);
        }

        .problems-list li::before {
            content: '—';
            color: var(--spoke-amber);
            font-weight: 700;
            flex-shrink: 0;
            line-height: 1.55;
        }

        @media (max-width: 768px) {
            .problems-grid { grid-template-columns: 1fr; gap: 2.5rem; }
        }

        /* ── Before / After ── */
        #before-after {
            background: var(--deep-forest);
        }

        #before-after h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.75rem, 3.5vw, 2.6rem);
            color: var(--off-white);
            line-height: 1.2;
            margin-bottom: 3.5rem;
        }

        .ba-table {
            width: 100%;
        }

        .ba-headers {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 1px solid rgba(255,255,255,0.18);
            padding-bottom: 0.875rem;
            margin-bottom: 0.25rem;
        }

        .ba-h {
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 600;
        }

        .ba-h.bh-before { color: rgba(212, 232, 216, 0.45); }
        .ba-h.bh-after  { color: var(--spoke-amber); padding-left: 2rem; }

        .ba-pair {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }

        .ba-before,
        .ba-after {
            padding: 1.25rem 1rem 1.25rem 0;
            font-size: 0.975rem;
            line-height: 1.55;
        }

        .ba-before {
            color: rgba(212, 232, 216, 0.5);
        }

        .ba-after {
            color: var(--off-white);
            padding-left: 2rem;
            border-left: 1px solid rgba(255,255,255,0.1);
        }

        @media (max-width: 620px) {
            .ba-headers { display: none; }

            .ba-pair {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .ba-before::before {
                content: 'Before';
                display: block;
                font-size: 0.7rem;
                letter-spacing: 0.18em;
                text-transform: uppercase;
                color: rgba(212, 232, 216, 0.38);
                margin-bottom: 0.35rem;
            }

            .ba-after {
                border-left: none;
                padding-left: 0;
                padding-top: 0;
            }

            .ba-after::before {
                content: 'After';
                display: block;
                font-size: 0.7rem;
                letter-spacing: 0.18em;
                text-transform: uppercase;
                color: var(--spoke-amber);
                margin-bottom: 0.35rem;
            }
        }

        /* ── Tools section ── */
        #tools {
            background: var(--sage-mist);
        }

        .tools-intro {
            max-width: 520px;
            margin-bottom: 3rem;
        }

        .tools-intro h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.75rem, 3.5vw, 2.4rem);
            color: var(--deep-forest);
            line-height: 1.2;
            margin-bottom: 0.875rem;
        }

        .tools-intro p {
            font-size: 0.95rem;
            color: var(--near-black);
            line-height: 1.7;
            opacity: 0.75;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
            gap: 10px;
            margin-bottom: 2rem;
        }

        .tool-card {
            background: #fff;
            border: 0.5px solid rgba(26, 58, 42, 0.1);
            border-radius: 10px;
            padding: 1rem 0.875rem;
            display: flex;
            align-items: center;
            gap: 11px;
            transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
        }

        .tool-card:hover {
            border-color: rgba(26, 58, 42, 0.22);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(26, 58, 42, 0.08);
        }

        .tool-logo {
            width: 32px;
            height: 32px;
            border-radius: 7px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 700;
            background-color: #fff !important;
            background-repeat: no-repeat !important;
            background-position: center !important;
            background-size: 21px 21px !important;
        }

        .tool-logo svg { display: none; }
        .tool-card:nth-child(1) .tool-logo { background-image: url('../assets/logos/make.svg') !important; }
        .tool-card:nth-child(2) .tool-logo { background-image: url('../assets/logos/zapier.svg') !important; }
        .tool-card:nth-child(3) .tool-logo { background-image: url('../assets/logos/googleworkspace.svg') !important; }
        .tool-card:nth-child(4) .tool-logo { background-image: url('../assets/logos/notion.svg') !important; }
        .tool-card:nth-child(5) .tool-logo { background-image: url('../assets/logos/hubspot.svg') !important; }
        .tool-card:nth-child(6) .tool-logo { background-image: url('../assets/logos/slack.svg') !important; }
        .tool-card:nth-child(7) .tool-logo { background-image: url('../assets/logos/airtable.svg') !important; }
        .tool-card:nth-child(8) .tool-logo { background-image: url('../assets/logos/microsoft365.svg') !important; }
        .tool-card:nth-child(9) .tool-logo { background-image: url('../assets/logos/calendly.svg') !important; }
        .tool-card:nth-child(10) .tool-logo { background-image: url('../assets/logos/xero.svg') !important; }
        .tool-card:nth-child(11) .tool-logo { background-image: url('../assets/logos/anthropic.svg') !important; }
        .tool-card:nth-child(12) .tool-logo { background-image: url('../assets/logos/stripe.svg') !important; }

        .tool-info {
            flex: 1;
            min-width: 0;
        }

        .tool-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--near-black);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .tool-desc {
            font-size: 11px;
            color: var(--near-black);
            opacity: 0.45;
            margin-top: 1px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .tools-footnote {
            font-size: 0.825rem;
            color: var(--near-black);
            opacity: 0.45;
            font-style: italic;
        }

        @media (max-width: 600px) {
            .tools-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 360px) {
            .tools-grid { grid-template-columns: 1fr; }
        }

        /* ── How it works ── */
        #how-it-works {
            background: var(--off-white);
        }

        #how-it-works h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.75rem, 3.5vw, 2.6rem);
            color: var(--deep-forest);
            line-height: 1.2;
            margin-bottom: 3.5rem;
        }

        .timeline {
            position: relative;
            max-width: 620px;
            padding-left: 3.25rem;
        }

        @media (max-width: 480px) {
            .timeline { padding-left: 2.5rem; }
            .step-num { left: -2.5rem; width: 1.75rem; height: 1.75rem; font-size: 0.75rem; }
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 1rem;
            top: 0.95rem;
            bottom: 2rem;
            width: 2px;
            background: rgba(26, 58, 42, 0.12);
        }

        .timeline-step {
            position: relative;
            margin-bottom: 3rem;
        }

        .timeline-step:last-child {
            margin-bottom: 0;
        }

        .step-num {
            position: absolute;
            left: -3.25rem;
            top: 0;
            width: 2rem;
            height: 2rem;
            background: var(--spoke-amber);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--near-black);
            z-index: 1;
        }

        .timeline-step h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.2rem;
            color: var(--deep-forest);
            margin-bottom: 0.5rem;
        }

        .timeline-step p {
            font-size: 0.97rem;
            color: var(--near-black);
            line-height: 1.7;
        }

        /* ── About ── */
        #about {
            background: var(--sage-mist);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-left h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.75rem, 3vw, 2.4rem);
            color: var(--deep-forest);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .about-left p {
            font-size: 1rem;
            color: var(--near-black);
            line-height: 1.8;
        }

        .about-photo {
            border-radius: 4px;
            aspect-ratio: 4 / 5;
            min-height: 300px;
            overflow: hidden;
        }

        .about-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
            border-radius: 4px;
        }

        @media (max-width: 768px) {
            .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .about-photo { min-height: 240px; aspect-ratio: 3 / 2; }
        }

        /* ── CTA ── */
        #cta {
            background: var(--deep-forest);
        }

        .cta-inner {
            max-width: 1080px;
            margin: 0 auto;
            padding: 7rem 2.5rem;
            text-align: center;
        }

        @media (max-width: 480px) {
            .cta-inner { padding: 4rem 1.25rem; }
        }

        #cta h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2rem, 4.5vw, 3rem);
            color: var(--off-white);
            margin-bottom: 1.25rem;
        }

        #cta p {
            font-size: 1.05rem;
            color: var(--sage-mist);
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto 2.5rem;
        }

        .cta-domain {
            display: block;
            margin-top: 1.5rem;
            font-size: 0.85rem;
            color: var(--sage-mist);
            opacity: 0.5;
            letter-spacing: 0.06em;
        }

        /* ── Footer ── */
        footer {
            background: #111f17;
            padding: 1.5rem 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        @media (max-width: 480px) {
            footer { flex-direction: column; gap: 0.5rem; padding: 1.5rem 1.25rem; text-align: center; }
        }

        footer span {
            font-size: 0.8rem;
            color: rgba(212, 232, 216, 0.35);
        }
