* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #66717e;
  --accent: #00a2ff;
  --accent-soft: rgba(0, 162, 255, 0.16);
  --border: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.06);
}

html,
body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(
      circle at 25% 20%,
      rgba(0, 162, 255, 0.22),
      transparent 55%
    ),
    radial-gradient(circle at 70% 65%, rgba(0, 80, 200, 0.14), transparent 60%),
    radial-gradient(
      circle at 40% 85%,
      rgba(120, 180, 255, 0.08),
      transparent 55%
    );
  filter: blur(28px);
  opacity: 0.9;
}

.bg-stars {
  position: absolute;
  inset: -40%;
  background-image: radial-gradient(
      1px 1px at 10% 20%,
      rgba(255, 255, 255, 0.75),
      transparent
    ),
    radial-gradient(1px 1px at 35% 80%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 65% 25%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.55;
  animation: drift 90s linear infinite;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 40%,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

@keyframes drift {
  from {
    transform: translate3d(-2%, -2%, 0);
  }
  to {
    transform: translate3d(2%, 2%, 0);
  }
}

.page {
  position: relative;
  z-index: 1;
  min-height: 75vh;
  padding: 140px clamp(16px, 4vw, 64px) 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}

.title {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.subtitle {
  max-width: 640px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(8, 16, 30, 0.84)
  );
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 80px rgba(0, 0, 0, 0.85);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 35% 20%,
    var(--accent-soft),
    transparent 55%
  );
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0.9;
}

.chip {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 162, 255, 0.35);
  background: rgba(0, 162, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.block {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.block-title {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 14px;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 162, 255, 0.35);
  transform: translateY(-50%);
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(180, 200, 255, 0.7);
}

.value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
  text-align: right;
}

.link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  text-align: right;
  border-bottom: 1px solid rgba(0, 162, 255, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.25s ease, filter 0.25s ease;
}

.link:hover {
  border-bottom-color: rgba(0, 162, 255, 0.8);
  filter: drop-shadow(0 0 6px rgba(0, 162, 255, 0.35));
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 162, 255, 0.45);
  background: rgba(0, 162, 255, 0.08);
}

.btn-primary {
  border-color: rgba(0, 162, 255, 0.55);
  background: rgba(0, 162, 255, 0.1);
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.muted {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .actions {
    flex-direction: column;
  }
  .row {
    flex-direction: column;
    align-items: flex-start;
  }
  .value,
  .link {
    text-align: left;
  }
}
