/*
 * BudgetCat marketing site.
 *
 * Every colour here is lifted from the app's own theme (src/theme/stitch.ts)
 * and chart palette (src/theme/chartPalette.ts) so the site and the product
 * read as one thing. If a token changes in the app, change it here too.
 */

/* ---------------------------------------------------------------- tokens */

:root {
  color-scheme: light;

  /* Surfaces — stitch.ts lightColors */
  --paper: #f6f1e8;
  --surface: #fffdf8;
  --surface-muted: #f2ebdd;
  --surface-raised: #fbf7ef;
  --line: #e7dfd2;

  /* Ink */
  --ink: #111111;
  --ink-muted: #706b63;
  --dark: #1b1a17;
  --on-dark: #fffdf8;

  /* The wordmark navy from the brand pack */
  --navy: #33475b;

  /* Pastel accents — stitch.ts */
  --accent-blue: #d8e4f1;
  --accent-mint: #dcefe5;
  --accent-rose: #f2e4ea;
  --accent-peach: #f2e0d2;
  --accent-slate: #e5e8ed;
  --accent-butter: #f5ebc9;

  /* Readable accent text — chartPalette.ts light series */
  --income: #0f7a4b;
  --spending: #b85a1b;
  --savings: #1f4a9b;
  --plum: #652846;

  --shadow-sm: 0 1px 2px rgb(27 26 23 / 0.04), 0 4px 12px rgb(27 26 23 / 0.05);
  --shadow-md: 0 2px 6px rgb(27 26 23 / 0.05), 0 12px 32px rgb(27 26 23 / 0.08);
  --shadow-lg: 0 8px 20px rgb(27 26 23 / 0.08), 0 32px 64px rgb(27 26 23 / 0.12);

  --radius: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1120px;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    /* stitch.ts darkColors */
    --paper: #1a1814;
    --surface: #232019;
    --surface-muted: #1a1710;
    --surface-raised: #2c2920;
    --line: #3a3628;

    --ink: #f0eae0;
    --ink-muted: #9c9489;
    --dark: #e8e3d7;
    --on-dark: #1a1814;

    --navy: #cddced;

    --accent-blue: #162434;
    --accent-mint: #102416;
    --accent-rose: #261420;
    --accent-peach: #261612;
    --accent-slate: #181e2a;
    --accent-butter: #2e2408;

    /* chartPalette.ts dark series */
    --income: #4ed993;
    --spending: #e4805a;
    --savings: #5e9ef0;
    --plum: #dc98c7;

    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.3), 0 4px 12px rgb(0 0 0 / 0.28);
    --shadow-md: 0 2px 6px rgb(0 0 0 / 0.34), 0 12px 32px rgb(0 0 0 / 0.34);
    --shadow-lg: 0 8px 20px rgb(0 0 0 / 0.4), 0 32px 64px rgb(0 0 0 / 0.45);
  }
}

/* ------------------------------------------------------------- baseline */

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Manrope,
    ui-sans-serif,
    system-ui,
    -apple-system,
    'Segoe UI',
    sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
.display,
.store-btn__line-2 {
  font-family: 'Space Grotesk', Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--savings);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--dark);
  color: var(--on-dark);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}

.site-header[data-scrolled='true'] {
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}

.brand__mark {
  width: 30px;
  height: auto;
  transform-origin: 50% 85%;
  transition: transform 0.45s var(--ease);
}

/* The one bit of cat in the chrome: a small ear-flick when you hover the logo. */
.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  animation: ear-flick 0.55s var(--ease);
}

@keyframes ear-flick {
  30% {
    transform: rotate(-7deg);
  }
  60% {
    transform: rotate(4deg);
  }
}

.brand__word {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}

.site-nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--on-dark);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 860px) {
  .site-nav,
  .header-cta {
    display: none;
  }
}

/* --------------------------------------------------------------- layout */

section {
  padding-block: clamp(64px, 9vw, 116px);
}

/* The header is sticky, so anchor jumps have to stop short of it or the
   section heading lands underneath. */
[id] {
  scroll-margin-top: 96px;
}

.section-head {
  max-width: 660px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-muted);
  opacity: 0.5;
}

h2 {
  font-size: clamp(30px, 4.2vw, 44px);
}

.section-head p {
  margin-top: 16px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-muted);
}

/* ----------------------------------------------------------------- hero */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  letter-spacing: -0.035em;
}

/*
 * "clearly" gets a highlighter swipe rather than an underline. Painting it as a
 * background on the inline box itself hugs the word exactly and avoids the
 * z-index games a positioned pseudo-element needs to sit behind the text.
 */
