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

        :root {
            --bg: #0a0a0a;
            --card: #111;
            --border: #1e1e1e;
            --border-input: #2a2a2a;
            --border-hover: #2e2e2e;
            --text: #f0f0f0;
            --muted: #909090;
            --muted2: #b0b0b0;
            --lime: #c8f135;
            --lime-dim: rgba(200,241,53,0.08);
            --r-sm: 8px;
            --r-md: 12px;
            --r-lg: 16px;
        }

        /* ── FOCUS ── */
        *:focus { outline: none; }
        *:focus-visible {
            outline: 2px solid var(--lime);
            outline-offset: 2px;
            border-radius: 2px;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            max-width: 100%;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            max-width: 100%;
        }

        /* ── COOKIE BANNER ── */
        .cookie-banner {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            left: auto;
            max-width: 400px;
            z-index: 200;
            background: #181818;
            border: 1px solid var(--border-hover);
            border-radius: var(--r-md);
            padding: 1rem 1.25rem;
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 8px 40px rgba(0,0,0,0.6);
            transform: translateY(0);
            transition: transform .3s, opacity .3s;
        }

        .cookie-banner.dimmed {
            opacity: 0.35;
            transform: translateY(8px);
        }
        .cookie-banner.dimmed:hover {
            opacity: 1;
            transform: translateY(0);
        }

        .cookie-banner.hidden {
            transform: translateY(20px);
            opacity: 0;
            pointer-events: none;
        }

        .cookie-text {
            font-size: 0.8rem;
            color: var(--muted2);
            line-height: 1.5;
        }

        .cookie-text a {
            color: var(--lime);
            text-decoration: none;
        }

        .cookie-actions {
            display: flex;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .btn-cookie {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 0.7rem 1.15rem;
            min-height: 36px;
            border-radius: var(--r-sm);
            cursor: pointer;
            white-space: nowrap;
            transition: all .2s;
        }

        .btn-cookie-accept {
            background: var(--lime);
            color: #0a0a0a;
            border: none;
        }

        .btn-cookie-accept:hover { background: #d6f84d; }

        .btn-cookie-reject {
            background: transparent;
            color: var(--muted2);
            border: 1px solid var(--border-hover);
        }

        .btn-cookie-reject:hover { color: var(--text); }

        /* ── NAV ── */
        nav {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 99;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2.5rem;
            height: 64px;
            background: rgba(10,10,10,0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text);
            text-decoration: none;
        }

        .logo em { font-style: normal; color: var(--lime); }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.82rem;
            color: var(--muted2);
            text-decoration: none;
            letter-spacing: 0.03em;
            transition: color .2s;
        }

        .nav-links a:hover { color: var(--text); }

        /* ── HAMBURGER ── */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 36px;
            height: 36px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .nav-hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all .25s;
            flex-shrink: 0;
        }

        .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; }
        .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu {
            display: none;
            position: fixed;
            inset: 64px 0 0 0;
            z-index: 98;
            background: rgba(10,10,10,0.97);
            backdrop-filter: blur(20px);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
        }

        .mobile-menu.open { display: flex; }

        .mobile-menu a {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
            letter-spacing: -0.02em;
            transition: color .2s;
        }

        .mobile-menu a:hover { color: var(--lime); }

        /* ── HERO ── */
        .hero {
            position: relative;
            display: flex;
            padding: 9rem 2.5rem 5rem;
            background:
                radial-gradient(circle at 85% 20%, rgba(200,241,53,0.10), transparent 50%),
                radial-gradient(circle at 15% 80%, rgba(200,241,53,0.05), transparent 45%);
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
            background-size: 72px 72px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 1080px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-eyebrow {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--lime);
            margin-bottom: 2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .hero-eyebrow::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--lime);
            box-shadow: 0 0 12px rgba(200,241,53,0.6);
        }

        .hero-title {
            font-size: clamp(2.4rem, 4vw, 3.8rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-wrap: balance;
        }

        .hero-title span { color: var(--muted); }

        .hero-sub {
            font-size: 1rem;
            color: var(--muted2);
            line-height: 1.65;
            max-width: 380px;
            margin-bottom: 3rem;
        }

        .hero-actions { display: flex; gap: 0.75rem; }

        .btn {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.75rem 1.75rem;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: all .2s;
            display: inline-block;
        }

        .btn-lime { background: var(--lime); color: #0a0a0a; border: none; }
        .btn-lime:hover { background: #d6f84d; transform: translateY(-1px); }
        .btn-ghost { background: transparent; color: var(--muted2); border: 1px solid var(--border-hover); }
        .btn-ghost:hover { color: var(--text); border-color: #3a3a3a; }

        .hero-stats {
            display: flex;
            gap: 3.5rem;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            max-width: 720px;
        }

        .stat-num {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: var(--text);
            min-width: 4ch;
        }

        .stat-label {
            font-size: 0.72rem;
            color: var(--muted);
            margin-top: 0.15rem;
            line-height: 1.4;
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .live-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--lime);
            flex-shrink: 0;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.85); }
        }

        /* ── TICKER ── */
        .ticker-wrap {
            overflow: hidden;
            border-bottom: 1px solid var(--border);
            padding: 0.9rem 0;
            background: var(--bg);
            max-width: 100vw;
            position: relative;
        }

        .ticker-track {
            display: flex;
            gap: 0;
            animation: ticker 40s linear infinite;
            width: max-content;
        }

        .ticker-track:hover { animation-play-state: paused; }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 0 2rem;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted);
            white-space: nowrap;
        }

        .ticker-item::after {
            content: '·';
            color: var(--lime);
        }

        @keyframes ticker {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* ── DIVIDER ── */
        .divider { height: 1px; background: var(--border); }

        /* ── SECTION ── */
        .section {
            max-width: 1160px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .section-label {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--lime);
            display: block;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 0.5rem;
        }

        .section-sub { font-size: 0.9rem; color: var(--muted2); }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 3rem;
        }

        /* ── PROJECTS ── */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        .pcard {
            background: var(--card);
            text-decoration: none;
            color: var(--text);
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            overflow: hidden;
            transition: border-color .2s, transform .2s, background .2s;
            position: relative;
        }

        .pcard:hover {
            background: #141414;
            border-color: var(--lime);
            transform: translateY(-2px);
        }

        .pcard-img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            object-position: top;
            display: block;
            border-bottom: 1px solid var(--border);
            background: #1a1a1a;
        }

        /* Lonely last card centered when row has only 1 */
        .pcard:nth-child(4n+1):last-child {
            grid-column: 2 / span 2;
        }

        .pcard-body {
            padding: 1.25rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .pcard-domain {
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--lime);
            margin-bottom: 0.35rem;
        }

        .pcard-name {
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }

        .pcard-desc {
            font-size: 0.82rem;
            color: var(--muted2);
            line-height: 1.55;
            flex: 1;
        }

        .pcard-cta {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--lime);
            margin-top: 1rem;
            opacity: 0;
            transform: translateX(-4px);
            transition: opacity .2s, transform .2s;
        }

        .pcard:hover .pcard-cta { opacity: 1; transform: translateX(0); }
        /* Borders sa kreslia cez parent's background + 1px gap medzi kartami */

        /* ── PREČO INZEROVAŤ ── */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            margin-top: 3rem;
        }

        .why-card {
            background: var(--card);
            padding: 2rem 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .why-card:not(:last-child) { border-right: 1px solid var(--border); }

        .why-icon {
            width: 32px;
            height: 32px;
            color: var(--lime);
        }
        .why-icon svg { width: 100%; height: 100%; }

        .why-title {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .why-desc {
            font-size: 0.82rem;
            color: var(--muted2);
            line-height: 1.55;
        }

        .why-num {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--lime);
            letter-spacing: -0.03em;
            margin-top: auto;
            padding-top: 1rem;
        }

        /* ── MOBILE APP SECTION ── */
        .app-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .app-desc {
            font-size: 0.95rem;
            color: var(--muted2);
            line-height: 1.65;
            margin-top: 1rem;
            max-width: 460px;
        }
        .app-features {
            list-style: none;
            padding: 0;
            margin: 1.75rem 0 2rem;
            display: grid;
            gap: 0.7rem;
        }
        .app-features li {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.92rem;
            color: var(--text);
        }
        .app-features .check {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            color: var(--lime);
        }
        .app-badges {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }
        .play-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.85rem;
            background: #141414;
            border: 1px solid var(--border-hover);
            border-radius: var(--r-md);
            padding: 0.7rem 1.4rem 0.7rem 1.1rem;
            color: var(--text);
            text-decoration: none;
            cursor: default;
            transition: border-color .2s;
        }
        .play-badge:hover { border-color: var(--lime); }
        .play-badge svg { width: 26px; height: 26px; color: var(--lime); flex-shrink: 0; }
        .play-badge small {
            display: block;
            font-size: 0.62rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--muted2);
            line-height: 1;
            margin-bottom: 0.2rem;
        }
        .play-badge strong {
            display: block;
            font-size: 1.05rem;
            font-weight: 600;
            letter-spacing: -0.01em;
        }
        .ios-note {
            font-size: 0.78rem;
            color: var(--muted);
            font-weight: 500;
        }

        /* ── PHONE MOCKUP — 3 phone stack ── */
        .phone-stack {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 540px;
            isolation: isolate;
        }
        .phone {
            width: 220px;
            aspect-ratio: 9/19;
            background: linear-gradient(145deg, #1c1c1c, #0f0f0f);
            border-radius: 32px;
            position: relative;
            padding: 8px;
            box-shadow:
                0 30px 80px rgba(0,0,0,0.55),
                0 0 0 1px #2a2a2a,
                inset 0 0 0 1px rgba(255,255,255,0.04);
            transition: transform .3s ease;
        }
        .phone-center {
            z-index: 3;
        }
        .phone-center::after {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 40px;
            background: radial-gradient(circle at 50% 0%, rgba(200,241,53,0.18), transparent 60%);
            pointer-events: none;
            z-index: -1;
            filter: blur(20px);
        }
        .phone-side {
            width: 180px;
            position: absolute;
            top: 50%;
            opacity: 0.92;
            z-index: 1;
            filter: brightness(0.85);
        }
        .phone-left {
            left: 0;
            transform: translateY(-50%) translateX(-30%) rotate(-10deg);
        }
        .phone-right {
            right: 0;
            transform: translateY(-50%) translateX(30%) rotate(10deg);
        }
        .phone-stack:hover .phone-left { transform: translateY(-50%) translateX(-40%) rotate(-12deg); }
        .phone-stack:hover .phone-right { transform: translateY(-50%) translateX(40%) rotate(12deg); }
        .phone-notch {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 18px;
            background: #050505;
            border-radius: 0 0 12px 12px;
            z-index: 2;
        }
        .phone-screen-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            border-radius: 24px;
            display: block;
            background: #0a0a0a;
        }

        /* ── CONTACT ── */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-info p {
            font-size: 0.875rem;
            color: var(--muted2);
            line-height: 1.65;
            margin-bottom: 2rem;
        }

        .contact-types { display: flex; flex-direction: column; gap: 0.5rem; }

        .ctype {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.82rem;
            color: var(--muted2);
        }

        .ctype-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--lime);
            flex-shrink: 0;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.9rem;
            margin-bottom: 0.9rem;
        }

        .form-row.single { grid-template-columns: 1fr; }

        .field { display: flex; flex-direction: column; gap: 0.3rem; }

        label {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--muted);
            letter-spacing: 0.02em;
        }

        input, select, textarea {
            background: var(--card);
            border: 1px solid var(--border-input);
            border-radius: var(--r-sm);
            padding: 0.75rem 0.9rem;
            color: var(--text);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.875rem;
            width: 100%;
            transition: border-color .2s;
            -webkit-appearance: none;
        }

        input::placeholder, textarea::placeholder { color: #666; }
        input:focus, select:focus, textarea:focus { outline: none; border-color: var(--lime); }
        select { cursor: pointer; }
        select option { background: #111; }
        textarea { resize: vertical; min-height: 120px; }

        .btn-form { width: 100%; padding: 0.9rem; font-size: 0.9rem; border-radius: 8px; margin-top: 0.5rem; }
        .form-note { font-size: 0.72rem; color: var(--muted); margin-top: 0.6rem; }

        .success-msg {
            display: none;
            padding: 1.25rem;
            border: 1px solid rgba(200,241,53,0.2);
            background: rgba(200,241,53,0.05);
            border-radius: 10px;
            color: var(--lime);
            font-size: 0.875rem;
            text-align: center;
        }
        .success-msg.show { display: block; }
        #contactForm.hidden { display: none; }

        /* ── NO-SCROLL (mobile menu open) ── */
        body.no-scroll { overflow: hidden; }

        /* ── UTILITY CLASSES ── */
        .honeypot { position: absolute; left: -9999px; top: -9999px; }
        .captcha-input { max-width: 120px; }
        .form-note-gap { margin-top: 0.4rem; }
        .link-lime { color: var(--lime); }
        .footer-links { display: flex; gap: 1.5rem; flex-shrink: 0; align-items: center; }

        /* ── FOOTER COUNTER ── */
        #footerCounter {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.75rem;
            color: var(--muted);
            opacity: 0;
            transition: opacity .4s ease;
        }
        #footerCounter.loaded { opacity: 1; }
        #footerCounter.hidden { display: none; }

        /* ── FOOTER ── */
        footer {
            border-top: 1px solid var(--border);
            padding: 1.75rem 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.78rem;
            color: var(--muted);
        }

        footer a { color: var(--muted); text-decoration: none; transition: color .2s; }
        footer a:hover { color: var(--text); }

        /* ── SCROLL TO TOP ── */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 44px;
            height: 44px;
            background: var(--lime);
            color: #0a0a0a;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 97;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity .3s, transform .3s, background .2s;
        }

        .scroll-top.visible { opacity: 1; transform: translateY(0); }
        .scroll-top:hover { background: #d6f84d; }

        /* ── REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(16px);
            transition: opacity .5s ease, transform .5s ease;
        }

        .reveal.show { opacity: 1; transform: translateY(0); }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .hero { min-height: auto; padding: 7rem 2rem 4rem; }
            .projects-grid { grid-template-columns: 1fr 1fr; }
            /* Reset desktop center hack */
            .pcard:nth-child(4n+1):last-child { grid-column: auto; }
            /* On 2-col, center lonely odd-numbered last card */
            .pcard:nth-child(odd):last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
            .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .app-grid { grid-template-columns: 1fr; gap: 3rem; }
            .app-info { order: 2; }
            .app-mock { order: 1; }
            .phone-stack { min-height: 480px; }
            .phone-side { display: none; }
            .why-grid { grid-template-columns: 1fr 1fr; }
            .why-card:not(:last-child) { border-right: none; }
            .why-card:nth-child(odd) { border-right: 1px solid var(--border); }
            .why-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-hamburger { display: flex; }
            .hero { padding: 6rem 1.5rem 3rem; }
            .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
            .hero-stats { gap: 1.5rem; flex-wrap: wrap; max-width: none; }
            .stat-num { font-size: 1.3rem; }
            .section { padding: 4rem 1.25rem; }
            .section-title { font-size: 1.8rem; }
            .projects-grid { grid-template-columns: 1fr; }
            /* Reset center hack on mobile */
            .pcard:nth-child(odd):last-child { grid-column: auto; max-width: none; margin: 0; }
            .why-grid { grid-template-columns: 1fr; border-radius: 12px; }
            .why-card:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
            .form-row { grid-template-columns: 1fr; }
            footer { flex-direction: column; gap: 0.5rem; text-align: center; }
            .cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .scroll-top { bottom: 1.25rem; right: 1.25rem; }
        }

        @media (max-width: 480px) {
            nav { padding: 0 1rem; }
            .hero { padding: 5rem 1rem 3rem; }
            .hero-sub { font-size: 0.9rem; }
            .btn { padding: 0.7rem 1.25rem; font-size: 0.82rem; }
            .section { padding: 3rem 1rem; }
            .pcard-body { padding: 1rem; }
            .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; }
        }

        /* ── SKIP LINK ── */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 1rem;
            z-index: 1000;
            background: var(--lime);
            color: #0a0a0a;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            text-decoration: none;
            transition: top .2s;
        }
        .skip-link:focus { top: 1rem; outline: 2px solid var(--text); outline-offset: 2px; }

        /* ── REDUCED MOTION ── */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
            .ticker-track { animation: none; }
            .live-dot { animation: none; }
            .reveal { opacity: 1; transform: none; }
        }