:root {
  color-scheme: light;
  --bg: #f7fbff;
  --panel: #ffffff;
  --panel-soft: #eef6fc;
  --text: #000000;
  --muted: #27313a;
  --line: rgba(43, 134, 204, 0.22);
  --accent: #2b86cc;
  --accent-2: #d52d2d;
  --ok: #2b86cc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(135deg, rgba(43, 134, 204, 0.16), transparent 38%),
    linear-gradient(315deg, rgba(213, 45, 45, 0.1), transparent 34%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 560px);
  width: min(100%, 1080px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(43, 134, 204, 0.18);
}

.brand-panel {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(43, 134, 204, 0.88), rgba(255, 255, 255, 0.74)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='720' viewBox='0 0 720 720'%3E%3Crect width='720' height='720' fill='%23ffffff'/%3E%3Cg fill='none' stroke='%232b86cc' stroke-opacity='.32' stroke-width='2'%3E%3Cpath d='M0 120h720M0 240h720M0 360h720M0 480h720M0 600h720M120 0v720M240 0v720M360 0v720M480 0v720M600 0v720'/%3E%3C/g%3E%3Cg fill='%23d52d2d' fill-opacity='.38'%3E%3Ccircle cx='180' cy='180' r='10'/%3E%3Ccircle cx='540' cy='300' r='10'/%3E%3Ccircle cx='300' cy='540' r='10'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.brand-mark {
  z-index: 1;
  display: grid;
  width: clamp(150px, 42vw, 220px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(43, 134, 204, 0.34);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent);
  font-size: clamp(23px, 3.75vw, 36px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.signal-grid {
  position: absolute;
  inset: auto 28px 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.signal-grid span {
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
}

.signal-grid span:nth-child(3n) {
  background: var(--accent);
}

.signal-grid span:nth-child(4n) {
  background: var(--accent-2);
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 72px);
}

.eyebrow,
.label,
.actions {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 14px 0 0;
  font-size: clamp(1.8rem, 5.25vw, 4.05rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
}

.status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.status div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel-soft);
}

.status strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.status div:last-child strong::before {
  content: "";
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  margin-right: 0.45rem;
  border-radius: 999px;
  background: var(--ok);
}

.actions {
  margin-top: 34px;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  border: 1px solid rgba(213, 45, 45, 0.42);
  border-radius: 8px;
  padding: 13px 18px;
  background: var(--accent-2);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: none;
}

.facebook-link:hover,
.facebook-link:focus-visible {
  background: #bd2525;
  outline: 3px solid rgba(43, 134, 204, 0.3);
  outline-offset: 3px;
}

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

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

  .brand-panel {
    min-height: 220px;
  }

  .signal-grid {
    inset: auto 18px 18px;
  }

  .content {
    padding: 30px 22px 34px;
  }

  h1 {
    max-width: 12ch;
  }

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