* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --surface: #111111;
  --card: #151515;
  --line: #2a2a2a;
  --text: #f3f4f6;
  --muted: #c1c7d0;
  --brand: #4f8dff;
  --brand-strong: #3b82f6;
  --radius: 16px;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    url("file:///C:/Users/leann/.cursor/projects/c-Users-leann-OneDrive-Documents-Riley-Temp-rileysport/assets/c__Users_leann_AppData_Roaming_Cursor_User_workspaceStorage_ac82476ffdc9df87086b790f0c3b12a5_images_image-d72b7574-f23c-45e3-908d-6a31c1d9a9c2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.navbar {
  padding-top: 6px;
}

.navbar .container {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #2e2e2e;
  background: rgba(10, 10, 10, 0.78);
  border-radius: 999px;
  padding: 3px;
  backdrop-filter: blur(10px);
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(79, 141, 255, 0.2);
  border-color: rgba(79, 141, 255, 0.6);
}

.hero {
  padding: 58px 0 28px;
}

.hero-center {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: #dbeafe;
  border: 1px solid rgba(79, 141, 255, 0.5);
  background: rgba(79, 141, 255, 0.14);
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 14px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(140, 140, 140, 0.65);
}

h1 {
  font-size: clamp(1.9rem, 6vw, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 8px;
  color: #e8f1ff;
  text-shadow: 0 0 20px rgba(79, 141, 255, 0.25);
}

.hero-subtitle {
  font-size: clamp(0.98rem, 2.2vw, 1.25rem);
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.hero-description {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 580px;
  margin: 0 auto 18px;
}

.actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid var(--brand);
  background: var(--brand);
  border-radius: 10px;
  min-width: 128px;
  padding: 9px 13px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  box-shadow: 0 0 18px rgba(79, 141, 255, 0.35);
}

.button.ghost {
  background: transparent;
  color: #dbeafe;
  border-color: rgba(79, 141, 255, 0.45);
}

.section {
  padding: 24px 0 54px;
}

.section-head {
  margin-bottom: 14px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.08rem, 2.2vw, 1.55rem);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--muted);
  max-width: 560px;
  font-size: 0.9rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 12px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(20, 24, 32, 0.92), rgba(10, 12, 20, 0.92));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 141, 255, 0.45);
}

.kicker {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}

.card h3 {
  font-size: 0.96rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--muted);
  font-size: 0.89rem;
}

.result {
  margin-top: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
}

blockquote {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 8px;
}

.vouch-role {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  border-top: none;
  padding: 18px 0;
  color: #848484;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 920px) {
  .grid.cols-2,
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .navbar .container {
    padding: 0;
  }

  .hero {
    padding-top: 52px;
  }
}
