:root {
  color-scheme: dark;
  --bg: #000000;
  --text: rgba(248, 250, 252, 0.96);
  --muted: rgba(255, 255, 255, 0.68);
  --grid: rgba(46, 118, 220, 0.11);
  --accent-soft: rgba(77, 148, 255, 0.16);
  --accent-line: rgba(118, 177, 255, 0.34);
  --accent-surface: rgba(40, 94, 170, 0.14);
  --spot-x: 50%;
  --spot-y: 50%;
  --spot-size: 340px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body {
  font-family: "Google Sans Flex", sans-serif;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(66, 136, 255, 0.11), transparent 30%),
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 100% 42px, 42px 100%, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at var(--spot-x) var(--spot-y),
      rgba(88, 156, 255, 0.12) 0,
      rgba(56, 112, 196, 0.06) 18%,
      rgba(38, 84, 150, 0.02) 36%,
      transparent 62%
    );
}

.content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  user-select: none;
}

.logo-shell {
  position: relative;
  width: min(94vw, 1240px);
  aspect-ratio: 10 / 3;
  user-select: none;
}

.logo-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  user-select: none;
}

.logo-base {
  opacity: 0.9;
  filter:
    drop-shadow(0 0 10px rgba(118, 177, 255, 0.18))
    drop-shadow(0 0 28px rgba(45, 102, 184, 0.16));
}

.logo-reveal {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    circle var(--spot-size) at var(--spot-x) var(--spot-y),
    rgba(0, 0, 0, 1) 0,
    rgba(0, 0, 0, 0.95) 18%,
    rgba(0, 0, 0, 0.78) 38%,
    rgba(0, 0, 0, 0.38) 58%,
    rgba(0, 0, 0, 0.08) 74%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle var(--spot-size) at var(--spot-x) var(--spot-y),
    rgba(0, 0, 0, 1) 0,
    rgba(0, 0, 0, 0.95) 18%,
    rgba(0, 0, 0, 0.78) 38%,
    rgba(0, 0, 0, 0.38) 58%,
    rgba(0, 0, 0, 0.08) 74%,
    transparent 100%
  );
}

.logo-glow {
  filter:
    drop-shadow(0 0 18px rgba(120, 180, 255, 0.34))
    drop-shadow(0 0 54px rgba(55, 118, 207, 0.2));
}

.divider {
  width: min(640px, 100%);
  height: 1px;
  margin: 18px 0 18px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-line),
    transparent
  );
}

.description {
  width: min(800px, 100%);
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.85;
  color: var(--muted);
  user-select: none;
}

.description strong {
  color: var(--text);
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(800px, 100%);
  margin-top: 28px;
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: min(100%, 280px);
  padding: 14px 18px;
  border: 1px solid rgba(118, 177, 255, 0.22);
  border-radius: 999px;
  background: var(--accent-surface);
  color: var(--text);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.action-link:hover,
.action-link:focus-visible {
  border-color: rgba(137, 191, 255, 0.4);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.action-label,
.action-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.action-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.action-value {
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  :root {
    --spot-size: 190px;
  }

  .hero {
    background-size: auto, 100% 32px, 32px 100%, auto;
  }

  .content {
    padding: 18px;
    justify-content: flex-start;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .logo-shell {
    width: min(120vw, 880px);
  }

  .divider {
    margin: 8px 0 14px;
  }

  .actions {
    margin-top: 22px;
    gap: 10px;
  }

  .action-link {
    width: min(100%, 360px);
    align-items: center;
    flex-direction: column;
    padding: 13px 16px;
  }

  .action-value {
    font-size: 0.86rem;
    word-break: break-word;
    text-align: center;
  }
}
