/* ==========================================================================
   Clique — design system
   Ported from "pro-landing-zen" (Tailwind v4 + shadcn) to dependency-free CSS.
   Kaypixel Web Service · info@kweb.name.ng
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* hex fallbacks first, oklch overrides after (progressive enhancement) */
  --background: #e9e9f2;
  --foreground: #1b2137;
  --surface: #ffffff;
  --card-fg: #262f3e;
  --primary: #2563eb;
  --primary-fg: #fbfdff;
  --secondary: #f2f2f7;
  --secondary-fg: #29334a;
  --muted: #e0e0eb;
  --muted-fg: #5f6577;
  --accent: #3d7bf7;
  --border: rgba(184, 185, 201, .55);
  --input: #cfd0dd;
  --ring: #2563eb;
  --win-red: #f05252;
  --win-yellow: #e8b024;
  --win-green: #22a95e;
  --ok: #17864a;

  /* 8px spacing scale */
  --s1: 4px;  --s2: 8px;  --s3: 16px; --s4: 24px;
  --s5: 32px; --s6: 48px; --s7: 64px; --s8: 80px;

  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --wrap: 1152px;

  --shadow-soft: 0 12px 35px rgba(56, 64, 84, .06);
  --shadow-elevated: 0 24px 70px rgba(48, 58, 82, .13);

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

@supports (color: oklch(0.5 0.1 250)) {
  :root {
    --background: oklch(0.94 0.018 275);
    --foreground: oklch(0.24 0.055 255);
    --surface: oklch(1 0 0);
    --card-fg: oklch(0.25 0.035 230);
    --primary: oklch(0.58 0.22 254);
    --primary-fg: oklch(0.99 0.002 205);
    --secondary: oklch(0.965 0.01 260);
    --secondary-fg: oklch(0.28 0.06 255);
    --muted: oklch(0.915 0.018 275);
    --muted-fg: oklch(0.49 0.03 260);
    --accent: oklch(0.65 0.2 252);
    --border: oklch(0.78 0.025 270 / 55%);
    --input: oklch(0.82 0.02 270);
    --ring: oklch(0.58 0.22 254);
    --win-red: oklch(0.68 0.22 25);
    --win-yellow: oklch(0.82 0.17 82);
    --win-green: oklch(0.67 0.2 145);
    --ok: oklch(0.56 0.15 152);
  }
}

