:root {
  --bg: #f7f5fb;
  --card-even: #e6dff0;
  --card-odd: #efe9f6;
  --primary: #7944ad;
  --text: #69349d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top right, #f9f7fc 20%, var(--bg));
  color: var(--text);
}

.landing-page {
  width: min(1200px, 92vw);
  margin: 48px auto 64px;
  display: grid;
  gap: 56px;
}


.section + .section {
  margin-top: 20px;
}

.section h1 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.02em;
  text-shadow: 0 5px 16px rgba(73, 33, 112, 0.25);
}

.section h1 .brand {
  font-weight: 800;
}

.section h1 .suffix {
  font-weight: 200;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 14px;
  overflow: visible;
}

.tile {
  min-height: 220px;
  padding: 26px 20px;
  text-decoration: none;
  color: inherit;
  background: var(--card-odd);
  border: 1px solid rgba(116, 77, 153, 0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transform-origin: center;
}

.tile:nth-child(even) {
  background: var(--card-even);
}

.tile:hover,
.tile:focus-visible {
  transform: scale(1.1);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(68, 32, 102, 0.28);
  background: #f4edff;
}

.icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tile h2 {
  margin: 0;
  font-size: clamp(0.82rem, 0.9vw, 1.05rem);
  font-weight: 600;
  line-height: 1.25;
}

.text-tile {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 12px;
}

.text-tile h2 {
  font-size: clamp(0.92rem, 1vw, 1.2rem);
  font-weight: 800;
}

.text-tile p {
  margin: 0;
  font-size: clamp(0.82rem, 0.95vw, 1.05rem);
  line-height: 1.25;
  overflow-wrap: break-word;
  hyphens: auto;
}

.empty {
  pointer-events: none;
}

@media (max-width: 1024px) {
  .tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .landing-page {
    margin: 24px auto 40px;
    gap: 34px;
  }

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