@import url('https://googleapis.com');

:root {
    --bg: #faf9f7;
    --text: #F4F6FA;
    --muted: #8C92AC;
    --accent: #00F2FE;
}

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

body {
    font-family: Inter, system-ui, sans-serif;
    color: var(--text);

    display: grid;
    place-items: center;

    min-height: 100vh;
    line-height: 1.7;

    position: relative;
    z-index: 1;
    text-align: center; /* <--- Add this line */
}

main {
    width: min(640px, 90%);
}

.logo {
    width: 64px;
    height: 64px;

    border: 2px solid var(--accent);
    border-radius: 50%;

    display: grid;
    place-items: center;

    font-size: 1.8rem;
    margin-bottom: 3rem;
}

h1 {
    font-size: clamp(2rem, 2.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

p, li {
    font-size: 1.2rem;
}

.main {
    line-height: 2;
}

.main + .main {
    margin-top: 1rem;
}

.small {
    margin-top: 2rem;
    color: var(--muted);
}

nav {
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--muted);
    transition: color .2s;
}

nav a:hover {
    color: var(--accent);
}

a {
    color: var(--accent);
    text-decoration: none;
}

.site-footer {
    width: min(640px, 90%);
    margin: 0 auto;
    padding: 1.75rem 0 2rem;

    border-top: 1px solid rgba(255,255,255,.06);

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

.site-footer a {
    color: inherit;
}

.site-footer a:hover {
    color: var(--accent);
}

.company-brand {
    /* Typography & Color */
    color: #00F2FE; /* Supernova Cyan Accent Color */
    font-size: 2.5rem; /* Makes the name large and commanding */
    font-weight: 800; /* Extra bold for branding weight */
    font-family: 'Electrolize', sans-serif;
    letter-spacing: 1.5px; /* Gives it a premium, spaced-out sci-fi look */
    text-transform: uppercase; /* Keeps the branding clean and uniform */

    /* Alignment & Glow */
    text-align: center; /* Horizontally centers the text */
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.4); /* Subtle cosmic glow */

    margin-bottom: clamp(3rem, 8vh, 6rem);

    /* Layout Safety */
    width: 100%;
    display: block;
}


.aurora-galaxy {
    min-height: 100vh;
    background:
      radial-gradient(ellipse at bottom left, rgba(0, 242, 254, 0.35), transparent 70%),
      radial-gradient(ellipse at top right, rgba(127, 0, 255, 0.4), transparent 60%),
      radial-gradient(circle at 70% 30%, rgba(255, 0, 128, 0.2), transparent 50%),
      linear-gradient(200deg, #0d001d 0%, #05000a 100%);
}

.deep-space {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #02000a 0%, #0b0726 40%, #1a0033 70%, #000000 100%);
}

/* Tiny crisp stars */
.deep-space::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    background: transparent;
    z-index: 0;
    box-shadow:
      12vw 15vh #fff, 85vw 22vh #fff, 40vw 55vh #fff, 18vw 88vh #fff,
      93vw 71vh #fff, 61vw 12vh #fff, 33vw 42vh rgba(255,255,255,0.7),
      72vw 58vh rgba(255,255,255,0.8), 7vw 41vh #fff, 91vw 8vh #fff,
      53vw 88vh #fff, 38vw 22vh #fff, 25vw 5vh rgba(255,255,255,0.4),
      68vw 92vh #fff, 3vw 62vh #fff, 82vw 47vh #fff, 50vw 28vh #fff,
      79vw 81vh #fff, 14vw 29vh #fff, 62vw 67vh #fff, 47vw 78vh #fff,
      96vw 37vh #fff, 29vw 73vh rgba(255,255,255,0.5), 88vw 94vh #fff,
      55vw 48vh #fff, 22vw 52vh #fff, 74vw 19vh #fff, 8vw 79vh #fff,
      36vw 61vh rgba(255,255,255,0.6), 84vw 63vh #fff, 19vw 11vh #fff;
}

/* Medium glowing stars */
.deep-space::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background: transparent;
    border-radius: 50%;
    z-index: 0;
    animation: twinkle 4s ease-in-out infinite alternate;
    box-shadow:
      8vw 33vh rgba(255,255,255,0.9), 58vw 78vh #fff,
      87vw 14vh rgba(0, 212, 255, 0.8), 42vw 87vh rgba(255, 0, 128, 0.7),
      71vw 44vh #fff, 27vw 68vh rgba(0, 212, 255, 0.6), 52vw 18vh #fff,
      11vw 57vh rgba(255,255,255,0.8), 94vw 53vh #fff, 31vw 89vh #fff,
      64vw 36vh rgba(0, 212, 255, 0.7), 4vw 16vh rgba(255, 0, 128, 0.6),
      81vw 86vh #fff, 20vw 46vh #fff, 76vw 72vh rgba(255,255,255,0.9);
}
