/* ============================================================
   Plentibytes — brand system
   Tokens are documented in CLAUDE.md. Light-first, green brand.
   Display: Space Grotesk · Body: Inter · Data/eyebrows: IBM Plex Mono
   ============================================================ */

:root {
  --ink: #0e1510;
  --ink-soft: #3d463f;
  --gray: #5d6862;
  --paper: #f6faf5;
  --card: #ffffff;
  --sage: #dfeadb;
  --sage-deep: #c6d8c1;
  --green: #00a82d;
  --green-bright: #00d437;
  --green-tint: #e4f7e6;
  --pine: #0c3a1e;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1140px;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --shadow: 0 10px 30px rgba(14, 21, 16, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 21, 16, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--green-bright);
  border-radius: 2px;
}

.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 42rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(0, 168, 45, 0.28); }
.btn-primary:hover { background: #00992a; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--sage-deep); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-light { background: #fff; color: var(--pine); }

/* ---------- nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 250, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled { border-color: var(--sage); box-shadow: 0 4px 20px rgba(14, 21, 16, 0.06); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo em { font-style: normal; color: var(--green); }
.logo:hover { text-decoration: none; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--ink-soft); font-size: 0.94rem; font-weight: 500; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green); text-decoration: none; }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { left: 0; top: -7px; }
.nav-toggle span::after { left: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  padding: 84px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 em { font-style: normal; color: var(--green); }
.hero-copy .lede { margin: 22px 0 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 34px;
  display: flex;
  gap: 10px 12px;
  flex-wrap: wrap;
}
.chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border: 1px solid var(--sage-deep);
  border-radius: 999px;
  color: var(--ink-soft);
  background: #fff;
}

/* ============================================================
   iPhone / chat demo — the signature element.
   The bezel is pure CSS: dark frame, side buttons, Dynamic Island,
   status bar, and home indicator. No image assets.
   ============================================================ */
.phone {
  position: relative;
  background: #101612;
  border-radius: 52px;
  padding: 11px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, 0.09);
  width: 100%;
  max-width: 315px;
  margin: 0 auto;
  transform: rotate(1.5deg);
}
/* Power button (right edge) */
.phone::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 190px;
  width: 3px;
  height: 64px;
  background: #2a332c;
  border-radius: 0 3px 3px 0;
}
/* Volume buttons + mute switch (left edge) */
.phone-buttons,
.phone-buttons::before,
.phone-buttons::after {
  position: absolute;
  left: -3px;
  width: 3px;
  background: #2a332c;
  border-radius: 3px 0 0 3px;
}
.phone-buttons { top: 115px; height: 24px; }
.phone-buttons::before { content: ""; left: 0; top: 45px; height: 42px; }
.phone-buttons::after { content: ""; left: 0; top: 97px; height: 42px; }

.phone-screen {
  position: relative;
  background: #f2f5f1;
  border-radius: 41px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Status bar: time · Dynamic Island · signal/wifi/battery */
.phone-statusbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 6px;
  height: 40px;
}
.ph-time {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.phone-island {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  background: #0b0f0c;
  border-radius: 999px;
}
.ph-icons { display: inline-flex; align-items: center; gap: 5px; }
.ph-icons svg { display: block; fill: var(--ink); stroke: var(--ink); }
.ph-icons .ph-signal, .ph-icons .ph-battery { stroke: none; }
.ph-icons .ph-wifi { fill: none; }

/* Messages-style conversation header */
.phone-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 12px;
  border-bottom: 1px solid var(--sage);
}
.phone-chat-header .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-items: center;
}
.phone-agent-id { display: grid; line-height: 1.3; }
.phone-agent-id strong { font-family: var(--font-display); font-size: 0.85rem; color: var(--ink); }
.phone-agent-id span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--green); text-transform: uppercase; }

/* Conversation stage: the three chats stack; one is visible at a time */
.chat-stage { position: relative; flex: 1; }
.chat {
  position: absolute;
  inset: 0;
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* conversations sit at the bottom, like real Messages */
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
}
.chat.is-active { opacity: 1; visibility: visible; }

.bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.82rem;
  line-height: 1.45;
  opacity: 1;
}
.bubble.user { align-self: flex-end; background: var(--green); color: #fff; border-bottom-right-radius: 4px; }
.bubble.agent { align-self: flex-start; background: #fff; color: var(--ink); border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(14,21,16,0.06); }
.bubble time { display: block; font-family: var(--font-mono); font-size: 0.6rem; opacity: 0.65; margin-top: 4px; }

/* JS animates bubbles in; without JS they remain visible for crawlers */
.js .bubble { opacity: 0; transform: translateY(10px) scale(0.98); transition: opacity 0.4s ease, transform 0.4s ease; }
.js .bubble.shown { opacity: 1; transform: none; }

/* Typing indicator (three bouncing dots), injected by JS before agent replies */
.js .bubble.typing { opacity: 1; transform: none; display: inline-flex; gap: 4px; align-items: center; padding: 13px 14px; }
.typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aebbb0;
  animation: typing-bounce 1s ease-in-out infinite;
}
.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: none; opacity: 0.55; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Home indicator */
.phone-homebar {
  flex: none;
  width: 115px;
  height: 5px;
  border-radius: 999px;
  background: rgba(14, 21, 16, 0.28);
  margin: 6px auto 9px;
}

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 60px 0; }
.section-head { max-width: 46rem; margin-bottom: 46px; }
.section-head .lede { margin-top: 14px; }
.section-alt { background: #fff; border-top: 1px solid var(--sage); border-bottom: 1px solid var(--sage); }

/* centralize: before/after */
.consolidate {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: center;
}
.scatter { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.scatter-item {
  background: #fff;
  border: 1px dashed var(--sage-deep);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.86rem;
  color: var(--gray);
  font-family: var(--font-mono);
}
.consolidate-arrow { color: var(--green); }
.consolidate-arrow svg { display: block; margin: 0 auto; }
.one-platform {
  background: var(--pine);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-lg);
}
.one-platform h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.one-platform p { color: #cfe3d2; font-size: 0.92rem; }
.one-platform ul { list-style: none; margin-top: 16px; display: grid; gap: 8px; }
.one-platform li { font-size: 0.88rem; color: #eaf5ec; padding-left: 20px; position: relative; }
.one-platform li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.3em;
  width: 13px; height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d437' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* feature cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card {
  background: var(--card);
  border: 1px solid var(--sage);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 0.94rem; }
.card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-tint);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card .icon svg { display: block; }

/* industry pain-point cards */
.pain-stat {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3.6vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.source-note {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray);
}

/* agent capabilities list */
.agent-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.agent-item {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.tick svg { display: block; }
.tick-lg { width: 44px; height: 44px; margin: 0 auto 22px; }
.thanks-wrap { max-width: 560px; margin: 0 auto; text-align: center; }
.thanks-wrap .lede { margin: 0 auto; }
.agent-item strong { display: block; font-family: var(--font-display); font-size: 0.98rem; }
.agent-item span { color: var(--gray); font-size: 0.88rem; }

/* platform preview */
.platform-shot {
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .lede { margin: 16px 0 24px; }
.check-list { list-style: none; display: grid; gap: 12px; margin: 20px 0 28px; }
.check-list li { padding-left: 30px; position: relative; color: var(--ink-soft); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 6px;
  background-color: var(--green-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a82d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l5 5L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

/* sensors teaser + sensor cards */
.sensor-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  align-items: center;
}
.sensor-card img { filter: drop-shadow(0 12px 20px rgba(14, 21, 16, 0.25)); }
.sensor-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.spec-table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 0.9rem; }
.spec-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 14px 10px 0;
  width: 34%;
  vertical-align: top;
}
.spec-table td { color: var(--gray); padding: 10px 0; vertical-align: top; }
.spec-table tr + tr { border-top: 1px solid var(--sage); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: #fff;
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: 22px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  color: var(--green);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}
.step p { color: var(--gray); font-size: 0.92rem; }

/* CTA band */
.cta-band {
  background: var(--pine);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; max-width: 30rem; }
.cta-band p { color: #cfe3d2; margin-top: 10px; }

/* demo-request band: pitch on the left, working form on the right */
.demo-band {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.demo-alt a { color: var(--green-bright); }
.demo-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.demo-form label {
  display: grid;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.demo-form .optional { font-family: var(--font-body); font-weight: 400; color: var(--gray); }
.demo-form input,
.demo-form select,
.demo-form textarea {
  font: inherit;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--sage-deep);
  border-radius: 10px;
  padding: 10px 12px;
  width: 100%;
}
.demo-form textarea { resize: vertical; }
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus { border-color: var(--green); outline: none; }
.demo-form button { justify-self: start; }
.demo-form button[disabled] { opacity: 0.6; cursor: default; transform: none; }
.form-status { font-size: 0.88rem; font-weight: 500; }
.form-status:empty { display: none; }
.form-status.ok { color: var(--green); }
.form-status.error { color: #c0392b; }
/* Honeypot: parked far off-screen so people never see it, bots still do */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* footer */
.site-footer {
  border-top: 1px solid var(--sage);
  padding: 46px 0 36px;
  margin-top: 40px;
  background: #fff;
}
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-grid nav { display: flex; gap: 24px; }
.footer-grid a { color: var(--gray); font-size: 0.9rem; }
.footer-note { margin-top: 26px; color: var(--gray); font-size: 0.8rem; }

/* page hero (interior pages) */
.page-hero { padding: 70px 0 30px; }
.page-hero .lede { margin-top: 16px; }

/* ---------- scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-delay-1 { transition-delay: 0.1s; }
.js .reveal-delay-2 { transition-delay: 0.2s; }
.js .reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .bubble { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .card { transition: none; }
  .typing i { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero .container, .split, .consolidate { grid-template-columns: 1fr; }
  .consolidate-arrow { transform: rotate(90deg); }
  .grid-3 { grid-template-columns: 1fr; }
  .agent-grid, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .phone { transform: none; margin-top: 10px; }
  .demo-band { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--sage);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 24px;
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .cta-band { padding: 40px 26px; }
  .sensor-card { grid-template-columns: 1fr; }
  .sensor-card img { max-width: 160px; }
  .form-row { grid-template-columns: 1fr; }
  .phone { max-width: 290px; }
  .phone-screen { min-height: 570px; }
}

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

/* Sign-in nav button: black outline, inverts on hover. */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.btn-outline:hover, .nav-links a.btn-outline:hover { background: var(--ink); color: #fff; }

/* Right-sized buttons: base slightly smaller; compact inside the nav
   (desktop AND the mobile hamburger menu). */
.btn { padding: 11px 20px; font-size: 0.9rem; }
.nav-links .btn { padding: 7px 16px; font-size: 0.85rem; }
.btn-outline { border-width: 1.5px; }
@media (max-width: 960px) {
  .nav-links .btn { align-self: flex-start; width: auto; }
}

/* Hero: "Who is it for?" link replaces the chip row. */
.who-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.who-link:hover { color: var(--green); text-decoration: none; }

/* Who-it's-for cards */
.who-grid { align-items: stretch; }
.who-card h3 { margin-bottom: 8px; }
.who-card p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.65; margin-bottom: 10px; }
.who-card p:last-child { margin-bottom: 0; }

/* Photo attachment chip inside chat bubbles. */
.photo-chip {
  display: block;
  width: fit-content;
  background: rgba(255, 255, 255, 0.25);
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 0.72rem;
  margin-bottom: 6px;
}

/* Two-sides split on the platform page. */
.sides-grid { align-items: stretch; gap: 22px; }
.side-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.side-card .side-lede { color: var(--gray); margin-bottom: 14px; }
.side-card h4 { font-size: 0.95rem; margin: 16px 0 6px; color: var(--ink); }
.side-card p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.65; margin-bottom: 10px; }

/* Hero meta links sit side by side, wrap on small screens. */
.hero-meta { display: flex; gap: 22px; flex-wrap: wrap; }
