:root {
    color-scheme: dark;
    --bg: #041018;
    --text: #eef5ff;
    --muted: rgba(238, 245, 255, 0.7);
    --accent: #67f5c4;
    --accent-strong: #7ca6ff;
    --line: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(103, 245, 196, 0.18), transparent 24%),
        radial-gradient(circle at 78% 22%, rgba(124, 166, 255, 0.16), transparent 24%),
        linear-gradient(135deg, #06131d 0%, #02070b 55%, #091624 100%);
    color: var(--text);
    font-family: "Geist", sans-serif;
}

.tech-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.grid-layer,
.glow,
.frame {
    position: absolute;
    pointer-events: none;
}

.grid-layer {
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 88%);
    opacity: 0.5;
    animation: drift 18s linear infinite;
}

.glow {
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.9;
}

.glow-a {
    top: 12%;
    left: 10%;
    width: 20rem;
    height: 20rem;
    background: rgba(103, 245, 196, 0.18);
}

.glow-b {
    right: 8%;
    bottom: 10%;
    width: 24rem;
    height: 24rem;
    background: rgba(124, 166, 255, 0.15);
}

.frame {
    left: 50%;
    width: min(1220px, calc(100% - 48px));
    border: 1px solid var(--line);
    transform: translateX(-50%);
    opacity: 0.7;
}

.frame-top {
    top: 22px;
    height: 140px;
    border-bottom: none;
}

.frame-bottom {
    bottom: 22px;
    height: 140px;
    border-top: none;
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    padding: 28px 0 138px;
}

.status {
    margin: 0 0 12px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
        inset 0 0 0 1px rgba(103, 245, 196, 0.06),
        0 10px 34px rgba(0, 0, 0, 0.18);
    color: rgba(238, 245, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    animation: fade-up 700ms ease both;
}

.eyebrow {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 0.84rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    animation: fade-up 850ms ease both;
}

.brand {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(4.8rem, 17vw, 11rem);
    line-height: 0.88;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow:
        0 0 24px rgba(103, 245, 196, 0.18),
        0 0 60px rgba(124, 166, 255, 0.12);
    animation: scale-in 950ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.tagline {
    margin: 26px 0 0;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    color: var(--accent);
    font-size: clamp(0.94rem, 2vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    animation: fade-up 1050ms ease both;
}

.site-note {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 38px;
    z-index: 1;
    width: min(38rem, calc(100% - 48px));
    margin: 0 auto;
    color: rgba(238, 245, 255, 0.62);
    font-size: 0.96rem;
    line-height: 1.65;
    text-align: center;
    text-wrap: balance;
    letter-spacing: 0.01em;
    animation: fade-up 1200ms ease both;
}

@keyframes drift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(64px);
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 720px) {
    .hero,
    .frame {
        width: min(100% - 24px, 1220px);
    }

    .hero {
        padding: 20px 0 108px;
    }

    .frame-top,
    .frame-bottom {
        height: 88px;
    }

    .eyebrow {
        margin-bottom: 20px;
        font-size: 0.75rem;
        letter-spacing: 0.24em;
    }

    .status {
        margin-bottom: 10px;
        padding: 9px 14px;
        font-size: 0.68rem;
        letter-spacing: 0.22em;
    }

    .tagline {
        width: min(100%, 26rem);
        line-height: 1.5;
        padding: 14px 18px;
        letter-spacing: 0.12em;
    }

    .site-note {
        bottom: 24px;
        width: min(30rem, calc(100% - 32px));
        font-size: 0.9rem;
    }
}
