/* Blog pages share the launch site's quiet editorial system. */
:root {
  --bg: #F6F1E9;
  --surface: #FFFDF8;
  --pastel: #E1EBEF;
  --on: #152228;
  --on-2: #4E606A;
  --on-3: #55656D;
  --brand: #08637D;
  --sea-deep: #075366;
  --gold: #9C4411;
  --border: rgba(21,34,40,.12);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, "Segoe UI", Roboto, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141210;
    --surface: #1F1C19;
    --pastel: #12252B;
    --on: #F6F1EA;
    --on-2: #BDB3A8;
    --on-3: #998F85;
    --brand: #5FC2DD;
    --sea-deep: #0A3542;
    --gold: #F6AF79;
    --border: rgba(246,241,234,.12);
  }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); background: var(--bg); color: var(--on); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; }
nav { position: sticky; top: 0; z-index: 100; height: 64px; background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
.nav-inner, .wrap, .foot-inner { max-width: 1040px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.wordmark { display: inline-flex; align-items: center; gap: .6rem; font-weight: 750; font-size: .9rem; letter-spacing: .16em; color: var(--on); }
.wordmark img { width: 28px; height: 28px; border-radius: 7px; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { font-size: .82rem; font-weight: 500; color: var(--on-2); }
.btn { display: inline-flex; align-items: center; justify-content: center; background: var(--on); color: var(--bg) !important; padding: .64rem 1.05rem; border-radius: 999px; font-weight: 620; font-size: .82rem; }
.hero { padding: clamp(3.8rem, 10vh, 6.5rem) 0 2.4rem; border-bottom: 1px solid var(--border); }
.eyebrow, .tag { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -.035em; line-height: 1; max-width: 12ch; margin: 1rem 0 1.2rem; }
.lede { color: var(--on-2); font-size: clamp(1rem, 1.8vw, 1.18rem); max-width: 58ch; }
.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); margin: clamp(2.2rem, 6vh, 4rem) 0; }
.blog-card { background: var(--bg); padding: clamp(1.2rem, 3vw, 1.8rem); min-height: 230px; }
.blog-card h2 { color: var(--on); font-size: clamp(1.25rem, 2.4vw, 1.75rem); letter-spacing: -.025em; line-height: 1.1; margin: .85rem 0 .7rem; }
.blog-card p { color: var(--on-2); font-size: .95rem; }
.article { max-width: 760px; margin: 0 auto; padding: clamp(2.5rem, 7vh, 4rem) clamp(1.25rem, 5vw, 3rem); }
.article h1 { max-width: 15ch; }
.article-meta { color: var(--on-3); font-size: .82rem; margin-top: 1rem; }
.article h2 { font-size: clamp(1.35rem, 3vw, 2rem); letter-spacing: -.025em; line-height: 1.12; margin: 2.4rem 0 .75rem; }
.article p { color: var(--on-2); margin: 1rem 0; }
.article ul { margin: 1rem 0 1rem 1.25rem; color: var(--on-2); }
.article li { margin: .45rem 0; }
.compare { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .9rem; }
.compare th { text-align: left; color: var(--on-3); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; padding: .7rem .85rem; border-bottom: 1px solid var(--border); background: var(--pastel); }
.compare td { color: var(--on-2); padding: .85rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.cta { background: var(--sea-deep); color: #F6F1EA; margin-top: 2.5rem; padding: 1.5rem; }
.cta p { color: rgba(246,241,234,.8); margin: .4rem 0 1rem; }
footer { border-top: 1px solid var(--border); }
.foot-inner { padding-top: 2rem; padding-bottom: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.foot-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.foot-links a, .foot-copy { color: var(--on-3); font-size: .78rem; }
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .compare { display: block; overflow-x: auto; }
}

/* ---------------------------------------------------------------------- */
/* One-column index and in-article figures (founder 2026-08-10)            */
/* ---------------------------------------------------------------------- */

/* The two-column card grid gave every post the same weight and left no room
   for a picture. One column per post, illustration beside the copy. */
.post-list { margin: clamp(2.2rem, 6vh, 3.5rem) 0; border-top: 1px solid var(--border); }
.post-row {
  display: grid; grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 2.6rem); align-items: center;
  padding: clamp(1.6rem, 4vw, 2.4rem) 0; border-bottom: 1px solid var(--border);
}
.post-row:hover .post-more { color: var(--on); }
.post-art { min-width: 0; }
.post-art svg { width: 100%; height: auto; }
.post-copy { min-width: 0; }
.post-copy h2 {
  color: var(--on); font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: -.025em; line-height: 1.1; margin: .7rem 0 .6rem;
}
.post-copy p { color: var(--on-2); font-size: .95rem; max-width: 54ch; }
.post-more {
  display: inline-block; margin-top: .9rem; font-size: .82rem;
  font-weight: 620; color: var(--brand);
}
@media (max-width: 640px) {
  .post-row { grid-template-columns: 1fr; gap: 1rem; }
  .post-art { max-width: 320px; }
}

/* Figures inside an article. The illustrations are drawings of the product's
   own ideas, so they sit on the tinted surface rather than in a card. */
.fig { margin: 2rem 0; }
.fig svg { width: 100%; height: auto; background: var(--pastel); border-radius: 14px; padding: 1rem; }
.fig figcaption { color: var(--on-3); font-size: .82rem; margin-top: .6rem; line-height: 1.6; }
/* The screenshots carry their own device frame, so no card and no shadow. */
.fig.shot { display: flex; flex-direction: column; align-items: center; }
/* `picture` is inline by default, so a percentage width on the img resolves
   against a zero-width box and the screenshot collapses. Same trap as the
   landing page hero. */
.fig.shot picture { display: block; width: min(100%, 300px); }
.fig.shot img { width: 100%; height: auto; }
.fig.shot figcaption { text-align: center; max-width: 46ch; }

/* SVG colour: var() inside presentation attributes resolves inconsistently,
   so every fill and stroke is a class. */
.f-brand { fill: var(--brand); } .f-gold { fill: var(--gold); } .f-on3 { fill: var(--on-3); }
.s-brand { stroke: var(--brand); } .s-border { stroke: var(--border); }
.s-pastel { stroke: var(--pastel); } .s-apricot { stroke: var(--apricot, #F6AF79); }
.s-dusk { stroke: var(--dusk, #2C3E9C); } .s-on { stroke: var(--on); } .s-on3 { stroke: var(--on-3); }
.lbl { fill: var(--on-3); font-size: 11px; font-weight: 650; letter-spacing: 1.5px; }
.lbl-hi { fill: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; }
.ring-value { fill: var(--on); font-size: 26px; font-weight: 760; letter-spacing: -.5px; }

/* Sibling posts, so six pages stop being six dead ends. */
.keep-reading { margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--border); }
.keep-reading h2 { font-size: 1.1rem; margin: 0 0 1rem; letter-spacing: -.01em; }
.next-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.next-card { background: var(--bg); padding: 1.1rem; display: block; }
.next-card strong { display: block; color: var(--on); font-size: .98rem; line-height: 1.25; margin: .5rem 0 .4rem; letter-spacing: -.01em; }
.next-sum { color: var(--on-2); font-size: .85rem; line-height: 1.55; }
@media (max-width: 640px) { .next-grid { grid-template-columns: 1fr; } }
