/* SetToGig pilot shell — shared styles. Matches the app's own theme
   tokens exactly (src/theme/tokens.ts in the main SetToGig repo):
   background #0B0F14, surface #151A21, surfaceSecondary #1D242D,
   accent #2DD4BF, textPrimary #F5F7FA, textSecondary #9CA6B2. */

:root {
  --background: #0B0F14;
  --surface: #151A21;
  --surface-secondary: #1D242D;
  --accent: #2DD4BF;
  --text-primary: #F5F7FA;
  --text-secondary: #9CA6B2;
  --border: #2A323C;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--background);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header.site-header {
  padding: 24px 20px;
  text-align: center;
}

.wordmark {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.wordmark .accent {
  color: var(--accent);
}

main {
  flex: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

.tagline {
  color: var(--text-secondary);
  font-size: 16px;
  text-align: center;
  margin-top: -8px;
  margin-bottom: 32px;
}

.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.card-secondary {
  background: var(--surface-secondary);
}

h1 {
  font-size: 24px;
  margin: 0 0 12px;
}

h2 {
  font-size: 18px;
  color: var(--text-primary);
  margin: 28px 0 8px;
}

p {
  color: var(--text-secondary);
  margin: 0 0 14px;
}

.body-text {
  color: var(--text-primary);
}

ul {
  color: var(--text-secondary);
  padding-left: 20px;
}

li {
  margin-bottom: 6px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--background);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.9;
  text-decoration: none;
}

.btn-block {
  display: block;
  width: 100%;
}

footer.site-footer {
  text-align: center;
  padding: 24px 20px 40px;
  color: var(--text-secondary);
  font-size: 13px;
}

footer.site-footer a {
  margin: 0 8px;
}

.meta-updated {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: -4px;
  margin-bottom: 24px;
}
