/* ============================================================
   Microsome — landing page styles
   Type: Inter · Surface: #f7f6f3 · Accent link: #0a85d1
   ============================================================ */

:root {
  --bg: #f7f6f3;
  --nav-bg: rgba(247,246,243,0.82);
  --ink: #121212;
  --ink-soft: #1f1f1f;
  --heading: rgba(41,41,41,0.92);
  --muted: #6b6f76;
  --muted-2: #8b8f96;
  --line: rgba(0,0,0,0.10);
  --line-soft: rgba(0,0,0,0.06);
  --card: #ffffff;
  --card-tint: #f0efeb;
  --blue: #0a85d1;
  --radius: 14px;
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);

  /* persona tints */
  --t-blue-bg: #eef3ff;      --t-blue-fg: #2563eb;
  --t-green-bg: #eaf7ee;     --t-green-fg: #16a34a;
  --t-red-bg: #fdeeee;       --t-red-fg: #e0484d;
  --t-amber-bg: #fdf5e6;     --t-amber-fg: #d99a25;
  --t-gray-bg: #f1f2f4;      --t-gray-fg: #565b63;
  --t-purple-bg: #f3eefe;    --t-purple-fg: #8b5cf6;
  --t-orange-bg: #fdeee8;    --t-orange-fg: #ea6a3a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ───────────────── Nav ───────────────── */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: saturate(160%) blur(12px);
  padding-top: 12px;
}
.nav-inner {
  position: relative;
  height: 76px; display: flex; align-items: center; gap: 28px;
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.brand-logo { height: 48px; width: 48px; flex: none; display: block; }
.brand-name { display: inline-block; line-height: 1; }
.footer-brand .brand-logo { height: 52px; width: 52px; }
.brand .mark {
  width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center;
  background: var(--ink); color: #fff;
}
.brand .mark svg { width: 15px; height: 15px; }
/* absolutely centered on the page so the links sit dead-center regardless of brand width */
nav.primary { display: flex; align-items: center; gap: 4px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; color: #2b2d31; font-weight: 450;
  padding: 7px 11px; border-radius: 8px; cursor: pointer;
  transition: background .15s, color .15s; background: none; border: 0; font-family: inherit;
}
.nav-link:hover, .nav-item.open .nav-link { background: rgba(0,0,0,0.06); }
.nav-link svg { width: 14px; height: 14px; opacity: .6; transition: transform .2s; }
.nav-item.open .nav-link svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 12px 40px -12px rgba(0,0,0,.22); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s; z-index: 60;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; gap: 11px; align-items: flex-start; padding: 9px 10px; border-radius: 9px;
  transition: background .14s;
}
.dropdown a:hover { background: rgba(0,0,0,0.045); }
.dropdown .di { width: 30px; height: 30px; border-radius: 8px; background: var(--card-tint); display: grid; place-items: center; flex-shrink: 0; color: var(--ink-soft); }
.dropdown .di svg { width: 16px; height: 16px; }
.dropdown .dt { display: block; font-size: 14px; font-weight: 550; color: var(--ink-soft); }
.dropdown .dd { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; line-height: 1.35; }
.nav-spacer { flex: 1; }
.nav-right { display: flex; align-items: center; gap: 6px; }
.login { font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: 8px; white-space: nowrap; }
.login:hover { background: rgba(0,0,0,0.05); }
.btn {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-size: 14px; font-weight: 550; line-height: 1;
  border: 0; cursor: pointer; border-radius: 9px;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn svg { width: 14px; height: 14px; }
.btn-dark {
  background: var(--ink); color: #fff; padding: 10px 15px;
  box-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.btn-dark:hover { background: #000; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.20); }
.btn[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-link { color: var(--blue); font-weight: 550; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.btn-link svg { width: 15px; height: 15px; transition: transform .2s; }
.btn-link:hover svg { transform: translateX(3px); }
.menu-toggle { display: none; }

/* mobile sheet */
.mobile-menu {
  position: fixed; inset: 88px 0 auto 0; z-index: 45;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px -20px rgba(0,0,0,.25);
  padding: 12px var(--pad) 22px; display: none; flex-direction: column; gap: 2px;
  transform: translateY(-12px); opacity: 0; transition: opacity .2s, transform .2s;
}
.mobile-menu.show { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a { padding: 13px 8px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .m-cta { margin-top: 14px; justify-content: center; padding: 13px; }

/* ───────────────── Hero (full-screen "blocked" page) ───────────────── */
.hero-block {
  position: relative;
  /* content-height (NOT forced to the viewport) so zooming out never leaves
     an empty hole; sits right under the header */
  display: flex; justify-content: center;
  padding-top: clamp(6px, 1.5vh, 20px);
  padding-bottom: clamp(20px, 4vh, 48px);
}
.hero-block-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: clamp(0.5rem, 1.6vh, 1.2rem);
  text-align: center; width: 100%;
}
.headline {
  font-weight: 700; letter-spacing: -0.035em; line-height: 0.98;
  /* scale to the smaller of width/height so it fits any aspect ratio */
  font-size: clamp(2rem, min(8.8vw, 10.5vh), 5.8rem);
  color: var(--heading); max-width: 16ch; text-wrap: balance;
  user-select: none;
  -webkit-user-select: none;
}
.headline .line { display: inline; }
/* each letter is its own inline-block so it can bounce on its own */
.headline .ltr { display: inline-block; white-space: pre; will-change: transform; }
.headline .ltr:hover { animation: letterBounce .55s cubic-bezier(.28,.84,.42,1); }
.headline .ltr.bounce { animation: letterBounce .6s cubic-bezier(.28,.84,.42,1); }
@keyframes letterBounce {
  0%   { transform: translateY(0); }
  28%  { transform: translateY(-0.22em); }
  52%  { transform: translateY(0); }
  72%  { transform: translateY(-0.08em); }
  100% { transform: translateY(0); }
}
/* push "more" a touch further from "Produce" */
.ramp.up { margin-left: 0.18em; }

/* animated flipping word ("faster" → "deeper" → …) in the sub-headline */
.flip-pill {
  display: inline-flex; align-items: center; gap: 0.36em;
  padding: 0.16em 0.6em; border-radius: 999px;
  background: var(--flip-bg, #eaf7ee);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1; vertical-align: middle; white-space: nowrap; overflow: hidden;
  /* nudge so the cap-height of the word lines up with the surrounding text */
  position: relative; top: -0.06em;
  width: 0; /* set by JS, then transitions */
  transition: background-color .45s ease, width .45s cubic-bezier(.4,0,.2,1);
}
.flip-dot {
  width: 0.46em; height: 0.46em; border-radius: 50%; flex: none;
  background: var(--flip-dot, #16a34a);
  transition: background-color .45s ease;
}
.flip-word {
  display: inline-block; font-family: inherit; font-weight: 600; font-style: normal;
  letter-spacing: 0.01em; color: var(--ink); line-height: 1;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
.flip-word.is-out { transform: translateY(-0.95em); opacity: 0; }
.flip-word.is-pre { transform: translateY(0.95em); opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .flip-pill, .flip-dot, .flip-word { transition: none; }
}

.hero-sub {
  margin: 0 auto; max-width: min(60ch, 100%); width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(14px, min(2.3vw, 2.5vh), 21px); line-height: 1.5;
  color: var(--ink-soft); letter-spacing: 0.04em; text-wrap: balance;
  overflow-wrap: break-word;
}
.hero-sub em { font-style: italic; }
.hero-sub b { font-weight: 700; }

.hero-cta { display: flex; gap: 20px; align-items: center; justify-content: center; flex-wrap: wrap; }

/* illustration absorbs the leftover vertical space and is contained,
   so it scales down on short/wide screens instead of dropping below the fold */
.illo-wrap {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: center;
  margin-top: clamp(0.3rem, 1vh, 0.8rem);
}
/* sized by viewport height so it's big on normal screens and simply scales
   down when zoomed out — never stretched, so no empty gap is created */
.illo-wrap img {
  width: auto; height: auto;
  max-width: min(94vw, 880px);
  max-height: 46vh;
  display: block; object-fit: contain;
  user-select: none; -webkit-user-drag: none;
}

.hero-tag {
  margin: 0 auto clamp(36px, 5vw, 56px);
  font-size: clamp(32px, 5vw, 56px); font-weight: 400; letter-spacing: -0.02em;
  color: #050505; line-height: 1.05; text-wrap: balance; text-align: center;
}
.hero-tag b { font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  .headline .ltr:hover, .headline .ltr.bounce { animation: none; }
}

/* ───────────────── Personas ───────────────── */
section.block { padding-top: clamp(64px, 10vw, 120px); }
.personas-head { text-align: center; }

.persona-grid {
  position: relative;
  margin-top: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.persona {
  position: relative;
  border-radius: 18px; padding: 22px; min-height: 188px;
  display: flex; flex-direction: column;
  border: 1px solid var(--line-soft);
  transition: transform .18s ease, box-shadow .25s ease;
}
.persona:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(0,0,0,.22); }
.persona .ico {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 16px;
}
.persona .ico svg { width: 21px; height: 21px; }
.persona h3 { font-size: 18px; font-weight: 650; letter-spacing: -0.02em; }
.persona p { font-size: 14px; color: var(--muted); margin-top: 7px; flex: 1; text-wrap: pretty; }
.persona .more { margin-top: 14px; font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.persona .more svg { width: 14px; height: 14px; transition: transform .2s; }
.persona:hover .more svg { transform: translateX(3px); }
.row-2 { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 75%; margin: 18px auto 0; }
.and-more { position: relative; text-align: center; margin-top: clamp(40px, 5vw, 56px); font-weight: 650; font-size: 17px; color: var(--ink-soft); }

/* tint helpers */
.t-blue   { background: var(--t-blue-bg); }   .t-blue .ico   { background:#dbe6ff; color:var(--t-blue-fg);} .t-blue .more{color:var(--t-blue-fg);}
.t-green  { background: var(--t-green-bg); }  .t-green .ico  { background:#d6f0de; color:var(--t-green-fg);} .t-green .more{color:var(--t-green-fg);}
.t-red    { background: var(--t-red-bg); }    .t-red .ico    { background:#fbdcdd; color:var(--t-red-fg);} .t-red .more{color:var(--t-red-fg);}
.t-amber  { background: var(--t-amber-bg); }  .t-amber .ico  { background:#fae7c2; color:var(--t-amber-fg);} .t-amber .more{color:var(--t-amber-fg);}
.t-gray   { background: var(--t-gray-bg); }   .t-gray .ico   { background:#e2e4e8; color:var(--t-gray-fg);} .t-gray .more{color:var(--t-gray-fg);}
.t-purple { background: var(--t-purple-bg); } .t-purple .ico { background:#e7ddfd; color:var(--t-purple-fg);} .t-purple .more{color:var(--t-purple-fg);}
.t-orange { background: var(--t-orange-bg); } .t-orange .ico { background:#fbdccf; color:var(--t-orange-fg);} .t-orange .more{color:var(--t-orange-fg);}

/* persona character illustrations removed per design — kept clean */

/* ───────────────── Scroll reveal ───────────────── */
.js-anim .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22,.61,.25,1), transform .75s cubic-bezier(.22,.61,.25,1);
  will-change: opacity, transform;
}
.js-anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ───────────────── Showcase sections ───────────────── */
.showcase { padding-top: clamp(80px, 12vw, 150px); text-align: center; }
.showcase h2 {
  font-size: clamp(34px, 5vw, 60px); font-weight: 500; letter-spacing: -0.02em;
  color: var(--heading); line-height: 1.0; text-wrap: balance;
}
.showcase h2 b { font-weight: 700; }
.showcase .sub-link { margin-top: 18px; }
.showcase .lede {
  display: flex; gap: 12px; align-items: flex-start;
  margin: clamp(22px, 3vw, 34px) auto 0; max-width: 740px;
  font-size: 16px; line-height: 1.45; color: var(--ink-soft); text-align: left;
}
.showcase .lede .lede-ico { flex-shrink: 0; color: var(--blue); margin-top: 1px; }
.showcase .lede .lede-ico svg { width: 18px; height: 18px; }
.showcase .lede.italic { font-style: italic; }
.showcase .lede b { font-weight: 700; font-style: normal; }
.showcase .frame {
  margin: clamp(30px, 4vw, 48px) auto 0; max-width: 1040px;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 30px 60px -28px rgba(0,0,0,.30);
}
.showcase .frame img { width: 100%; height: auto; display: block; }

/* boxed variant — content sits inside a white card */
.showcase .panel {
  max-width: 1080px; margin: clamp(28px, 4vw, 44px) auto 0;
  background: #fff; border: 1px solid #eee; border-radius: 19px;
  padding: clamp(26px, 3.5vw, 44px);
}
.showcase .panel .lede { margin-top: 0; }
.showcase .panel .frame { margin-top: clamp(24px, 3vw, 36px); box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 18px 40px -22px rgba(0,0,0,.22); }

/* ───────────────── Footer ───────────────── */
footer.site {
  margin-top: clamp(48px, 6vw, 96px); border-top: 1px solid var(--line);
  background: #f2f1ed;
}
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-block: clamp(48px, 6vw, 72px); }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 30ch; }
.fcol h5 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); margin-bottom: 14px; }
.fcol a { display: block; font-size: 14.5px; color: #3a3d42; padding: 6px 0; }
.fcol a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 13.5px; color: var(--muted-2); }
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { color: var(--muted); display: grid; place-items: center; }
.footer-bottom .socials a:hover { color: var(--ink); }
.footer-bottom .socials svg { width: 18px; height: 18px; }

/* ── Download pages ── */
.dl-hero {
  padding-top: clamp(64px, 10vw, 100px);
  padding-bottom: clamp(48px, 7vw, 80px);
  text-align: center;
}
.dl-hero-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(14px, 2.5vw, 22px);
}
.dl-platform-icon {
  width: 80px; height: 80px; border-radius: 22px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px -8px rgba(0,0,0,.30);
}
.dl-platform-icon svg { width: 40px; height: 40px; }
.dl-headline {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700; letter-spacing: -0.035em;
  color: var(--heading); line-height: 1.05;
}
.dl-sub {
  font-size: clamp(15px, 2vw, 19px); color: var(--muted);
  letter-spacing: -0.01em; margin-top: -4px;
}
.dl-meta {
  font-size: 13px; color: var(--muted-2); letter-spacing: 0.01em;
  background: var(--card-tint); padding: 6px 14px; border-radius: 99px;
  border: 1px solid var(--line-soft);
}
.dl-cta {
  display: flex; gap: 20px; align-items: center; justify-content: center; flex-wrap: wrap;
  margin-top: 4px;
}
.dl-showcase {
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: 0;
}
.dl-showcase .frame {
  margin: 0 auto; max-width: 1040px;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 30px 60px -28px rgba(0,0,0,.30);
}
.dl-showcase .frame img { width: 100%; height: auto; display: block; }
.dl-features {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(64px, 10vw, 120px);
}
.dl-feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.dl-feat {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: 18px; padding: 28px 24px;
}
.dl-feat-ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--card-tint); color: var(--ink-soft);
  display: grid; place-items: center; margin-bottom: 16px;
}
.dl-feat-ico svg { width: 20px; height: 20px; }
.dl-feat h3 { font-size: 17px; font-weight: 650; letter-spacing: -0.02em; margin-bottom: 8px; }
.dl-feat p { font-size: 14px; color: var(--muted); line-height: 1.55; text-wrap: pretty; }

/* download chooser cards (the single /download page) */
.dl-choose-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  max-width: 820px; margin: clamp(28px, 4vw, 44px) auto 0;
}
.dl-choose-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 20px;
  padding: clamp(26px, 3vw, 38px); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .18s ease, box-shadow .25s ease;
}
.dl-choose-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px -20px rgba(0,0,0,.24); }
.dl-choose-card .dl-platform-icon { width: 64px; height: 64px; border-radius: 18px; }
.dl-choose-card .dl-platform-icon svg { width: 32px; height: 32px; }
.dl-choose-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.025em; }
.dl-choose-card .dl-meta { margin-top: 2px; }
.dl-choose-card .btn { margin-top: 8px; }

/* ── Pricing page ── */
.price-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  max-width: 860px; margin: clamp(28px, 4vw, 48px) auto 0; align-items: stretch;
}
.price-card {
  position: relative; background: var(--card); border: 1px solid var(--line-soft);
  border-radius: 22px; padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column; text-align: left;
}
.price-card.featured { border-color: var(--ink); box-shadow: 0 24px 60px -28px rgba(0,0,0,.30); }
.price-badge {
  position: absolute; top: 18px; right: 18px;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  background: var(--ink); color: #fff; padding: 5px 11px; border-radius: 99px;
}
.price-name { font-size: 15px; font-weight: 650; letter-spacing: .02em; text-transform: uppercase; color: var(--muted); }
.price-amount { font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin-top: 12px; }
.price-per { font-size: 15px; font-weight: 500; color: var(--muted); }
.price-note { font-size: 13.5px; color: var(--muted); margin-top: 8px; }
.price-feats { list-style: none; margin: 20px 0 26px; padding-top: 20px; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 13px; }
.price-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); line-height: 1.45; }
.price-feats li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--blue); margin-top: 1px; }
.price-feats li b { font-weight: 650; }
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; padding: 13px; }
.btn-ghost { background: var(--card-tint); color: var(--ink-soft); padding: 10px 15px; }
.btn-ghost:hover { background: #e7e6e1; }
/* pricing page spacing */
.pricing-hero { padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(28px, 4vw, 48px); }
.price-foot { text-align: center; max-width: 600px; margin: clamp(20px, 3vw, 30px) auto 0; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.price-foot .btn-link { font-size: 13.5px; }

/* ── Solution / Resource sub-pages ── */
.sub-lede {
  max-width: 760px; margin: clamp(22px, 3vw, 34px) auto 0;
  display: flex; gap: 12px; align-items: flex-start; text-align: left;
  font-size: 16px; line-height: 1.55; color: var(--ink-soft);
}
.sub-lede .lede-ico { flex-shrink: 0; color: var(--blue); margin-top: 2px; }
.sub-lede .lede-ico svg { width: 18px; height: 18px; }
.sub-lede b { font-weight: 700; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.story-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 18px; padding: 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.story-card .quote { font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }
.story-card .who { font-size: 13.5px; color: var(--muted); font-weight: 550; }

/* ───────────────── Responsive ───────────────── */
@media (max-width: 980px) {
  nav.primary, .nav-right .login { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; cursor: pointer; }
  .menu-toggle:hover { background: rgba(0,0,0,.05); }
  .menu-toggle svg { width: 20px; height: 20px; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .row-2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .dl-feat-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .persona-grid, .row-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; gap: 14px; }
  .showcase .lede { font-size: 15px; }
  .hero-sub { font-size: 14px; padding-inline: var(--pad); }
  .dl-feat-grid { grid-template-columns: 1fr; }
  .dl-cta { flex-direction: column; gap: 14px; }
  .dl-choose-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
}
