/* PuckPools public pages.
 *
 * Served as STATIC FILES from `public/seo/`, not by the app. Netlify serves a real file before it
 * applies the `/* -> /index.html` SPA rewrite, so these paths resolve to themselves; without that
 * rewrite order every one of them would answer with the app shell at 200, which is exactly what
 * `/seo/...` did before these files existed.
 *
 * The tokens are copied from the app's own `src/styles/screens.css` rather than re-invented, so a
 * visitor who clicks through from here into the product does not cross a visual seam. They are
 * copied and not imported on purpose: `screens.css` is GENERATED from the design handoff and this
 * file must not acquire a build step.
 */
:root {
  --bg: #070C10;
  --card: #101820;
  --card-bd: rgba(178, 230, 255, 0.08);
  --ink: #EAF6FB;
  --muted: #90ACB8;
  --dim: #5E7681;
  --accent: #22D3EE;
  --accent-deep: #0EA5C4;
  --sunk: #0C1319;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

/* One gutter, set once, with vertical padding that cannot zero the sides. */
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: 20px;
  padding-block: 0;
}

a { color: var(--accent); }
a:hover { color: #7FE7F7; }

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 22px 10px;
}

.brand {
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 15px;
  text-decoration: none;
  color: var(--ink);
}
.brand .accent { color: var(--accent); }

nav.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  padding-block: 4px 20px;
  border-bottom: 1px solid var(--card-bd);
}
nav.site-nav a { text-decoration: none; }
nav.site-nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }

h1 {
  font-size: clamp(26px, 5vw, 36px);
  line-height: 1.2;
  margin: 28px 0 12px;
  text-wrap: balance;
}
h2 {
  font-size: clamp(19px, 3.4vw, 23px);
  margin: 34px 0 10px;
  text-wrap: balance;
}
h3 { font-size: 16px; margin: 22px 0 6px; }

p { margin: 0 0 14px; color: var(--muted); }
p.lede { color: var(--ink); font-size: 17px; }

.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-bd);
  border-radius: 14px;
  padding: 18px;
  margin: 14px 0;
}
.card h3 { margin-top: 0; color: var(--ink); }

.cards { display: grid; gap: 12px; }
@media (min-width: 620px) { .cards.two { grid-template-columns: 1fr 1fr; } }

ol.steps { padding-left: 20px; margin: 0 0 18px; }
ol.steps li { margin-bottom: 10px; color: var(--muted); }
ol.steps b { color: var(--ink); }

.note {
  border-left: 2px solid var(--accent-deep);
  padding: 2px 0 2px 14px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 15px;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #04121A;
  font-weight: 700;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 999px;
  margin: 8px 0 4px;
}
.cta:hover { background: #7FE7F7; color: #04121A; }

dl.faq { margin: 0; }
dl.faq dt { color: var(--ink); font-weight: 700; margin-top: 22px; }
dl.faq dd { margin: 6px 0 0; color: var(--muted); }

footer.site {
  margin-top: 46px;
  padding-block: 20px 34px;
  border-top: 1px solid var(--card-bd);
  color: var(--dim);
  font-size: 13px;
}
footer.site p { color: var(--dim); font-size: 13px; }
footer.site a { color: var(--muted); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
