﻿:root {
    --bg: #08090c;
    --surface: #13171e;
    --border: #2a3340;
    --text: #c8d4e0;
    --text-strong: #ffffff;
    --muted: #5a6a7a;
    --green: #00ff88;
    --green-dim: #00b85f;
    --display: 'Orbitron', 'Eurostile', 'Arial Narrow', sans-serif;
    --mono: 'Share Tech Mono', 'Consolas', 'Courier New', monospace;
    --body: 'Rajdhani', 'Inter', system-ui, sans-serif;
    --scanline: repeating-linear-gradient(to bottom, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 3px);
}

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

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

/* Full-viewport stage */
.stage {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 48px);
    overflow: hidden;
}

/* Backdrop layers */
.grid,
.scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.grid {
    background-image: linear-gradient(rgba(0, 255, 136, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 136, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
}

.scanlines {
    background: var(--scanline);
    opacity: 0.55;
    mix-blend-mode: screen;
}

/* Soft green vignette glow behind the title */
.glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 255, 136, 0.08), transparent 70%);
}

/* Centered content */
.cover {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 5vw, 56px);
}

/* Brand mark — matches the site header */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.brand-mark {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(36px, 4vw, 48px);
    color: var(--green);
    letter-spacing: 0.04em;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.35);
}

.brand-caret {
    display: inline-block;
    width: clamp(14px, 1.4vw, 18px);
    height: clamp(30px, 3.2vw, 38px);
    background: var(--green);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
    animation: blink 1.05s steps(1) infinite;
}

.brand-tag {
    font-family: var(--mono);
    font-size: clamp(11px, 1vw, 13px);
    color: var(--green-dim);
    letter-spacing: 0.22em;
    margin-left: 12px;
    white-space: nowrap;
}

@keyframes blink {
    50.1%, 100% {
        opacity: 0;
    }
}

/* Title card */
.card {
    position: relative;
    width: 100%;
    max-width: 920px;
    padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 56px);
    border: 1px solid var(--border);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.04), transparent 60%), var(--surface);
}
    /* Card corner brackets */
    .card::before,
    .card::after,
    .card .corner::before,
    .card .corner::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 18px;
        border: 0 solid var(--green-dim);
    }

    .card::before {
        top: -1px;
        left: -1px;
        border-top-width: 1px;
        border-left-width: 1px;
    }

    .card::after {
        top: -1px;
        right: -1px;
        border-top-width: 1px;
        border-right-width: 1px;
    }

    .card .corner::before {
        content: '';
        bottom: -1px;
        left: -1px;
        border-bottom-width: 1px;
        border-left-width: 1px;
    }

    .card .corner::after {
        content: '';
        bottom: -1px;
        right: -1px;
        border-bottom-width: 1px;
        border-right-width: 1px;
    }

.boot {
    font-family: var(--mono);
    font-size: clamp(11px, 1.1vw, 13px);
    color: var(--green-dim);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: clamp(16px, 2vw, 24px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .boot .dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: var(--green);
        box-shadow: 0 0 8px var(--green);
        border-radius: 50%;
        animation: pulse 1.6s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.title {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(40px, 7.4vw, 92px);
    line-height: 0.94;
    letter-spacing: 0.02em;
    color: var(--text-strong);
    margin: 0;
    text-transform: uppercase;
    text-wrap: balance;
}

    .title .accent {
        color: var(--green);
        text-shadow: 0 0 24px rgba(0, 255, 136, 0.35);
    }

.date-wrap {
    margin-top: clamp(20px, 2.6vw, 32px);
    padding-top: clamp(16px, 2.2vw, 24px);
    border-top: 1px dashed var(--border);
}

.date {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(18px, 2.8vw, 30px);
    letter-spacing: 0.08em;
    color: var(--text-strong);
    text-transform: uppercase;
    margin: 0;
}

    .date .accent {
        color: var(--green);
    }

.location {
    font-family: var(--mono);
    font-size: clamp(13px, 1.4vw, 16px);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--green);
    margin: clamp(8px, 1vw, 12px) 0 0;
}

    .location::before {
        content: '// ';
        color: var(--green);
        opacity: 0.7;
    }

/* boot scan that sweeps across the card on load */
.card::after,
.card .corner::after,
.card .corner::before,
.card::before {
    z-index: 2;
}

.scan {
    position: absolute;
    left: 0;
    right: 0;
    top: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green) 50%, transparent);
    box-shadow: 0 0 18px rgba(0, 255, 136, 0.65);
    animation: bootscan-repeat 10s linear infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes bootscan-repeat {
    0%, 2% {
        top: 0;
        opacity: 1;
    }

    18% {
        top: 100%;
        opacity: 0;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}