:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --text: #15202b;
  --muted: #5f6b76;
  --line: #dbe2e8;
  --blue: #0d67b5;
  --green: #39a852;
  --blue-soft: #eaf4fc;
  --green-soft: #edf8ef;
  --shadow: 0 18px 50px rgba(21, 32, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body {
  margin: 0;
}

a {
  color: var(--blue);
}

.shell {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
}

.brand-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--blue) 0 52%, var(--green) 52% 100%);
  box-shadow: 0 8px 18px rgba(13,103,181,0.22);
}

.header-link {
  font-weight: 700;
  text-decoration: none;
}

.hero {
  padding-block: 88px 48px;
}

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.04em;
}

h1 {
  max-width: 820px;
  margin: 10px 0 20px;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 800px;
  font-size: 1.16rem;
  color: var(--muted);
}

.status-card {
  max-width: 800px;
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--green-soft);
  border: 1px solid #cce8d2;
  border-radius: 18px;
}

.status-card p {
  margin-bottom: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-block: 24px 48px;
}

.panel,
.contact-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel h2,
.contact-block h2 {
  margin-top: 0;
}

.contact-block {
  margin-bottom: 72px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1080px);
  }

  .brand-row,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }

  .hero {
    padding-block: 56px 34px;
  }

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