:root {
  --bg: #08070a;
  --bg-elevated: #0f0d12;
  --surface: rgba(255, 255, 255, 0.03);
  --text: #f2f0f5;
  --text-muted: #8a8491;
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.22);
  --accent: #c44a6e;
  --accent-hover: #e06387;
}

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

html {
  height: 100%;
}

body {
  min-height: 100%;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196, 74, 110, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(20, 18, 24, 1) 0%, var(--bg) 70%),
    var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  z-index: -1;
}

.site {
  width: min(720px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8vh 0 6vh;
}

.brand {
  margin-bottom: 2.5rem;
}

.brand__logo {
  width: clamp(220px, 70vw, 520px);
  height: auto;
  display: block;
  opacity: 0.98;
}

.tagline {
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 420px;
  margin-bottom: 3.5rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  outline: none;
}

.link-card__icon {
  width: 22px;
  height: 22px;
  color: var(--text);
  flex-shrink: 0;
}

.link-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.link-card__label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.link-card__arrow {
  margin-left: auto;
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.link-card:hover .link-card__arrow,
.link-card:focus-visible .link-card__arrow {
  color: var(--text);
  transform: translateX(3px);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer__address {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
}

.footer__city {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .links {
    max-width: 460px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
