@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/InterVariable.woff2') format('woff2');
}

:root {
      color-scheme: dark;
      --bg: #070a12;
      --panel: rgba(12, 18, 32, .74);
      --panel-strong: rgba(15, 24, 43, .92);
      --line: rgba(255, 255, 255, .14);
      --text: #f5f7fb;
      --muted: #aeb8ca;
      --accent: #36f5c7;
      --accent-2: #ffcc55;
      --accent-3: #ff4f8f;
      --shadow: 0 28px 90px rgba(0, 0, 0, .48);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }

    html { min-height: 100%; background: var(--bg); }

    body {
      min-height: 100vh;
      margin: 0;
      overflow-x: hidden;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 10%, rgba(54, 245, 199, .18), transparent 26rem),
        radial-gradient(circle at 82% 14%, rgba(255, 79, 143, .18), transparent 24rem),
        radial-gradient(circle at 50% 95%, rgba(255, 204, 85, .12), transparent 28rem),
        linear-gradient(135deg, #070a12 0%, #0e1424 50%, #090c15 100%);
    }

    body::before {
      position: fixed;
      inset: 0;
      z-index: -3;
      content: "";
      background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .95), transparent 86%);
    }

    body::after {
      position: fixed;
      inset: -20%;
      z-index: -2;
      content: "";
      pointer-events: none;
      background: conic-gradient(from 130deg at 48% 48%, transparent, rgba(54, 245, 199, .16), transparent, rgba(255, 79, 143, .13), transparent);
      animation: spin 24s linear infinite;
      opacity: .8;
      filter: blur(28px);
    }

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

    .page {
      position: relative;
      min-height: 100vh;
      padding: clamp(18px, 3vw, 42px);
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      max-width: 1180px;
      margin: 0 auto 40px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .brand-mark {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: linear-gradient(145deg, rgba(54, 245, 199, .24), rgba(255, 255, 255, .08));
      box-shadow: 0 0 32px rgba(54, 245, 199, .18);
    }

    .status {
      display: flex;
      align-items: center;
      gap: 9px;
      min-height: 38px;
      padding: 0 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, .06);
      color: var(--muted);
      font-size: 14px;
      backdrop-filter: blur(18px);
    }

    .pulse {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 0 rgba(54, 245, 199, .55);
      animation: pulse 1.9s infinite;
    }

    .shell {
      display: grid;
      grid-template-columns: minmax(0, .94fr) minmax(320px, .68fr);
      gap: clamp(22px, 4vw, 54px);
      align-items: center;
      max-width: 1180px;
      margin: 0 auto;
    }

    .hero { padding: clamp(10px, 1vw, 18px) 0; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 22px;
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .eyebrow::before {
      width: 38px;
      height: 2px;
      content: "";
      background: var(--accent);
      box-shadow: 0 0 18px var(--accent);
    }

    h1 {
      max-width: 780px;
      margin: 0;
      font-size: clamp(48px, 8vw, 104px);
      line-height: .9;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .shine {
      color: transparent;
      background: linear-gradient(92deg, #fff 4%, #36f5c7 34%, #ffcc55 64%, #ff4f8f 96%);
      background-clip: text;
      -webkit-background-clip: text;
      filter: drop-shadow(0 18px 46px rgba(54, 245, 199, .16));
    }

    .lead {
      max-width: 640px;
      margin: 26px 0 34px;
      color: var(--muted);
      font-size: clamp(17px, 2vw, 22px);
      line-height: 1.55;
    }

    .actions { display: flex; flex-wrap: wrap; gap: 14px; }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 22px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, .08);
      color: var(--text);
      font-weight: 800;
      box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
      transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
    }

    .button.primary {
      border-color: rgba(54, 245, 199, .62);
      background: linear-gradient(135deg, #36f5c7, #1aa3ff);
      color: #041016;
      box-shadow: 0 20px 58px rgba(54, 245, 199, .28);
    }

    .button:hover, .link-card:hover { transform: translateY(-4px); }
    .button.primary:hover { box-shadow: 0 26px 76px rgba(54, 245, 199, .38); }

    .panel {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: linear-gradient(180deg, var(--panel-strong), var(--panel));
      box-shadow: var(--shadow);
      backdrop-filter: blur(24px);
    }

    .panel::before {
      position: absolute;
      inset: 0;
      content: "";
      pointer-events: none;
      background: linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 28%, transparent 70%, rgba(54, 245, 199, .12));
    }

    .panel-head {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px;
      border-bottom: 1px solid var(--line);
    }

    .panel-title {
      margin: 0;
      font-size: 15px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .clock {
      color: var(--accent-2);
      font-variant-numeric: tabular-nums;
      font-weight: 800;
    }

    .links {
      position: relative;
      display: grid;
      gap: 12px;
      padding: 20px;
    }

    .link-card {
      position: relative;
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr) 28px;
      gap: 14px;
      align-items: center;
      min-height: 82px;
      padding: 15px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 8px;
      background: rgba(255, 255, 255, .065);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .link-card::after {
      position: absolute;
      inset: 0;
      content: "";
      pointer-events: none;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
      transform: translateX(-120%);
      transition: transform .55s ease;
    }

    .link-card:hover {
      border-color: rgba(54, 245, 199, .48);
      background: rgba(255, 255, 255, .095);
    }

    .link-card:hover::after { transform: translateX(120%); }

    .icon {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      border-radius: 8px;
      background: rgba(54, 245, 199, .13);
      color: var(--accent);
      font-size: 24px;
      font-weight: 900;
    }

    .card-title {
      display: block;
      margin-bottom: 5px;
      font-weight: 900;
      font-size: 17px;
    }

    .card-text {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.35;
    }

    .arrow {
      color: var(--accent);
      font-size: 24px;
      line-height: 1;
    }

    .featured {
      border-color: rgba(54, 245, 199, .42);
      background: linear-gradient(135deg, rgba(54, 245, 199, .14), rgba(255, 255, 255, .08));
    }

    .quickbar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      padding: 0 20px 20px;
    }

    .metric {
      min-height: 78px;
      padding: 13px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(0, 0, 0, .18);
    }

    .metric strong {
      display: block;
      margin-bottom: 5px;
      font-size: 20px;
      color: #fff;
    }

    .metric span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.25;
    }

    .spark {
      position: fixed;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(54, 245, 199, .76);
      pointer-events: none;
      box-shadow: 0 0 18px rgba(54, 245, 199, .9);
      animation: floatUp var(--duration) linear forwards;
      z-index: -1;
    }

    @keyframes spin { to { transform: rotate(360deg); } }
    @keyframes pulse {
      70% { box-shadow: 0 0 0 12px rgba(54, 245, 199, 0); }
      100% { box-shadow: 0 0 0 0 rgba(54, 245, 199, 0); }
    }
    @keyframes floatUp {
      from { opacity: 0; transform: translate3d(0, 24px, 0) scale(.7); }
      12%, 72% { opacity: 1; }
      to { opacity: 0; transform: translate3d(var(--drift), -105vh, 0) scale(1.2); }
    }

    @media (max-width: 880px) {
      .topbar { margin-bottom: 24px; }
      .shell { grid-template-columns: 1fr; }
      .hero { padding-top: 10px; }
      .panel { margin-bottom: 22px; }
    }

    @media (max-width: 560px) {
      .page { padding: 16px; }
      .topbar { align-items: flex-start; flex-direction: column; }
      .status { width: 100%; justify-content: center; }
      h1 { font-size: clamp(42px, 14vw, 68px); }
      .lead { margin-bottom: 24px; }
      .actions, .button { width: 100%; }
      .link-card { grid-template-columns: 44px minmax(0, 1fr) 24px; min-height: 78px; }
      .icon { width: 44px; height: 44px; }
      .quickbar { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
      }
    }

