:root {
  --ink: #f5f7ff;
  --muted: #aab1c5;
  --line: rgb(255 255 255 / 13%);
  --accent: #9d88ff;
  --background: #090d19;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 48% 35%, rgb(75 52 139 / 24%), transparent 30rem),
    linear-gradient(145deg, #0d1222 0%, var(--background) 58%, #070a12 100%);
}

.site-shell::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 5rem 5rem;
  content: "";
  opacity: 0.12;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.34;
  pointer-events: none;
}

.ambient-one {
  top: -12rem;
  right: -8rem;
  width: 31rem;
  height: 31rem;
  background: #4931af;
}

.ambient-two {
  bottom: -16rem;
  left: -10rem;
  width: 34rem;
  height: 34rem;
  background: #15466e;
}

.hero {
  align-self: center;
  width: min(100%, 68rem);
  margin: auto;
  padding-block: clamp(5rem, 13vh, 9rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 2rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.7rem;
  height: 1px;
  background: currentColor;
  content: "";
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4.25rem, 12vw, 9.5rem);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-wrap: balance;
}

.statement {
  max-width: 36rem;
  margin: clamp(2.4rem, 6vw, 4.5rem) 0 2rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.52;
  text-wrap: pretty;
}

.domain {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  padding-block: 0.4rem;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.domain::after {
  color: var(--accent);
  content: "\2197";
  font-size: 1rem;
}

.domain:hover,
.domain:focus-visible {
  border-color: var(--accent);
  color: white;
  outline: none;
}

footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
  color: #7e8599;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

footer span:nth-child(2) {
  margin-inline: auto;
}

@media (max-width: 640px) {
  .site-shell {
    padding: 1.35rem;
  }

  .hero {
    padding-block: 4rem;
  }

  .eyebrow {
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  footer span:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