/* ---------- 2. Base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a, input, select, textarea, summary { -webkit-tap-highlight-color: transparent; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; font-weight: 500; line-height: 1.12; letter-spacing: -0.015em; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--s6) 0; }
::selection { background: var(--primary); color: var(--primary-fg); }

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

.skip-link {
  position: absolute; left: var(--s3); top: -64px; z-index: 200;
  background: var(--primary); color: var(--primary-fg);
  padding: 12px 18px; border-radius: var(--radius); font-weight: 600;
  transition: top 160ms ease;
}
.skip-link:focus { top: var(--s3); }

.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;
}

/* ---------- 3. Layout ---------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap-narrow { max-width: 820px; }
.wrap-mid { max-width: 980px; }
.section { padding-block: var(--s8); position: relative; overflow: hidden; }
.section-tight { padding-block: var(--s7); position: relative; overflow: hidden; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.row-between { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s4); }
.center { text-align: center; }
.stack > * + * { margin-top: var(--s3); }

@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
}

/* ---------- 4. Typography ------------------------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 999px;
  background: color-mix(in oklab, var(--surface) 60%, transparent);
  padding: 6px 13px; color: var(--primary);
  font-size: 13px; font-weight: 600; line-height: 1.4;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 999px; background: currentColor; }

.section-label { color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.section-title { margin-top: 10px; font-size: 34px; line-height: 1.1; }
.section-sub { margin-top: 16px; color: var(--muted-fg); max-width: 62ch; font-size: 17px; }

.h1 { font-size: 42px; line-height: .98; letter-spacing: -0.03em; }
.h2 { font-size: 30px; }
.h3 { font-size: 21px; }
.lead { font-size: 18px; color: var(--muted-fg); max-width: 60ch; }
.small { font-size: 14px; color: var(--muted-fg); }
.tiny { font-size: 13px; color: var(--muted-fg); }
.text-primary { color: var(--primary); }
.muted { color: var(--muted-fg); }

@media (min-width: 640px) {
  .section-title { font-size: 42px; }
  .h1 { font-size: 60px; }
  .h2 { font-size: 38px; }
}
@media (min-width: 1024px) {
  .h1 { font-size: 78px; }
}

/* ---------- 5. Surfaces & glow ------------------------------------------ */
.glass {
  background: color-mix(in oklab, var(--surface) 72%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-elevated { box-shadow: var(--shadow-elevated); }

.hero-wash {
  background: linear-gradient(to bottom, color-mix(in oklab, var(--background) 70%, var(--surface)), var(--background) 65%);
}
.glow { position: absolute; border-radius: 999px; filter: blur(72px); pointer-events: none; z-index: 0; }
.glow-primary { width: 32rem; height: 32rem; background: var(--primary); opacity: .14; }
.glow-accent  { width: 28rem; height: 28rem; background: var(--accent);  opacity: .10; }
.glow-soft    { width: 34rem; height: 34rem; background: #93b4ee;        opacity: .14; }
.g-hero-l { top: -12rem; left: 2%; }
.g-hero-r { top: 8rem; right: -10rem; }
.g-sec-l  { top: 15%; left: -15rem; }
.g-sec-r  { top: -8rem; right: -15rem; }
.g-cta-l  { top: -8rem; left: 6%; }
.g-cta-r  { bottom: -12rem; right: 5%; }
.relative { position: relative; z-index: 1; }

/* ---------- 6. Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 11px 20px;
  border-radius: 12px; border: 1px solid transparent;
  font-size: 15px; font-weight: 600; line-height: 1.2;
  cursor: pointer; transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); box-shadow: 0 8px 20px rgba(37, 99, 235, .22); }
.btn-primary:hover { transform: translateY(-2px); opacity: .92; }
.btn-secondary {
  border-color: var(--border); border-radius: var(--radius);
  background: color-mix(in oklab, var(--surface) 72%, transparent); color: var(--foreground);
}
.btn-secondary:hover { transform: translateY(-2px); background: var(--surface); }
.btn-ghost { background: transparent; color: var(--muted-fg); }
.btn-ghost:hover { color: var(--foreground); }
.btn-block { width: 100%; }
.btn-sm { min-height: 40px; padding: 9px 16px; font-size: 14px; }

.icon-button {
  display: grid; width: 44px; height: 44px; place-items: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  color: var(--foreground); cursor: pointer;
}

.textlink { color: var(--primary); font-weight: 600; border-bottom: 1px solid color-mix(in oklab, var(--primary) 35%, transparent); }
.textlink:hover { border-bottom-color: var(--primary); }

/* ---------- 7. Header / nav --------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 60; border-bottom: 1px solid var(--border); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 12px; }
.brand { display: inline-flex; align-items: baseline; gap: 8px; }
.brand-mark { font-size: 25px; font-weight: 700; letter-spacing: -0.04em; color: var(--primary); }
.brand-sub { font-size: 12px; color: var(--muted-fg); font-weight: 500; }
.nav-links { display: none; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; color: var(--muted-fg); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--foreground); }
.nav-links a[aria-current="page"] { font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-signin { display: none; font-size: 15px; font-weight: 500; color: var(--muted-fg); }
.nav-signin:hover { color: var(--foreground); }

.mobile-nav { display: none; border-top: 1px solid var(--border); padding: 12px 0 18px; }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; min-height: 44px; padding: 11px 12px;
  border-radius: var(--radius); font-size: 16px; font-weight: 500;
}
.mobile-nav a:hover { background: var(--secondary); }
.mobile-nav .divider { height: 1px; background: var(--border); margin: 10px 12px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-signin { display: inline; }
  .nav-toggle { display: none; }
}

/* ---------- 8. Cards ----------------------------------------------------- */
.card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--s4); background: color-mix(in oklab, var(--surface) 72%, transparent);
}
.feature-card { transition: transform 250ms ease, box-shadow 250ms ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(48, 58, 82, .10); }
.feature-icon {
  display: grid; width: 42px; height: 42px; place-items: center;
  border-radius: 12px; background: color-mix(in oklab, var(--primary) 10%, transparent); color: var(--primary);
}
.card h3 { margin-top: 18px; font-size: 20px; }
.card p { margin-top: 8px; font-size: 15px; color: var(--muted-fg); line-height: 1.6; }

.check {
  display: grid; width: 19px; height: 19px; flex-shrink: 0; place-items: center; margin-top: 3px;
  border-radius: 999px; background: color-mix(in oklab, var(--primary) 12%, transparent); color: var(--primary);
}
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; }

.live-dot {
  width: 9px; height: 9px; border-radius: 999px; background: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--primary) 12%, transparent);
}

/* ---------- 9. Window chrome (product mock) ------------------------------ */
.window { overflow: hidden; border-radius: var(--radius-xl); }
.window-bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  min-height: 56px; padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 78%, var(--background));
}
.window-bar > :last-child { justify-self: end; }
.window-dots { display: flex; align-items: center; gap: 8px; }
.window-dot { width: 12px; height: 12px; border-radius: 999px; box-shadow: inset 0 0 0 1px rgba(30, 36, 56, .12); }
.window-body { padding: 12px; }
.window-title { font-size: 14px; font-weight: 600; }
.window-meta { font-size: 13px; color: var(--muted-fg); }