.hero h1 em {
  font-style: normal;
  white-space: nowrap;
  /* Positioned from the top of the inline box so the band crosses the lower
     third of the letters instead of sitting under them as an underline. */
  background: linear-gradient(var(--accent-blue), var(--accent-blue)) no-repeat;
  background-size: 100% 0.22em;
  background-position: 0 0.74em;
  padding-inline: 0.06em;
}

.hero__sub {
  margin-top: 22px;
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--ink-muted);
  max-width: 30em;
}

.hero__note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-muted);
}

/* ------------------------------------------------------- store buttons */

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid transparent;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.store-btn svg {
  flex: none;
}

.store-btn__label {
  display: grid;
  text-align: left;
}

.store-btn__line-1 {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  line-height: 1.4;
}

.store-btn__line-2 {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.store-btn--primary {
  background: var(--dark);
  color: var(--on-dark);
  box-shadow: var(--shadow-md);
}

.store-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* iOS is not shipped yet, so this is deliberately inert — no href, no hover
   lift, and a "soon" chip so nobody taps it expecting the App Store. */
.store-btn--soon {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-muted);
  cursor: default;
}

.store-btn--soon .chip {
  align-self: center;
  margin-left: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: var(--accent-butter);
  color: var(--ink);
}

/* --------------------------------------------------------- phone frames */

.phone {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  aspect-ratio: 390 / 844;
  background: var(--dark);
  border-radius: 44px;
  padding: 9px;
  box-shadow: var(--shadow-lg);
}

.phone::after {
  /* Speaker slot, so the frame reads as a phone at a glance. */
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 5px;
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 0.22);
  z-index: 2;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 36px;
  background: var(--paper);
}

.hero__device {
  position: relative;
  isolation: isolate;
}

.hero__device .phone {
  max-width: 320px;
}

/* Two ears peeking out from behind the hero phone. The only literal cat on the
   page above the footer, and it stays behind the device. Drawn like the mark —
   paper fill, navy outline — so it reads as the same animal rather than as two
   stray triangles. */
.hero__ears {
  position: absolute;
  z-index: -1;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 232px;
}

.hero__ears path {
  fill: var(--surface);
  stroke: var(--navy);
  stroke-width: 5;
  stroke-linejoin: round;
}

.blob {
  position: absolute;
  border-radius: 50%;
  z-index: -2;
  filter: blur(2px);
  pointer-events: none;
}

.blob--1 {
  width: 260px;
  height: 260px;
  background: var(--accent-blue);
  top: -60px;
  right: -70px;
  opacity: 0.55;
}

.blob--2 {
  width: 200px;
  height: 200px;
  background: var(--accent-mint);
  bottom: -40px;
  left: -80px;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__sub {
    margin-inline: auto;
  }

  .store-row {
    justify-content: center;
  }

  .hero__device {
    order: -1;
  }
}

/* Stacked buttons should match each other rather than shrink-wrap their own
   labels, which left "Google Play" visibly narrower than "iPhone". */
@media (max-width: 520px) {
  .store-row {
    flex-direction: column;
    align-items: stretch;
  }

  .store-btn {
    justify-content: center;
  }
}

/* --------------------------------------------------------- trust strip */

.trust {
  padding-block: 0;
}

.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

.trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
}

.trust__item svg {
  flex: none;
  color: var(--income);
}

@media (max-width: 760px) {
  .trust__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .trust__inner {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------ features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--ink);
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card p {
  font-size: 15.5px;
  color: var(--ink-muted);
}

@media (max-width: 940px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

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

.screens {
  background: var(--surface-muted);
  border-block: 1px solid var(--line);
}

.screens__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.screens__item {
  text-align: center;
}

.screens__item figcaption {
  margin-top: 22px;
}

.screens__item h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.screens__item p {
  font-size: 14.5px;
  color: var(--ink-muted);
  max-width: 28ch;
  margin-inline: auto;
}

@media (max-width: 780px) {
  .screens__grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
    gap: 48px;
  }
}

/* ------------------------------------------------------------- privacy */

.privacy-band .container {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: clamp(24px, 3vw, 32px);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: calc(var(--container) - 48px);
}

.privacy-band h2 {
  font-size: clamp(28px, 3.6vw, 40px);
}

.privacy-band p {
  margin-top: 18px;
  color: color-mix(in srgb, var(--on-dark) 72%, transparent);
  font-size: 17px;
}

.privacy-list {
  display: grid;
  gap: 14px;
}

.privacy-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--on-dark) 7%, transparent);
  font-size: 15.5px;
}

.privacy-list svg {
  flex: none;
  margin-top: 2px;
  color: var(--income);
}

.privacy-list strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.01em;
}

.privacy-list span {
  color: color-mix(in srgb, var(--on-dark) 66%, transparent);
  font-size: 14.5px;
}

