* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --background: #08111d;
  --surface: rgba(13, 26, 42, 0.84);
  --surface-border: rgba(255, 255, 255, 0.08);
  --text: #eef4f6;
  --muted: #94a4af;
  --accent: #00c896;
  --accent-soft: rgba(0, 200, 150, 0.11);
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 200, 150, 0.07), transparent 32%),
    linear-gradient(160deg, #07101b 0%, #0b1624 52%, #07101b 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.welcome-card {
  width: min(100%, 620px);
  padding: 42px;
  border: 1px solid var(--surface-border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 200, 150, 0.18);
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-mark svg rect:first-child {
  fill: var(--accent);
}

.brand-mark svg rect:not(:first-child) {
  fill: #06251b;
}

.brand-name {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.4px;
}

.brand-name strong {
  font-weight: 750;
}

.divider {
  width: 100%;
  height: 1px;
  margin: 32px 0;
  background: linear-gradient(90deg, var(--surface-border), transparent);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid rgba(0, 200, 150, 0.16);
  border-radius: 999px;
  color: #78dbc3;
  background: var(--accent-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

h1 {
  max-width: 500px;
  margin: 19px 0 0;
  font-size: clamp(35px, 7vw, 52px);
  line-height: 1.05;
  letter-spacing: -2.2px;
}

.content p {
  max-width: 490px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
  color: #6f808d;
  font-size: 11px;
}

@media (max-width: 560px) {
  .page-shell {
    padding: 16px;
  }

  .welcome-card {
    padding: 29px 24px;
    border-radius: 19px;
  }

  .divider {
    margin: 27px 0;
  }

  h1 {
    letter-spacing: -1.7px;
  }

  .content p {
    font-size: 15px;
  }

  footer {
    margin-top: 34px;
  }
}
