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

  :root {
    --black: #0a0a0a;
    --white: #ffffff;
    --off: #f7f5f2;
    --muted: #9a9690;
    --border: rgba(0,0,0,0.09);
    --orange: #E8601A;
    --orange-light: #fef1ea;
    --orange-mid: #f5832e;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Inter', system-ui, sans-serif;
  }

  html { font-size: 16px; scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 2.5rem;
    border-bottom: 0.5px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    z-index: 100;
  }

  .nav-logo {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .nav-logo img {
    height: 24px;
    width: auto;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
  }

  .nav-links a:hover { color: var(--black); }

  .nav-links a:focus-visible,
  .nav-cta:focus-visible,
  .btn-primary:focus-visible,
  .btn-secondary:focus-visible,
  .btn-ghost:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
    border-radius: 3px;
  }

  .nav-cta {
    font-size: 13px;
    font-weight: 500;
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    cursor: pointer;
  }

  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232,96,26,0.3);
  }

  /* HERO */
  .hero-wrapper {
    position: relative;
    background: linear-gradient(170deg, #fef5e8 0%, #fef0d8 20%, #fde8bf 50%, #fce0a2 80%, #fad99a 100%);
    border-bottom: 0.5px solid rgba(232,96,26,0.15);
    overflow: hidden;
  }

  .hero {
    padding: 2.5rem 2.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 1.75rem;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange);
  }

  .hero-eyebrow span {
    width: 20px;
    height: 1.5px;
    background: var(--orange);
    display: inline-block;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--black);
    max-width: 660px;
    text-wrap: balance;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--orange);
  }

  .hero-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.65;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    font-size: 14px;
    font-weight: 500;
    background: var(--orange);
    color: var(--white);
    padding: 0.75rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
  }

  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(232,96,26,0.35);
  }

  .btn-ghost {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.15s;
  }

  .btn-ghost:hover { color: var(--black); }

  /* PROOF BAR */
  .proof-bar {
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    background: var(--off);
    padding: 1.4rem 2.5rem;
  }

  .proof-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .proof-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0;
  }

  .proof-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }

  .proof-stat-num {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1;
  }

  .proof-stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

  /* PROBLEM */
  section { padding: 2.5rem 2.5rem; max-width: 1100px; margin: 0 auto; }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
  }

  .section-title {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: var(--black);
    text-wrap: balance;
    position: relative;
    padding-bottom: 1rem;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
  }

  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .problem-left h2 {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.85rem;
    color: var(--black);
    text-wrap: balance;
  }

  .problem-left p { font-size: 15px; color: var(--muted); line-height: 1.7; }

  .problem-punchline {
    margin-top: 1.25rem;
    font-size: 14px;
    color: var(--orange);
    font-style: italic;
  }

  .problem-item {
    padding: 0.9rem 0;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .problem-item:first-child { border-top: 0.5px solid var(--border); }

  .problem-num { font-size: 11px; color: var(--muted); padding-top: 3px; flex-shrink: 0; width: 18px; }

  .problem-text { font-size: 14px; color: var(--black); line-height: 1.55; }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 0.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .service-card {
    padding: 1.75rem 1.5rem;
    border-right: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .service-card:last-of-type { border-right: none; }

  .service-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--orange);
    flex-shrink: 0;
  }

  .service-title { font-size: 14px; font-weight: 500; color: var(--black); line-height: 1.35; }

  .service-desc { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }

  .service-pill {
    font-size: 11px;
    color: var(--orange);
    background: var(--orange-light);
    padding: 3px 8px;
    border-radius: 20px;
    width: fit-content;
    margin-top: 0.25rem;
  }

  /* USE CASES */
  .usecases-bg {
    background: var(--off);
    padding: 2.5rem 2.5rem;
  }

  .usecases-inner { max-width: 1100px; margin: 0 auto; }

  .usecases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .usecase-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 10px;
    padding: 1.35rem;
  }

  .usecase-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
  }

  .usecase-command {
    font-size: 13px;
    color: var(--black);
    background: var(--off);
    border-radius: 6px;
    padding: 0.55rem 0.8rem;
    margin-bottom: 6px;
    line-height: 1.5;
  }

  .usecase-command::before { content: '"'; color: var(--muted); }
  .usecase-command::after { content: '"'; color: var(--muted); }

  /* BOTTOM CTA */
  .cta-section {
    text-align: center;
    padding: 2.5rem 2.5rem;
    border-top: 0.5px solid var(--border);
    background: var(--orange-light);
  }

  .cta-inner { max-width: 680px; margin: 0 auto; }

  .cta-section h2 {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--black);
    text-wrap: balance;
  }

  .cta-section p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.65;
  }

  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  .btn-secondary {
    font-size: 14px;
    font-weight: 500;
    border: 0.5px solid rgba(0,0,0,0.18);
    color: var(--black);
    padding: 0.75rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    background: var(--white);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    font-family: inherit;
  }

  .btn-secondary:hover {
    background: var(--off);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  /* FOOTER */
  footer {
    border-top: 0.5px solid var(--border);
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
  }

  footer p { font-size: 12px; color: var(--muted); }

  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; }
  .footer-links a:hover { color: var(--black); }

  /* MODAL */
  dialog {
    border: none;
    border-radius: 14px;
    padding: 0;
    max-width: 460px;
    width: 90%;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: var(--white);
  }
  dialog[open] {
    animation: modal-in 0.3s ease-out;
  }
  @keyframes modal-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  dialog::backdrop {
    background: rgba(10,10,10,0.5);
    backdrop-filter: blur(4px);
  }
  .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 0.5px solid var(--border);
  }
  .modal-title {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--black);
  }
  .modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    padding: 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-close:hover { background: var(--off); }
  .modal-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
  .modal-footer {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
  }
  .form-group { display: flex; flex-direction: column; gap: 0.3rem; }
  .form-label { font-size: 13px; font-weight: 500; color: var(--black); }
  .form-input, .form-textarea {
    font-family: var(--sans);
    font-size: 14px;
    padding: 0.6rem 0.75rem;
    border: 0.5px solid var(--border);
    border-radius: 6px;
    color: var(--black);
    background: var(--white);
    outline: none;
    transition: border-color 0.15s;
  }
  .form-input:focus, .form-textarea:focus { border-color: var(--orange); }
  .form-textarea { resize: vertical; min-height: 70px; }
  .cf-turnstile { display: flex; justify-content: center; }

  /* MOBILE MENU */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    padding: 4px;
    line-height: 0;
  }

  #mobile-nav {
    display: none;
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    z-index: 99;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 0.25rem;
    overflow-y: auto;
  }

  #mobile-nav.open {
    display: flex;
  }

  #mobile-nav > a {
    font-size: 15px;
    color: var(--black);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 0.5px solid var(--border);
    transition: color 0.15s;
  }

  #mobile-nav > a:hover {
    color: var(--orange);
  }

  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
  }

  .mobile-nav-actions .nav-cta {
    text-align: center;
    padding: 0.75rem 1.1rem;
  }

  @media (max-width: 640px) {
    nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .menu-toggle { display: block; }
    section, .hero, .usecases-bg { padding-left: 1.25rem; padding-right: 1.25rem; }
    .problem-grid, .services-grid, .how-grid, .usecases-grid { grid-template-columns: 1fr; }
    .services-grid { border-radius: 10px; }
    .service-card { border-right: none; border-bottom: 0.5px solid var(--border); }
    .hero h1 { font-size: 2.2rem; }
    .cta-section { padding: 2rem 1.25rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.25rem; }
  }

  /* STACK TICKER */
  .stack-ticker-wrap {
    border-top: 1px solid var(--orange);
    border-bottom: 0.5px solid var(--border);
    padding: 1.75rem 0;
    background: #000000;
    overflow: hidden;
  }

  .stack-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666666;
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .ticker-outer {
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .ticker-outer::before,
  .ticker-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }

  .ticker-outer::before {
    left: 0;
    background: linear-gradient(to right, #000000, transparent);
  }

  .ticker-outer::after {
    right: 0;
    background: linear-gradient(to left, #000000, transparent);
  }

  .ticker-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    will-change: transform;
  }

  .ticker-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .ticker-item img {
    height: 28px;
    width: auto;
    opacity: 1;
    transition: opacity 0.2s;
  }

  .ticker-item img:hover {
    opacity: 0.8;
  }

/* Inline-extracted styles for landing page */

/* Problem section */
.competitive-heading {
  margin-bottom: 2.5rem;
}

.competitive-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}

