    @import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg: #080808;
    --text: #f3f1ec;
    --muted: #858585;
    --line: rgba(255, 255, 255, .11);
    --accent: #1155e7;

    --selection-bg: var(--accent);
    --selection-text: #080808;
}

::selection {
    background: #ffffff;
    color: #080808;
}

::-moz-selection {
    background: #fdfdfd;
    color: #080808;
}

::selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}

::-moz-selection {
    background: var(--selection-bg);
    color: var(--selection-text);
}


    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      overflow: hidden;
      background: var(--bg);
      color: var(--text);
      font-family: "Inter", sans-serif;
      cursor: default;
    }

    /* Background */
    .background {
      position: fixed;
      inset: 0;
      z-index: -3;
      overflow: hidden;
      background:
        radial-gradient(
          circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
          rgba(216,255,99,.09),
          transparent 28%
        ),
        var(--bg);
    }

    .grid {
      position: absolute;
      inset: -20%;
      opacity: .55;
      background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
      background-size: 70px 70px;
      transform: perspective(700px) rotateX(58deg) translateY(20%);
      transform-origin: center;
      animation: gridMove 18s linear infinite;
    }

    @keyframes gridMove {
      from {
        transform: perspective(700px) rotateX(58deg) translateY(20%) translateX(0);
      }
      to {
        transform: perspective(700px) rotateX(58deg) translateY(20%) translateX(-70px);
      }
    }

    .orb {
      position: absolute;
      width: 40vw;
      height: 40vw;
      max-width: 600px;
      max-height: 600px;
      border-radius: 50%;
      background: var(--accent);
      filter: blur(140px);
      opacity: .055;
      top: 25%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: breathe 8s ease-in-out infinite;
    }

    @keyframes breathe {
      0%, 100% {
        transform: translate(-50%, -50%) scale(.9);
      }
      50% {
        transform: translate(-50%, -50%) scale(1.15);
      }
    }

    .noise {
      position: absolute;
      inset: 0;
      opacity: .035;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
    }

    /* Layout */
    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      padding: 32px 42px;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      animation: fadeDown .8s ease both;
    }

    .logo {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: -.04em;
    }

    .logo span {
      color: var(--accent);
    }

    .status {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--muted);
      font-family: "DM Mono", monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 15px var(--accent);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: .35; }
    }

    main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hero {
      width: min(1100px, 100%);
      text-align: center;
      animation: heroIn 1s .15s ease both;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 28px;
      color: var(--muted);
      font-family: "DM Mono", monospace;
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .eyebrow::before,
    .eyebrow::after {
      content: "";
      width: 28px;
      height: 1px;
      background: var(--line);
    }

    h1 {
      font-size: clamp(68px, 11vw, 170px);
      line-height: .82;
      letter-spacing: -.085em;
      font-weight: 600;
      margin-left: -.07em;
    }

    h1 .outline {
      color: transparent;
      -webkit-text-stroke: 1px rgba(243,241,236,.55);
    }

    .description {
      max-width: 440px;
      margin: 42px auto 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    /* Countdown */
    .countdown {
      margin: 48px auto 0;
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .time {
      min-width: 80px;
    }

    .number {
      font-family: "DM Mono", monospace;
      font-size: 25px;
      letter-spacing: -.05em;
    }

    .label {
      margin-top: 7px;
      color: #555;
      font-family: "DM Mono", monospace;
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: .13em;
    }

    .separator {
      color: #333;
      padding-top: 4px;
    }

    footer {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      animation: fadeUp .8s .4s ease both;
    }

.footer-left,
.footer-right {
    color: #555;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-left a,
.footer-right a {
    color: var(--text);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-left a:hover,
.footer-right a:hover {
    color: var(--accent);
}

    /* Corner markers */
    .corner {
      position: fixed;
      width: 14px;
      height: 14px;
      opacity: .45;
    }

    .corner::before,
    .corner::after {
      content: "";
      position: absolute;
      background: #777;
    }

    .corner::before {
      width: 100%;
      height: 1px;
    }

    .corner::after {
      width: 1px;
      height: 100%;
    }

    .tl { top: 31px; left: 31px; }
    .tr { top: 31px; right: 31px; transform: rotate(90deg); }
    .bl { bottom: 31px; left: 31px; transform: rotate(-90deg); }
    .br { bottom: 31px; right: 31px; transform: rotate(180deg); }

    @keyframes heroIn {
      from {
        opacity: 0;
        transform: translateY(25px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-15px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(15px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Mobile */
    @media (max-width: 600px) {
      .page {
        padding: 25px 22px;
      }

      .corner {
        display: none;
      }

      .status {
        font-size: 9px;
      }

      h1 {
        font-size: clamp(65px, 20vw, 110px);
      }

      .description {
        font-size: 13px;
        margin-top: 32px;
      }

      .countdown {
        margin-top: 35px;
      }

      .time {
        min-width: 58px;
      }

      .number {
        font-size: 19px;
      }

      footer {
        align-items: center;
      }

      .footer-left {
        display: none;
      }

      .footer-right {
        width: 100%;
        text-align: center;
      }
    }