/* EliteScout Football — shared styles for the static site.
   Dark theme, purple accents, Poppins. Matches the in-app brand. */

:root {
  --bg:           #111111;
  --surface:      #1c1c1c;
  --surface-2:    #242424;
  --border:       #2a2a2a;
  --text:         #ffffff;
  --text-secondary:#aaaaaa;
  --purple:       #7B2CBF;
  --purple-light: #9D4EDD;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--purple-light);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

header.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--purple);
  box-shadow: 0 0 24px rgba(123, 44, 191, 0.55);
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0 0 16px;
  line-height: 1.15;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 12px;
  letter-spacing: -0.2px;
}

.lede {
  font-size: 17px;
  color: var(--text-secondary);
  margin: 0 0 32px;
  max-width: 560px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
  margin: 16px 0;
}

.card .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.card .value {
  font-size: 16px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--purple-light);
}
.btn:hover { background: var(--purple-light); text-decoration: none; }

.btn.secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
}
