:root {
  --ink: #10151a;
  --white: #fffaf0;
  --gold: #dfa63b;
  --red: #c3312f;
  --blue: #075c9a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(135deg, #10151a, #075c9a);
  color: var(--white);
}

a {
  color: inherit;
}

.members-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 18px;
}

.members-panel {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 10vw, 88px);
  line-height: .92;
}

p {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.62;
  color: rgba(255, 250, 240, .9);
}

.members-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
