* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(90, 90, 120, 0.25), transparent 35%),
    linear-gradient(180deg, #08090d 0%, #101116 55%, #07080b 100%);
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  padding: 32px 18px;
}

.page {
  width: 100%;
  max-width: 1100px;
}

header {
  min-height: 54vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 70px 24px;
  background: rgba(255,255,255,0.035);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.eyebrow {
  color: #9ca3af;
  letter-spacing: 0.3em;
  font-size: 12px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(52px, 11vw, 118px);
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin-bottom: 24px;
}

.subtitle {
  max-width: 620px;
  color: #c7c7c7;
  font-size: clamp(16px, 2.4vw, 22px);
  line-height: 1.6;
}

.button {
  margin-top: 34px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.07);
  transition: 0.2s ease;
}

.button:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}

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

.card, .status, .contact {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  border-radius: 22px;
  padding: 24px;
}

.card h2 {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: #fff;
  margin-bottom: 14px;
}

.card p, .status p, .contact p {
  color: #aaa;
  line-height: 1.6;
  font-size: 15px;
}

.status {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  color: #bbb;
  flex-wrap: wrap;
}

.status span {
  color: #fff;
}

.contact {
  margin-bottom: 22px;
}

.contact h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 15px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button {
  justify-self: start;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #aaa;
  cursor: not-allowed;
}

footer {
  text-align: center;
  color: #666;
  font-size: 13px;
  padding: 22px;
}

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

  header {
    min-height: 48vh;
  }
}

@media (max-width: 560px) {
  body {
    padding: 16px;
  }

  header {
    border-radius: 22px;
    padding: 58px 20px;
  }

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

  .status {
    flex-direction: column;
  }
}
