:root {
  --bg-dark: #050508;
  --accent-red: #e53935;
  --accent-red-soft: #ff8a80;
  --accent-white-soft: #f4f5f7;
  --text-main: #fdfdfd;
  --text-muted: #a9aeb8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #141420 0, var(--bg-dark) 60%, #020204 100%);
  color: var(--text-main);
  overflow: hidden;
}

/* Background glows – subtle Canada/flag vibe */

.glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, #ff8a80 0, #e53935 45%, #8b1111 100%);
  top: -130px;
  left: -110px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f4f5f7 0, #c7ccd7 55%, #818b9c 100%);
  bottom: -180px;
  right: -120px;
  opacity: 0.55;
}

.glow-3 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #f4f5f7 0, #e53935 55%, #7b1212 100%);
  bottom: 12%;
  left: 55%;
  opacity: 0.35;
}

/* Layout */

.page {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Logo lockup */

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
}

.logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 20%, #ffffff, #ffebee 30%, #e53935 75%, #850f0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.14),
    0 12px 30px rgba(0, 0, 0, 0.7);
}

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #230303;
}

.logo-wordmark .brand {
  display: block;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-wordmark .tagline {
  display: block;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Content */

.content {
  text-align: center;
  margin-top: -40px;
  padding: 0 12px;
}

.content h1 {
  font-size: clamp(2.2rem, 3vw, 2.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.subtitle {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Status pill */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(244, 245, 247, 0.7);
  background: linear-gradient(
    135deg,
    rgba(10, 10, 12, 0.96),
    rgba(26, 26, 32, 0.98)
  );
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75);
  margin-bottom: 18px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0, #ff8a80 55%, #e53935 100%);
  box-shadow: 0 0 14px rgba(229, 57, 53, 0.9);
}

.pill-text {
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.small-note {
  font-size: 0.86rem;
  color: var(--accent-white-soft);
  margin-top: 4px;
}

/* Footer */

.footer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.9;
}

/* Responsive tweaks */

@media (max-width: 600px) {
  .page {
    padding: 20px 18px 28px;
  }

  .logo-lockup {
    align-self: center;
  }

  .content {
    margin-top: -10px;
  }
}
