    @font-face {
      font-family: 'Wfvisualsans';
      src: url('https://dhygzobemt712.cloudfront.net/Fonts/VF/WFVisualSansVF.woff2') format('woff2');
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --bg: #ffffff;
      --fg: #0b0b0d;
      --fg-muted: #555;
      --fg-soft: #6b6b75;
      --fg-dim: #8a8a92;
      --border: #e6e6ea;
      --rule: #e8e8ec;
      --accent: #1270e3;
      --accent-hover: #0d5dc0;
      --sans: 'Wfvisualsans', system-ui, -apple-system, sans-serif;

      /* ---------- PER-BLOG THEME (change these to retheme the header) ---------- */
      --hdr-base:  #fbf3ec;
      --hdr-orb-1: #ffb27a;   /* warm orange */
      --hdr-orb-2: #ff8b3d;   /* deeper orange */
      --hdr-orb-3: #d6d6dc;   /* cool gray */
      --hdr-orb-4: #ffd9b0;   /* peach */
      --illus-bg:  #ff7a1a;   /* big illustration block */
      --illus-fg:  #0b0b0d;   /* shapes inside illustration */
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ============================================================
       NAV (from sage-dental-arts-story.html)
       ============================================================ */
    .nav { background: var(--bg); position: relative; z-index: 5; }
    .nav-inner {
      max-width: none;
      margin: 0;
      padding: 18px 32px;
      display: flex;
      align-items: center;
      gap: 48px;
      border-bottom: 1px solid var(--border);
    }
    .brand { display: flex; align-items: center; color: var(--fg); text-decoration: none; }
    .brand-text { font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
    .nav-links {
      display: flex; align-items: center; gap: 36px;
      margin: 0 auto; list-style: none; padding: 0;
    }
    .nav-links a {
      color: var(--fg); text-decoration: none;
      font-size: 15px; font-weight: 500;
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 0; transition: color .15s ease;
    }
    .nav-links a:hover { color: var(--fg-muted); }
    .caret {
      width: 10px; height: 10px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translate(-2px,-2px);
      display: inline-block; opacity: .8;
    }
    .nav-cta { display: flex; align-items: center; gap: 20px; }
    .signin { color: var(--fg); text-decoration: none; font-size: 15px; font-weight: 500; }
    .nav .btn-primary {
      background: var(--fg); color: #fff; border: none;
      padding: 11px 20px; border-radius: 8px;
      font-size: 15px; font-weight: 600; font-family: inherit;
      cursor: pointer; text-decoration: none; display: inline-block;
      white-space: nowrap;
      transition: background .15s ease;
    }
    .nav .btn-primary:hover { background: #2a2a30; }

    /* ============================================================
       HEADER — glassmorphic grainy gradient background
       ============================================================ */
    .post-header {
      position: relative;
      overflow: hidden;
      background: var(--hdr-base);
      isolation: isolate;
      padding: 64px 32px 88px;
    }
    /* Orb gradients */
    .post-header::before {
      content: "";
      position: absolute; inset: 0;
      z-index: 0;
      background:
        radial-gradient(60% 55% at 12% 18%, var(--hdr-orb-4) 0%, transparent 65%),
        radial-gradient(40% 50% at 78% 12%, var(--hdr-orb-1) 0%, transparent 70%),
        radial-gradient(45% 60% at 88% 92%, var(--hdr-orb-2) 0%, transparent 65%),
        radial-gradient(35% 45% at 18% 95%, var(--hdr-orb-3) 0%, transparent 70%),
        radial-gradient(30% 40% at 50% 60%, var(--hdr-orb-4) 0%, transparent 70%);
      filter: blur(28px) saturate(1.05);
      transform: translateZ(0);
    }
    /* Grain overlay (SVG noise) */
    .post-header::after {
      content: "";
      position: absolute; inset: 0;
      z-index: 1;
      pointer-events: none;
      opacity: 0.55;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
      background-size: 240px 240px;
    }
    .post-header-inner {
      position: relative;
      z-index: 2;
      max-width: 78rem;
      box-sizing: content-box;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
      gap: 56px;
      align-items: center;
    }

    .breadcrumbs {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: #4d4d57;
      font-weight: 500;
      margin: 0 0 28px;
    }
    .breadcrumbs a { color: #4d4d57; text-decoration: none; transition: color .15s; }
    .breadcrumbs a:hover { color: var(--fg); }
    .breadcrumbs .sep {
      width: 6px; height: 6px;
      border-right: 1.5px solid currentColor;
      border-top: 1.5px solid currentColor;
      transform: rotate(45deg);
      display: inline-block;
      opacity: .55;
    }
    .breadcrumbs .crumb-current { color: var(--fg); font-weight: 600; }

    .post-title {
      font-family: var(--sans);
      font-weight: 600;
      font-size: 56px;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin: 0 0 22px;
      color: var(--fg);
    }
    .post-sub {
      color: #2a2a30;
      font-size: 17px;
      line-height: 1.55;
      margin: 0;
      max-width: 480px;
    }

    /* Right-side illustration card */
    .post-illus {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 11;
      background: var(--illus-bg);
      border-radius: 16px;
      overflow: hidden;
      box-shadow:
        0 12px 30px -10px rgba(0,0,0,0.18),
        0 4px 12px -4px rgba(0,0,0,0.12);
    }
    .post-illus svg { width: 100%; height: 100%; display: block; }

    /* ============================================================
       BODY (2-col layout)
       ============================================================ */
    .post-wrap {
      max-width: 78rem;
      box-sizing: content-box;
      margin: 0 auto;
      padding: 56px 32px 96px;
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 88px;
      align-items: stretch;
    }

    /* ---- Left sidebar ---- */
    .post-aside {
      align-self: stretch;
    }
    .aside-sticky {
      position: sticky;
      top: 24px;
    }

    .author {
      display: flex; align-items: center; gap: 12px;
      margin: 0 0 28px;
    }
    .author-avatar {
      width: 44px; height: 44px;
      border-radius: .5rem;
      background: linear-gradient(135deg, #1270e3 0%, #0d5dc0 100%);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 16px;
      flex: 0 0 auto;
    }
    .author-meta { display: flex; flex-direction: column; }
    .author-name { font-size: 15px; font-weight: 700; color: var(--fg); }
    .author-role { font-size: 13px; color: var(--fg-soft); }

    /* TOC (sage style) */
    .toc {
      background: #f7f7f9;
      border-radius: 12px;
      padding: 22px 22px 18px;
      margin: 0 0 32px;
    }
    .toc-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--fg);
      margin: 0 0 14px;
    }
    .toc ul {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column;
    }
    .toc li { border-left: 2px solid transparent; }
    .toc li.active { border-left-color: var(--accent); }
    .toc li.active a { color: var(--fg); font-weight: 600; }
    .toc a {
      display: flex; align-items: baseline; gap: 8px;
      padding: 7px 12px;
      color: #555;
      text-decoration: underline;
      text-decoration-color: rgba(0,0,0,0.18);
      text-underline-offset: 3px;
      font-size: 13.5px;
      line-height: 1.4;
      transition: color .15s ease;
    }
    .toc a:hover { color: var(--fg); }

    /* Share */
    .share-block { margin: 0 0 36px; }
    .share-label {
      font-size: 14px; font-weight: 700; color: var(--fg);
      margin: 0 0 12px;
    }
    .share-icons { display: flex; align-items: center; gap: 14px; }
    .share-icons a {
      width: 22px; height: 22px;
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--fg);
      transition: color .15s ease, transform .15s ease;
    }
    .share-icons a:hover { color: var(--accent); transform: translateY(-1px); }
    .share-icons svg { width: 18px; height: 18px; fill: currentColor; }

    /* Compact signup card (left col) */
    .signup-card {
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px 20px;
      background: #fff;
          margin-top: 400px;
    }
    .signup-card-title {
      font-family: var(--sans);
      font-weight: 800;
      font-size: 17px;
      line-height: 1.25;
      color: var(--fg);
      margin: 0 0 8px;
    }
    .signup-card-sub {
      font-size: 13.5px;
      line-height: 1.45;
      color: var(--fg-soft);
      margin: 0 0 18px;
    }
    .signup-card .signup-form {
      display: flex; flex-direction: column; gap: 12px; min-width: 0;
    }
    .signup-card label.field-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--fg);
      margin: 0 0 -6px;
    }
    .signup-card .signup-input,
    .signup-card .signup-select {
      width: 100%;
      height: 44px;
      padding: 0 14px;
      border-radius: 4px;
      border: 1px solid #d4d4dc;
      background: #fff;
      font-family: var(--sans);
      font-size: 14px;
      color: var(--fg);
      outline: none;
      transition: border-color .15s, box-shadow .15s;
    }
    .signup-card .signup-input:focus,
    .signup-card .signup-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(18,112,227,0.18);
    }
    .signup-card .signup-input::placeholder { color: #a0a0a8; }
    .signup-card .signup-select {
      appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%236b6b75' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 1 6 7 11 1'/></svg>");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-size: 10px 7px;
      padding-right: 32px;
    }
    .signup-card .signup-consent {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 11.5px;
      line-height: 1.45;
      color: var(--fg-soft);
    }
    .signup-card .signup-consent input {
      margin-top: 2px;
      accent-color: var(--accent);
      flex: 0 0 auto;
    }
    .signup-card .signup-submit {
      width: 100%;
      height: 44px;
      padding: 0 18px;
      border-radius: 4px;
      border: none;
      background: var(--accent);
      color: #fff;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background .15s ease;
    }
    .signup-card .signup-submit:hover { background: var(--accent-hover); }
    .signup-card .signup-submit:disabled { background: #9bc1f0; cursor: default; }
    .signup-card .signup-msg {
      font-size: 12.5px;
      margin: 0;
      color: var(--fg);
    }
    .signup-card .signup-msg:empty { display: none; }
    .signup-card .signup-msg.is-error { color: #b00020; }
    .signup-card .signup-msg.is-success { color: #1f7a3b; }

    /* ---- Right article column ---- */
    .article {
      max-width: 760px;
      min-width: 0;
    }
    .article-lede {
          font-size: 32px !important;
    line-height: 41.6px !important;
    font-weight: 500;
    letter-spacing: normal;
      color: var(--fg);
      margin: 0 0 30px;
    }
    .article p {
          font-size: 17px;
    line-height: 1.5;
    color: #2a2a30;
    margin: 0 0 18px;
    }
    .article p a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .article p strong { color: var(--fg); font-weight: 700; }
    .article h2 {
      font-weight: 500;
      font-size: clamp(28px, 3vw, 40px);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin: 56px 0 18px;
      color: var(--fg);
      scroll-margin-top: 24px;
    }
    .article h3 {
      font-weight: 800;
      font-size: 22px;
      line-height: 1.25;
      margin: 36px 0 12px;
      color: var(--fg);
    }
    .article ul, .article ol {
      padding-left: 22px;
      margin: 0 0 22px;
    }
    .article li {
      font-size: 17px;
      line-height: 1.65;
      color: #2a2a30;
      margin-bottom: 8px;
    }

    /* Pull quote */
    .pull-quote {
      margin: 36px 0;
      padding: 4px 0 4px 24px;
      border-left: 1px solid var(--accent);
      background: transparent;
      border-radius: 0;
      font-size: 19px;
      line-height: 1.7;
      color: inherit;
      font-style: italic;
      font-weight: 400;
    }
    .pull-quote q {
      quotes: "\201C" "\201D";
      font-size: inherit;
      font-weight: 400;
      line-height: inherit;
      letter-spacing: 0;
      color: inherit;
      display: inline;
      margin: 0;
      font-style: italic;
    }
    .pull-quote cite {
      font-style: italic;
      font-size: inherit;
      font-weight: 400;
      letter-spacing: 0;
      text-transform: none;
      color: inherit;
    }
    .pull-quote cite a,
    .pull-quote cite .src {
      text-decoration: underline;
      text-underline-offset: 3px;
      color: inherit;
    }

    /* Callout / info card */
    .callout {
      margin: 32px 0;
      padding: 22px 24px;
      border-radius: 14px;
      background: linear-gradient(135deg, #eaf1fc 0%, #f6f9ff 100%);
      border: 1px solid #d6e3f7;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .callout-ic {
      flex: 0 0 auto;
      width: 36px; height: 36px;
      border-radius: 8px;
      background: var(--accent);
      color: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      font-weight: 800;
    }
    .callout-body { font-size: 15.5px; line-height: 1.55; color: var(--fg); }
    .callout-body strong { color: var(--fg); }

    /* Image figure */
    .figure { margin: 32px 0; }
    .figure-frame {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: #f1f1f4;
    }
    .figure-frame img { width: 100%; display: block; }
    .figure-cap {
      margin: 12px 4px 0;
      font-size: 13px;
      color: var(--fg-soft);
      line-height: 1.5;
    }

    /* Bar chart infographic */
    .chart {
          margin: 32px 0 60px;
    padding: 40px 50px 60px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 0 16px 0 #dcdcdc;
    border-radius: 10px;
    }
    .chart-title {
      font-weight: 800;
      font-size: 18px;
      color: var(--fg);
      margin: 0 0 6px;
    }
    .chart-sub {
      font-size: 14px;
      color: var(--fg-soft);
      margin: 0 0 26px;
    }
    .chart-rows { display: flex; flex-direction: column; gap: 14px; }
    .chart-row {
      display: grid;
      grid-template-columns: 130px 1fr 60px;
      gap: 18px;
      align-items: center;
    }
    .chart-label {
      font-size: 14px;
      font-weight: 700;
      color: var(--fg);
    }
    .chart-bar {
      height: 26px;
      background: #ececef;
      border-radius: 0;
      overflow: hidden;
    }
    .chart-bar-fill {
      height: 100%;
      background: #1d1ec9;
      border-radius: 0;
    }
    /* Descending blue shades */
    .chart-row:nth-of-type(1) .chart-bar-fill { background: #0b0e9e; }
    .chart-row:nth-of-type(2) .chart-bar-fill { background: #1414c4; }
    .chart-row:nth-of-type(3) .chart-bar-fill { background: #2323e6; }
    .chart-row:nth-of-type(4) .chart-bar-fill { background: #3a3aff; }
    .chart-row:nth-of-type(5) .chart-bar-fill { background: #6a6aff; }
    .chart-row:nth-of-type(6) .chart-bar-fill { background: #9b9bff; }
    .chart-row:nth-of-type(7) .chart-bar-fill { background: #c4c4ff; }
    .chart-row:nth-of-type(8) .chart-bar-fill { background: #dcdcff; }
    .chart-row:nth-of-type(9) .chart-bar-fill { background: #e8e8ff; }
    .chart-row:nth-of-type(10) .chart-bar-fill { background: #f0f0ff; }
    .chart-row.is-muted .chart-bar-fill { background: #c3cad3; }
    .chart-value {
      font-size: 14px;
      font-weight: 700;
      color: var(--fg);
      text-align: right;
      font-variant-numeric: tabular-nums;
    }

    /* Compare grid (mini app cards) */
    .app-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin: 28px 0;
    }
    .app-card {
     border: 1px solid #d4d4d4;
    border-radius: 5px;
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    }
    .app-card-head {
      display: flex; align-items: center; gap: 12px; margin-bottom: 4px;
    }
    .app-logo {
      width: 36px; height: 36px;
      border-radius: 4px;
      display: inline-flex; align-items: center; justify-content: center;
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: -0.02em;
      background: #fff;
      border: 1px solid var(--border);
      overflow: hidden;
      flex: 0 0 auto;
    }
    .app-logo img {
      width: 24px; height: 24px;
      object-fit: contain;
      display: block;
    }
    .app-name {
      font-weight: 600;
      font-size: 16px;
      color: var(--fg);
    }
    .app-tag {
          font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fg-dim);
    margin-left: auto;
    }
    .app-desc {
      font-size: 14px;
      line-height: 1.5;
      color: var(--fg-muted);
      margin: 0;
    }
    .app-meta {
      display: flex; gap: 14px; flex-wrap: wrap;
      padding-top: 8px;
      border-top: 1px dashed var(--border);
      font-size: 12px;
          font-weight: 500;
      color: var(--fg-soft);
    }
    .app-meta span strong { color: var(--fg); font-weight: 700; }

    /* Feature comparison table */
    .ftable-wrap {
      margin: 32px 0;
      width: 100%;
      max-width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      border: 1px solid var(--border);
      border-radius: 4px;
    }
    .ftable {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      min-width: 560px;
    }
    .ftable th, .ftable td {
      padding: 14px 16px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }
    .ftable th {
      background: #fafafc;
      font-weight: 700;
      color: var(--fg);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .ftable td { color: #2a2a30; }
    .ftable tr:last-child td { border-bottom: none; }
    .ftable .yes { color: #1f7a3b; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
    .ftable .no  { color: #b00020; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
    .ftable .yes svg, .ftable .no svg { width: 22px; height: 22px; display: block; }
    .ftable .row-name { font-weight: 700; color: var(--fg); }

    /* ============================================================
       FOOTER CTA
       ============================================================ */
    .footer-cta {
      background: var(--fg);
      color: #fff;
      padding: 64px 32px;
    }
    .footer-cta-inner {
      max-width: 78rem;
      box-sizing: content-box;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .footer-cta-text { max-width: 560px; }
    .footer-cta-title {
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin: 0 0 10px;
    }
    .footer-cta-sub {
      color: #c8c8d0;
      font-size: 16px;
      line-height: 1.5;
      margin: 0;
    }
    .footer-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-white {
      background: #fff; color: var(--fg);
      border-radius: 999px;
      padding: 14px 24px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: transform .15s ease;
    }
    .btn-white:hover { transform: translateY(-1px); }
    .btn-outline {
      background: transparent; color: #fff;
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 999px;
      padding: 14px 24px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: background .15s ease;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.08); }

    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 1024px) {
      .post-wrap {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 56px;
      }
    }
    @media (max-width: 900px) {
        .article-lede {
   line-height: 38.6px !important;
}
.chart {
    padding: 20px 20px 20px;
}
.signup-card {
    margin-top: 0px;
}
.post-title {
    font-size: 33px;
}
.post-sub {
    font-size: 16px;
}
      .nav-inner { gap: 12px; padding: 14px 12px; }
      .nav-links { display: none; }
      .post-header { padding: 40px 20px 56px; }
      .post-header-inner { grid-template-columns: 1fr; gap: 32px; }
      .post-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px 64px;
      }
      .article { order: 1; }
      .post-aside {
        order: 2;
        position: static;
        align-self: start;
      }
      .aside-sticky { position: static; }
      .app-grid { grid-template-columns: 1fr; }
      .chart-row { grid-template-columns: 110px 1fr 48px; }
      .footer-cta-inner { flex-direction: column; align-items: flex-start; }
    }


    :root {
      --bg: #ffffff;
      --fg: #0b0b0d;
      --fg-muted: #6b6b75;
      --fg-soft: #5a5a5a;
      --rule: #e8e8ec;
      --tag-bg: #c9e8f5;
      --tag-fg: #1a2a4a;
      --accent: #1270e3;
      --accent-hover: #0d5dc0;
      --sans: 'Wfvisualsans', system-ui, -apple-system, sans-serif;
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
    body {
      font-family: var(--sans);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }

    .page {
      max-width: 78rem;
      box-sizing: content-box;
      margin: 0 auto;
      padding: 64px 32px 120px;
    }

    /* ---------- HEADER ---------- */
    .blog-header {
      padding-bottom: 36px;
      border-bottom: 1px solid var(--rule);
      margin-bottom: 46px;
    }
    .eyebrow {
      color: var(--fg-soft);
      font-size: 18px;
      font-weight: 500;
      margin: 0 0 24px;
      letter-spacing: 0;
    }
    .blog-title {
      font-family: var(--sans);
      font-weight: 800;
      font-size: clamp(56px, 7.2vw, 104px);
      line-height: 1.02;
      margin: 0 0 20px;
      color: var(--fg);
      text-wrap: balance;
      max-width: 14ch;
    }
    .blog-sub {
      color: var(--fg);
      font-size: 17px;
      line-height: 1.5;
      margin: 0;
      max-width: 600px;
    }

    /* ---------- FEATURED ROW ---------- */
    .featured-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
      gap: 64px;
      align-items: stretch;
    }

    /* Big featured card */
    .featured-card {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      height: 100%;
      min-height: 420px;
      background: #1a1a1f;
      display: block;
      isolation: isolate;
      color: #fff;
    }
    .featured-card .ph {
      position: absolute; inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.65) 100%),
        repeating-linear-gradient(135deg,
          #2d4a6b 0px, #2d4a6b 26px,
          #38597c 26px, #38597c 52px),
        #2d4a6b;
    }
    .featured-card .ph::after {
      content: "[ AERIAL CITY PHOTO ]";
      position: absolute;
      top: 24px; left: 24px;
      font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.55);
      z-index: 1;
    }
    .featured-meta {
      position: absolute;
      inset: auto 0 0 0;
      padding: 0 36px 36px;
      z-index: 2;
    }
    .featured-eyebrow {
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin: 0 0 16px;
      color: #fff;
    }
    .featured-title {
      font-family: var(--sans);
      font-weight: 700;
      font-size: clamp(28px, 3vw, 36px);
      line-height: 1.15;
      letter-spacing: -0.018em;
      margin: 0 0 28px;
      color: #fff;
      text-wrap: balance;
      max-width: 14ch;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 48px;
      padding: 0 24px;
      background: #1270e3;
      color: #fff;
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 600;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      transition: background .15s ease, transform .15s ease;
    }
    .btn-primary:hover {
      background: #0d5dc0;
    }

    /* Sidebar list */
    .post-list { display: flex; flex-direction: column; gap: 0; }
    .post-row {
      display: grid;
      grid-template-columns: 128px minmax(0, 1fr);
      gap: 28px;
      padding: 24px 0;
      align-items: start;
    }
    .post-row:first-child { padding-top: 0; }
    .post-row + .post-row { border-top: 1px solid var(--rule); }

    .thumb {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      background: #ddd;
    }
    .thumb .ph { position: absolute; inset: 0; }
    .thumb-label {
      position: absolute;
      left: 10px; top: 10px;
      font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
      font-size: 9.5px;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.72);
      z-index: 1;
    }

    /* Thumb 1 — green/teal product shot */
    .thumb.t-1 .ph {
      background:
        linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.0)),
        repeating-linear-gradient(45deg,
          #2f7a5e 0px, #2f7a5e 14px,
          #3a8a6c 14px, #3a8a6c 28px),
        #2f7a5e;
    }

    /* Thumb 2 + 3 — magazine cover style (orange) */
    .thumb.t-cover .ph {
      background: #d77f2c;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 14px 12px;
    }
    .cover-title {
      font-family: var(--sans);
      font-weight: 800;
      font-size: 22px;
      line-height: 0.95;
      letter-spacing: -0.01em;
      color: #f4e9d9;
      text-transform: uppercase;
      text-shadow: 0 1px 0 rgba(0,0,0,0.12);
    }
    .cover-pill {
      align-self: flex-start;
      border: 1.5px solid #f4e9d9;
      border-radius: 999px;
      padding: 4px 12px;
      font-family: var(--sans);
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.04em;
      color: #f4e9d9;
    }
    .thumb.t-cover .ph::before {
      /* faint texture overlay */
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(90deg,
          rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 2px,
          transparent 2px, transparent 6px);
      pointer-events: none;
    }

    .post-body { display: flex; flex-direction: column; min-width: 0; }

    .brand-line {
      color: var(--fg-muted);
      font-size: 17px;
      font-weight: 400;
      margin: 0 0 8px;
    }
    .brand-line strong { color: var(--fg-muted); font-weight: 400; }
    .post-title {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 22px;
      line-height: 1.22;
      letter-spacing: -0.01em;
      margin: 0 0 20px;
      color: var(--fg);
      text-wrap: balance;
      max-width: 28ch;
    }
    .byline {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--fg-muted);
      margin: 0 0 4px;
    }
    .byline strong { color: var(--fg); font-weight: 800; }
    .meta-line {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--fg-soft);
      margin: 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .meta-line .dash {
      width: 12px;
      height: 1.5px;
      background: var(--fg-soft);
      display: inline-block;
    }

    /* ---------- NEWSLETTER SIGNUP ---------- */
    .signup-band {
      margin: 80px 0 56px;
      padding: 40px 48px;
      background: #f0f0f0;
      border-radius: 18px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
    }
    .signup-title {
      font-family: var(--sans);
      font-weight: 800;
      font-size: clamp(28px, 3.4vw, 40px);
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: #16113a;
      margin: 0;
    }
    .signup-title .accent { color: #1270e3; }
    .signup-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 0;
    }
    .signup-row {
      display: flex;
      gap: 12px;
      min-width: 0;
    }
    .signup-input {
      flex: 1 1 auto;
      min-width: 0;
      height: 52px;
      padding: 0 18px;
      border-radius: 4px;
      border: 1px solid #d4ccf0;
      background: #fff;
      font-family: var(--sans);
      font-size: 15px;
      color: var(--fg);
      outline: none;
      transition: border-color .15s ease, box-shadow .15s ease;
    }
    .signup-input::placeholder { color: #9a93b8; }
    .signup-input:focus {
      border-color: #1270e3;
      box-shadow: 0 0 0 3px rgba(18, 112, 227, 0.18);
    }
    .signup-submit {
      flex: 0 0 auto;
      height: 52px;
      padding: 0 24px;
      border-radius: 4px;
      border: none;
      background: #1270e3;
      color: #fff;
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: background .15s ease, transform .15s ease;
    }
    .signup-submit:hover { background: #0d5dc0; }
    .signup-submit:disabled { background: #9bc1f0; cursor: default; transform: none; }
    .signup-consent {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-family: var(--sans);
      font-size: 12.5px;
      line-height: 1.45;
      color: #3a3260;
    }
    .signup-consent input {
      margin-top: 3px;
      accent-color: #1270e3;
      flex: 0 0 auto;
    }
    .signup-consent a {
      color: #1270e3;
      text-decoration: underline;
    }
    .signup-msg {
      font-family: var(--sans);
      font-size: 13px;
      margin: 0;
      color: #16113a;
    }
    .signup-msg:empty { display: none; }
    .signup-msg.is-error { color: #b00020; }
    .signup-msg.is-success { color: #1f7a3b; }

    /* ---------- BROWSE ALL + BLOG GRID ---------- */
    .browse-all {
      margin: 96px 0 40px;
      padding-top: 28px;
      border-top: 1px solid var(--rule);
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .browse-all-icon {
      width: 18px;
      height: 18px;
      background: var(--accent);
      border-radius: 3px;
      flex: 0 0 auto;
    }
    .browse-all-text {
      font-family: var(--sans);
      font-weight: 800;
      font-size: clamp(24px, 2.6vw, 32px);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--fg);
      margin: 0;
      line-height: 1;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
    }
    .blog-card {
      background: #ffffff;
      border: 1px solid #e6e6ea;
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      transition: border-color .15s ease, transform .15s ease;
    }
    .blog-card:hover {
      border-color: #d0d0d6;
      transform: translateY(-2px);
    }
    .blog-card-img {
      aspect-ratio: 4 / 3;
      width: 100%;
      display: block;
      background: #ececef;
      object-fit: cover;
    }
    .blog-card-body {
      padding: 22px 24px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex: 1;
    }
    .blog-card-pill {
      align-self: flex-start;
      border: 1px solid #c8c8d0;
      color: #333;
      background: transparent;
      border-radius: 999px;
      padding: 5px 12px;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
    }
    .blog-card-title {
      font-family: var(--sans);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.22;
      margin: 4px 0 0;
      color: var(--fg);
      text-wrap: balance;
    }
.blog-card-desc {
    color: #555;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    margin: 0;
    text-wrap: pretty;
}

    @media (max-width: 1080px) {
      .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 980px) {
      .featured-row { grid-template-columns: 1fr; gap: 40px; }
      .featured-card { height: auto;
        aspect-ratio: inherit;
        min-height: revert-rule;}
      .signup-band {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 28px;
      }
      .signup-title{
        font-size: 32px;
      }
      .post-title {
   font-size: 18px;
}
    }
    @media (max-width: 640px) {
      .page { padding: 40px 20px 80px; }
      .blog-header { padding-bottom: 36px; margin-bottom: 36px; }
      .post-row { grid-template-columns: 120px 1fr; gap: 18px; }
      .featured-meta { padding: 0 22px 22px; }
      .signup-band { padding: 28px 20px; margin-bottom: 36px; }
      .signup-row { flex-direction: column; }
      .signup-submit { width: 100%; }
      .browse-all { margin-top: 56px; }
      .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    }