:root {
  --blue: #3a46ff;
  --blue-hot: #6570ff;
  --text: #f5f6ff;
  --muted: rgba(245, 246, 255, 0.66);
  --line: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  background: #030407;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.landing {
  align-items: flex-end;
  display: flex;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(32px, 6vw, 84px);
  position: relative;
}

.grid {
  inset: 0;
  position: absolute;
}

.grid {
  background:
    linear-gradient(rgba(58, 70, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 70, 255, 0.07) 1px, transparent 1px),
    #030611;
  background-size: 100% 14px, 64px 100%, auto;
}

.content {
  margin-bottom: clamp(12px, 5vh, 42px);
  max-width: 860px;
  position: relative;
  width: min(100%, 860px);
  z-index: 2;
}

h1 {
  font-size: clamp(58px, 10vw, 136px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.88;
  margin: 0 0 clamp(18px, 3vw, 32px);
  max-width: 820px;
}

h1 span {
  color: var(--blue-hot);
  text-shadow: 0 0 32px rgba(58, 70, 255, 0.44);
}

p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  margin: 0 0 clamp(20px, 3vw, 30px);
  max-width: 620px;
}

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 clamp(26px, 4vw, 42px);
}

.locations span {
  background: rgba(58, 70, 255, 0.12);
  border: 1px solid rgba(101, 112, 255, 0.34);
  border-radius: 0;
  color: rgba(245, 246, 255, 0.86);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1;
  padding: 10px 12px;
}

.content a {
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  box-shadow: 0 0 24px rgba(58, 70, 255, 0.32);
  color: white;
  display: inline-flex;
  font-size: 15px;
  font-weight: 740;
  justify-content: center;
  line-height: 1.2;
  min-width: 210px;
  padding: 14px 18px;
}

.content a:hover {
  background: var(--blue-hot);
}

@media (max-width: 640px) {
  .landing {
    align-items: flex-start;
    min-height: 100svh;
    padding: 104px 22px 34px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 78px);
    line-height: 0.9;
  }

  p {
    font-size: 19px;
    max-width: 340px;
  }

  .locations span {
    font-size: 12px;
    padding: 9px 10px;
  }

  .content a {
    min-width: 0;
    width: 100%;
  }

}
