:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #52615e;
  --paper: #f8f4ec;
  --panel: #ffffff;
  --line: rgba(23, 33, 31, 0.14);
  --green: #1b5e4a;
  --gold: #b37b2a;
  --blue: #245f8f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: clamp(32px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(12, 30, 26, 0.86), rgba(12, 30, 26, 0.55) 48%, rgba(12, 30, 26, 0.16)),
    url("/assets/mindgym360-stage.svg") center / cover no-repeat;
  color: #fff;
}

.hero__content {
  max-width: 940px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f4d79d;
  font-weight: 800;
}

h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.3rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  background: #f4d79d;
  color: #17211f;
  border-color: #f4d79d;
}

.button--secondary {
  color: #fff;
}

.band {
  padding: clamp(28px, 5vw, 64px);
}

.grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

article span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

article p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .hero {
    min-height: 74vh;
    padding: 28px;
  }

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

  .button {
    width: 100%;
  }
}
