/* Practice & Play — aligns with pillar gateway pages */
:root {
  --bg-top: #f0f2fb;
  --bg-mid: #faf6f2;
  --bg-bottom: #eef6f4;
  --text: #171a21;
  --muted: #556070;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --accent: #5c4d7d;
  --accent-soft: rgba(92, 77, 125, 0.12);
}

.pillar-page--practice {
  --accent: #5c4d7d;
  --accent-soft: rgba(92, 77, 125, 0.12);
}

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

body.pillar-page {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 70% at 50% -15%, rgba(255, 255, 255, 0.95), transparent 55%),
    linear-gradient(165deg, var(--bg-top) 0%, var(--bg-mid) 48%, var(--bg-bottom) 100%);
  background-attachment: fixed;
}

a {
  color: #1f62ea;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--text);
  color: #fff;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
}

.site-header {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1rem 0.5rem;
}

.app-breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.app-breadcrumb__sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.25rem;
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0.5rem 0 0.75rem;
}

.site-nav a {
  color: rgba(23, 26, 33, 0.82);
  padding: 0.28rem 0.45rem;
  border-radius: 999px;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--text);
}

.site-nav__sep {
  opacity: 0.35;
  user-select: none;
}

.page-hero {
  text-align: center;
  padding: 0.5rem 0 1rem;
}

.page-hero__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-hero__title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-main {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 4vw, 1.5rem) clamp(2.5rem, 6vw, 3.5rem);
}

  text-align: center;
  padding: 1.5rem 1rem 2rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.page-footer a {
  font-weight: 650;
}
