* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #020715;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.cloud-bg,
.cloud-overlay {
    position: fixed;
    inset: 0;
}

.cloud-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.9) contrast(1.16) saturate(0.86);
}

.cloud-overlay {
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, rgba(6, 12, 28, 0.04), rgba(2, 7, 21, 0.34) 74%),
        linear-gradient(180deg, rgba(2, 7, 21, 0.14), rgba(2, 7, 21, 0.36));
}

main {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 32px;
    position: relative;
    z-index: 3;
}

.brand {
    display: grid;
    justify-items: center;
    gap: clamp(18px, 2.4vw, 32px);
}

.logo {
    display: flex;
    align-items: flex-start;
    gap: clamp(4px, 0.7vw, 12px);
    filter: drop-shadow(0 18px 44px rgba(0, 0, 0, 0.45));
}

/* The whole click target — disc on top, label underneath. Column flex
   centres them and the inner .netpulse-disc carries all the circular
   chrome so the label can sit outside the circle's bounds. */
.netpulse-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 0.9vw, 14px);
    text-decoration: none;
}

.netpulse-disc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(clamp(78px, 12vw, 172px) * 0.78);
    height: calc(clamp(78px, 12vw, 172px) * 0.78);
    border-radius: 50%;
    background: #05060a;
    color: #0b0c12;
    border: 1px solid rgba(97, 217, 255, 0.18);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    /* Glow-only hover — no translate. */
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.netpulse-link:hover .netpulse-disc,
.netpulse-link:focus-visible .netpulse-disc {
    border-color: rgba(97, 217, 255, 0.55);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 22px rgba(97, 217, 255, 0.55),
        0 0 44px rgba(97, 217, 255, 0.28);
}

.netpulse-link:focus-visible {
    outline: none;
}

.netpulse-glyph {
    width: 56%;
    height: 56%;
    color: #61d9ff;
    filter: drop-shadow(0 0 8px rgba(97, 217, 255, 0.46));
    transition: filter 0.25s ease;
}

.netpulse-link:hover .netpulse-glyph,
.netpulse-link:focus-visible .netpulse-glyph {
    filter: drop-shadow(0 0 14px rgba(97, 217, 255, 0.85));
}

/* Wordmark sized off the same clamp as the disc — keeps the label
   proportional across the breakpoints. */
.netpulse-label {
    font-size: clamp(12px, 1.35vw, 17px);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #d8f6ff;
    text-shadow: 0 0 10px rgba(97, 217, 255, 0.32);
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.netpulse-link:hover .netpulse-label,
.netpulse-link:focus-visible .netpulse-label {
    color: #ecfbff;
    text-shadow: 0 0 14px rgba(97, 217, 255, 0.65);
}

.generated-mark {
    display: block;
    width: auto;
    height: calc(clamp(78px, 12vw, 172px) * 0.88);
    object-fit: contain;
}

.wordmark {
    display: grid;
    gap: 8px;
}

.name {
    margin: 0;
    font-size: clamp(78px, 12vw, 172px);
    font-weight: 610;
    line-height: 0.88;
    letter-spacing: 0;
    white-space: nowrap;
}

.bit {
    color: #d8f6ff;
    text-shadow: 0 0 18px rgba(97, 217, 255, 0.42);
}

.push {
    color: #61d9ff;
    text-shadow: 0 0 26px rgba(97, 217, 255, 0.46);
}

.software {
    margin: 0;
    justify-self: end;
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #d8f6ff, #61d9ff, #8fb6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(97, 217, 255, 0.28));
}

@media (max-width: 620px) {
    body {
        overflow: auto;
    }

    main {
        padding: 18px;
    }

    .logo {
        gap: clamp(4px, 1.6vw, 8px);
    }

    .name {
        font-size: clamp(42px, 13vw, 58px);
    }

    .generated-mark {
        height: calc(clamp(42px, 13vw, 58px) * 0.88);
    }

    .netpulse-disc {
        width: calc(clamp(42px, 13vw, 58px) * 0.78);
        height: calc(clamp(42px, 13vw, 58px) * 0.78);
    }

    .netpulse-label {
        font-size: clamp(10px, 2.6vw, 13px);
    }

    .software {
        font-size: clamp(11px, 3.2vw, 15px);
        letter-spacing: 0.18em;
    }
}
