/* Emergency Ready Guide — coming soon landing page
   Clean & professional, calm neutrals with an ember accent
   pulled from the logo to tie the page together. */

:root {
  --bg-top: #f4f7fb;
  --bg-bottom: #e7edf5;
  --ink: #0f1c2e;
  --ink-soft: #4a576b;
  --ink-mute: #6b7892;
  --card: #ffffff;
  --line: #d9e1ec;
  --accent: #c2410c;        /* ember orange, from the logo */
  --accent-soft: #fff1ea;
  --shield: #1f3a5f;        /* deep navy from the logo */
  --radius: 16px;
  --shadow: 0 10px 30px -12px rgba(15, 28, 46, 0.18),
            0 2px 6px -2px rgba(15, 28, 46, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(194, 65, 12, 0.06), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(31, 58, 95, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 28px 40px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Brand / logo */
.brand {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.logo {
  width: clamp(140px, 28vw, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(15, 28, 46, 0.18));
  user-select: none;
}

/* Hero */
.hero {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--shield), var(--accent));
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
}

h1 {
  margin: 8px 0 16px;
  font-size: clamp(1.7rem, 4.4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--ink);
}

.lede {
  margin: 0 auto 28px;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 28px;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef3fa;
  color: var(--shield);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.status {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: var(--ink-mute);
}

/* Footer */
.foot {
  margin-top: auto;
  padding-top: 40px;
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.9rem;
}

.foot p {
  margin: 6px 0;
}

.foot a {
  color: var(--shield);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.foot a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.copyright {
  font-size: 0.82rem;
  color: #8b97ad;
}

/* Entrance animation */
.hero,
.brand {
  opacity: 0;
  transform: translateY(10px);
  animation: rise 0.7s ease forwards;
}

.brand {
  animation-delay: 0.05s;
}

.hero {
  animation-delay: 0.18s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .brand {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Small screens */
@media (max-width: 520px) {
  .page {
    padding: 36px 18px 28px;
  }
  .hero {
    padding: 32px 22px;
  }
}
