:root {
  --bg-1: #020817;
  --bg-2: #071b45;
  --card: rgba(255, 255, 255, 0.94);
  --text: #0f172a;
  --muted: #64748b;
  --primary: #0b55d9;
  --primary-dark: #073a96;
  --line: rgba(15, 23, 42, 0.12);
  --soft: rgba(11, 85, 217, 0.08);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(56, 134, 255, 0.42), transparent 28%),
    radial-gradient(circle at 82% 80%, rgba(11, 85, 217, 0.28), transparent 28%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.hero-card {
  width: min(980px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.brand-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  padding: 12px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(11, 85, 217, 0.16);
}

.eyebrow {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--primary);
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  color: #061533;
}

.status-box {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 26px;
  border: 1px solid rgba(11, 85, 217, 0.2);
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--soft);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(11, 85, 217, 0.12);
}

.lead {
  max-width: 790px;
  margin: 0 0 34px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.72;
  color: #334155;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.info-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.info-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.info-card strong,
.info-card a {
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.35;
  text-decoration: none;
}

.info-card a {
  color: var(--primary-dark);
  font-weight: 900;
}

.contact-panel {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.contact-panel h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #061533;
}

.contact-panel p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

footer p {
  margin: 0;
}

@media (max-width: 840px) {
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .hero-card {
    border-radius: 24px;
  }

  .brand-block {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

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