:root {
  --bg: #050b15;
  --panel: #0b1627cc;
  --panel-strong: #0f2037e6;
  --line: #9eb6d133;
  --line-strong: #7dd3fc66;
  --text: #f4f8ff;
  --muted: #b9c6d8;
  --primary: #38bdf8;
  --primary-dark: #1d4ed8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
}

body {
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(52rem 26rem at 0% 0%, #2563eb66, transparent 60%),
    radial-gradient(44rem 24rem at 100% 100%, #06b6d466, transparent 62%),
    linear-gradient(180deg, #050b15 0%, #040911 100%);
}

.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: #060f1d8c;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 22px #2563eb66;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  letter-spacing: 0.06em;
  font-size: 0.86rem;
}

.brand-text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.header-status {
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  color: #dff5ff;
  background: #0ea5e91f;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

main.container {
  padding-block: clamp(24px, 4vw, 48px);
}

.hero {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #38bdf80e, transparent 24%),
    linear-gradient(145deg, var(--panel), var(--panel-strong));
  box-shadow: 0 24px 60px #0208178c;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.25fr 0.95fr;
  padding: clamp(20px, 3vw, 34px);
}

.eyebrow {
  margin: 0;
  color: #9ec8ff;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

h1 {
  margin: 10px 0 0;
  line-height: 1.16;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  max-width: 24ch;
  text-wrap: balance;
}

.hero-text {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.7;
  font-size: clamp(1rem, 1.7vw, 1.08rem);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.button {
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  padding: 11px 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #f8fcff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 12px 26px #2563eb59;
}

.button-secondary {
  color: #d9eaff;
  background: #1e293b99;
  border: 1px solid var(--line);
}

.status-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #0b1728ab;
}

.status-panel h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.status-rate {
  margin: 8px 0 0;
  font-size: 1.28rem;
  font-weight: 700;
  color: #d7f4ff;
}

.progress {
  margin-top: 14px;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: #cbd5e133;
  border: 1px solid #cbd5e129;
}

.progress-bar {
  display: block;
  height: 100%;
  width: 71%;
  background: linear-gradient(90deg, #22d3ee, #2563eb);
}

.status-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #d6e2f0;
  line-height: 1.6;
}

.cards {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0a1525bf;
  padding: 16px;
}

.card h3 {
  margin: 0;
  color: #bfdbfe;
  font-size: 0.96rem;
}

.card p {
  margin: 10px 0 0;
  color: #d5deeb;
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #02081766;
  margin-top: 20px;
}

.footer-inner {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 18px;
}

.address-block h2 {
  margin: 0;
  color: #9fd3ff;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

address {
  margin-top: 8px;
  font-style: normal;
  line-height: 1.8;
  color: #e2e8f0;
}

.copyright {
  margin: 0;
  color: #b9c7d9;
  font-size: 0.9rem;
}

.footer-contact {
  margin: 10px 0 0;
  color: #c8d6e8;
  font-size: 0.95rem;
}

.phone-link {
  color: #8ad8ff;
  text-decoration: none;
  font-weight: 600;
}

.phone-link:hover {
  text-decoration: underline;
}

.footer-meta {
  display: grid;
  gap: 6px;
  text-align: right;
}

.developer-credit {
  margin: 0;
  color: #b9c7d9;
  font-size: 0.9rem;
}

.developer-credit a {
  color: #8ad8ff;
  text-decoration: none;
  font-weight: 600;
}

.developer-credit a:hover {
  text-decoration: underline;
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: auto;
    padding-block: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-status {
    font-size: 0.7rem;
  }

  .hero {
    border-radius: 18px;
    padding: 18px;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}
