  :root {
    /* Shared with dashboard */
    --bg: #fcfcfc;
    --panel: #ffffff;
    --panel-2: #f7f7f8;
    --panel-3: #f0f0f1;
    --border: #ebebeb;
    --border-soft: #f2f2f3;
    --text: #09090b;
    --text-2: #3f3f46;
    --muted: #71717a;
    --muted-2: #a1a1aa;

    --brand: #5e6ad2;
    --brand-2: #8b92e0;
    --brand-bg: #f4f5fc;
    --green: #00b37a;
    --green-bg: #edfbf5;
    --amber: #f5a623;
    --amber-bg: #fef7e8;
    --red: #f04438;
    --violet: #9f7aea;
    --cyan: #06b6d4;
    --pink: #ec4899;
    --blue: #3b82f6;

    --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    --radius: 10px;
    --radius-sm: 6px;

    --shadow-sm: 0 1px 2px rgba(9,9,11,.04);
    --shadow:    0 1px 2px rgba(9,9,11,.05), 0 4px 16px -6px rgba(9,9,11,.08);
    --shadow-lg: 0 1px 2px rgba(9,9,11,.05), 0 18px 48px -18px rgba(9,9,11,.22);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: -0.003em;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

  /* =============== TOPBAR =============== */
  .topbar {
    position: sticky; top: 0; z-index: 40;
    background: rgba(252,252,252,.8);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
  }
  .topbar-inner {
    display: flex; align-items: center; gap: 32px;
    height: 56px;
    max-width: 1200px; margin: 0 auto; padding: 0 28px;
  }
  .brand { display: inline-flex; align-items: center; gap: 9px; }
  .brand-mark {
    width: 24px; height: 24px; border-radius: 6px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff; display: grid; place-items: center;
    font-weight: 700; font-size: 12px;
  }
  .brand-name { font-weight: 600; font-size: 14.5px; letter-spacing: -0.01em; }

  .nav { display: flex; align-items: center; gap: 2px; }
  .nav a {
    padding: 6px 12px; border-radius: 6px;
    font-size: 13.5px; font-weight: 500; color: var(--text-2);
    transition: color .12s, background .12s;
  }
  .nav a:hover { color: var(--text); background: var(--panel-3); }

  .nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

  /* =============== BUTTONS =============== */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 8px 14px;
    font: inherit; font-size: 13.5px; font-weight: 500;
    border-radius: 6px; border: 1px solid transparent;
    cursor: pointer; white-space: nowrap;
    transition: background .12s, border-color .12s, color .12s, transform .08s;
  }
  .btn:active { transform: translateY(0.5px); }
  .btn-primary {
    background: var(--text); color: #fff; border-color: var(--text);
  }
  .btn-primary:hover { background: #000; border-color: #000; }
  .btn-outline {
    background: var(--panel); color: var(--text); border-color: var(--border);
  }
  .btn-outline:hover { background: var(--panel-2); border-color: #d4d4d8; }
  .btn-ghost { background: transparent; color: var(--text-2); }
  .btn-ghost:hover { background: var(--panel-3); color: var(--text); }
  .btn-lg { padding: 10px 18px; font-size: 14px; border-radius: 8px; }
  .btn svg { width: 14px; height: 14px; }

  /* =============== HERO =============== */
  .hero {
    padding: 80px 0 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    /* subtle grid background */
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--border-soft) 1px, transparent 1px),
      linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(0,0,0,.5), transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(0,0,0,.5), transparent 80%);
    pointer-events: none;
  }
  .hero-inner { position: relative; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px 4px 6px;
    border: 1px solid var(--border);
    background: var(--panel);
    border-radius: 999px;
    font-size: 12px; font-weight: 500; color: var(--text-2);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
  }
  .eyebrow .tag {
    background: var(--brand-bg);
    color: var(--brand);
    font-size: 10.5px; font-weight: 600;
    padding: 2px 7px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.04em;
  }
  .eyebrow svg { width: 11px; height: 11px; color: var(--muted); }

  h1.display {
    font-size: 56px; font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text);
    margin: 0 0 20px;
    max-width: 860px; margin-left: auto; margin-right: auto;
  }
  h1.display em {
    font-style: normal;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
  }
  .lead {
    font-size: 17px; color: var(--text-2); max-width: 620px;
    margin: 0 auto 32px; line-height: 1.55;
  }
  .hero-ctas { display: inline-flex; gap: 10px; align-items: center; }
  .hero-meta {
    margin-top: 20px;
    font-size: 12.5px; color: var(--muted);
    display: inline-flex; align-items: center; gap: 16px;
  }
  .hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }
  .hero-meta svg { width: 13px; height: 13px; color: var(--green); }

  /* =============== PRODUCT PREVIEW =============== */
  .preview-wrap {
    margin-top: 56px;
    position: relative;
  }
  .preview {
    max-width: 1100px; margin: 0 auto;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  .preview-chrome {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: var(--panel-2);
    border-bottom: 1px solid var(--border);
  }
  .preview-chrome .dots { display: flex; gap: 5px; }
  .preview-chrome .dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--panel-3);
  }
  .preview-chrome .url {
    flex: 1; text-align: center;
    font-family: var(--mono); font-size: 11px; color: var(--muted);
  }

  .preview-body {
    display: grid; grid-template-columns: 180px 1fr;
    min-height: 420px;
  }
  .preview-sb {
    background: #0a0a0a; color: #ededed;
    padding: 10px 8px;
    font-size: 12px;
  }
  .preview-sb .ws {
    display: flex; align-items: center; gap: 7px;
    padding: 6px 7px;
    border-radius: 5px;
  }
  .preview-sb .ws .mk {
    width: 18px; height: 18px; border-radius: 4px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    display: grid; place-items: center;
    font-size: 10px; font-weight: 700;
  }
  .preview-sb .ws .n { font-weight: 600; font-size: 12px; }
  .preview-sb .cmdk {
    margin: 8px 4px 12px;
    padding: 4px 8px;
    border-radius: 5px;
    background: #141415;
    border: 1px solid #222224;
    font-size: 11px; color: #808084;
    display: flex; align-items: center; gap: 6px;
  }
  .preview-sb .cmdk .kbd {
    margin-left: auto;
    font-family: var(--mono); font-size: 9.5px;
    padding: 1px 4px; border-radius: 3px;
    background: #0a0a0a; border: 1px solid #222224;
  }
  .preview-sb .label {
    font-size: 9.5px; font-weight: 600;
    color: #5a5a5e; text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 8px 4px;
  }
  .preview-sb .item {
    display: flex; align-items: center; gap: 8px;
    padding: 4px 8px; border-radius: 4px;
    font-size: 11.5px; font-weight: 500;
  }
  .preview-sb .item.active { background: #141415; color: #fff; position: relative; }
  .preview-sb .item.active::before {
    content: ""; position: absolute; left: -2px; top: 6px; bottom: 6px;
    width: 2px; background: var(--brand-2); border-radius: 2px;
  }
  .preview-sb .item svg { width: 12px; height: 12px; color: #808084; }
  .preview-sb .item.active svg { color: #ededed; }
  .preview-sb .item .count {
    margin-left: auto;
    font-family: var(--mono); font-size: 10px;
    color: #5a5a5e;
  }

  .preview-main {
    padding: 20px 22px;
    background: var(--panel);
    overflow: hidden;
  }
  .preview-title {
    font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
    margin: 0 0 4px;
  }
  .preview-sub {
    font-size: 11.5px; color: var(--muted);
    margin: 0 0 14px;
  }
  .preview-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
    margin-bottom: 14px;
  }
  .stat {
    padding: 10px 12px;
    border: 1px solid var(--border);
    background: var(--panel);
    border-radius: 8px;
  }
  .stat .k { font-size: 10.5px; color: var(--muted); font-weight: 500; }
  .stat .v {
    font-size: 17px; font-weight: 600; margin-top: 2px;
    letter-spacing: -0.015em; font-variant-numeric: tabular-nums;
  }
  .stat .d { font-size: 10.5px; color: var(--green); margin-top: 2px; }
  .stat .d.down { color: var(--red); }

  .mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .mini {
    padding: 10px 12px;
    border: 1px solid var(--border); border-radius: 8px;
    background: var(--panel);
  }
  .mini-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 8px;
  }
  .mini-head .t { font-size: 11.5px; font-weight: 600; }
  .mini-head .more {
    font-size: 10.5px; color: var(--muted); font-weight: 500;
  }
  .mini .row { display: flex; align-items: center; gap: 8px; padding: 3px 0; font-size: 11.5px; }
  .mini .row .tick { width: 6px; height: 6px; border-radius: 2px; flex-shrink: 0; }
  .mini .row .txt { flex: 1; color: var(--text-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mini .row .n { color: var(--muted); font-family: var(--mono); font-size: 10px; }

  /* =============== LOGO BAR =============== */
  .logobar {
    padding: 56px 0 24px;
    text-align: center;
  }
  .logobar .label {
    font-size: 12px; color: var(--muted); font-weight: 500;
    letter-spacing: 0.04em; text-transform: uppercase;
    margin-bottom: 22px;
  }
  .logos {
    display: flex; justify-content: center; align-items: center;
    gap: 40px; flex-wrap: wrap;
    color: var(--muted-2);
  }
  .logos .lg { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; opacity: .8; }
  .logos .lg.serif { font-family: Georgia, serif; font-weight: 400; font-style: italic; }
  .logos .lg.mono { font-family: var(--mono); font-size: 15px; }

  /* =============== SECTIONS =============== */
  section.block { padding: 72px 0; }
  .section-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
  .section-eyebrow {
    font-size: 11px; color: var(--brand); font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 10px;
  }
  h2.section-title {
    font-size: 38px; font-weight: 600; letter-spacing: -0.025em;
    line-height: 1.15; margin: 0 0 12px;
  }
  .section-lead {
    font-size: 16px; color: var(--text-2); line-height: 1.55;
    margin: 0;
  }

  /* =============== FEATURE GRID =============== */
  .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .feature {
    padding: 22px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color .12s, transform .12s, box-shadow .12s;
  }
  .feature:hover { border-color: #d4d4d8; box-shadow: var(--shadow); }
  .feature .icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--brand-bg); color: var(--brand);
    display: grid; place-items: center;
    margin-bottom: 14px;
  }
  .feature .icon svg { width: 16px; height: 16px; }
  .feature.g .icon { background: var(--green-bg); color: var(--green); }
  .feature.a .icon { background: var(--amber-bg); color: var(--amber); }
  .feature.v .icon { background: #f5f0ff; color: var(--violet); }
  .feature.c .icon { background: #ecfeff; color: var(--cyan); }
  .feature.p .icon { background: #fdf2f8; color: var(--pink); }
  .feature h3 { font-size: 15px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.01em; }
  .feature p { font-size: 13.5px; color: var(--text-2); margin: 0; line-height: 1.6; }

  /* =============== MODULE SHOWCASE =============== */
  .modules { display: grid; gap: 56px; }
  .module {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
    align-items: center;
  }
  .module.reverse { grid-template-columns: 1fr 1fr; }
  .module.reverse .module-media { order: 2; }
  .module-copy h3 {
    font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
    margin: 0 0 14px; line-height: 1.2;
  }
  .module-copy p {
    font-size: 15px; color: var(--text-2); line-height: 1.65;
    margin: 0 0 20px;
  }
  .module-copy .module-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600;
    color: var(--brand); letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 12px;
  }
  .module-copy .module-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 2px; background: var(--brand);
  }
  .module-copy .bullets { list-style: none; padding: 0; margin: 0; }
  .module-copy .bullets li {
    display: flex; gap: 10px; padding: 6px 0;
    font-size: 13.5px; color: var(--text-2);
  }
  .module-copy .bullets svg {
    width: 15px; height: 15px; color: var(--green); flex-shrink: 0;
    margin-top: 2px;
  }
  .module-copy .cta {
    margin-top: 20px;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px; font-weight: 500; color: var(--brand);
  }
  .module-copy .cta svg { width: 13px; height: 13px; transition: transform .12s; }
  .module-copy .cta:hover svg { transform: translateX(2px); }

  .module-media {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
    min-height: 360px;
  }

  /* ---- Module: Changelog (sample) ---- */
  .cl-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
  .cl-head .title { font-size: 13px; font-weight: 600; }
  .cl-head .actions { display: flex; gap: 6px; }
  .cl-head .pill {
    font-size: 11px; padding: 3px 9px; border-radius: 5px;
    border: 1px solid var(--border); color: var(--text-2);
    background: var(--panel);
  }
  .cl-head .pill.primary { background: var(--text); color: #fff; border-color: var(--text); }

  .cl-entry {
    border: 1px solid var(--border); border-radius: 8px;
    margin-bottom: 10px; overflow: hidden;
  }
  .cl-entry .h {
    padding: 8px 12px; border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #fbfbfb, var(--panel));
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11.5px;
  }
  .cl-entry .kind {
    display: inline-flex; align-items: center; gap: 5px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  }
  .cl-entry .kind .tk { width: 6px; height: 6px; border-radius: 2px; }
  .cl-entry.k-new .kind { color: var(--green); }
  .cl-entry.k-new .kind .tk { background: var(--green); }
  .cl-entry.k-imp .kind { color: var(--blue); }
  .cl-entry.k-imp .kind .tk { background: var(--blue); }
  .cl-entry.k-fix .kind { color: var(--amber); }
  .cl-entry.k-fix .kind .tk { background: var(--amber); }
  .cl-entry .ver {
    font-family: var(--mono); font-size: 10.5px; color: var(--muted);
    padding: 1px 6px; background: var(--panel-2); border-radius: 4px;
    border: 1px solid var(--border);
  }
  .cl-entry .b { padding: 10px 12px; }
  .cl-entry .b h4 { font-size: 13px; font-weight: 600; margin: 0 0 4px; }
  .cl-entry .b p { font-size: 12px; color: var(--text-2); margin: 0; line-height: 1.55; }

  /* ---- Module: Feedback (sample) ---- */
  .fb { display: flex; flex-direction: column; gap: 8px; }
  .fb-item {
    display: grid; grid-template-columns: 44px 1fr;
    gap: 10px; padding: 10px 12px;
    border: 1px solid var(--border); border-radius: 8px;
  }
  .fb-vote {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 4px 6px;
    border: 1px solid var(--border); border-radius: 6px;
    background: var(--panel-2);
  }
  .fb-vote svg { width: 11px; height: 11px; color: var(--muted); }
  .fb-vote .n {
    font-size: 12px; font-weight: 600;
    font-variant-numeric: tabular-nums;
  }
  .fb-vote.voted {
    background: var(--brand); border-color: var(--brand); color: #fff;
  }
  .fb-vote.voted svg { color: #fff; }
  .fb-item h5 { font-size: 13px; font-weight: 600; margin: 0 0 4px; }
  .fb-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); }
  .fb-status {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 1px 7px; border-radius: 4px;
    font-size: 10.5px; font-weight: 500;
    border: 1px solid var(--border); background: var(--panel-2);
  }
  .fb-status .tk { width: 5px; height: 5px; border-radius: 2px; }
  .fb-status.planned { color: var(--blue); background: #eff6ff; border-color: #dbeafe; }
  .fb-status.planned .tk { background: var(--blue); }
  .fb-status.progress { color: var(--violet); background: #f5f0ff; border-color: #e9d5ff; }
  .fb-status.progress .tk { background: var(--violet); }
  .fb-status.done { color: var(--green); background: var(--green-bg); border-color: #bbf7d0; }
  .fb-status.done .tk { background: var(--green); }

  /* ---- Module: Roadmap (sample) ---- */
  .rm-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .rm-col {
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px;
    min-height: 220px;
  }
  .rm-col-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 8px 4px;
    font-size: 10.5px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .rm-col-head .tk { width: 6px; height: 6px; border-radius: 2px; margin-right: 5px; display: inline-block; vertical-align: middle; }
  .rm-col-head .n {
    font-size: 10px; color: var(--muted); font-weight: 500;
    padding: 1px 6px; border-radius: 999px;
    background: var(--panel); border: 1px solid var(--border);
    font-variant-numeric: tabular-nums;
  }
  .rm-col.planned .rm-col-head { color: var(--blue); }
  .rm-col.planned .rm-col-head .tk { background: var(--blue); }
  .rm-col.progress .rm-col-head { color: var(--violet); }
  .rm-col.progress .rm-col-head .tk { background: var(--violet); }
  .rm-col.done .rm-col-head { color: var(--green); }
  .rm-col.done .rm-col-head .tk { background: var(--green); }

  .rm-card {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: 7px; padding: 9px 10px;
    margin-top: 6px;
    font-size: 11.5px;
  }
  .rm-card h6 { font-size: 12px; font-weight: 600; margin: 0 0 4px; letter-spacing: -0.005em; }
  .rm-card .progress {
    height: 3px; background: var(--panel-3); border-radius: 2px; margin-top: 6px;
    overflow: hidden;
  }
  .rm-card .progress .fill {
    height: 100%; background: linear-gradient(90deg, var(--violet), #c4b5fd);
    border-radius: 2px;
  }
  .rm-card .eta {
    display: inline-block; margin-top: 6px;
    font-family: var(--mono); font-size: 9.5px; color: var(--muted);
    padding: 1px 5px; background: var(--panel-2); border-radius: 3px;
    border: 1px solid var(--border);
  }

  /* =============== METRICS STRIP =============== */
  .metrics {
    background: #0a0a0a;
    color: #ededed;
    padding: 56px 0;
  }
  .metrics-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
    text-align: center;
  }
  .metric .v {
    font-size: 40px; font-weight: 600;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, #fff, #808084);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    line-height: 1;
  }
  .metric .l {
    font-size: 12px; color: #808084;
    margin-top: 8px; letter-spacing: 0.02em;
  }

  /* =============== TESTIMONIAL =============== */
  .testi {
    max-width: 760px; margin: 0 auto;
    padding: 40px 36px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
  }
  .testi .q {
    font-size: 22px; font-weight: 500; letter-spacing: -0.015em;
    line-height: 1.4; color: var(--text);
    margin: 0 0 20px;
  }
  .testi .q::before { content: "“"; color: var(--brand); }
  .testi .q::after { content: "”"; color: var(--brand); }
  .testi .author { display: inline-flex; align-items: center; gap: 10px; }
  .testi .av {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--pink));
    display: grid; place-items: center; color: #fff;
    font-weight: 600; font-size: 13px;
  }
  .testi .meta { text-align: left; font-size: 12.5px; }
  .testi .meta .n { font-weight: 600; }
  .testi .meta .r { color: var(--muted); font-size: 11.5px; }

  /* =============== PRICING =============== */
  .pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .plan {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    display: flex; flex-direction: column;
  }
  .plan.featured {
    border-color: var(--text);
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .plan.featured::before {
    content: "Most popular";
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--text); color: #fff;
    font-size: 10.5px; font-weight: 600;
    padding: 3px 10px; border-radius: 999px;
    letter-spacing: 0.04em;
  }
  .plan .name {
    font-size: 13px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--text-2);
    margin-bottom: 8px;
  }
  .plan .price { display: baseline; margin-bottom: 6px; }
  .plan .price .amt {
    font-size: 36px; font-weight: 600; letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
  }
  .plan .price .per { font-size: 13px; color: var(--muted); margin-left: 4px; }
  .plan .plan-desc {
    font-size: 13px; color: var(--text-2); margin: 0 0 18px;
    min-height: 40px;
  }
  .plan .btn { margin-bottom: 20px; }
  .plan ul { list-style: none; padding: 0; margin: 0; }
  .plan li {
    display: flex; gap: 8px; padding: 5px 0;
    font-size: 12.5px; color: var(--text-2);
  }
  .plan li svg {
    width: 14px; height: 14px; color: var(--green);
    flex-shrink: 0; margin-top: 2px;
  }
  .plan li.muted { color: var(--muted-2); }
  .plan li.muted svg { color: var(--muted-2); }

  .billing-toggle {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: 999px;
    margin-bottom: 40px;
  }
  .billing-toggle button {
    padding: 5px 14px; border-radius: 999px;
    background: transparent; border: 0; cursor: pointer;
    font: inherit; font-size: 12.5px; font-weight: 500; color: var(--muted);
  }
  .billing-toggle button.active {
    background: var(--text); color: #fff;
  }
  .billing-toggle .badge {
    font-size: 9.5px; font-weight: 600;
    padding: 1px 6px; border-radius: 999px;
    background: var(--green-bg); color: var(--green);
    margin-left: 5px;
  }

  /* =============== CTA =============== */
  .cta-block {
    padding: 72px 0;
    text-align: center;
    background:
      radial-gradient(ellipse 600px 300px at 50% 0%, var(--brand-bg), transparent 70%),
      var(--bg);
  }
  .cta-block h2 {
    font-size: 42px; font-weight: 600; letter-spacing: -0.025em;
    margin: 0 0 16px; line-height: 1.1;
  }
  .cta-block p {
    font-size: 16px; color: var(--text-2); max-width: 540px;
    margin: 0 auto 28px;
  }
  .cta-row { display: inline-flex; gap: 10px; }

  /* =============== FOOTER =============== */
  footer.site {
    background: var(--panel);
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
    margin-top: 24px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand p {
    font-size: 13px; color: var(--muted);
    margin: 14px 0 0; line-height: 1.55; max-width: 260px;
  }
  .footer-brand p.made-in {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--text); font-weight: 600;
    margin-top: 16px;
    padding: 5px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--panel-2);
    letter-spacing: -0.005em;
  }
  .footer-col h4 {
    font-size: 11px; font-weight: 600;
    color: var(--text); text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 12px;
  }
  .footer-col a {
    display: block; padding: 4px 0;
    font-size: 13px; color: var(--muted);
    transition: color .12s;
  }
  .footer-col a:hover { color: var(--text); }
  .footer-bottom {
    margin-top: 40px; padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: var(--muted);
  }
  .footer-bottom .socials { display: flex; gap: 10px; }
  .footer-bottom .socials a {
    width: 28px; height: 28px; border-radius: 5px;
    background: var(--panel-2); color: var(--muted);
    display: grid; place-items: center;
    transition: background .12s, color .12s;
  }
  .footer-bottom .socials a:hover { background: var(--panel-3); color: var(--text); }
  .footer-bottom .socials svg { width: 13px; height: 13px; }

  /* =============== STACK COMPARE =============== */
  .stack-compare {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 28px; align-items: stretch;
    max-width: 1060px; margin: 0 auto;
  }
  .stack-card {
    padding: 26px 26px 22px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
  }
  .stack-card.before::after {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(240,68,56,.035) 18px, rgba(240,68,56,.035) 19px);
    border-radius: 12px;
    pointer-events: none;
  }
  .stack-card .sc-label {
    font-size: 11px; font-weight: 600;
    color: var(--muted); letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 12px;
  }
  .stack-card .sc-title {
    font-size: 18px; font-weight: 600;
    color: var(--text); letter-spacing: -0.015em;
    line-height: 1.3; margin: 0 0 16px;
  }
  .stack-card .sc-items {
    list-style: none; padding: 0; margin: 0 0 16px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .stack-card .sc-items li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px;
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 8px; font-size: 13.5px;
    position: relative;
  }
  .stack-card.before .sc-items li::after {
    content: "";
    position: absolute; left: 12px; right: 12px; top: 50%;
    height: 1px; background: var(--muted-2);
    opacity: .45;
  }
  .stack-card .sc-items .logo {
    width: 22px; height: 22px; border-radius: 5px;
    display: grid; place-items: center;
    color: #fff; font-weight: 700; font-size: 10.5px;
    flex-shrink: 0;
  }
  .stack-card .sc-items img.logo {
    object-fit: cover; display: block;
    background: var(--panel-2);
  }
  .stack-card .sc-items .name { flex: 1; color: var(--text-2); font-weight: 500; }
  .stack-card .sc-items .price {
    font-family: var(--mono); font-size: 12px; color: var(--muted);
    font-variant-numeric: tabular-nums;
  }
  .stack-card .sc-includes {
    padding: 12px 14px;
    background: var(--brand-bg); color: var(--text-2);
    border-radius: 8px; font-size: 13px;
    line-height: 1.7; margin-bottom: 12px;
  }
  .stack-card .sc-total {
    padding: 14px 16px;
    background: var(--panel-2);
    border-radius: 8px;
    display: flex; justify-content: space-between; align-items: baseline;
  }
  .stack-card .sc-total .lbl { font-size: 12.5px; color: var(--text-2); font-weight: 500; }
  .stack-card .sc-total .amt {
    font-family: var(--mono); font-weight: 600;
    font-size: 22px; color: var(--text);
    font-variant-numeric: tabular-nums;
  }
  .stack-card.before .sc-total .amt { color: var(--red); }
  .stack-card.after {
    border-color: transparent;
    background:
      linear-gradient(var(--panel), var(--panel)) padding-box,
      linear-gradient(180deg, var(--brand-2), var(--border)) border-box;
    border: 1px solid transparent;
    box-shadow: var(--shadow);
  }
  .stack-card.after .sc-items li {
    background: var(--brand-bg);
    border-color: #dbe0fa;
  }
  .stack-card.after .sc-total {
    background: var(--text); color: #fff;
  }
  .stack-card.after .sc-total .lbl { color: #fff; }
  .stack-card.after .sc-total .amt { color: #fff; }
  .stack-card.after .sc-total .save {
    font-family: var(--mono); font-size: 11px;
    color: var(--brand-2); margin-top: 2px; display: block;
  }
  .stack-arrow {
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px;
  }
  .stack-arrow .big-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--text); color: #fff;
    display: grid; place-items: center;
    box-shadow: var(--shadow);
  }
  .stack-arrow .big-arrow svg { width: 18px; height: 18px; }
  .stack-arrow .label {
    font-size: 12.5px; color: var(--brand); font-weight: 600;
  }

  /* =============== BEFORE/AFTER STORY =============== */
  .story-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--panel);
    box-shadow: var(--shadow-sm);
  }
  .story { padding: 36px 32px; }
  .story.before { background: var(--panel-2); border-right: 1px solid var(--border); }
  .story .lbl {
    display: inline-block;
    padding: 3px 10px; border-radius: 999px;
    font-size: 10.5px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 14px;
  }
  .story.before .lbl { background: #fee4e2; color: var(--red); }
  .story.after  .lbl { background: var(--brand-bg); color: var(--brand); }
  .story h3 {
    font-size: 22px; font-weight: 600;
    color: var(--text); letter-spacing: -0.02em;
    line-height: 1.25; margin: 0 0 18px;
  }
  .story .timeline { list-style: none; padding: 0; margin: 0; }
  .story .timeline li {
    display: grid; grid-template-columns: 52px 1fr;
    gap: 12px; padding: 10px 0;
    border-bottom: 1px dashed var(--border);
  }
  .story .timeline li:last-child { border-bottom: 0; }
  .story .timeline .t {
    font-family: var(--mono); font-size: 12px;
    color: var(--muted); padding-top: 2px;
    font-variant-numeric: tabular-nums;
  }
  .story .timeline .c {
    font-size: 13.5px; color: var(--text-2); line-height: 1.55;
  }
  .story .timeline .c strong { color: var(--text); font-weight: 600; }
  .story.before .timeline .c strong { color: var(--red); }
  .story.after  .timeline .c strong { color: var(--brand); }

  /* =============== PROMO BAR =============== */
  .promo {
    background: #0a0a0a;
    color: #ededed;
    font-size: 12.5px;
    padding: 8px 28px;
    text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .promo .tag {
    font-size: 10px; font-weight: 600;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff; padding: 2px 7px; border-radius: 999px;
    letter-spacing: 0.06em; text-transform: uppercase;
  }
  .promo a { color: var(--brand-2); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
  .promo a:hover { color: #fff; }
  .promo .close {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    background: transparent; border: 0; color: #808084; cursor: pointer;
    padding: 2px;
  }
  .promo-wrap { position: relative; }
  .promo .close:hover { color: #fff; }
  .promo .close svg { width: 12px; height: 12px; }

  /* =============== HERO TRUST =============== */
  .trust-row {
    margin-top: 28px;
    display: inline-flex; align-items: center; gap: 18px;
    font-size: 12px; color: var(--muted);
  }
  .trust-row .stars {
    display: inline-flex; align-items: center; gap: 3px;
    color: #f5a623;
  }
  .trust-row .stars svg { width: 13px; height: 13px; }
  .trust-row .avs { display: inline-flex; }
  .trust-row .avs span {
    width: 22px; height: 22px; border-radius: 50%;
    border: 2px solid var(--bg);
    display: inline-block;
    margin-left: -7px;
  }
  .trust-row .avs span:first-child { margin-left: 0; }
  .trust-row .divider { width: 1px; height: 20px; background: var(--border); }

  /* =============== HOW IT WORKS =============== */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; position: relative; }
  .step {
    padding: 24px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    position: relative;
  }
  .step .num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 7px;
    background: var(--text); color: #fff;
    font-family: var(--mono); font-size: 12px; font-weight: 600;
    margin-bottom: 14px;
  }
  .step h3 {
    font-size: 17px; font-weight: 600; letter-spacing: -0.015em;
    margin: 0 0 8px;
  }
  .step p {
    font-size: 13.5px; color: var(--text-2); line-height: 1.55;
    margin: 0 0 14px;
  }
  .step .kbd-row {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--mono); font-size: 11px; color: var(--muted);
  }
  .step .kbd {
    padding: 2px 6px; border: 1px solid var(--border);
    background: var(--panel-2);
    border-radius: 4px; font-size: 10.5px;
    color: var(--text-2);
  }

  /* =============== INTEGRATIONS =============== */
  .integrations { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
  .integ {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 22px 10px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color .12s, transform .12s;
    cursor: pointer;
  }
  .integ:hover {
    border-color: #d4d4d8;
    transform: translateY(-2px);
  }
  .integ .logo {
    width: 36px; height: 36px; border-radius: 8px;
    display: grid; place-items: center;
    background: var(--panel-2); border: 1px solid var(--border-soft);
    color: var(--text);
  }
  .integ .logo svg { width: 18px; height: 18px; }
  .integ .name { font-size: 12px; font-weight: 500; color: var(--text-2); }
  .integ[data-status="coming"] { opacity: .55; }
  .integ .soon {
    font-size: 9.5px; font-weight: 600; letter-spacing: 0.04em;
    padding: 1px 6px; border-radius: 999px;
    background: var(--panel-2); color: var(--muted);
    text-transform: uppercase;
    margin-top: -3px;
  }

  /* =============== DEVELOPER / API =============== */
  .dev-wrap {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px;
    align-items: center;
  }
  .dev-copy .section-eyebrow { text-align: left; }
  .dev-copy h2 {
    font-size: 34px; font-weight: 600; letter-spacing: -0.025em;
    margin: 6px 0 14px; line-height: 1.15;
  }
  .dev-copy p {
    font-size: 15px; color: var(--text-2); line-height: 1.6;
    margin: 0 0 20px;
  }
  .dev-copy .docs-row {
    display: flex; gap: 10px; margin-top: 10px;
  }
  .code-card {
    background: #0a0a0a;
    border: 1px solid #222224;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .code-head {
    padding: 10px 14px;
    border-bottom: 1px solid #222224;
    background: #141415;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 11.5px; color: #808084;
  }
  .code-head .tabs { display: flex; gap: 2px; }
  .code-head .tab {
    padding: 2px 10px; border-radius: 4px;
    cursor: pointer; font-size: 11.5px;
    color: #808084;
  }
  .code-head .tab.active { background: #0a0a0a; color: #ededed; }
  .code-head .copy {
    display: inline-flex; align-items: center; gap: 5px;
    color: #808084; cursor: pointer;
    font-size: 11px;
  }
  .code-head .copy:hover { color: #ededed; }
  .code-head .copy svg { width: 11px; height: 11px; }
  .code-body {
    padding: 18px 18px;
    font-family: var(--mono); font-size: 12.5px;
    color: #ededed; line-height: 1.6;
    overflow-x: auto;
  }
  .code-body .c-key    { color: #c4b5fd; }
  .code-body .c-str    { color: #86efac; }
  .code-body .c-num    { color: #fbbf24; }
  .code-body .c-com    { color: #5a5a5e; font-style: italic; }
  .code-body .c-kw     { color: #f9a8d4; }
  .code-body .c-fn     { color: #7dd3fc; }

  /* =============== TESTIMONIAL WALL =============== */
  .testi-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .testi-card {
    padding: 24px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; flex-direction: column;
    transition: border-color .12s, box-shadow .12s;
  }
  .testi-card:hover {
    border-color: #d4d4d8;
    box-shadow: var(--shadow);
  }
  .testi-card .logo {
    font-family: Georgia, serif;
    font-size: 15px; font-weight: 600;
    color: var(--muted-2);
    margin-bottom: 16px;
    letter-spacing: -0.005em;
  }
  .testi-card .q {
    font-size: 14.5px; line-height: 1.55;
    color: var(--text);
    margin: 0 0 20px;
    flex: 1;
  }
  .testi-card .author {
    display: flex; align-items: center; gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
  }
  .testi-card .av {
    width: 30px; height: 30px; border-radius: 50%;
    display: grid; place-items: center; color: #fff;
    font-weight: 600; font-size: 11px;
  }
  .testi-card .meta .n { font-size: 12.5px; font-weight: 600; line-height: 1.3; }
  .testi-card .meta .r { font-size: 11.5px; color: var(--muted); }

  /* =============== FAQ =============== */
  .faq { max-width: 780px; margin: 0 auto; }
  .faq details {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
  }
  .faq details:first-child { border-top: 1px solid var(--border); }
  .faq summary {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 15px; font-weight: 500;
    color: var(--text); cursor: pointer;
    list-style: none;
    letter-spacing: -0.005em;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary .plus {
    position: relative; width: 14px; height: 14px;
    flex-shrink: 0; color: var(--muted);
    transition: transform .2s, color .12s;
  }
  .faq summary .plus::before,
  .faq summary .plus::after {
    content: ""; position: absolute; inset: 0;
    background: currentColor;
  }
  .faq summary .plus::before { height: 2px; top: 6px; border-radius: 1px; }
  .faq summary .plus::after  { width: 2px; left: 6px; border-radius: 1px; transition: opacity .2s; }
  .faq details[open] summary .plus { color: var(--text); }
  .faq details[open] summary .plus::after { opacity: 0; }
  .faq summary:hover { color: var(--text); }
  .faq summary:hover .plus { color: var(--text); }
  .faq .a {
    margin-top: 12px;
    font-size: 14px; color: var(--text-2);
    line-height: 1.65;
    padding-right: 40px;
  }

  /* =============== NAV DROPDOWN =============== */
  .nav-dropdown { position: relative; display: inline-flex; align-items: center; }
  .nav-dropdown-toggle {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 12px; border-radius: 6px;
    font-size: 13.5px; font-weight: 500; color: var(--text-2);
    cursor: pointer;
    transition: color .12s, background .12s;
  }
  .nav-dropdown-toggle:hover { color: var(--text); background: var(--panel-3); }
  .nav-dropdown-toggle .caret {
    width: 11px; height: 11px; color: var(--muted-2);
    transition: transform .15s, color .12s;
  }
  .nav-dropdown:hover .nav-dropdown-toggle .caret,
  .nav-dropdown:focus-within .nav-dropdown-toggle .caret {
    transform: rotate(180deg); color: var(--text);
  }

  .nav-dropdown-panel {
    position: fixed; top: 56px; left: 0; right: 0;
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 24px 28px 20px;
    opacity: 0; visibility: hidden;
    transform: translateY(-6px);
    /* When hiding: wait 3s after blur, then fade/collapse */
    transition:
      opacity .14s ease 3s,
      transform .14s ease 3s,
      visibility 0s linear 3.14s;
    z-index: 50;
  }
  .nav-dropdown-panel-inner {
    max-width: 1200px; margin: 0 auto;
  }
  /* Invisible hover-bridge so cursor can cross gap without closing */
  .nav-dropdown-panel::before {
    content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px;
  }
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1; visibility: visible;
    transform: translateY(0);
    /* When showing: instant, no delay */
    transition:
      opacity .14s ease 0s,
      transform .14s ease 0s,
      visibility 0s linear 0s;
  }

  .nav-dropdown-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px;
  }
  .nav-dropdown-item {
    display: grid; grid-template-columns: 34px 1fr; gap: 10px;
    align-items: center;
    padding: 10px 12px; border-radius: 8px;
    color: inherit;
    transition: background .12s;
  }
  a.nav-dropdown-item:hover { background: var(--panel-2); }
  .nav-dropdown-item.is-soon { cursor: default; opacity: .7; }
  .nav-dropdown-icon {
    width: 34px; height: 34px; border-radius: 8px;
    display: grid; place-items: center; flex-shrink: 0;
  }
  .nav-dropdown-icon svg { width: 17px; height: 17px; }
  .nav-dropdown-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .nav-dropdown-text strong {
    font-size: 13px; font-weight: 600; color: var(--text);
    letter-spacing: -0.005em;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .nav-dropdown-text span {
    font-size: 12px; color: var(--muted); line-height: 1.4;
    overflow: hidden; text-overflow: ellipsis;
  }
  .nav-dropdown-text .soon {
    font-size: 9.5px; font-weight: 600; font-style: normal;
    padding: 1px 6px; border-radius: 999px;
    background: var(--panel-2); color: var(--muted);
    letter-spacing: 0.04em; text-transform: uppercase;
    border: 1px solid var(--border);
  }

  .nav-dropdown-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 6px; padding: 10px 12px 6px;
    border-top: 1px solid var(--border-soft);
    font-size: 12.5px;
  }
  .nav-dropdown-footer a {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--text-2); font-weight: 500;
    transition: color .12s;
  }
  .nav-dropdown-footer a:hover { color: var(--text); }
  .nav-dropdown-footer a svg { width: 12px; height: 12px; }
  .nav-dropdown-footer .footer-cta { color: var(--brand); }
  .nav-dropdown-footer .footer-cta:hover { color: var(--brand-2); }

  /* =============== RESPONSIVE =============== */
  @media (max-width: 960px) {
    .nav { display: none; }
    h1.display { font-size: 40px; }
    .section-title, .cta-block h2 { font-size: 30px; }
    .features { grid-template-columns: 1fr; }
    .module, .module.reverse { grid-template-columns: 1fr; gap: 32px; }
    .module.reverse .module-media { order: initial; }
    .pricing { grid-template-columns: 1fr 1fr; }
    .metrics-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .preview-body { grid-template-columns: 1fr; }
    .preview-sb { display: none; }
    .preview-grid { grid-template-columns: 1fr 1fr; }
    .mini-cards { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .integrations { grid-template-columns: repeat(3, 1fr); }
    .stack-compare { grid-template-columns: 1fr; gap: 16px; }
    .stack-arrow { transform: rotate(90deg); padding: 4px 0; }
    .story-wrap { grid-template-columns: 1fr; }
    .story.before { border-right: 0; border-bottom: 1px solid var(--border); }
    .dev-wrap { grid-template-columns: 1fr; gap: 32px; }
    .testi-wall { grid-template-columns: 1fr; }
    .promo { font-size: 12px; padding: 8px 14px; }
  }
  @media (max-width: 600px) {
    .pricing { grid-template-columns: 1fr; }
    .rm-cols { grid-template-columns: 1fr; }
    .cta-row { flex-direction: column; gap: 8px; }
  }