.hero-shot { aspect-ratio: 16 / 9; width: 100%; border-radius: 14px; object-fit: cover; }
@media (min-width: 640px) { .hero-shot { aspect-ratio: 2 / 1; } }

.hero-status {
  margin-top: 10px; display: flex; flex-direction: column; gap: 4px;
  border-radius: 14px; background: color-mix(in oklab, var(--surface) 70%, transparent); padding: 12px 16px;
}
@media (min-width: 640px) { .hero-status { flex-direction: row; align-items: center; justify-content: space-between; } }

.float-card {
  position: absolute; bottom: -56px; right: 12px; width: 232px;
  border-radius: var(--radius-lg); padding: 16px; display: none;
}
@media (min-width: 720px) { .float-card { display: block; } }

.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.people-grid img { aspect-ratio: 1; width: 100%; border-radius: 14px; object-fit: cover; box-shadow: 0 0 0 1px var(--border); }
.people-grid img.speaking { box-shadow: 0 0 0 2px color-mix(in oklab, var(--primary) 40%, transparent); }

/* ---------- 10. Toolbar strip (whiteboard tools) ------------------------- */
.tool-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s4); }
.tool-chip {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--border); border-radius: 999px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  padding: 8px 14px; font-size: 14px; font-weight: 500;
}
.tool-chip span[aria-hidden] { font-size: 15px; line-height: 1; }

/* ---------- 11. Stats ---------------------------------------------------- */
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4); }
@media (min-width: 768px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-size: 32px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.stat-label { margin-top: 4px; font-size: 14px; color: var(--muted-fg); }

/* ---------- 12. Pricing -------------------------------------------------- */
.billing-toggle {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px;
  border: 1px solid var(--border); border-radius: 999px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
}
.billing-toggle button {
  min-height: 40px; padding: 8px 18px; border: 0; border-radius: 999px;
  background: transparent; color: var(--muted-fg);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: background 160ms ease, color 160ms ease;
}
.billing-toggle button[aria-pressed="true"] { background: var(--primary); color: var(--primary-fg); }

.price-grid { display: grid; gap: 20px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 760px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .price-grid { grid-template-columns: repeat(4, 1fr); } .price-figure { font-size: 32px; } }

.price-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--s4);
  background: color-mix(in oklab, var(--surface) 72%, transparent);
}
.price-card.featured {
  border-color: color-mix(in oklab, var(--primary) 45%, transparent);
  box-shadow: var(--shadow-elevated);
  background: color-mix(in oklab, var(--surface) 90%, transparent);
}
.price-badge {
  position: absolute; top: -13px; left: var(--s4);
  border-radius: 999px; background: var(--primary); color: var(--primary-fg);
  padding: 5px 12px; font-size: 12px; font-weight: 700; letter-spacing: .01em;
}
.price-badge.free { background: var(--ok); }
.price-name { font-size: 18px; font-weight: 600; }
.price-for { margin-top: 4px; font-size: 14px; color: var(--muted-fg); }
.price-amount { margin-top: 18px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-figure { font-size: 38px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.price-period { font-size: 14px; color: var(--muted-fg); }
.price-note { margin-top: 6px; font-size: 13px; color: var(--muted-fg); min-height: 20px; }
.price-card .btn { margin-top: 20px; }
.price-card .check-list { margin-top: 20px; }
.price-card .check-list li { font-size: 14.5px; }
.price-foot { margin-top: auto; padding-top: 18px; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: color-mix(in oklab, var(--surface) 72%, transparent); }
table.compare { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14.5px; }
table.compare th, table.compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
table.compare thead th { font-size: 13px; font-weight: 700; color: var(--foreground); background: color-mix(in oklab, var(--surface) 60%, transparent); position: sticky; top: 0; }
table.compare tbody th { font-weight: 500; color: var(--muted-fg); }
table.compare td { color: var(--foreground); }
table.compare tr:last-child th, table.compare tr:last-child td { border-bottom: 0; }
.yes { color: var(--ok); font-weight: 600; }
.no { color: var(--muted-fg); }

/* ---------- 13. FAQ / accordion ----------------------------------------- */
.faq { display: grid; gap: 10px; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--surface) 72%, transparent);
  overflow: hidden;
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 56px; padding: 16px 20px; cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex-shrink: 0; width: 11px; height: 11px;
  border-right: 2px solid var(--muted-fg); border-bottom: 2px solid var(--muted-fg);
  transform: rotate(45deg) translateY(-3px); transition: transform 200ms ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq .faq-body { padding: 0 20px 20px; color: var(--muted-fg); font-size: 15px; line-height: 1.65; }
.faq .faq-body p + p { margin-top: 12px; }

/* ---------- 14. Forms ---------------------------------------------------- */
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  border: 1px solid var(--input); border-radius: var(--radius);
  background: var(--surface); color: var(--foreground);
  font-size: 16px; line-height: 1.5;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 16%, transparent);
}
.field .hint { font-size: 13px; color: var(--muted-fg); }
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } }
.form-note { margin-top: 14px; font-size: 13px; color: var(--muted-fg); }
.form-status { margin-top: 16px; font-size: 15px; font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--win-red); }

