/* Shelby Canyon — Landing */

:root {
  --bg: #1a1d21;
  --surface: #22262b;
  --text: #c8ccd0;
  --text-muted: #8a9199;
  --heading: #e2e5e8;
  --accent: #7cacbf;
  --border: #333840;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.landing {
  max-width: 580px;
  text-align: center;
}

h1 {
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.tagline {
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.blurb {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.founder p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.social a {
  color: var(--text-muted);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s;
}

.social a:hover {
  color: var(--accent);
}

footer {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .blurb {
    font-size: 0.95rem;
  }
}
