:root {
  --bg: #0b1119;
  --panel: rgba(12, 18, 26, 0.84);
  --fg: #f4f7fb;
  --fg-soft: #bfd0df;
  --border: rgba(190, 222, 255, 0.18);
  --accent: #78f6ff;
  --accent-strong: #95e785;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  --radius: 12px;
  --content-max: 920px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(20, 152, 213, 0.18), transparent 24rem),
    radial-gradient(circle at 18% 82%, rgba(121, 200, 102, 0.1), transparent 22rem),
    linear-gradient(180deg, #060a11 0%, var(--bg) 100%);
  color: var(--fg);
  font:
    400 16px/1.6 Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
}

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

.page-shell {
  width: min(var(--content-max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: 3.2rem;
  line-height: 0.96;
}

.lede {
  color: var(--fg-soft);
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 760px;
  padding: 34px 34px 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.deployment-tag-wrap {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: flex;
  justify-content: flex-end;
}

.deployment-status {
  margin: 0;
  min-height: 32px;
  padding: 7px 14px 8px;
  border: 1px solid rgba(190, 222, 255, 0.14);
  border-radius: 10px 0 10px 0;
  background: rgba(12, 18, 26, 0.92);
  color: rgba(191, 208, 223, 0.84);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.15;
  box-shadow: inset 0 1px 0 rgba(190, 222, 255, 0.05);
  white-space: nowrap;
}

.hero-logo {
  width: min(260px, 70vw);
  border-radius: 10px;
  box-shadow: 0 0 28px rgba(20, 152, 213, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 4px 0 0;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(120, 246, 255, 0.28);
  border-radius: 999px;
  color: var(--fg);
  background: rgba(120, 246, 255, 0.08);
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.hero-link:hover,
.hero-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(20, 152, 213, 0.16);
  border-color: rgba(120, 246, 255, 0.54);
  background: rgba(120, 246, 255, 0.14);
}

.ext-link {
  font-size: 0.95rem;
  line-height: 1;
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 20px, var(--content-max));
    padding: 28px 0 52px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .hero-card {
    padding: 18px 18px 54px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .deployment-tag-wrap {
    right: -1px;
    bottom: -1px;
  }

  .deployment-status {
    max-width: calc(100vw - 72px);
    white-space: normal;
  }
}