@media (max-width: 860px) {
  .privacy-band .container {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------- pricing */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.price {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price--featured {
  border-color: var(--ink);
  border-width: 2px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.price--soon {
  background: transparent;
  box-shadow: none;
  position: relative;
}

.price__tag {
  position: absolute;
  top: -13px;
  left: 30px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* The tier that has not shipped says so on the card, not only in the blurb. */
.price__tag--soon {
  background: var(--accent-butter);
  color: var(--ink);
  border: 1px solid var(--line);
}

.price h3 {
  font-size: 20px;
}

.price__amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.03em;
}

.price__amount span {
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0;
}

.price__blurb {
  margin-top: 12px;
  font-size: 15px;
  color: var(--ink-muted);
  min-height: 3em;
}

.price ul {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.price li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.price li svg {
  flex: none;
  margin-top: 5px;
  color: var(--income);
}

.price--soon li svg {
  color: var(--ink-muted);
}

.pricing__footnote {
  margin-top: 28px;
  font-size: 14.5px;
  color: var(--ink-muted);
  text-align: center;
}

@media (max-width: 940px) {
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
}

/* ----------------------------------------------------------------- faq */

.faq {
  background: var(--surface-muted);
  border-block: 1px solid var(--line);
}

.faq__list {
  display: grid;
  gap: 12px;
  max-width: 780px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '';
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink-muted);
  border-bottom: 2px solid var(--ink-muted);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.22s var(--ease);
}

details[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

details p {
  padding-bottom: 20px;
  font-size: 15.5px;
  color: var(--ink-muted);
  max-width: 62ch;
}

/* ----------------------------------------------------------------- cta */

.cta {
  text-align: center;
}

.cta h2 {
  font-size: clamp(30px, 4.6vw, 48px);
}

.cta p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-muted);
}

.cta .store-row {
  justify-content: center;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 56px 40px;
}

.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer__blurb {
  max-width: 30ch;
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--ink-muted);
}

.site-footer nav {
  display: flex;
  gap: 56px;
}

.site-footer h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.site-footer nav ul {
  display: grid;
  gap: 10px;
  font-size: 15px;
}

.site-footer nav a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}

.site-footer nav a:hover {
  color: var(--ink);
}

.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-muted);
}

/* The sign-off: one small paw on the footer rule, easy to miss, which is the
   point. */
.footer-cat {
  width: 24px;
  color: var(--ink-muted);
  opacity: 0.45;
}

/* --------------------------------------------------------- reveal + a11y */

/* Gated on the `js` class the inline head script adds, so that with scripting
   off — or if the observer never runs — the page is simply visible rather than
   a screen of blank cream. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------------------- legal / policy */

.legal {
  max-width: 760px;
  padding-top: clamp(48px, 6vw, 72px);
}

.legal h1 {
  font-size: clamp(32px, 5vw, 46px);
}

.legal__meta {
  margin-top: 14px;
  color: var(--ink-muted);
  font-size: 15px;
}

.legal h2 {
  font-size: 22px;
  margin-top: 44px;
}

.legal h2 + p {
  margin-top: 14px;
}

.legal p {
  margin-top: 16px;
  color: var(--ink-muted);
}

.legal ul {
  margin-top: 16px;
  display: grid;
  gap: 9px;
  color: var(--ink-muted);
}

.legal li {
  display: flex;
  gap: 12px;
}

.legal li::before {
  content: '';
  flex: none;
  width: 5px;
  height: 5px;
  margin-top: 12px;
  border-radius: 50%;
  background: var(--ink-muted);
  opacity: 0.6;
}

/* --------------------------------------------------- utility / no-inline */

/*
 * These exist so no element needs a `style` attribute and no page needs an
 * inline <script>. That lets `_headers` ship a Content-Security-Policy with
 * plain `script-src 'self'` instead of weakening it with 'unsafe-inline'.
 */

/* The off-screen <symbol> sprite both pages start with. */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
}

.card__icon--blue {
  background: var(--accent-blue);
}
.card__icon--peach {
  background: var(--accent-peach);
}
.card__icon--mint {
  background: var(--accent-mint);
}
.card__icon--butter {
  background: var(--accent-butter);
}
.card__icon--rose {
  background: var(--accent-rose);
}
.card__icon--slate {
  background: var(--accent-slate);
}

/* The eyebrow inside the dark privacy band inherits the band's ink. */
.eyebrow--inverse {
  color: inherit;
  opacity: 0.7;
}

/* The legal pages end on the base row alone, with no stack above it. */
.site-footer__base--only {
  margin-top: 0;
  border-top: 0;
}

.link-plain {
  color: inherit;
}
