:root {
  --apex-red: #ee3137;
  --apex-grey: #3e474e;
  --ink-900: #1c2226;
  --ink-600: #49535a;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--apex-grey);
  background: radial-gradient(
      1200px 800px at 20% -10%,
      rgba(62, 71, 78, 0.08),
      transparent 60%
    ),
    radial-gradient(
      800px 600px at 120% 20%,
      rgba(238, 49, 55, 0.06),
      transparent 50%
    ),
    #fff;
}

.bg-stripes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    135deg,
    rgba(62, 71, 78, 0.085) 0 20px,
    rgba(62, 71, 78, 0.03) 20px 40px
  );
  mask-image: radial-gradient(
    1300px 800px at 50% -15%,
    #000 40%,
    transparent 70%
  );
}

.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.logo {
  width: 350px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
}
.title {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: 0.3px;
  color: var(--apex-grey);
  font-weight: 800;
}
.title span {
  color: var(--apex-red);
}

.card {
  width: min(780px, 100%);
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 18px 40px rgba(62, 71, 78, 0.08);
  border: 1px solid rgba(62, 71, 78, 0.08);
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--apex-grey);
  border: 1px solid rgba(62, 71, 78, 0.2);
  background: linear-gradient(
    90deg,
    rgba(62, 71, 78, 0.06) 0%,
    rgba(62, 71, 78, 0.03) 100%
  );
}
.badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--apex-red);
  box-shadow: 0 0 0 0 rgba(238, 49, 55, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(238, 49, 55, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(238, 49, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(238, 49, 55, 0);
  }
}

h2 {
  margin: 16px 0 8px;
  font-size: clamp(22px, 3.2vw, 36px);
  color: var(--apex-grey);
}
p {
  margin: 0 auto 22px;
  max-width: 86ch;
  color: var(--ink-600);
  line-height: 1.6;
}

.cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.btn {
  --_bg: transparent;
  --_fg: var(--apex-grey);
  --_bd: var(--apex-grey);
  appearance: none;
  border: 2px solid var(--_bd);
  background: var(--_bg);
  color: var(--_fg);
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(62, 71, 78, 0.15);
}
.btn:active {
  transform: translateY(0);
}

.btn.primary {
  --_bg: var(--apex-red);
  --_fg: #fff;
  --_bd: var(--apex-red);
}
.btn.ghost {
  --_bg: transparent;
  --_fg: var(--apex-grey);
  --_bd: rgba(62, 71, 78, 0.5);
}
.btn.primary:hover {
  filter: brightness(1.02);
}
.btn.ghost:hover {
  background: rgba(62, 71, 78, 0.06);
}

.notify {
  margin-top: 18px;
  text-align: left;
}
.notify label {
  font-weight: 700;
  font-size: 14px;
  color: var(--apex-grey);
}
.notify-row {
  margin-top: 8px;
  display: flex;
  gap: 10px;
}
.notify input {
  flex: 1;
  border: 2px solid rgba(62, 71, 78, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.2s ease;
}
.notify input:focus {
  border-color: var(--apex-red);
  box-shadow: 0 0 0 6px rgba(238, 49, 55, 0.12);
}
.notify small {
  display: block;
  margin-top: 8px;
  color: var(--ink-600);
}

.footer {
  color: var(--ink-600);
  font-size: 14px;
  text-align: center;
}
.footer p {
  margin: 0;
}
