        :root {
            --bg:           #0D1117;
            --bg2:          #141414;
            --bg3:          #1a1a1a;
            --border:       #2a2a2a;
            --border2:      #333;
            --text:         #e8e8e4;
            --text2:        #888;
            --text3:        #555;
            --accent:       #c0392b;
            --red-dim:      #7a1a12;
            --navy-deep:    #0A1929;
            --navy:         #1A2B3C;
            --gold:         #D4AF37;
            --green:        #3FB950;
            --green-text:   #5BC873;
            --amber:        #E0A21A;
            --amber-text:   #F0C24B;
            --bg-dark:      #0D1117;
            --text-primary: #E6EDF3;
        }

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

        h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #0B1017;
            color: var(--text);
            display: flex;
            flex-direction: column;
            align-items: stretch;
            min-height: 100vh;
            padding: 0;
            margin: 0;
            -webkit-tap-highlight-color: transparent;
            scroll-behavior: smooth;
            font-size: 13px;
        }

        /* ── Header ─────────────────────────────────── */
        .site-header {
            background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
            color: var(--text-primary);
            padding: 14px 16px;
            border-bottom: 1px solid var(--gold);
            box-shadow: 0 2px 8px rgba(0,0,0,0.4);
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 1px;
        }

        .brand {
            font-family: 'Playfair Display', serif;
            font-size: clamp(13px, 3.5vw, 18px);
            font-weight: 600;
            display: flex;
            align-items: baseline;
            gap: 12px;
            flex-wrap: wrap;
            line-height: 1.4;
        }

        .brand a,
        .brand label {
            cursor: pointer;
            color: inherit;
            text-decoration: none;
        }

        .brand-badge {
            align-self: baseline;
            padding: 5px 13px;
            display: inline-flex;
            align-items: baseline;
            gap: 7px;
            background: transparent;
            border: 1px solid rgba(212,175,55,0.55);
            border-radius: 4px;
            color: var(--gold);
            white-space: nowrap;
            flex-shrink: 0;
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .brand-badge:hover {
            border-color: var(--gold);
            background: rgba(212,175,55,0.08);
        }
        .brand-badge .name {
            font-family: 'Playfair Display', serif;
            font-size: clamp(13px, 3.5vw, 18px);
            font-weight: 600;
            color: var(--gold);
            line-height: 1;
        }
        .brand-badge .dot {
            font-family: 'Playfair Display', serif;
            font-size: clamp(13px, 3.5vw, 18px);
            line-height: 1;
            color: var(--text2);
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        .brand-badge .dot.ok   { color: var(--green);  text-shadow: 0 0 8px rgba(63,185,80,0.55); }
        .brand-badge .dot.down { color: var(--accent); text-shadow: 0 0 8px rgba(192,57,43,0.55); }

        /* ── Main content ───────────────────────────── */
        .main-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            /*padding: clamp(40px, 9vw, 88px) 16px clamp(32px, 6vw, 56px);*/
	    padding: clamp(20px, 5vw, 38px) 16px clamp(12px, 4vw, 26px);*
            position: relative;
            overflow: hidden;
        }

        /* atmospheric depth: cool glow + ledger dot-grid */
        .main-content::before {
            content: "";
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 720px;
            height: 720px;
            max-width: 140vw;
            background: radial-gradient(circle, rgba(70,110,165,0.10) 0%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }

        .main-content::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(140,165,200,0.10) 1px, transparent 1.4px);
            background-size: 24px 24px;
            mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, #000 35%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, #000 35%, transparent 80%);
            pointer-events: none;
            z-index: 0;
        }

        .intro {
            position: relative;
            z-index: 1;
            max-width: 560px;
            width: 100%;
            text-align: center;
        }

        /* staggered load reveal */
        .reveal {
            opacity: 0;
            transform: translateY(14px);
            animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .reveal.d1 { animation-delay: 0.05s; }
        .reveal.d2 { animation-delay: 0.15s; }
        .reveal.d3 { animation-delay: 0.25s; }
        .reveal.d4 { animation-delay: 0.35s; }
        .reveal.d5 { animation-delay: 0.45s; }

        @keyframes rise {
            to { opacity: 1; transform: translateY(0); }
        }
        @media (prefers-reduced-motion: reduce) {
            .reveal { animation: none; opacity: 1; transform: none; }
            .status-dot { animation: none; }
            .cone.bob { animation: none; }
        }

        /* status pill — under-construction (amber / traffic cone) theme */
        .status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 13px 5px 11px;
            border: 1px solid rgba(224,162,26,0.38);
            border-radius: 100px;
            background: rgba(224,162,26,0.08);
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--amber-text);
            margin-bottom: 28px;
        }

        /* traffic-cone status icon */
        .cone {
            width: 15px;
            height: 15px;
            display: block;
            flex-shrink: 0;
        }
        .cone.bob {
            transform-origin: 50% 90%;
            animation: bob 2.4s ease-in-out infinite;
        }
        @keyframes bob {
            0%, 100% { transform: translateY(0) rotate(-4deg); }
            50%      { transform: translateY(-1px) rotate(4deg); }
        }

        .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 0 0 rgba(63,185,80,0.6);
            animation: pulse 2.4s ease-out infinite;
        }

        @keyframes pulse {
            0%   { box-shadow: 0 0 0 0 rgba(63,185,80,0.55); }
            70%  { box-shadow: 0 0 0 7px rgba(63,185,80,0); }
            100% { box-shadow: 0 0 0 0 rgba(63,185,80,0); }
        }

        .intro-logo {
            height: 64px;
            width: 64px;
            object-fit: contain;
            display: block;
            margin: 0 auto 26px;
            filter: drop-shadow(0 4px 18px rgba(212,175,55,0.22));
        }

        .intro h1 {
            font-size: clamp(28px, 7vw, 46px);
            font-weight: 700;
            line-height: 1.12;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            margin-bottom: 18px;
        }

        .intro h1 .accent {
            color: var(--gold);
            font-style: italic;
        }

        .meta-line {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.12em;
            color: var(--text2);
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .meta-line .sep {
            color: var(--gold);
            opacity: 0.5;
            margin: 0 8px;
        }

        .lede {
            font-family: 'Inter', sans-serif;
            font-size: clamp(14px, 2.4vw, 16px);
            font-weight: 400;
            line-height: 1.65;
            color: var(--text);
            opacity: 0.82;
            max-width: 430px;
            margin: 0 auto 32px;
        }

        .lede a {
            color: var(--gold);
            text-decoration: none;
            border-bottom: 1px solid rgba(212,175,55,0.35);
            transition: border-color 0.2s ease;
        }
        .lede a:hover { border-bottom-color: var(--gold); }

        /* CTA */
        .cta {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 12px 24px;
            border: 1px solid var(--gold);
            background: transparent;
            color: var(--gold);
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.02em;
            text-decoration: none;
            border-radius: 2px;
            transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
        }
        .cta:hover {
            background: var(--gold);
            color: var(--navy-deep);
            transform: translateY(-1px);
        }
        .cta .arrow { transition: transform 0.22s ease; }
        .cta:hover .arrow { transform: translateX(3px); }

        /* contact panel — visually separated */
        .contact-card {
            position: relative;
            z-index: 1;
            margin: 48px auto 0;
            max-width: 460px;
            width: 100%;
            text-align: left;
            background: linear-gradient(180deg, rgba(26,43,60,0.55) 0%, rgba(10,25,41,0.35) 100%);
            border: 1px solid var(--border);
            border-top: 1px solid var(--gold);
            border-bottom: 1px solid var(--border);

            border-radius: 3px;
            padding: 26px 28px;
            box-shadow: 0 18px 40px -22px rgba(0,0,0,0.8);
        }

        .contact-card .label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--gold);
            opacity: 0.85;
            margin-bottom: 14px;
        }

        .contact-card .entity {
            font-family: 'Playfair Display', serif;
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .contact-card .addr {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            line-height: 1.7;
            color: var(--text2);
            margin-bottom: 18px;
        }

        .contact-rows {
            display: flex;
            flex-direction: column;
            gap: 10px;
            border-top: 1px solid var(--border);
            padding-top: 16px;
        }

        .contact-row {
            display: flex;
            align-items: baseline;
            gap: 12px;
        }

        .contact-row .k {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text3);
            width: 52px;
            flex-shrink: 0;
        }

        .contact-row .v {
            font-size: 13px;
            color: var(--text);
        }

        .contact-row .v a {
            color: var(--gold);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s ease;
        }
        .contact-row .v a:hover { border-bottom-color: var(--gold); }

        /* ── Footer ─────────────────────────────────── */
        .site-footer {
            color: var(--text-primary);
            border-top: 1px solid var(--gold);
            width: 100%;
            box-sizing: border-box;
            margin-top: 1px;
            padding: 10px 16px;
        }

        .footer-text {
            display: block;
            text-align: center;
            width: 100%;
            font-size: clamp(10px, 2.5vw, 11px);
            color: var(--text2);
            line-height: 1.8;
            word-break: break-word;
        }

        .footer-text .footer-divider {
            display: block;
            width: 40px;
            height: 1px;
            background: var(--gold);
            opacity: 0.4;
            margin: 8px auto;
        }

        .footer-link {
            text-decoration: none;
            color: inherit;
        }

        .footer-text .footer-legal {
            color: var(--text3);
            font-size: clamp(9px, 2vw, 10px);
            letter-spacing: 0.02em;
        }
