:root {
  --bg: #f8feff;
  --bg-soft: #ebfbff;
  --surface: rgba(255, 255, 255, 0.86);
  --text: #08161c;
  --muted: #5a7680;
  --cyan: #10cfe5;
  --border: rgba(16, 207, 229, 0.18);
  --shadow: 0 20px 50px rgba(16, 110, 124, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(16, 207, 229, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, var(--bg-soft) 100%);
}

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

svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.hero {
  width: min(920px, 100%);
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.logo {
  width: min(220px, 42vw);
  height: auto;
  object-fit: contain;
}

.copy {
  display: grid;
  gap: 0.7rem;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 9vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.link-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.link-card {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 1.15rem 1rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 207, 229, 0.34);
  box-shadow: 0 24px 56px rgba(16, 110, 124, 0.12);
}

.link-card span {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.summer {
  color: #ffffff;
  border-color: var(--text);
  background: var(--text);
  box-shadow: none;
}

.summer:hover {
  border-color: var(--muted);
  box-shadow: none;
}

.discord {
  background: linear-gradient(180deg, rgba(16, 207, 229, 0.16), rgba(255, 255, 255, 0.92));
}

@media (max-width: 820px) {
  .link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .logo {
    width: min(180px, 46vw);
  }

  .link-grid {
    grid-template-columns: 1fr;
  }
}
