        /* =====================================================
           HOME — Self-contained stylesheet.
           Consumes CSS vars from themes.css ONLY (no hex/rgb).
           ===================================================== */

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

        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            min-height: 100vh;
            min-height: 100dvh;
            overflow-x: hidden;
            background: var(--clr-bg);
            color: var(--clr-text);
            font-family: var(--font-body);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            font-size: clamp(15px, 0.9rem + 0.25vw, 18px);
            scroll-behavior: smooth;
        }

        img { max-width: 100%; height: auto; display: block; }

        .brand-mark {
            width: clamp(5.5rem, 16vw, 8rem);
            height: clamp(5.5rem, 16vw, 8rem);
            display: inline-grid;
        }

        .brand-mark svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .parchment-title .logo-icon {
            width: clamp(5.5rem, 16vw, 8rem);
            height: clamp(5.5rem, 16vw, 8rem);
            display: inline-grid;
            flex: 0 0 auto;
        }

        #cycler-container {
            position: fixed;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            background: var(--clr-surface-dark);
            pointer-events: none;
        }

        .cycler-slot {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1500ms ease;
            will-change: opacity;
        }
        .cycler-slot.active { opacity: 1; }
        #slot-a.tier2-ambient { opacity: 1; }

        @keyframes home-kenburns-far {
            0%   { transform: scale(1.00) translate3d(0, 0, 0); }
            100% { transform: scale(1.06) translate3d(0, -0.5%, 0); }
        }
        @keyframes home-kenburns-mid {
            0%   { transform: scale(1.00) translate3d(0, 0, 0); }
            100% { transform: scale(1.08) translate3d(0, -0.75%, 0); }
        }
        @keyframes home-kenburns-flora {
            0%   { transform: scale(1.00) translate3d(0, 0, 0); }
            100% { transform: scale(1.10) translate3d(0, -1%, 0); }
        }
        @keyframes home-kenburns-fg {
            0%   { transform: scale(1.00) translate3d(0, 0, 0); }
            100% { transform: scale(1.12) translate3d(0, -1.25%, 0); }
        }
        .cycler-slot .bg-far   { animation: home-kenburns-far   20s ease-in-out infinite alternate; will-change: transform; }
        .cycler-slot .bg-mid   { animation: home-kenburns-mid   20s ease-in-out infinite alternate; will-change: transform; }
        .cycler-slot .bg-flora { animation: home-kenburns-flora 20s ease-in-out infinite alternate; will-change: transform; }
        .cycler-slot .bg-fg    { animation: home-kenburns-fg    20s ease-in-out infinite alternate; will-change: transform; }

        @keyframes home-torch-flicker {
            0%, 100% { opacity: 1; }
            42%      { opacity: 0.96; }
            45%      { opacity: 0.88; }
            48%      { opacity: 0.97; }
            70%      { opacity: 0.93; }
            72%      { opacity: 1; }
        }
        .cinematic-descent {
            animation: home-torch-flicker 7s ease-in-out infinite;
        }

        @keyframes home-fade-rise {
            0%   { opacity: 0; transform: translate3d(0, 8px, 0); }
            100% { opacity: 1; transform: translate3d(0, 0, 0); }
        }
        .hero-logo,
        .hero-eyebrow,
        .hero-title,
        .hero-subtitle,
        .hero-cta {
            animation: home-fade-rise 1200ms ease-out both;
        }
        .hero-eyebrow  { animation-delay: 150ms; }
        .hero-title    { animation-delay: 300ms; }
        .hero-subtitle { animation-delay: 500ms; }
        .hero-cta      { animation-delay: 750ms; }

        .cycler-slot .bg-far,
        .cycler-slot .bg-mid,
        .cycler-slot .bg-flora,
        .cycler-slot .bg-fg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            pointer-events: none;
            user-select: none;
        }

        .cycler-slot .bg-far  { z-index: 1; }
        .cycler-slot .bg-mid  { z-index: 2; mix-blend-mode: screen; }
        .cycler-slot .bg-flora{ z-index: 3; mix-blend-mode: screen; }
        .cycler-slot .bg-fg   { z-index: 4; mix-blend-mode: screen; }

        .cycler-slot .portrait-container,
        .cycler-slot .portrait-container img,
        .cycler-slot .portrait-caption { display: none; }

        @media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
            .cycler-slot .portrait-container {
                display: block;
                position: absolute;
                top: 50%;
                z-index: 5;
                width: clamp(220px, 26vw, 440px);
                transform: translateY(-50%);
                pointer-events: none;
                opacity: 0.85;
                filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.75))
                        drop-shadow(0 0 18px rgba(0, 0, 0, 0.55));
            }
            .cycler-slot .portrait-container img {
                display: block;
                width: 100%;
                height: auto;
                object-fit: contain;
                user-select: none;
                -webkit-user-drag: none;
            }
            .cycler-slot .portrait-container.hero-plate {
                left: clamp(0.5rem, 2vw, 2rem);
            }
            .cycler-slot .portrait-container.monster-plate {
                right: clamp(0.5rem, 2vw, 2rem);
                transform: translateY(-50%) scaleX(-1);
            }
            .cycler-slot .portrait-caption { display: none; }
        }
        .cinematic-descent {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background:
                var(--home-cinematic-tint, linear-gradient(135deg, rgba(16, 44, 28, 0.18), rgba(6, 10, 14, 0.34))),
                radial-gradient(ellipse at center,
                    transparent 0%,
                    transparent 45%,
                    var(--home-cinematic-vignette, rgba(3, 6, 10, 0.58)) 100%),
                linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.35) 0%,
                    rgba(0, 0, 0, 0.15) 30%,
                    rgba(0, 0, 0, 0.25) 60%,
                    rgba(0, 0, 0, 0.75) 100%);
            transition: background var(--home-cinematic-crossfade-ms, 1500ms) ease;
        }

        .home-shell {
            position: relative;
            z-index: 2;
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            padding:
                max(env(safe-area-inset-top, 0px), clamp(1rem, 3vh, 2.5rem))
                clamp(1rem, 4vw, 3rem)
                max(env(safe-area-inset-bottom, 0px), clamp(1rem, 3vh, 2rem));
        }

        .hero {
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: clamp(0.75rem, 2vh, 1.5rem);
            padding: clamp(2rem, 6vh, 4rem) 0 clamp(1.5rem, 4vh, 3rem);
            max-width: 56rem;
            margin: 0 auto;
            width: 100%;
        }

        .hero-logo {
            width: clamp(72px, 12vw + 48px, 128px);
            height: auto;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7))
                    drop-shadow(0 0 24px rgba(var(--rgb-accent), 0.25));
        }

        .hero-eyebrow {
            font-family: var(--font-primary);
            font-weight: 500;
            font-size: clamp(0.7rem, 0.55rem + 0.6vw, 0.95rem);
            letter-spacing: 0.35em;
            margin-right: -0.35em;
            text-transform: uppercase;
            color: var(--clr-accent);
            text-shadow:
                0 1px 2px rgba(0, 0, 0, 0.9),
                0 0 18px rgba(0, 0, 0, 0.75);
            margin-block: 0;
        }

        .hero-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(2.25rem, 4.5vw + 1.25rem, 5.5rem);
            line-height: 1.02;
            letter-spacing: 0.04em;
            margin-right: -0.04em;
            color: var(--clr-text-bright);
            margin-block: 0;
            text-shadow:
                0 2px 4px rgba(0, 0, 0, 0.95),
                0 6px 18px rgba(0, 0, 0, 0.85),
                0 0 32px rgba(0, 0, 0, 0.55);
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .hero-title .title-accent {
            color: var(--clr-accent);
            background: linear-gradient(to bottom,
                #FFF2D8 0%,
                #C9A669 35%,
                #8F713D 65%,
                #4A3515 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
            text-shadow: 0px 0px 12px rgba(139, 0, 0, 0.7);
        }

        .hero-title .title-base {
            color: #E2E8F0;
            background: linear-gradient(to bottom,
                #FFFFFF 0%,
                #A0AEC0 50%,
                #4A5568 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-weight: 400;
            font-size: clamp(0.95rem, 0.75rem + 0.7vw, 1.25rem);
            line-height: 1.55;
            color: var(--clr-text);
            max-width: 42rem;
            margin: 0 auto;
            padding: 0 clamp(0.25rem, 2vw, 1rem);
            text-shadow:
                0 1px 3px rgba(0, 0, 0, 0.95),
                0 2px 12px rgba(0, 0, 0, 0.7);
            overflow-wrap: anywhere;
        }

        .hero-cta {
            margin-top: clamp(0.5rem, 2vh, 1.25rem);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5em;
            padding: clamp(0.75rem, 1.5vh, 1rem) clamp(1.5rem, 4vw, 2.5rem);
            font-family: var(--font-primary);
            font-weight: 600;
            font-size: clamp(0.9rem, 0.75rem + 0.3vw, 1.05rem);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--clr-btn-text-on-accent);
            background: linear-gradient(180deg,
                var(--clr-accent-bright) 0%,
                var(--clr-accent) 55%,
                var(--clr-accent-dim) 100%);
            border: 1px solid var(--clr-accent-bright);
            border-radius: 2px;
            text-decoration: none;
            box-shadow:
                0 2px 0 var(--clr-accent-dim),
                0 6px 20px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
            cursor: pointer;
            transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
            min-height: 48px;
        }
        .hero-cta:hover,
        .hero-cta:focus-visible {
            transform: translateY(-1px);
            filter: brightness(1.08);
            box-shadow:
                0 3px 0 var(--clr-accent-dim),
                0 10px 28px rgba(0, 0, 0, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
            outline: none;
        }
        .hero-cta:active { transform: translateY(1px); }

        .section-kicker {
            width: 100%;
            max-width: 68rem;
            margin: 0 auto;
            padding: clamp(1rem, 3vh, 2rem) 0 0;
            text-align: center;
        }
        .section-kicker-label {
            display: inline-block;
            font-family: var(--font-primary);
            font-weight: 500;
            font-size: clamp(0.7rem, 0.55rem + 0.5vw, 0.9rem);
            letter-spacing: 0.4em;
            margin-right: -0.4em;
            text-transform: uppercase;
            color: var(--clr-accent);
            text-shadow:
                0 1px 2px rgba(0, 0, 0, 0.9),
                0 0 18px rgba(0, 0, 0, 0.75);
            margin: 0;
            padding: 0.35rem 0;
            border-top: 1px solid var(--clr-border);
            border-bottom: 1px solid var(--clr-border);
            padding-inline: clamp(0.75rem, 2vw, 1.25rem);
        }

        .pillars {
            width: 100%;
            max-width: 68rem;
            margin: 0 auto;
            padding: clamp(1.5rem, 4vh, 3rem) 0 clamp(1rem, 3vh, 2rem);
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: clamp(0.75rem, 2vw, 1.5rem);
        }

        .pillar {
            min-width: 0;
            padding: clamp(1rem, 2vw + 0.5rem, 1.75rem);
            background: rgba(0, 0, 0, 0.45);
            border: 1px solid var(--clr-border);
            border-radius: 4px;
            box-shadow:
                0 4px 18px rgba(0, 0, 0, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .pillar-eyebrow {
            font-family: var(--font-primary);
            font-weight: 500;
            font-size: clamp(0.65rem, 0.55rem + 0.3vw, 0.8rem);
            letter-spacing: 0.3em;
            margin-right: -0.3em;
            text-transform: uppercase;
            color: var(--clr-accent-dim);
            margin: 0 0 0.35rem 0;
        }

        .pillar-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(1.05rem, 0.85rem + 0.7vw, 1.5rem);
            line-height: 1.2;
            color: var(--clr-accent-bright);
            margin: 0 0 0.75rem 0;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
            overflow-wrap: anywhere;
        }

        .pillar-body {
            font-family: var(--font-body);
            font-size: clamp(0.85rem, 0.75rem + 0.3vw, 1rem);
            line-height: 1.55;
            color: var(--clr-text);
            margin: 0;
            overflow-wrap: anywhere;
        }

        .shell-footer {
            width: 100%;
            margin-top: auto;
            padding: clamp(1.25rem, 3vh, 2rem) clamp(1rem, 3vw, 2rem) clamp(1rem, 2vh, 1.5rem);
            background-color: rgba(0, 0, 0, 0.55);
            border-top: 1px solid var(--clr-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: var(--clr-text-dim);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
            position: relative;
            z-index: 3;
        }
        .shell-footer .shell-footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            width: 100%;
            max-width: 1200px;
        }
        .shell-footer .shell-footer-tier {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            line-height: 1.3;
            flex-wrap: wrap;
        }
        .shell-footer .shell-footer-tier.top { font-weight: 500; }
        .shell-footer .shell-footer-tier.middle { font-size: 0.8rem; }
        .shell-footer .shell-footer-tier.bottom { margin-top: 4px; }
        .shell-footer .shell-footer-version { color: var(--clr-accent); }
        .shell-footer .shell-footer-link {
            color: var(--clr-text-dim);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .shell-footer .shell-footer-link:hover,
        .shell-footer .shell-footer-link:focus-visible {
            color: var(--clr-accent);
            outline: none;
        }
        .shell-footer .shell-footer-separator { color: var(--clr-border); opacity: 0.6; }
        .shell-footer .shell-social-icons {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        .shell-footer .shell-social-icon {
            color: var(--clr-text-dim);
            transition: color 0.2s ease, transform 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .shell-footer .shell-social-icon:hover,
        .shell-footer .shell-social-icon:focus-visible {
            color: var(--clr-accent);
            transform: translateY(-2px);
            outline: none;
        }
        .shell-footer .shell-social-icon svg { display: block; }

        .home-shell > .shell-footer {
            margin-left: calc(-1 * clamp(1rem, 4vw, 3rem));
            margin-right: calc(-1 * clamp(1rem, 4vw, 3rem));
            width: auto;
        }
        @media (max-width: 640px) {
            .home-shell > .shell-footer {
                margin-left: -1rem;
                margin-right: -1rem;
            }
            .shell-footer .shell-footer-tier { gap: 6px; }
        }

        @media (max-width: 960px) {
            .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }

        @media (max-width: 640px) {
            .pillars {
                grid-template-columns: 1fr;
                gap: 0.75rem;
                padding-top: 1.5rem;
            }
            .home-shell { padding-left: 1rem; padding-right: 1rem; }
        }

        @media (max-width: 360px) {
            html { font-size: 14.5px; }
            .hero { padding-top: 1.25rem; }
            .hero-title { letter-spacing: 0.02em; margin-right: -0.02em; }
            .hero-eyebrow { letter-spacing: 0.25em; margin-right: -0.25em; }
        }

        @media (max-height: 520px) and (orientation: landscape) {
            .hero { padding: 1rem 0; }
            .hero-logo { width: clamp(56px, 8vw + 32px, 88px); }
        }

        :root[style*="--home-cinematic-text-mode: bright"] .hero-title,
        :root[style*="--home-cinematic-text-mode: bright"] .hero-subtitle {
            text-shadow:
                0 2px 4px rgba(0, 0, 0, 1),
                0 4px 18px rgba(0, 0, 0, 0.95),
                0 0 40px rgba(0, 0, 0, 0.8);
        }

        @media (prefers-reduced-motion: reduce) {
            .cycler-slot { transition: none; }
            .cinematic-descent { transition: none; animation: none; }
            html { scroll-behavior: auto; }
            .cycler-slot .bg-far,
            .cycler-slot .bg-mid,
            .cycler-slot .bg-flora,
            .cycler-slot .bg-fg { animation: none; transform: none; }
            .hero-logo, .hero-eyebrow, .hero-title, .hero-subtitle, .hero-cta {
                animation: none;
            }
            .arcane-cycle__ring { animation: none; }
            .arcane-cycle__arrow { animation: none; }
        }

        .arcane-cycle {
            width: 100%;
            max-width: 68rem;
            margin: 0 auto;
            padding: clamp(1.5rem, 4vh, 3rem) 0 clamp(1rem, 3vh, 2rem);
        }

        @media (min-width: 769px) {
            .arcane-cycle {
                padding-top: clamp(5.5rem, 9vh, 7.5rem);
            }
        }

        .arcane-cycle__stage {
            position: relative;
            width: min(560px, 90vw);
            aspect-ratio: 1 / 1;
            margin: 0 auto;
        }

        .arcane-cycle__ring {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: visible;
            animation: arcane-ring-pulse 4.5s ease-in-out infinite;
        }
        @keyframes arcane-ring-pulse {
            0%, 100% { filter: drop-shadow(0 0 6px rgba(var(--rgb-accent), 0.35)) drop-shadow(0 0 18px rgba(139, 0, 0, 0.25)); }
            50%      { filter: drop-shadow(0 0 12px rgba(var(--rgb-accent), 0.55)) drop-shadow(0 0 28px rgba(139, 0, 0, 0.45)); }
        }

        .arcane-cycle__node {
            position: absolute;
            width: min(42%, 220px);
            transform: translate(-50%, -50%);
            text-align: center;
            padding: clamp(0.75rem, 1.5vw, 1.1rem) clamp(0.85rem, 2vw, 1.25rem);
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid var(--clr-border);
            border-radius: 4px;
            box-shadow:
                0 4px 18px rgba(0, 0, 0, 0.6),
                0 0 22px rgba(var(--rgb-accent), 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
        }
        .arcane-cycle__node--assemble { top: 8%;  left: 50%; }
        .arcane-cycle__node--clear    { top: 78%; left: 86%; }
        .arcane-cycle__node--upgrade  { top: 78%; left: 14%; }

        .arcane-cycle__node-eyebrow {
            font-family: var(--font-primary);
            font-weight: 500;
            font-size: clamp(0.6rem, 0.5rem + 0.3vw, 0.75rem);
            letter-spacing: 0.3em;
            margin-right: -0.3em;
            text-transform: uppercase;
            color: var(--clr-accent-dim);
            margin: 0 0 0.35rem 0;
        }
        .arcane-cycle__node-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(1rem, 0.8rem + 0.6vw, 1.35rem);
            line-height: 1.15;
            color: var(--clr-accent-bright);
            margin: 0 0 0.5rem 0;
            text-shadow: 0 0 10px rgba(139, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.9);
            overflow-wrap: anywhere;
        }
        .arcane-cycle__node-body {
            font-family: var(--font-body);
            font-size: clamp(0.78rem, 0.7rem + 0.25vw, 0.95rem);
            line-height: 1.5;
            color: var(--clr-text);
            margin: 0;
            overflow-wrap: anywhere;
        }

        @keyframes arcane-arrow-flow {
            0%   { stroke-dashoffset: 0; }
            100% { stroke-dashoffset: -120; }
        }
        .arcane-cycle__arrow {
            stroke-dasharray: 8 12;
            animation: arcane-arrow-flow 6s linear infinite;
        }

        .cycle-ctas {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .cycle-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0.85rem 1.5rem;
            border-radius: 4px;
            border: 1px solid transparent;
            font-family: var(--font-primary);
            font-weight: 600;
            font-size: clamp(0.82rem, 0.74rem + 0.22vw, 0.98rem);
            letter-spacing: 0.16em;
            text-transform: uppercase;
            text-decoration: none;
            text-align: center;
            transition: color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease, background-color 150ms ease;
        }

        .cycle-cta:hover,
        .cycle-cta:focus-visible {
            transform: translateY(-1px);
            outline: none;
        }

        .cycle-cta-primary {
            border: 1px solid var(--clr-accent);
            color: var(--clr-accent);
            background: rgba(0, 0, 0, 0.35);
            box-shadow: inset 0 0 0 rgba(var(--rgb-accent), 0);
        }

        .cycle-cta-primary:hover,
        .cycle-cta-primary:focus-visible {
            box-shadow: inset 0 0 16px rgba(var(--rgb-accent), 0.18), 0 0 18px rgba(var(--rgb-accent), 0.12);
        }

        .cycle-cta-secondary {
            border: 1px solid var(--clr-border);
            color: var(--clr-text-dim);
            background: rgba(0, 0, 0, 0.2);
        }

        .cycle-cta-secondary:hover,
        .cycle-cta-secondary:focus-visible {
            border-color: var(--clr-text);
            color: var(--clr-text);
        }

        @media (max-width: 768px) {
            .arcane-cycle__stage {
                width: 100%;
                aspect-ratio: auto;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                padding: 0 0.25rem;
            }
            .arcane-cycle__ring { display: none; }
            .arcane-cycle__node {
                position: relative;
                top: auto; left: auto;
                transform: none;
                width: 100%;
                max-width: 100%;
                text-align: left;
                border-left: 3px solid var(--clr-accent-dim);
            }
            .arcane-cycle__node::before {
                content: "";
                position: absolute;
                left: -9px;
                top: 1.1rem;
                width: 15px;
                height: 15px;
                border-radius: 50%;
                background: var(--clr-accent);
                box-shadow: 0 0 10px rgba(var(--rgb-accent), 0.7), 0 0 16px rgba(139, 0, 0, 0.5);
            }
            .arcane-cycle__node:not(:last-child)::after {
                content: "↓";
                display: block;
                text-align: center;
                color: var(--clr-accent-dim);
                font-size: 1.25rem;
                margin-top: 0.75rem;
                margin-bottom: -0.25rem;
                text-shadow: 0 0 8px rgba(var(--rgb-accent), 0.6);
            }
        }

        @media (max-width: 479px) {
            .cycle-ctas {
                flex-direction: column;
                align-items: stretch;
            }

            .cycle-cta {
                width: 100%;
            }
        }

        .shell-page {
            flex: 1 1 auto;
            width: 100%;
            max-width: 68rem;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: clamp(1.25rem, 3vh, 2rem);
            padding: clamp(1rem, 3vh, 2rem) 0 clamp(2rem, 5vh, 3rem);
        }

        .shell-nav {
            width: 100%;
            max-width: 68rem;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0 0 clamp(0.5rem, 2vh, 1rem);
            flex-wrap: wrap;
        }

        .shell-nav-brand,
        .shell-nav-link {
            color: var(--clr-text-bright);
            text-decoration: none;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
        }

        .shell-nav-brand {
            font-family: var(--font-display);
            font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.6rem);
            letter-spacing: 0.06em;
        }

        .shell-nav-links {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            flex-wrap: wrap;
        }

        .shell-nav-link {
            font-family: var(--font-primary);
            font-size: clamp(0.75rem, 0.68rem + 0.25vw, 0.95rem);
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--clr-text-dim);
            transition: color 0.2s ease;
        }

        .shell-nav-link:hover,
        .shell-nav-link:focus-visible,
        .shell-nav-brand:hover,
        .shell-nav-brand:focus-visible {
            color: var(--clr-accent);
            outline: none;
        }

        .shell-page-header {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(0.5rem, 1.5vh, 1rem);
            padding: clamp(1rem, 3vh, 2rem) 0 clamp(0.5rem, 2vh, 1rem);
        }

        .shell-page-main {
            background: rgba(0, 0, 0, 0.45);
            border: 1px solid var(--clr-border);
            border-radius: 4px;
            box-shadow:
                0 4px 18px rgba(0, 0, 0, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
            padding: clamp(1rem, 3vw, 2rem);
        }

        .shell-page-main a { color: var(--clr-accent-bright); }
        .shell-page-main h1,
        .shell-page-main h2,
        .shell-page-main h3 { overflow-wrap: anywhere; }

        @media (max-width: 640px) {
            .shell-nav { justify-content: center; }
            .shell-nav-links { justify-content: center; }
        }
