:root {
    --bg: #050505;
    --surface: rgba(255,255,255,.045);
    --border: rgba(255,255,255,.09);
    --text: #f5f5f5;
    --muted: #9b9b9b;
    --accent: #c9ff57;
    --max-width: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at top right,
            rgba(201,255,87,.055),
            transparent 30%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
}

.topbar {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}

.brand {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .22em;
}

.status {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--muted);

    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: var(--accent);

    box-shadow: 0 0 16px var(--accent);
}

.hero {
    min-height: 720px;

    display: grid;
    grid-template-columns: 1.15fr .85fr;

    align-items: center;
    gap: 80px;
}

.eyebrow {
    margin-bottom: 24px;

    color: var(--accent);

    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 800px;

    font-size: clamp(3.3rem, 7vw, 6.6rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.hero h1 span {
    display: block;
    color: var(--muted);
}

.hero-description {
    max-width: 650px;
    margin-top: 34px;

    color: var(--muted);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    gap: 14px;

    margin-top: 38px;
}

.button {
    min-height: 48px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 100px;

    font-size: .85rem;
    font-weight: 700;

    transition: transform .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--accent);
    color: #050505;
}

.button-secondary {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.02);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb {
    position: relative;

    width: min(420px, 70vw);
    aspect-ratio: 1;

    display: grid;
    place-items: center;
}

.orb-core {
    width: 110px;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 35%,
            #fff,
            var(--accent) 24%,
            #4d6618 58%,
            #111 100%
        );

    box-shadow:
        0 0 60px rgba(201,255,87,.32),
        0 0 120px rgba(201,255,87,.12);
}

.orb-ring {
    position: absolute;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 50%;
}

.orb-ring-one {
    width: 42%;
    height: 42%;

    animation: pulse 5s ease-in-out infinite;
}

.orb-ring-two {
    width: 68%;
    height: 68%;

    animation: pulse 5s ease-in-out infinite .8s;
}

.orb-ring-three {
    width: 96%;
    height: 96%;

    border-color: rgba(201,255,87,.1);

    animation: pulse 5s ease-in-out infinite 1.6s;
}

.about {
    padding: 120px 0;

    display: grid;
    grid-template-columns: .35fr 1fr;
    gap: 70px;

    border-top: 1px solid var(--border);
}

.section-label {
    color: var(--muted);

    font-family: monospace;
    font-size: .8rem;
    letter-spacing: .08em;
}

.about-content {
    max-width: 780px;
}

.about h2,
.coming-soon h2 {
    font-size: clamp(2.3rem, 4.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.about p {
    margin-top: 28px;

    color: var(--muted);
    font-size: 1.05rem;
}

.pillars {
    padding-bottom: 120px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pillar {
    min-height: 290px;
    padding: 30px;

    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;

    backdrop-filter: blur(8px);
}

.pillar span {
    color: var(--accent);

    font-family: monospace;
    font-size: .75rem;
}

.pillar h3 {
    margin-top: 72px;
    font-size: 1.6rem;
}

.pillar p {
    margin-top: 12px;
    color: var(--muted);
}

.coming-soon {
    margin-bottom: 120px;
    padding: 70px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    background:
        linear-gradient(
            135deg,
            rgba(201,255,87,.08),
            rgba(255,255,255,.025)
        );

    border: 1px solid rgba(201,255,87,.14);
    border-radius: 22px;
}

.coming-soon p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 24px;

    color: var(--muted);
}

.signal {
    display: flex;
    gap: 9px;
}

.signal span {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: var(--accent);

    animation: blink 1.6s infinite;
}

.signal span:nth-child(2) {
    animation-delay: .2s;
}

.signal span:nth-child(3) {
    animation-delay: .4s;
}

footer {
    min-height: 150px;
    padding: 40px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    border-top: 1px solid var(--border);

    color: var(--muted);
    font-size: .78rem;
}

footer strong {
    color: var(--text);
}

.footer-management {
    max-width: 370px;
    text-align: right;
}

.ambient {
    position: fixed;

    border-radius: 50%;
    filter: blur(120px);

    pointer-events: none;
}

.ambient-one {
    width: 420px;
    height: 420px;

    top: -180px;
    right: -180px;

    background: var(--accent);
    opacity: .13;
}

.ambient-two {
    width: 300px;
    height: 300px;

    bottom: -160px;
    left: -160px;

    background: #2f4fff;
    opacity: .06;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(.96);
        opacity: .4;
    }

    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

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

    50% {
        opacity: 1;
    }
}

@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;
        padding: 90px 0;
    }

    .hero-visual {
        order: -1;
    }

    .orb {
        width: 250px;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .pillars {
        grid-template-columns: 1fr;
    }

    .coming-soon {
        padding: 40px;

        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {

    .site-shell {
        width: min(calc(100% - 30px), var(--max-width));
    }

    .status {
        display: none;
    }

    .hero {
        gap: 50px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-management {
        text-align: left;
    }
}