/* ---------- 15. Contact tiles ------------------------------------------- */
.contact-tile {
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 18px; background: color-mix(in oklab, var(--surface) 72%, transparent);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
a.contact-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.contact-tile .feature-icon { width: 38px; height: 38px; }
.contact-tile .t { font-size: 15px; font-weight: 600; }
.contact-tile .v { margin-top: 2px; font-size: 14.5px; color: var(--muted-fg); word-break: break-word; }

/* ---------- 16. CTA panel ------------------------------------------------ */
.cta-panel {
  border-radius: var(--radius-xl); padding: 56px 24px; text-align: center;
}
@media (min-width: 640px) { .cta-panel { padding: 64px 40px; } }

/* ---------- 17. Legal / prose ------------------------------------------- */
.prose { font-size: 16.5px; line-height: 1.75; color: color-mix(in oklab, var(--foreground) 88%, transparent); }
.prose h2 { margin-top: var(--s6); font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.prose h3 { margin-top: var(--s5); font-size: 18px; font-weight: 600; }
.prose p { margin-top: var(--s3); }
.prose ul, .prose ol { margin-top: var(--s3); padding-left: 22px; display: grid; gap: 8px; }
.prose li { line-height: 1.65; }
.prose a { color: var(--primary); font-weight: 500; border-bottom: 1px solid color-mix(in oklab, var(--primary) 30%, transparent); }
.prose strong { font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; margin-top: var(--s4); font-size: 15px; }
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--border); text-align: left; vertical-align: top; }
.prose th { background: color-mix(in oklab, var(--surface) 60%, transparent); font-weight: 600; }

.toc {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; background: color-mix(in oklab, var(--surface) 72%, transparent);
}
.toc ol { list-style: none; display: grid; gap: 8px; margin-top: 12px; padding: 0; counter-reset: toc; }
.toc li { counter-increment: toc; font-size: 15px; }
.toc li a::before { content: counter(toc) ". "; color: var(--muted-fg); }
.toc a { color: var(--foreground); }
.toc a:hover { color: var(--primary); }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 14px; color: var(--muted-fg); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: .5; }

/* ---------- 18. Footer --------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border); padding-block: var(--s7) var(--s5); margin-top: var(--s5); }
.footer-top { display: grid; gap: 40px; }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.3fr 2fr; } }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.footer-cols h4 { font-size: 14px; font-weight: 600; letter-spacing: .01em; }
.footer-cols ul { list-style: none; display: grid; gap: 10px; margin-top: 14px; }
.footer-cols a { font-size: 14.5px; color: var(--muted-fg); }
.footer-cols a:hover { color: var(--foreground); }
.footer-bottom {
  margin-top: var(--s6); padding-top: var(--s4); border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--muted-fg);
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a:hover { color: var(--foreground); }

/* ---------- 19. Misc ----------------------------------------------------- */
.logo-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; font-size: 14.5px; font-weight: 600; color: color-mix(in oklab, var(--foreground) 45%, transparent); }
@media (min-width: 640px) { .logo-row { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; } }

.quote { font-size: 23px; font-weight: 500; line-height: 1.35; letter-spacing: -0.02em; }
@media (min-width: 640px) { .quote { font-size: 33px; } }

.pill-note {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; background: color-mix(in oklab, var(--ok) 12%, transparent);
  color: var(--ok); padding: 7px 14px; font-size: 13.5px; font-weight: 600;
}

.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 70;
  display: grid; place-items: center; width: 54px; height: 54px;
  border-radius: 999px; background: #25d366; color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .38);
  transition: transform 180ms ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }

/* ---------- 20. Motion --------------------------------------------------- */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.rise { animation: rise .9s cubic-bezier(.22, 1, .36, 1) both; }
.floaty { animation: floaty 7s ease-in-out infinite; }

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

/* ---------- 21. Print ---------------------------------------------------- */
@media print {
  .site-header, .site-footer, .wa-float, .glow, .float-card { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  .prose a { border: 0; color: inherit; }
}