.underline-orange {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

/* Custom Agents CTA */
.cta-section-wrap {
  padding: 0 2.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-dark {
  background: var(--black);
  border-radius: 14px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-dark-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.cta-dark-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

  .cta-dark-desc {
    font-size: 14px;
    color: #888888;
    max-width: 560px;
  line-height: 1.6;
}

.btn-cta-dark {
  font-size: 14px;
  font-weight: 500;
  background: var(--orange);
  color: #ffffff;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Product section */
.product-block {
  margin-bottom: 1.5rem;
}

.product-eyebrow-row {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 3px 10px;
  border-radius: 20px;
}

.product-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 560px;
  line-height: 1.6;
}

.product-image {
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--border);
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.team-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

.team-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.team-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Footer */
.footer-logo img {
  height: 18px;
  width: auto;
}

/* Modal success (from scripts.js) */
.modal-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(242, 165, 65, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-text {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Nav demo button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta-outline {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

.nav-cta-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,96,26,0.15);
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Interactive hero footprints */
.footprint {
  position: absolute;
  width: 60px;
  height: 24px;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  fill: rgba(242, 165, 65, 0.4);
  animation: fade-footprint 2s ease-out forwards;
}

@keyframes fade-footprint {
  0% { opacity: 0.6; transform: scale(0.8) rotate(var(--rotation)); }
  20% { opacity: 0.8; transform: scale(1) rotate(var(--rotation)); }
  100% { opacity: 0; transform: scale(1.2) rotate(var(--rotation)); }
}

/* Blog */
.blog-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2.5rem 4rem;
}

.blog-hero {
  padding-bottom: 2.5rem;
}

.blog-hero h1,
.post-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--black);
  text-wrap: balance;
}

.blog-hero p {
  max-width: 560px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.blog-list {
  display: grid;
  gap: 1.25rem;
  padding-top: 2rem;
}

.blog-card {
  display: block;
  padding: 1.25rem 0;
  border-bottom: 0.5px solid var(--border);
  color: inherit;
  text-decoration: none;
}

.blog-card:first-child {
  border-top: 0.5px solid var(--border);
}

.blog-card-meta,
.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.blog-card h2 {
  margin: 0.55rem 0;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.2;
}

 .blog-card p {
  max-width: 620px;
  color: var(--black);
  font-size: 15px;
  line-height: 1.7;
}

.blog-card:hover h2 {
  color: var(--orange);
}

.post-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2.5rem 0;
}

.post-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--orange);
}

.post-header h1 {
  max-width: 760px;
}

.post-meta {
  margin-top: 1.25rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid var(--border);
}

.post-body-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2.5rem 5rem;
}

.post-body {
  max-width: 720px;
}

 .post-body p {
  margin-bottom: 1.35rem;
  color: var(--black);
  font-size: 16px;
  line-height: 1.8;
}

.post-body h2 {
  margin: 3rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 2rem 0;
  overflow: hidden;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  background: var(--border);
}

.stat-card {
  padding: 1rem;
  background: var(--off);
}

.stat-num {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.screenshot-strip {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.screenshot-item img {
  width: 80%;
  border-radius: 8px;
  border: 0.5px solid var(--border);
  display: block;
}

.screenshot-caption {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.03em;
  font-style: italic;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0.5px solid var(--border);
}

.author-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.author-name {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
}

.author-role {
  color: var(--muted);
  font-size: 13px;
}

.post-cta {
  border-top: 0.5px solid var(--border);
  background: var(--off);
  padding: 2.5rem;
}

.post-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.post-cta h2 {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
}

.post-cta p {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .blog-shell,
  .post-header,
  .post-body-wrap {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }
}
