:root {
  color-scheme: dark;
  --ink: #f6f8ff;
  --muted: rgba(226, 232, 244, 0.72);
  --deep: #090b12;
  --header: #05070d;
  --deep-soft: #111522;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #69edf0;
  --blue: #6097f3;
  --violet: #a950f4;
  --magenta: #e62ee4;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(105, 237, 240, 0.16), transparent 31%),
    radial-gradient(circle at 86% 18%, rgba(230, 46, 228, 0.13), transparent 30%),
    radial-gradient(circle at 55% 90%, rgba(96, 151, 243, 0.08), transparent 34%),
    linear-gradient(135deg, var(--deep), var(--deep-soft) 58%, #0b0d16);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(22px, 5vw, 72px);
  background: var(--header);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(246, 248, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 800;
}

.brand img {
  width: 32px;
  height: 32px;
}

.header-email {
  color: rgba(226, 232, 244, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
}

.header-email:hover {
  color: var(--ink);
}

.contact-page {
  display: grid;
  flex: 1;
  align-items: center;
  justify-items: start;
  padding: 126px clamp(24px, 6vw, 72px) 54px;
}

.contact-content {
  width: min(100%, 720px);
}

h1 {
  max-width: 680px;
  margin: 0 0 20px;
  font-size: clamp(2.1rem, 4.4vw, 4.25rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

p {
  max-width: 620px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.48;
}

.contact-link {
  display: grid;
  gap: 8px;
  width: min(100%, 360px);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(105, 237, 240, 0.08), rgba(230, 46, 228, 0.08)),
    rgba(5, 7, 13, 0.42);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.contact-link span {
  color: rgba(246, 248, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-link strong {
  width: fit-content;
  color: rgba(226, 232, 244, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-link:hover {
  border-color: rgba(105, 237, 240, 0.34);
}

.contact-link:hover strong {
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  margin-top: auto;
  min-height: 54px;
  padding: 16px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 13, 0.72);
}

.site-footer p {
  margin: 0;
  color: rgba(226, 232, 244, 0.58);
  font-size: 0.78rem;
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding-block: 15px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .header-email {
    font-size: 0.8rem;
  }

  .contact-page {
    align-items: end;
    padding-top: 96px;
  }
}
