/* GradeView LLC — gradeview.app
   Single stylesheet for the whole site. No frameworks, no build step, no external resources.
   Mobile-first; all colours checked for WCAG AA contrast against the #0f0f14 background. */

:root {
  --bg: #0f0f14;
  --panel: #16161e;
  --border: #262632;
  --text: #e8e8f0;
  --body: #b6b6c6;
  --muted: #9494a6;
  --accent: #6c8fff;
  --accent-soft: #8aa8ff;
  --maxw: 760px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.7;
  font-size: 17px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- header / nav ---------- */

.site-header { padding: 28px 0 8px; }

/* Brand lockup: heavy tight wordmark over a light, widely-tracked kicker.
   The tagline sits OUTSIDE the anchor so the link's accessible name stays "GradeView".
   Tracking is tuned so the kicker's width optically matches the wordmark above it. */
.brand { display: inline-block; }

.logo {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
  color: #fff;
  text-decoration: none;
}
.logo span { color: var(--accent); }

.tagline {
  margin: 5px 0 0;
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.235em;
  text-indent: 0.235em;      /* offset the trailing letter-space so the left edge aligns */
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

nav { margin-top: 18px; }
nav a {
  display: inline-block;
  margin: 0 18px 8px 0;
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
}
nav a:hover, nav a:focus { color: var(--text); text-decoration: underline; }
nav a[aria-current="page"] { color: var(--text); font-weight: 600; }

/* ---------- type ---------- */

h1 {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 28px 0 14px;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 10px;
}

h3 { font-size: 17px; font-weight: 600; color: var(--text); margin: 26px 0 6px; }

p { margin-bottom: 14px; }

.lede { font-size: 19px; color: var(--text); margin-bottom: 20px; }

a { color: var(--accent); }
a:hover, a:focus { color: var(--accent-soft); }

ul, ol { padding-left: 22px; margin: 0 0 14px; }
li { margin-bottom: 7px; }

strong { color: var(--text); }

.small { font-size: 14px; color: var(--muted); }

/* ---------- home ---------- */

.hero { padding: 18px 0 6px; }
.hero h1 { font-size: 34px; }

.cta { margin: 26px 0 10px; }
.cta img { height: 52px; width: auto; display: block; }
.cta a { display: inline-block; }

.rating {
  font-size: 15px;
  color: var(--muted);
  margin-top: 6px;
}
.rating .stars { color: var(--text); font-weight: 600; }

.shots {
  display: flex;
  gap: 12px;
  margin: 30px 0 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.shots img {
  width: 208px;
  flex: 0 0 auto;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #000;
}

.stat {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
}
.stat .big {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.stat .big + .big { margin-top: 12px; }

.blocks { margin: 26px 0; }
.block { border-top: 1px solid var(--border); padding-top: 18px; margin-top: 18px; }
.block h3 { margin-top: 0; }
.block p { margin-bottom: 0; }

/* ---------- coverage table ---------- */

.tablewrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 22px 0;
}
table { border-collapse: collapse; width: 100%; font-size: 15px; }
caption { text-align: left; padding: 14px 16px 0; color: var(--muted); font-size: 14px; }
th, td { padding: 9px 16px; text-align: left; border-bottom: 1px solid var(--border); }
th { color: var(--text); font-weight: 600; font-size: 14px; white-space: nowrap; }
tbody tr:last-child td { border-bottom: 0; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- notes / callouts ---------- */

.note {
  border-left: 3px solid var(--accent);
  background: var(--panel);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  margin: 22px 0;
  font-size: 15px;
}
.note p:last-child { margin-bottom: 0; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding: 26px 0 44px;
  font-size: 14px;
  color: var(--muted);
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover, .site-footer a:focus { color: var(--text); text-decoration: underline; }
.site-footer .entity { color: var(--text); font-weight: 600; }
.site-footer p { margin-bottom: 8px; }
.site-footer nav { margin: 0 0 10px; }
.site-footer nav a { margin-right: 16px; font-size: 14px; }

/* ---------- wider screens ---------- */

@media (min-width: 620px) {
  h1 { font-size: 36px; }
  .hero h1 { font-size: 42px; }
  .stat .big { font-size: 34px; }
}
