  :root {
    --ground: #f5f6f8;
    --surface: #ffffff;
    --surface-2: #eceff4;
    --ink: #12151b;
    --muted: #596172;
    --line: #dce0e7;
    --pad: #1c8448;
    --pad-soft: #e2f3e8;
    --clip: #2c55e0;
    --clip-soft: #e5ebfc;
    --plus: #f5961e;
    --brand: #e0287d;
    --plus-ink: #1d1204;
    --kw: #1d3fcf;
    --cm: #2b7a34;
    --key-top: #ffffff;
    --key-side: #c7ccd6;
    --key-ink: #1a1e26;
    --shadow: 0 34px 70px -28px rgba(18, 28, 60, .45);
    --glow: rgba(44, 85, 224, .08);
    --show-light: block;
    --show-dark: none;
    --radius: 12px;
    --display: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
    --mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --ground: #0c0f14;
      --surface: #151922;
      --surface-2: #1c212c;
      --ink: #eceff5;
      --muted: #9aa3b5;
      --line: #2a303c;
      --pad: #43c57d;
      --pad-soft: #11281b;
      --clip: #7294ff;
      --clip-soft: #161f3d;
      --plus: #ffa43a;
      --brand: #ff5fa8;
      --plus-ink: #1d1204;
      --kw: #86a6ff;
      --cm: #6fc27b;
      --key-top: #262c38;
      --key-side: #07090c;
      --key-ink: #e9edf4;
      --shadow: 0 34px 70px -28px rgba(0, 0, 0, .8);
      --glow: rgba(114, 148, 255, .08);
      --show-light: none;
      --show-dark: block;
    }
  }
  :root[data-theme="dark"] {
    --ground: #0c0f14;
    --surface: #151922;
    --surface-2: #1c212c;
    --ink: #eceff5;
    --muted: #9aa3b5;
    --line: #2a303c;
    --pad: #43c57d;
    --pad-soft: #11281b;
    --clip: #7294ff;
    --clip-soft: #161f3d;
    --plus: #ffa43a;
    --plus-ink: #1d1204;
    --kw: #86a6ff;
    --cm: #6fc27b;
    --key-top: #262c38;
    --key-side: #07090c;
    --key-ink: #e9edf4;
    --shadow: 0 34px 70px -28px rgba(0, 0, 0, .8);
    --glow: rgba(114, 148, 255, .08);
    --show-light: none;
    --show-dark: block;
    --brand: #ff5fa8;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  body {
    background: var(--ground);
    color: var(--ink);
    font: 400 17px/1.6 var(--display);
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; }
  :focus-visible { outline: 2px solid var(--clip); outline-offset: 3px; border-radius: 6px; }
  .wrap { max-width: 1160px; margin-inline: auto; padding-inline: 24px; }
  @media (max-width: 520px) { .wrap { padding-inline: 16px; } }
  .only-light { display: var(--show-light); }
  .only-dark { display: var(--show-dark); }

  /* Code-comment eyebrows: the page speaks the editor's language. */
  .eyebrow { font: 600 13px/1.4 var(--mono); color: var(--cm); letter-spacing: .01em; margin: 0 0 14px; }
  h1, h2, h3 { font-family: var(--display); text-wrap: balance; margin: 0; }
  h2 { font-size: clamp(30px, 4.2vw, 46px); line-height: 1.08; letter-spacing: -0.025em; font-weight: 800; }
  h3 { font-size: 19px; line-height: 1.3; font-weight: 700; letter-spacing: -0.01em; }
  p { margin: 0; }
  .lead { font-size: 19px; color: var(--muted); max-width: 60ch; }

  kbd {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 1.9em; height: 1.9em; padding: 0 .5em;
    font: 600 .82em/1 var(--mono); color: var(--key-ink);
    background: var(--key-top); border: 1px solid var(--line); border-radius: 7px;
    box-shadow: 0 2px 0 var(--key-side);
  }

  .btn {
    display: inline-flex; align-items: center; gap: 10px; justify-content: center;
    min-height: 48px; padding: 0 22px; border-radius: 999px;
    font: 700 16px/1 var(--display); text-decoration: none; cursor: pointer; border: 0;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .btn-buy { background: var(--plus); color: var(--plus-ink); box-shadow: 0 10px 24px -12px var(--plus); }
  .btn-buy:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -12px var(--plus); }
  .btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
  .btn-ghost:hover { border-color: var(--muted); }
  @media (prefers-reduced-motion: reduce) { .btn, .btn:hover { transition: none; transform: none; } }

  /* ---------- top bar ---------- */
  .top {
    position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20;
    background: color-mix(in srgb, var(--ground) 86%, transparent);
    backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .top .wrap { display: flex; align-items: center; gap: 24px; height: 62px; }
  .brand { display: flex; align-items: center; gap: 8px; font-weight: 800; letter-spacing: -0.01em; text-decoration: none; }
  .brand img { width: 28px; height: 28px; }
  .brand span { margin-left: 4px; }
  .top nav { display: flex; gap: 22px; margin-left: auto; font-size: 15px; font-weight: 500; }
  .top nav a { text-decoration: none; color: var(--muted); }
  .top nav a:hover { color: var(--ink); }
  .top .btn { min-height: 38px; padding: 0 16px; font-size: 14px; }
  .top .lang {
    font: 600 12px/1 var(--mono); letter-spacing: .04em; color: var(--muted); text-decoration: none;
    padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px;
  }
  .top .lang:hover { color: var(--ink); border-color: var(--muted); }
  @media (max-width: 760px) { .top nav { display: none; } .top .lang { margin-left: auto; } }
  @media (max-width: 420px) { .top .wrap { gap: 14px; } .brand span { display: none; } }

  /* ---------- the page in the other language ---------- */
  .lang-hint { background: var(--clip-soft); color: var(--ink); font-size: 14px; }
  .lang-hint .wrap { display: flex; align-items: center; gap: 12px; min-height: 44px; flex-wrap: wrap; }
  .lang-hint a { font-weight: 700; color: var(--clip); }
  .lang-hint button { margin-left: auto; border: 0; background: transparent; color: var(--muted); font: 400 22px/1 var(--mono); cursor: pointer; padding: 4px 6px; }

  /* ---------- hero ---------- */
  .hero { padding-block: 64px 40px; overflow: hidden; }
  .hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 48px; align-items: center; }
  .hero h1 { font-size: clamp(40px, 5.6vw, 68px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 800; }
  .hero h1 .q { display: block; color: var(--muted); font-weight: 700; }
  .hero h1 .pad { color: var(--pad); }
  .hero h1 .clip { color: var(--clip); }
  .hero .lead { margin-top: 22px; }
  .cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
  .fine { margin-top: 14px; font-size: 14px; color: var(--muted); }
  .fine b { color: var(--ink); font-weight: 600; }

  .swaps { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 34px; padding-top: 22px; border-top: 1px dashed var(--line); }
  .swap { display: grid; gap: 6px; }
  .swap-label { font-size: 13px; color: var(--muted); }
  .swap-keys { position: relative; height: 34px; perspective: 400px; cursor: default; }
  .swap-flip { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform .6s cubic-bezier(.3, 1.4, .5, 1); }
  .swap-face { position: absolute; inset: 0 auto 0 0; display: flex; gap: 5px; align-items: center; backface-visibility: hidden; -webkit-backface-visibility: hidden; white-space: nowrap; }
  .swap-face.mac { transform: rotateX(180deg); }
  .swap.flipped .swap-flip { transform: rotateX(180deg); }
  .swap-keys:hover .swap-flip { transform: rotateX(0deg); }
  .swap-face.win kbd { color: var(--muted); }
  .swap-sizer { visibility: hidden; display: flex; gap: 5px; }
  @media (prefers-reduced-motion: reduce) { .swap-flip { transition: none; } }

  .hero-art { position: relative; }
  .shot { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow), 0 0 0 1px var(--line); }
  .hero-art .art-clip { position: absolute; width: 62%; right: -6%; bottom: -14%; }
  .hero-art .art-clip .shot { box-shadow: var(--shadow), 0 0 0 1px var(--line); }
  .hotkey-hint {
    position: absolute; left: -18px; bottom: 6%; z-index: 2;
    display: flex; align-items: center; gap: 8px; padding: 8px 12px 8px 10px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
    font-size: 13px; font-weight: 500; box-shadow: 0 12px 30px -14px rgba(0, 0, 0, .35); cursor: pointer;
    color: var(--ink);
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-art { margin-bottom: 60px; }
    .hotkey-hint { left: 8px; }
  }

  /* ---------- sections ---------- */
  section { padding-block: 88px; }
  .section-head { display: grid; gap: 16px; max-width: 760px; margin-bottom: 44px; }
  .band { background: var(--surface); border-block: 1px solid var(--line); }

  /* ---------- keyboard translation ---------- */
  .dict { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .dict-col { background: var(--ground); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
  .dict-col header { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
  .dict-col header img { width: 36px; height: 36px; }
  .dict-col header p { font-size: 14px; color: var(--muted); }
  .dict-col header strong { display: block; font-size: 16px; color: var(--ink); }
  .dict-table { width: 100%; border-collapse: collapse; font-size: 15px; }
  .dict-table th { text-align: left; font: 600 12px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding: 14px 20px 8px; }
  .dict-table td { padding: 10px 20px; border-top: 1px solid var(--line); vertical-align: middle; }
  .dict-table td:first-child { color: var(--ink); }
  .dict-table .was { color: var(--muted); font: 400 13px/1 var(--mono); white-space: nowrap; }
  .dict-table .now { white-space: nowrap; }
  .dict-table .now kbd { font-size: 12px; }
  .dict-note { margin-top: 18px; font-size: 14px; color: var(--muted); }
  @media (max-width: 860px) { .dict { grid-template-columns: 1fr; } }
  .table-scroll { overflow-x: auto; }

  /* ---------- product heads ---------- */
  .product-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
  .product-head img { width: 64px; height: 64px; }
  .product-head .name { font: 800 22px/1.1 var(--display); letter-spacing: -0.02em; }
  .product-head .for { font: 400 14px/1.4 var(--mono); color: var(--muted); margin-top: 4px; }
  .price-chip { margin-left: auto; font: 700 15px/1 var(--display); padding: 10px 14px; border-radius: 999px; background: var(--surface-2); white-space: nowrap; }

  /* ---------- screenshot viewer ---------- */
  .viewer-tabs { display: inline-flex; gap: 4px; padding: 4px; background: var(--surface-2); border-radius: 999px; margin-bottom: 18px; flex-wrap: wrap; }
  .viewer-tabs button {
    border: 0; background: transparent; color: var(--muted); cursor: pointer;
    font: 600 14px/1 var(--display); padding: 10px 16px; border-radius: 999px;
  }
  .viewer-tabs button[aria-selected="true"] { background: var(--surface); color: var(--ink); box-shadow: 0 1px 3px rgba(0, 0, 0, .12); }
  .viewer figure { margin: 0; }
  .viewer figcaption { margin-top: 16px; font-size: 14px; color: var(--muted); max-width: 70ch; }

  /* ---------- feature grid ---------- */
  .features { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 28px; margin-top: 56px; }
  .feature { display: grid; gap: 10px; align-content: start; }
  .feature .tag { justify-self: start; font: 600 13px/1 var(--mono); padding: 7px 10px; border-radius: 7px; background: var(--pad-soft); color: var(--pad); }
  .clip-zone .feature .tag { background: var(--clip-soft); color: var(--clip); }
  .feature p { font-size: 15px; color: var(--muted); }
  @media (max-width: 980px) { .features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (max-width: 520px) { .features { grid-template-columns: 1fr; } }

  /* ---------- Clip Lab demo ---------- */
  .clip-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 48px; align-items: start; }
  @media (max-width: 940px) { .clip-grid { grid-template-columns: 1fr; } }
  .demo { position: relative; }
  .demo-intro { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 15px; color: var(--muted); margin-bottom: 14px; }
  .panel {
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
    box-shadow: var(--shadow); transition: box-shadow .3s ease, transform .3s ease;
  }
  .panel.pulse { box-shadow: var(--shadow), 0 0 0 4px var(--clip); }
  @media (prefers-reduced-motion: reduce) { .panel { transition: none; } }
  .panel-top { display: flex; gap: 10px; align-items: center; padding: 12px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
  .search { flex: 1 1 200px; display: flex; align-items: center; gap: 8px; background: var(--surface-2); border-radius: 9px; padding: 0 10px; height: 38px; }
  .search svg { flex: none; color: var(--muted); }
  .search input { flex: 1; min-width: 0; border: 0; background: transparent; color: var(--ink); font: 400 15px/1 var(--display); outline: none; }
  .search input::placeholder { color: var(--muted); }
  .seg { display: flex; background: var(--surface-2); border-radius: 9px; padding: 3px; gap: 2px; }
  .seg button { border: 0; background: transparent; color: var(--muted); font: 600 12.5px/1 var(--display); padding: 8px 10px; border-radius: 7px; cursor: pointer; }
  .seg button[aria-pressed="true"] { background: var(--surface); color: var(--ink); box-shadow: 0 1px 2px rgba(0, 0, 0, .12); }
  .panel-body { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); min-height: 330px; }
  .panel-body ul { position: relative; list-style: none; margin: 0; padding: 6px; border-right: 1px solid var(--line); max-height: 360px; overflow-y: auto; }
  .row { display: grid; grid-template-columns: 16px 30px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 7px 8px; border-radius: 8px; cursor: pointer; }
  .row[aria-selected="true"] { background: var(--clip-soft); }
  .row .n { font: 600 11px/1 var(--mono); color: var(--muted); text-align: center; }
  .row .ico { width: 30px; height: 30px; border-radius: 7px; display: grid; place-items: center; background: var(--surface-2); color: var(--muted); font: 600 11px/1 var(--mono); overflow: hidden; }
  .row .ico.img { background: linear-gradient(135deg, #ff5f8f, #ffb347 60%, #ffe066); }
  .row .t { min-width: 0; }
  .row .t b { display: block; font-weight: 500; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .row .t span { display: block; font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .row .pin { color: var(--plus); font-size: 12px; }
  .empty { padding: 30px 16px; text-align: center; color: var(--muted); font-size: 14px; }
  .preview { padding: 16px; display: grid; align-content: space-between; gap: 12px; min-width: 0; }
  .preview pre { margin: 0; font: 400 13px/1.55 var(--mono); white-space: pre-wrap; word-break: break-word; color: var(--ink); }
  .preview .pimg { aspect-ratio: 16 / 10; border-radius: 8px; background: linear-gradient(135deg, #ff5f8f, #ffb347 60%, #ffe066); max-width: 100%; }
  .preview .meta { font-size: 12px; color: var(--muted); }
  /* The screenshot in the demo: a small invoice, with the text read in it underneath. */
  .row .ico.img.doc { background: linear-gradient(#4f4dcc 0 34%, #fff 34%); box-shadow: inset 0 0 0 1px var(--line); }
  .preview .pimg.doc { aspect-ratio: auto; display: grid; padding: 12px 16px; background: linear-gradient(120deg, #dbe5f8, #f2e3f2); }
  .pimg.doc .sheet { background: #fff; color: #1f1f1f; border-radius: 6px; box-shadow: 0 2px 8px rgba(0, 0, 0, .16); overflow: hidden; font-size: 9.5px; line-height: 1.35; }
  .pimg.doc .band { display: flex; justify-content: space-between; gap: 8px; padding: 7px 10px; background: #4f4dcc; color: #fff; font-weight: 700; font-size: 10.5px; }
  .pimg.doc .band span + span { font-weight: 500; font-size: 8.5px; opacity: .9; }
  .pimg.doc dl { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 3px 14px; margin: 0; padding: 8px 10px 10px; }
  .pimg.doc dt { color: #737373; white-space: nowrap; }
  .pimg.doc dd, .pimg.doc .band span { margin: 0; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .preview .ocr { display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 2px 14px; font-size: 13px; line-height: 1.45; color: var(--ink); overflow-wrap: anywhere; }
  .nowrap { white-space: nowrap; }
  .panel-foot { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 9px 14px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); }
  @media (max-width: 600px) {
    .panel-body { grid-template-columns: 1fr; }
    .preview { display: none; }
    .panel-body ul { border-right: 0; }
  }
  .toast {
    position: absolute; left: 50%; bottom: -22px; transform: translate(-50%, 8px);
    background: var(--ink); color: var(--ground); font-size: 14px; font-weight: 500;
    padding: 10px 16px; border-radius: 999px; opacity: 0; pointer-events: none; white-space: nowrap;
    max-width: calc(100% - 16px); overflow: hidden; text-overflow: ellipsis;
    transition: opacity .2s ease, transform .2s ease;
  }
  .toast.on { opacity: 1; transform: translate(-50%, 0); }

  .checks { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
  .checks li { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 12px; align-items: baseline; }
  .checks li kbd { min-width: 3.2em; }
  .checks li p { font-size: 15px; color: var(--muted); }
  .checks li p b { color: var(--ink); font-weight: 600; }

  /* ---------- pricing ---------- */
  .plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
  .plan { display: grid; grid-template-rows: auto auto 1fr auto; gap: 16px; padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; }
  .plan.best { border: 2px solid var(--plus); position: relative; }
  .plan.best::before {
    content: attr(data-badge); position: absolute; top: -13px; left: 24px;
    background: var(--plus); color: var(--plus-ink); font: 700 12px/1 var(--display); padding: 7px 10px; border-radius: 999px;
  }
  .plan-name { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
  .plan-name img { width: 34px; height: 34px; }
  .plan-name .duo { display: flex; }
  .plan-name .duo img + img { margin-left: -10px; }
  .price { font: 800 44px/1 var(--display); letter-spacing: -0.02em; }
  .price small { display: block; margin-top: 8px; font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
  .plan ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 15px; display: grid; gap: 6px; }
  .plan .btn { width: 100%; }
  .plans-note { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14px; color: var(--muted); }
  @media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 520px; } }

  .trial {
    margin-top: 56px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center;
    padding: 28px; border-radius: 16px; background: var(--surface-2);
  }
  .trial h3 { font-size: 22px; }
  .trial p { color: var(--muted); font-size: 15px; margin-top: 6px; }
  .trial-downloads { display: grid; gap: 10px; min-width: 240px; }
  .trial-downloads small { font-weight: 500; opacity: .7; font-size: 13px; }
  .steps { margin: 14px 0 0; padding-left: 20px; color: var(--muted); font-size: 15px; display: grid; gap: 4px; }
  @media (max-width: 760px) { .trial { grid-template-columns: 1fr; } }

  /* ---------- FAQ ---------- */
  .faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
  @media (max-width: 860px) { .faq { grid-template-columns: 1fr; } }
  details { border-top: 1px solid var(--line); padding-block: 18px; }
  summary { cursor: pointer; font-weight: 700; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
  summary::-webkit-details-marker { display: none; }
  summary::after { content: "+"; font: 400 22px/1 var(--mono); color: var(--muted); }
  details[open] summary::after { content: "−"; }
  details p { margin-top: 10px; color: var(--muted); font-size: 15px; max-width: 62ch; }

  footer { padding-block: 40px 56px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
  footer .wrap { display: grid; gap: 10px; }
  footer .row-f { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }

  /* ---------- Markdown spotlight ---------- */
  .spotlight {
    display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: 48px; align-items: center;
    margin-top: 80px; padding-top: 56px; border-top: 1px dashed var(--line);
  }
  .spotlight h3 { font-size: clamp(26px, 3.2vw, 36px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 800; }
  .spotlight .copy p { margin-top: 16px; color: var(--muted); font-size: 17px; }
  .spotlight .copy p b { color: var(--ink); font-weight: 600; }
  .spot-list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
  .spot-list li { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 12px; align-items: baseline; font-size: 15px; color: var(--muted); }
  .spot-list li b { color: var(--ink); font-weight: 600; }
  .spot-list .tag { font: 600 12px/1 var(--mono); padding: 6px 8px; border-radius: 7px; background: var(--pad-soft); color: var(--pad); white-space: nowrap; }
  .spotlight figure { margin: 0; }
  .spotlight figcaption { margin-top: 14px; font-size: 14px; color: var(--muted); }
  @media (max-width: 940px) { .spotlight { grid-template-columns: 1fr; gap: 32px; } }

  /* ---------- AI (version 1.3) ---------- */
  .ai-mark { width: 1em; height: 1em; flex: none; vertical-align: -0.12em; margin-right: .28em; }
  .ai-pill {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 7px 14px 7px 10px;
    border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--ink);
    font-size: 14px; text-decoration: none; box-shadow: 0 0 0 4px var(--glow);
  }
  .ai-pill .ai-mark { width: 18px; height: 18px; margin: 0; }
  .ai-pill b { font-weight: 700; }
  .ai-pill:hover { border-color: var(--clip); }
  .nav-ai { font-weight: 700; background: linear-gradient(100deg, var(--pad), var(--clip) 60%, var(--plus)); -webkit-background-clip: text; background-clip: text; color: transparent !important; }
  .ai-zone {
    position: relative; padding-block: 96px; border-block: 1px solid var(--line); overflow: hidden;
    background:
      radial-gradient(60% 55% at 12% 0%, color-mix(in srgb, var(--pad) 14%, transparent), transparent 70%),
      radial-gradient(55% 60% at 95% 30%, color-mix(in srgb, var(--clip) 16%, transparent), transparent 70%),
      radial-gradient(45% 50% at 60% 100%, color-mix(in srgb, var(--plus) 12%, transparent), transparent 70%),
      var(--surface);
  }
  .ai-zone h2 { display: block; }
  .ai-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 40px; align-items: center; }
  .ai-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .ai-card {
    display: grid; gap: 8px; align-content: start; padding: 18px; border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 82%, transparent); border: 1px solid var(--line);
    backdrop-filter: blur(6px);
  }
  .ai-card h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
  .ai-card p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }
  .ai-card .apps { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
  .chip { font: 600 11px/1 var(--mono); padding: 5px 7px; border-radius: 6px; }
  .chip.pad { background: var(--pad-soft); color: var(--pad); }
  .chip.clip { background: var(--clip-soft); color: var(--clip); }
  .ai-shot { margin: 0; }
  .ai-shot figcaption { margin-top: 14px; font-size: 14px; color: var(--muted); }
  .ai-promise { list-style: none; margin: 40px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 16px; color: var(--muted); }
  .ai-promise li::before { content: "✓"; color: var(--pad); font-weight: 800; margin-right: 8px; }
  .ai-promise b { color: var(--ink); }
  .ai-note { margin-top: 14px; font-size: 13px; color: var(--muted); max-width: 760px; }
  @media (max-width: 980px) { .ai-grid { grid-template-columns: 1fr; } }
  @media (max-width: 560px) { .ai-cards { grid-template-columns: 1fr; } .ai-zone { padding-block: 64px; } }

  /* ---------- guide pages («… per Mac», for search) ---------- */
  .crumbs { font: 500 13px/1.4 var(--mono); color: var(--muted); margin: 0 0 18px; }
  .crumbs a { color: var(--muted); }
  .crumbs a:hover { color: var(--ink); }
  .guide-hero { padding-block: 56px 32px; }
  .guide-hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 800; max-width: 22ch; }
  .guide-hero h1 .clip { color: var(--clip); }
  .guide-hero h1 .pad { color: var(--pad); }
  .guide-hero .lead { margin-top: 20px; }
  .answer {
    margin-top: 28px; max-width: 760px; padding: 18px 22px; display: grid; gap: 8px;
    background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--clip); border-radius: var(--radius);
  }
  .answer.pad { border-left-color: var(--pad); }
  .answer p { font-size: 16px; color: var(--muted); }
  .answer b { color: var(--ink); font-weight: 600; }
  .answer .label { font: 600 12px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
  .guide-shot { margin: 44px 0 0; max-width: 980px; }
  .guide-shot figcaption { margin-top: 14px; font-size: 14px; color: var(--muted); max-width: 70ch; }
  section.g { padding-block: 72px; }
  .prose { max-width: 720px; display: grid; gap: 14px; }
  .prose p, .prose li { color: var(--muted); font-size: 17px; }
  .prose b { color: var(--ink); font-weight: 600; }
  .prose ol, .prose ul { margin: 0; padding-left: 22px; display: grid; gap: 8px; }
  .prose a { color: var(--clip); }
  .versus { width: 100%; border-collapse: collapse; font-size: 15px; }
  .versus-wrap { max-width: 900px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow-x: auto; }
  .versus th, .versus td { text-align: left; padding: 12px 18px; border-top: 1px solid var(--line); vertical-align: top; }
  .versus thead th { border-top: 0; font: 600 12px/1.3 var(--mono); letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
  .versus tbody th { font-weight: 500; color: var(--ink); }
  .versus td { color: var(--muted); }
  .versus .ours { background: color-mix(in srgb, var(--clip-soft) 55%, transparent); color: var(--ink); }
  .versus.pad .ours { background: color-mix(in srgb, var(--pad-soft) 55%, transparent); }
  .versus thead .ours { color: var(--clip); }
  .versus.pad thead .ours { color: var(--pad); }
  .versus .y::before { content: "✓ "; color: var(--pad); font-weight: 800; }
  .versus .n::before { content: "— "; }
  @media (max-width: 600px) {
    .versus { font-size: 13.5px; }
    .versus th, .versus td { padding: 10px 9px; }
    .versus kbd { font-size: 11px; }
  }
  .versus-note { margin-top: 14px; font-size: 13px; color: var(--muted); max-width: 900px; }
  .guide-dict { max-width: 640px; }
  .related { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ---- bettybyte wordmark (footer) ---- */
.bb { display: inline-flex; vertical-align: -0.28em; color: var(--ink); }
.bb-logo { height: 1.25em; width: auto; }
.bb-logo .cur { fill: var(--brand); }
