:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050712;
  color: #f7f8ff;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 20%, rgb(75 63 215 / 0.22), transparent 27rem),
    radial-gradient(circle at 82% 76%, rgb(29 188 198 / 0.14), transparent 28rem),
    linear-gradient(145deg, #03040a 0%, #090d22 52%, #04050d 100%);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image: radial-gradient(circle, rgb(255 255 255 / 0.72) 0 1px, transparent 1.4px);
  background-position: 0 0;
  background-size: 73px 73px;
  content: "";
  mask-image: linear-gradient(125deg, black, transparent 70%);
}

.scene {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 1.5rem;
}

.card {
  position: relative;
  width: min(100%, 34rem);
  padding: clamp(2rem, 8vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 1.75rem;
  background: linear-gradient(145deg, rgb(19 24 52 / 0.9), rgb(8 11 27 / 0.78));
  box-shadow:
    0 2rem 5rem rgb(0 0 0 / 0.54),
    inset 0 1px 0 rgb(255 255 255 / 0.1);
  backdrop-filter: blur(18px);
}

.card::before {
  position: absolute;
  width: 14rem;
  height: 14rem;
  top: -9rem;
  right: -6rem;
  border-radius: 50%;
  background: #6671ff;
  box-shadow: 0 0 6rem #6671ff;
  content: "";
  opacity: 0.2;
}

.name {
  position: relative;
}

.first-name {
  margin: 0 0 0.25rem;
  color: #aeb6d9;
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.6rem, 15vw, 6.8rem);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.divider {
  width: 3.5rem;
  height: 2px;
  margin: clamp(2rem, 7vw, 3.5rem) 0;
  background: linear-gradient(90deg, #7b85ff, #53d2dc);
  box-shadow: 0 0 1.3rem rgb(83 210 220 / 0.7);
}

address {
  display: grid;
  gap: 0.45rem;
  color: #d8ddf1;
  font-size: clamp(1rem, 3.4vw, 1.15rem);
  font-style: normal;
  line-height: 1.55;
}

address p {
  margin: 0;
}

.phone {
  display: inline-flex;
  width: fit-content;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.1rem;
  border-radius: 999px;
  color: #8be7ed;
  font-weight: 650;
  text-decoration: none;
  text-underline-offset: 0.22em;
  transition: color 180ms ease, transform 180ms ease;
}

.phone svg {
  flex: 0 0 auto;
  fill: currentColor;
}

.phone:hover {
  color: #c7fbff;
  text-decoration: underline;
  transform: translateY(-1px);
}

.phone:focus-visible {
  outline: 3px solid #8be7ed;
  outline-offset: 0.4rem;
}

@media (max-width: 420px) {
  .scene {
    padding: 1rem;
  }

  .card {
    border-radius: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone {
    transition: none;
  }
}
