:root {
  --bg: #08090d;
  --panel: #11131a;
  --panel-2: #181b24;
  --text: #f4f0e8;
  --muted: #b8b0a4;
  --line: rgba(255,255,255,.12);
  --red: #d62929;
  --red-dark: #7f1111;
  --amber: #f0b84b;
  --shadow: 0 22px 60px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }

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

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214,41,41,.25), transparent 34rem),
    radial-gradient(circle at top right, rgba(240,184,75,.14), transparent 30rem),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero {
  padding: 56px 18px 26px;
}

.hero-card, .wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-card {
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(214,41,41,.24), rgba(17,19,26,.78) 42%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "ALERT";
  position: absolute;
  right: -32px;
  bottom: -46px;
  font-weight: 900;
  font-size: clamp(5rem, 18vw, 14rem);
  letter-spacing: -.08em;
  color: rgba(255,255,255,.035);
  transform: rotate(-8deg);
}

.kicker {
  color: var(--amber);
  font-size: .78rem;
  letter-spacing: .22em;
  font-weight: 800;
  margin: 0 0 10px;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 7.8rem);
  line-height: .86;
  letter-spacing: -.07em;
}

h2 {
  margin: 16px 0 0;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  color: #fff;
}

.lead {
  max-width: 790px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(255,255,255,.055);
  font-size: .9rem;
  font-weight: 700;
}

.pill.danger {
  background: rgba(214,41,41,.18);
  border-color: rgba(214,41,41,.55);
}

.wrap {
  padding: 18px 0 64px;
}

.notice {
  background: linear-gradient(90deg, rgba(214,41,41,.26), rgba(240,184,75,.12));
  border: 1px solid rgba(240,184,75,.3);
  border-left: 6px solid var(--amber);
  border-radius: 20px;
  padding: 18px 20px;
  color: #fff7e6;
  margin-bottom: 22px;
}

.grid {
  display: grid;
  gap: 22px;
  margin-bottom: 22px;
}

.two {
  grid-template-columns: 1fr 1fr;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.red-card {
  background:
    linear-gradient(135deg, rgba(214,41,41,.24), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

h4 {
  margin: 8px 0 6px;
  font-size: 1rem;
}

p {
  margin-top: 0;
  color: var(--muted);
}

p:last-child {
  margin-bottom: 0;
}

.profile {
  display: grid;
  gap: 12px;
}

.profile div, .info-box, .pattern-item {
  background: rgba(0,0,0,.18);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.profile span {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.profile strong {
  color: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.section-head p {
  max-width: 560px;
  margin-bottom: 0;
}

.pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pattern-item span {
  color: var(--amber);
  font-weight: 900;
  letter-spacing: .14em;
}

.timeline {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.timeline li {
  margin-bottom: 10px;
}

.timeline strong, .bullets strong {
  color: #fff;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checklist label {
  background: rgba(0,0,0,.18);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  color: var(--text);
}

.checklist input {
  margin-right: 8px;
}

.bullets {
  color: var(--muted);
  padding-left: 22px;
  margin: 0;
}

.bullets li {
  margin-bottom: 10px;
}

.contact .info-box p {
  margin: 0 0 8px;
}

.contact .info-box p:last-child {
  margin-bottom: 0;
}

footer {
  text-align: center;
  color: var(--muted);
  padding: 0 18px 42px;
}

@media (max-width: 860px) {
  .two,
  .pattern-grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .hero-card, .wrap {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding-top: 24px;
  }

  .card, .hero-card {
    border-radius: 20px;
  }
}
