:root {
  --accent: #29abe2;
  --accent-light: #6fd0f5;
  --text: #f3f6f9;
  --text-dim: #b9c3cc;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  font-family: 'Outfit', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
}

.page {
  position: fixed;
  inset: 0;
  height: 100dvh;
  width: 100vw;
  background-image:
    linear-gradient(180deg, rgba(5, 8, 12, 0.55) 0%, rgba(5, 8, 12, 0.72) 55%, rgba(5, 8, 12, 0.88) 100%),
    url('assets/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vh, 48px);
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 3vh, 32px);
  max-width: 720px;
  width: 100%;
}

.content.solo .logo {
  width: clamp(220px, 34vw, 420px);
}

.logo {
  width: clamp(160px, 26vw, 320px);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
}

.divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vh, 16px);
  width: 100%;
}

.row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.label {
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
}

.value {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.01em;
}

.value.link {
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s ease;
}

.value.link:hover {
  color: var(--accent-light);
}

.legal {
  margin-top: clamp(8px, 1.6vh, 20px);
  font-size: clamp(11px, 1.3vw, 13px);
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.legal .sep {
  color: var(--accent);
  opacity: 0.7;
}

@media (max-width: 480px) {
  .legal {
    flex-direction: column;
    gap: 4px;
  }
  .legal .sep {
    display: none;
  }
}

@supports not (background-attachment: fixed) {
  .page {
    background-attachment: scroll;
  }
}
