/* Базовые настройки */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #f9fafb;
  display: flex;
  flex-direction: column;
  background: #020617;
}

.page {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 24px;
  overflow: hidden;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../src/engeocom.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  z-index: -2;
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.35), transparent 60%),
    radial-gradient(circle at bottom, rgba(59, 130, 246, 0.35), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.45;
  z-index: -1;
}

.shell {
  width: 100%;
  max-width: 720px;
  background: rgba(15, 23, 42, 0.86);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 22px 45px rgba(15, 23, 42, 0.8),
    0 0 0 1px rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(18px);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 640px) {
  .shell {
    padding: 32px 32px 28px;
    gap: 24px;
  }
}

.header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
}

.brand-title {
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-subtitle {
  font-size: 14px;
  line-height: 1.5;
  color: #e5e7eb;
  max-width: 34rem;
}

.status-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.35);
}

.status-label {
  opacity: 0.9;
}

.status-caption {
  font-size: 11px;
  color: #9ca3af;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .content {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

.message-title {
  font-size: clamp(18px, 2.3vw, 20px);
  font-weight: 500;
  margin: 0 0 6px;
}

.message-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

.eta {
  margin-top: 10px;
  font-size: 13px;
  color: #9ca3af;
}

.contacts {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.24), transparent 60%),
    rgba(15, 23, 42, 0.98);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .contacts {
    padding: 16px 16px 14px;
  }
}

.contacts-caption {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c4b5fd;
}

.contacts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.contacts-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.contacts-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-top: 1px;
}

.contacts-icon svg {
  width: 12px;
  height: 12px;
  color: #e5e7eb;
}

.contacts-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.contacts-value {
  font-weight: 500;
  color: #f9fafb;
}

a {
  color: inherit;
}

a:hover {
  color: #bfdbfe;
}

footer {
  padding: 10px 16px 18px;
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  justify-content: center;
}

.footer-inner {
  width: 100%;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  opacity: 0.9;
}

.footer-copy {
  white-space: nowrap;
}

.footer-link {
  font-weight: 500;
  color: #e5e7eb;
  text-decoration: none;
}

.footer-link:hover {
  color: #bfdbfe;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}


