/* Enter Rewards — EnterRewards.com
   Plain CSS, mobile-first. Brand tokens from extracted/brand/BRAND_GUIDE.md. */

:root {
  --ink: #111827;
  --slate: #1f2937;
  --paper: #f8fafc;
  --white: #ffffff;
  --line: #e5e7eb;
  --line-strong: #d0d5dd;
  --mint: #34d399;
  --mint-deep: #0f766e;
  --mint-tint: #eafbf4;
  --gold: #f6c453;
  --gold-tint: #fff4d6;
  --text-2: #475467;
  --muted: #5b6472;
  --max: 1160px;
  --radius-lg: 24px;
  --radius: 16px;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  color-scheme: light;
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--paper);
  color: var(--ink);
}

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

a { color: var(--mint-deep); text-underline-offset: 3px; }
a:hover { color: var(--ink); }

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

[id] { scroll-margin-top: 24px; }

.wrap { width: min(var(--max), 100% - 32px); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; color: var(--white); outline-color: var(--mint); }

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

/* ---------- Header ---------- */

.site-header {
  background: rgba(248, 250, 252, 0.96);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 24px;
  row-gap: 4px;
  padding-block: 14px 8px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--ink); }
.brand img { width: 34px; height: 34px; flex: none; }

.site-nav { width: 100%; }
.site-nav ul {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  color: var(--text-2);
  font-weight: 650;
  font-size: 15px;
  text-decoration: none;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}
.header-status { display: none; }

@media (min-width: 900px) {
  .site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px); }
  .header-inner { flex-wrap: nowrap; min-height: 76px; padding-block: 0; }
  .site-nav { width: auto; margin-left: auto; }
  .site-nav ul { margin: 0; gap: 6px; }
  .header-status { display: inline-flex; }
  [id] { scroll-margin-top: 100px; }
}

/* ---------- Buttons and status chips ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.button.primary { background: var(--ink); color: var(--white); }
.button.primary:hover { background: var(--slate); color: var(--white); }
.button.ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.button.ghost:hover { border-color: var(--ink); color: var(--ink); }

/* Pre-launch store state. Deliberately not a link and not a store badge. */
.store-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px dashed #98a2b3;
  color: var(--ink);
  font-weight: 750;
}
.store-status .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-tint);
  flex: none;
}
.header-status { min-height: 40px; font-size: 14px; padding: 0 14px; border-radius: 12px; white-space: nowrap; }

/* ---------- Hero ---------- */

.eyebrow, .kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--mint-deep);
}

.hero {
  display: grid;
  gap: 40px;
  padding-block: 40px 56px;
}
.hero h1 {
  font-size: clamp(42px, 11vw, 78px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 16px 0 20px;
  max-width: 720px;
}
.hero h1 span { color: var(--mint-deep); display: block; }
.hero-lead { font-size: 18px; color: var(--text-2); max-width: 640px; margin: 0; }
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin: 28px 0 22px;
}
.trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
}
.trust-row li { display: inline-flex; align-items: center; gap: 6px; }
.trust-row svg { width: 16px; height: 16px; color: var(--mint-deep); flex: none; }

/* Illustration: fictional codes, abstract cards. */
.hero-visual { margin: 0; }
.hero-art { position: relative; height: 480px; max-width: 440px; margin-inline: auto; }
.hero-visual figcaption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }

.pile-card {
  position: absolute;
  width: 168px;
  padding: 16px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pile-card span { font-size: 10px; letter-spacing: 0.14em; font-weight: 800; color: #6b7280; }
.pile-card b { font-family: var(--mono); font-size: 13px; letter-spacing: 0.02em; }
.pile-card.p1 { left: 0; top: 70px; transform: rotate(-10deg); }
.pile-card.p2 { left: 4px; top: 200px; transform: rotate(6deg); }
.pile-card.p3 { left: 18px; top: 330px; transform: rotate(-4deg); }

.phone {
  position: absolute;
  right: 0;
  top: 0;
  width: 246px;
  height: 480px;
  border-radius: 38px;
  background: #0c121d;
  border: 7px solid var(--ink);
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.24);
  overflow: hidden;
  color: var(--white);
}
.phone-notch {
  position: absolute; top: 0; left: 50%;
  width: 84px; height: 20px;
  transform: translateX(-50%);
  background: var(--ink);
  border-radius: 0 0 14px 14px;
}
.phone-bar { display: flex; align-items: center; gap: 8px; padding: 28px 16px 12px; font-size: 13px; font-weight: 750; }
.phone-bar img { width: 24px; height: 24px; }
.viewfinder {
  position: relative;
  height: 250px;
  margin: 0 10px;
  border-radius: 20px;
  background: linear-gradient(145deg, #d9d6cf, #aeaa9f);
  overflow: hidden;
}
.corner { position: absolute; width: 30px; height: 30px; border: 0 solid var(--mint); }
.corner.tl { left: 14px; top: 14px; border-width: 4px 0 0 4px; border-top-left-radius: 8px; }
.corner.tr { right: 14px; top: 14px; border-width: 4px 4px 0 0; border-top-right-radius: 8px; }
.corner.bl { left: 14px; bottom: 14px; border-width: 0 0 4px 4px; border-bottom-left-radius: 8px; }
.corner.br { right: 14px; bottom: 14px; border-width: 0 4px 4px 0; border-bottom-right-radius: 8px; }
.mini-card {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  font: 750 10px var(--mono);
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}
.mini-card.m1 { left: 24px; top: 56px; transform: rotate(-9deg); }
.mini-card.m2 { right: 22px; top: 110px; transform: rotate(7deg); }
.mini-card.m3 { left: 48px; top: 172px; transform: rotate(-2deg); }
.phone-result { padding: 16px; }
.phone-result strong { display: block; font-size: 19px; letter-spacing: -0.01em; }
.phone-pills { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 14px; font-size: 11px; font-weight: 700; }
.pill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px; }
.pill.ready { background: rgba(52, 211, 153, 0.16); color: #6ee7b7; }
.pill.review { background: rgba(246, 196, 83, 0.16); color: #fcd980; }
.phone-button {
  display: block;
  text-align: center;
  border-radius: 12px;
  background: var(--mint);
  color: #06251c;
  font-weight: 800;
  font-size: 14px;
  padding: 11px;
}

@media (min-width: 560px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .hero-art { height: 540px; max-width: 520px; }
  .pile-card { width: 210px; padding: 20px; }
  .pile-card b { font-size: 15px; }
  .pile-card.p1 { top: 110px; }
  .pile-card.p2 { left: 12px; top: 240px; }
  .pile-card.p3 { left: 40px; top: 372px; }
  .phone { width: 274px; height: 540px; right: 20px; }
  .viewfinder { height: 290px; }
}

@media (min-width: 980px) {
  .hero { grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: 48px; padding-block: 72px 80px; min-height: 660px; }
  .hero-lead { font-size: 19px; }
}

/* ---------- Strip ---------- */

.strip { background: var(--ink); color: var(--white); padding: 20px 0; }
.strip p { margin: 0; display: flex; flex-wrap: wrap; gap: 4px 12px; justify-content: center; text-align: center; }
.strip span { color: #cbd5e1; }

/* ---------- Sections ---------- */

.section { padding-block: 72px; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section h2, .cta h2 {
  font-size: clamp(32px, 7vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 12px 0 16px;
}
.section-head p { font-size: 18px; color: var(--muted); margin: 0; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.steps li {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #eaecf0;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--mint-tint);
  color: #075e49;
  display: grid;
  place-items: center;
  font-weight: 850;
}
.steps h3 { font-size: 22px; line-height: 1.25; margin: 18px 0 8px; }
.steps p { color: var(--muted); margin: 0 0 22px; }

.demo { margin-top: auto; height: 150px; border-radius: 18px; background: #f2f4f7; padding: 18px; }
.demo-pile { position: relative; overflow: hidden; }
.demo-pile span { position: absolute; width: 104px; height: 60px; background: var(--white); border: 1px solid var(--line-strong); border-radius: 12px; }
.demo-pile span::before, .demo-pile span::after { content: ""; position: absolute; left: 14px; height: 6px; border-radius: 3px; background: #cbd2dc; }
.demo-pile span::before { top: 18px; width: 64px; }
.demo-pile span::after { top: 32px; width: 42px; }
.demo-pile span:nth-child(1) { left: 8%; top: 46px; transform: rotate(-9deg); }
.demo-pile span:nth-child(2) { left: 34%; top: 26px; transform: rotate(8deg); }
.demo-pile span:nth-child(3) { left: 58%; top: 52px; transform: rotate(-2deg); }
.demo-review { display: grid; grid-template-columns: 76px 1fr; gap: 14px; align-items: center; }
.demo-crop {
  height: 96px; border-radius: 12px;
  background: #cfc9be;
  display: grid; place-items: center;
  font: 700 12px var(--mono); color: #3f3a33;
}
.demo-review b { font-family: var(--mono); font-size: 17px; letter-spacing: 0.04em; }
.demo-review b mark { background: var(--gold-tint); color: var(--ink); padding: 2px 4px; border-radius: 5px; outline: 2px solid var(--gold); }
.demo-review small { display: block; margin-top: 6px; color: #7a5200; font-weight: 700; font-size: 12.5px; }
.demo-queue { display: flex; flex-direction: column; gap: 8px; }
.demo-queue small { color: var(--muted); font-weight: 650; }
.demo-queue b { font: 800 20px var(--mono); letter-spacing: 0.03em; }
.demo-queue span { display: block; text-align: center; border-radius: 12px; background: var(--mint); color: #06251c; font-weight: 800; padding: 10px; font-size: 14px; }

.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.features li { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.features h3 { margin: 0 0 4px; font-size: 17px; }
.features p { margin: 0; color: var(--muted); font-size: 15.5px; }

@media (min-width: 720px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .section { padding-block: 104px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .steps li { min-height: 390px; }
  .features { grid-template-columns: repeat(3, 1fr); }
}

.section.section-tight { padding-top: 0; }

.soft { background: var(--mint-tint); }
.privacy-grid { display: grid; gap: 32px; align-items: center; }
.privacy-grid > div > p { font-size: 18px; color: var(--text-2); }
.privacy-card { list-style: none; margin: 0; padding: 0; background: var(--white); border-radius: var(--radius-lg); border: 1px solid #cdeee0; overflow: hidden; }
.privacy-card li { padding: 20px 22px; display: grid; gap: 4px; border-bottom: 1px solid #edf1f0; }
.privacy-card li:last-child { border-bottom: 0; }
.privacy-card span { color: var(--muted); }
@media (min-width: 720px) {
  .privacy-card li { grid-template-columns: 150px 1fr; gap: 20px; }
}
@media (min-width: 980px) {
  .privacy-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.faq { max-width: 840px; }
.faq details { border-top: 1px solid var(--line-strong); }
.faq details:last-child { border-bottom: 1px solid var(--line-strong); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 18px 0;
  font-weight: 750;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-weight: 600;
  color: var(--text-2);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 20px; max-width: 720px; color: var(--text-2); }

.cta { background: var(--mint); padding-block: 64px; }
.cta-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.cta .kicker { color: #064e3b; }
.cta h2 { max-width: 760px; margin-bottom: 12px; }
.cta p { max-width: 680px; margin: 0; color: #123f33; font-size: 17px; }
.cta .store-status { background: var(--white); border-color: var(--ink); }
@media (min-width: 980px) {
  .cta { padding-block: 84px; }
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
}

/* ---------- Content pages ---------- */

.content-hero { padding-block: 48px 32px; max-width: 820px; }
.content-hero h1 { font-size: clamp(38px, 9vw, 64px); line-height: 1.04; letter-spacing: -0.045em; margin: 14px 0 16px; }
.content-hero p { font-size: 18px; color: var(--text-2); margin: 0; }
.content-hero .effective { margin-top: 18px; font-size: 15px; font-weight: 650; color: var(--muted); }

.content-grid { display: grid; gap: 28px; padding-bottom: 88px; }
.side-nav { align-self: start; }
.side-nav h2 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin: 0 0 8px; }
.side-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0 18px; }
.side-nav a { display: inline-flex; align-items: center; min-height: 40px; color: var(--text-2); font-size: 15px; font-weight: 650; text-decoration: none; }
.side-nav a:hover { color: var(--ink); text-decoration: underline; }

@media (min-width: 900px) {
  .content-hero { padding-block: 84px 44px; }
  .content-grid { grid-template-columns: 220px minmax(0, 1fr); gap: 64px; padding-bottom: 110px; }
  .side-nav { position: sticky; top: 104px; }
  .side-nav ul { flex-direction: column; gap: 0; }
  .side-nav a { min-height: 34px; }
}

.prose { max-width: 760px; min-width: 0; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: clamp(24px, 5vw, 30px); line-height: 1.2; letter-spacing: -0.02em; margin: 52px 0 12px; }
.prose h3 { font-size: 19px; margin: 28px 0 8px; }
.prose p, .prose li { color: var(--text-2); }
.prose ul { padding-left: 1.25em; }
.prose li + li { margin-top: 6px; }
.prose strong { color: var(--ink); }
.prose .support-cards, .prose .program-list { padding-left: 0; }
.prose .support-cards li + li, .prose .program-list li + li { margin-top: 0; }

.summary-box {
  background: var(--white);
  border: 1px solid #cdeee0;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.summary-box h2 { margin: 0 0 10px; font-size: 20px; }
.summary-box ul { margin: 0; }

.program-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.program-row {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.program-row h3 { margin: 0 0 4px; font-size: 18px; color: var(--ink); }
.program-row p { margin: 0; }
.status-pill {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 750;
  background: #e1f8ee; color: #075e49;
  padding: 5px 11px; border-radius: 999px;
  white-space: nowrap;
}
.status-pill svg { width: 14px; height: 14px; }
@media (min-width: 640px) {
  .program-row { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 20px; }
}

.support-cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.support-cards li { border: 1px solid var(--line); background: var(--white); border-radius: 18px; padding: 20px; margin: 0; }
.support-cards h3 { margin: 0 0 6px; color: var(--ink); }
.support-cards p { margin: 0; }
@media (min-width: 640px) { .support-cards { grid-template-columns: repeat(2, 1fr); } }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-top: 18px;
}
.contact-card p { margin: 0 0 10px; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-email { font-size: 18px; font-weight: 750; overflow-wrap: anywhere; }

/* ---------- Support form ---------- */

.support-form {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  margin-top: 18px;
  display: grid;
  gap: 20px;
}
.support-form .field { display: grid; gap: 6px; min-width: 0; }
.support-form label { font-weight: 750; color: var(--ink); }
.support-form .optional { font-weight: 500; color: var(--muted); }
.prose .support-form p { margin: 0; }
.support-form .field-hint { font-size: 14.5px; color: var(--muted); }
.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #8a94a3;
  border-radius: 12px;
}
.support-form textarea { min-height: 160px; resize: vertical; line-height: 1.5; }
.support-form input:focus-visible,
.support-form select:focus-visible,
.support-form textarea:focus-visible { outline-offset: 1px; border-color: var(--mint-deep); }
.support-form [aria-invalid="true"] { border: 2px solid #b42318; }
.prose .support-form .field-error { color: #b42318; font-size: 14.5px; font-weight: 700; }
.support-form .field-error:empty { display: none; }
.prose .support-form .form-notice { font-size: 14.5px; color: var(--text-2); background: var(--paper); border-radius: 12px; padding: 12px 14px; }
.support-form .form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.support-form button[disabled] { opacity: 0.7; cursor: progress; }
.support-form .form-status:empty { display: none; }
.prose .support-form .form-status { font-weight: 650; border-radius: 12px; padding: 12px 14px; }
.prose .support-form .form-status[data-state="info"] { color: var(--ink); background: var(--paper); }
.prose .support-form .form-status[data-state="error"] { color: #7a271a; background: #fef3f2; border: 2px solid #b42318; }
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-confirmation {
  background: var(--mint-tint);
  border: 2px solid var(--mint-deep);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-top: 18px;
}
.prose .form-confirmation h3 { margin: 0 0 6px; color: var(--ink); }
.prose .form-confirmation p { margin: 0; color: var(--ink); }
@media (min-width: 640px) { .support-form { padding: 28px; } }

.page-404 { padding-block: 96px 120px; max-width: 640px; }
.page-404 h1 { font-size: clamp(38px, 9vw, 60px); letter-spacing: -0.04em; line-height: 1.05; margin: 12px 0 16px; }
.page-404 p { color: var(--text-2); font-size: 18px; }

/* ---------- Footer ---------- */

.site-footer { background: #0b111b; color: var(--white); padding-block: 48px; }
.site-footer :focus-visible { outline-color: var(--mint); }
.footer-inner { display: grid; gap: 22px; }
.footer-brand { color: var(--white); }
.footer-brand:hover { color: var(--white); }
.footer-inner p { color: #a8b1bf; margin: 4px 0 0; }
.footer-links ul { list-style: none; margin: 0 -10px; padding: 0; display: flex; flex-wrap: wrap; }
.footer-links a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 10px; color: #dbe2ea; font-weight: 600; font-size: 15px; text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-fine { font-size: 13.5px; border-top: 1px solid #1f2937; padding-top: 20px; }
.footer-fine p { color: #a8b1bf; margin: 0 0 6px; }
@media (min-width: 900px) {
  .footer-inner { grid-template-columns: 1fr auto; align-items: center; }
  .footer-fine { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

@media print {
  .site-header, .site-nav, .side-nav, .site-footer .footer-links, .skip-link { display: none; }
  body { background: #fff; }
}
