/* Curtain — full product site (waitlist-gated). Inter only. */

:root {
  --paper: #FAFAF8;
  --paper-2: #F2EFE8;
  --paper-3: #E9E5DC;
  --ink-soft: oklch(0.30 0.02 60);
  --accent-2: oklch(0.55 0.18 280);
  --accent-2-soft: oklch(0.96 0.04 280);
}

html, body { font-family: var(--font-sans); }
.ps { background: var(--paper); color: var(--ink); min-height: 100vh; overflow-x: hidden; }

/* ─── Tape ─────────────────────────────────────────── */
.ps-tape {
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
  display: flex;
}
.ps-tape-track {
  display: flex; gap: 36px; padding: 9px 0;
  animation: tape 42s linear infinite;
  white-space: nowrap;
}
.ps-tape-track span { display: inline-flex; align-items: center; gap: 12px; }
.ps-tape-track .d { width: 4px; height: 4px; border-radius: 50%; background: oklch(0.78 0.14 80); display: inline-block; }
@keyframes tape {
  from { transform: translateX(0); } to { transform: translateX(-50%); }
}

/* ─── Top nav ─────────────────────────────────────── */
.ps-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 248, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.ps-nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 12px 32px;
  display: flex; align-items: center; gap: 24px;
}
.ps-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  text-decoration: none; color: var(--ink);
}
.ps-brand small {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  background: rgba(11,13,14,0.06);
  border: 1px solid rgba(11,13,14,0.08);
  padding: 1px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.ps-nav-links { display: flex; gap: 2px; margin-left: 18px; }
.ps-nav-link {
  padding: 7px 12px;
  font-size: 13.5px;
  font-weight: 450;
  border-radius: 7px;
  color: var(--ink-2);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 120ms, color 120ms;
}
.ps-nav-link:hover { background: rgba(11,13,14,0.05); color: var(--ink); }
.ps-nav-link.active { background: var(--ink); color: var(--paper); }
.ps-nav-cta { margin-left: auto; display: flex; gap: 8px; align-items: center; }

/* ─── Waitlist button (the only CTA on the site) ────── */
.wl-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: transform 120ms, background 150ms, box-shadow 150ms;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
}
.wl-btn:hover {
  background: oklch(0.18 0.01 250);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -16px rgba(11,13,14,0.4);
}
.wl-btn:active { transform: translateY(0); }
.wl-btn.sm { padding: 6px 11px; font-size: 12.5px; border-radius: 7px; }
.wl-btn.lg { padding: 13px 22px; font-size: 15px; border-radius: 12px; }
.wl-btn .wl-arrow { transition: transform 200ms; }
.wl-btn:hover .wl-arrow { transform: translateX(2px); }
.wl-btn .wl-glint {
  position: absolute; top: 0; bottom: 0; left: -60%;
  width: 40%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: wl-glint 5s linear infinite;
}
@keyframes wl-glint {
  0% { left: -60%; }
  60% { left: 120%; }
  100% { left: 120%; }
}
.wl-btn.ghost {
  background: var(--bg-elev);
  color: var(--ink);
  border-color: var(--line);
}
.wl-btn.ghost:hover { background: var(--bg-hover); border-color: var(--ink-5); transform: translateY(-1px); box-shadow: none; }

/* Dashboard link button */
.ps-dash-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px;
  background: var(--bg-elev);
  color: var(--ink-2);
  border-radius: 7px;
  font-weight: 500;
  font-size: 12.5px;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: background 120ms, color 120ms, border-color 120ms;
}
.ps-dash-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ─── Page transitions ────────────────────────────── */
.ps-page { animation: pagein 320ms cubic-bezier(.2,.8,.2,1) both; }
@keyframes pagein {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ─── Containers, headings, sections ──────────────── */
.ps-container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.ps-section { padding: 96px 0; position: relative; }
.ps-section.tight { padding: 64px 0; }
.ps-section.alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ps-section.dark { background: var(--ink); color: var(--paper); }
.ps-section.dark .ps-eyebrow { color: rgba(250,250,248,0.6); }
.ps-section.dark .ps-eyebrow::before { background: rgba(250,250,248,0.4); }
.ps-section.dark .ps-sub { color: rgba(250,250,248,0.65); }
.ps-section.dark .ps-h2 em { color: rgba(250,250,248,0.55); }

.ps-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 14px;
}
.ps-eyebrow::before {
  content: ''; width: 18px; height: 1px; background: var(--ink-3);
}
.ps-h1 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.032em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.ps-h1 .accent {
  background: linear-gradient(120deg, var(--ink) 30%, var(--accent-ink) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ps-h1 em { font-style: normal; color: var(--ink-3); font-weight: 400; }

.ps-h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.ps-h2 em { font-style: normal; color: var(--ink-3); font-weight: 400; }

.ps-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
}
.ps-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; margin-bottom: 44px;
  flex-wrap: wrap;
}
.ps-section-head .right { font-size: 13.5px; color: var(--ink-3); max-width: 36ch; }
.ps-section.dark .ps-section-head .right { color: rgba(250,250,248,0.6); }

/* ─── Reveal ──────────────────────────────────────── */
.ps-reveal { opacity: 0; transform: translateY(14px); transition: opacity 600ms, transform 600ms; }
.ps-reveal.in { opacity: 1; transform: none; }

/* ─── Hero ────────────────────────────────────────── */
.ps-hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.ps-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 380px at 80% -10%, oklch(0.96 0.04 280 / 0.6), transparent 60%),
    radial-gradient(800px 320px at 8% 22%, oklch(0.97 0.02 80 / 0.5), transparent 60%);
  pointer-events: none;
}
.ps-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.ps-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 14px 5px 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-elev);
  font-size: 12.5px;
  margin-bottom: 22px;
  color: var(--ink-2);
  align-self: flex-start;
}
.ps-hero-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: oklch(0.62 0.16 150);
  box-shadow: 0 0 0 0 oklch(0.62 0.16 150 / 0.4);
  animation: ps-pulse 2.4s infinite;
}
@keyframes ps-pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.62 0.16 150 / 0.4); }
  70% { box-shadow: 0 0 0 8px oklch(0.62 0.16 150 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.62 0.16 150 / 0); }
}
.ps-hero-tag b {
  background: var(--ink); color: var(--paper);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
}
.ps-hero-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.ps-hero-meta {
  display: flex; align-items: center; gap: 24px;
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--ink-4);
  flex-wrap: wrap;
}
.ps-hero-meta strong { color: var(--ink); font-weight: 500; }
.ps-hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-5); }

/* Hero showcase frame */
.ps-showcase {
  margin-top: 56px;
  position: relative;
}
.ps-frame {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(15,18,22,0.02),
    0 40px 80px -36px rgba(15,18,22,0.22),
    0 14px 28px -16px rgba(15,18,22,0.10);
  overflow: hidden;
}
.ps-frame-bar {
  height: 38px;
  border-bottom: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 10px;
  padding: 0 14px;
  background: #FCFBF8;
}
.ps-frame-bar .lights { display: flex; gap: 6px; }
.ps-frame-bar .lights span { width: 9px; height: 9px; border-radius: 50%; background: var(--bg-subtle); border: 1px solid var(--line); }
.ps-frame-bar .url {
  margin-left: 10px;
  background: var(--bg-subtle);
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  border-radius: 6px;
  color: var(--ink-3);
  border: 1px solid var(--line);
  flex: 1;
  max-width: 380px;
}
.ps-frame-bar .nda {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border: 1px solid oklch(0.78 0.14 80);
  color: oklch(0.55 0.14 70);
  border-radius: 999px;
  background: oklch(0.96 0.06 80 / 0.5);
}
.ps-frame-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 540px;
}
.ps-frame-side {
  background: #FCFBF8;
  border-right: 1px solid var(--line-2);
  padding: 14px 10px;
  display: flex; flex-direction: column; gap: 16px;
}
.ps-frame-side .lab {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  padding: 4px 8px;
  font-weight: 500;
}
.ps-frame-side .item {
  padding: 7px 8px;
  border-radius: 6px;
  display: flex; align-items: center; gap: 9px;
  color: var(--ink-2); font-size: 12.5px; font-weight: 450;
}
.ps-frame-side .item.active { background: var(--ink); color: var(--paper); }
.ps-frame-side .item .ct { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--ink-4); }
.ps-frame-side .item.active .ct { color: rgba(250,250,248,0.6); }
.ps-frame-main { padding: 22px 24px; min-width: 0; display: flex; flex-direction: column; gap: 14px; }

/* Float badges */
.ps-float {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 1px 0 rgba(15,18,22,0.02), 0 14px 36px -14px rgba(15,18,22,0.2);
  font-size: 12.5px;
}
.ps-float.tl { top: 56px; left: -28px; transform: rotate(-2deg); }
.ps-float.br { bottom: 60px; right: -28px; transform: rotate(2deg); }

/* Live counter (hero strip) */
.ps-counter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-elev);
  overflow: hidden;
}
.ps-counter .c {
  padding: 18px 22px;
  border-right: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 4px;
}
.ps-counter .c:last-child { border-right: none; }
.ps-counter .v {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-feature-settings: 'tnum' 1;
}
.ps-counter .l { font-size: 12px; color: var(--ink-3); }

/* ─── Logos strip ─────────────────────────────────── */
.ps-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ps-logo {
  display: flex; align-items: center; justify-content: center;
  height: 32px;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 16px;
  opacity: 0.85;
}
.ps-logo.mono { font-family: var(--font-mono); font-size: 14px; font-weight: 500; }
.ps-logos-cap {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  margin-bottom: 22px;
  font-weight: 500;
}

/* ─── Cards / grids ───────────────────────────────── */
.ps-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ps-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ps-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.ps-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 200ms, transform 200ms;
}
.ps-card:hover { border-color: var(--ink-5); }
.ps-card .ic {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.ps-card h4 { margin: 0; font-size: 16px; font-weight: 600; letter-spacing: -0.012em; }
.ps-card p { margin: 0; font-size: 13.5px; color: var(--ink-3); line-height: 1.55; }
.ps-card ul { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 6px; }
.ps-card ul li {
  font-size: 13px; color: var(--ink-2);
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.45;
}
.ps-card ul li::before {
  content: ''; flex-shrink: 0; margin-top: 7px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink);
}

/* ─── Steps (How it works) ────────────────────────── */
.ps-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ps-step {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  min-height: 320px;
}
.ps-step .num {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--paper);
  align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
}
.ps-step h3 { margin: 0; font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }
.ps-step p { margin: 0; font-size: 14px; color: var(--ink-3); line-height: 1.55; }
.ps-step .vis {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 11.5px;
  display: flex; flex-direction: column; gap: 6px;
}
.ps-step .vis .row { display: flex; gap: 8px; }
.ps-step .vis .k { color: var(--ink-4); width: 76px; }
.ps-step .vis .v { color: var(--ink); flex: 1; }
.ps-step .vis .out {
  margin-top: 4px;
  padding: 7px 10px;
  background: var(--ink); color: var(--paper);
  border-radius: 6px;
  font-size: 11.5px;
}

/* ─── Stats row ───────────────────────────────────── */
.ps-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-elev);
  overflow: hidden;
}
.ps-stat { padding: 28px 24px; border-right: 1px solid var(--line-2); display: flex; flex-direction: column; gap: 6px; }
.ps-stat:last-child { border-right: none; }
.ps-stat .v { font-size: 36px; font-weight: 600; letter-spacing: -0.025em; font-feature-settings: 'tnum' 1; }
.ps-stat .v .u { font-size: 22px; color: var(--ink-3); margin-left: 2px; }
.ps-stat .l { font-size: 13px; color: var(--ink-3); }

/* ─── Quote ──────────────────────────────────────── */
.ps-quote {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 40px;
  background: var(--bg-elev);
  margin-top: 40px;
}
.ps-quote blockquote {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 500;
  text-wrap: pretty;
}
.ps-quote .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line-2);
}
.ps-quote .who .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, oklch(0.55 0.18 280), oklch(0.55 0.14 230));
  color: white;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 600;
}
.ps-quote .who .name { font-weight: 500; }
.ps-quote .who .role { color: var(--ink-3); font-size: 13px; }

/* ─── Comparison table ────────────────────────────── */
.ps-cmp {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-elev);
}
.ps-cmp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--line-2);
}
.ps-cmp-row:last-child { border-bottom: none; }
.ps-cmp-row.head {
  background: var(--paper-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.ps-cmp-cell {
  padding: 14px 18px;
  font-size: 13.5px;
  border-right: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 8px;
}
.ps-cmp-cell:last-child { border-right: none; }
.ps-cmp-cell.feature { color: var(--ink); font-weight: 500; }
.ps-cmp-cell.cur { color: var(--ink-3); }
.ps-cmp-cell.cur .x { color: var(--danger); }
.ps-cmp-cell.win { background: oklch(0.96 0.04 280 / 0.4); color: var(--ink); }
.ps-cmp-cell.win .check { color: oklch(0.55 0.14 145); }

/* ─── Pricing ─────────────────────────────────────── */
.ps-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ps-price {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-elev);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative;
}
.ps-price.feat {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.ps-price.feat .ps-price-meta { color: rgba(250,250,248,0.6); }
.ps-price.feat .ps-price-feats li { color: var(--paper); }
.ps-price.feat .ps-price-feats li .ck { color: oklch(0.78 0.14 80); }
.ps-price.feat .ps-price-name { color: rgba(250,250,248,0.6); }
.ps-price-name {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 500;
}
.ps-price-amt {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.028em;
  margin: 12px 0 4px;
  display: flex; align-items: baseline; gap: 4px;
}
.ps-price-amt .cur { font-size: 22px; color: var(--ink-3); font-weight: 500; }
.ps-price.feat .ps-price-amt .cur { color: rgba(250,250,248,0.6); }
.ps-price-amt .per { font-size: 14px; color: var(--ink-3); margin-left: 4px; font-weight: 400; }
.ps-price.feat .ps-price-amt .per { color: rgba(250,250,248,0.6); }
.ps-price-meta { font-size: 13px; color: var(--ink-3); margin: 0 0 22px; }
.ps-price-feats { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.ps-price-feats li { display: flex; gap: 10px; font-size: 13.5px; color: var(--ink-2); align-items: flex-start; line-height: 1.45; }
.ps-price-feats .ck { color: var(--ink); margin-top: 2px; flex-shrink: 0; }
.ps-price-badge {
  position: absolute;
  top: -10px; right: 22px;
  background: oklch(0.78 0.14 80);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
}
.ps-price .wl-btn { justify-content: center; }
.ps-price.feat .wl-btn {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* ─── Roadmap ─────────────────────────────────────── */
.ps-road {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
  margin-top: 12px;
}
.ps-road::before {
  content: '';
  position: absolute;
  top: 22px; left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--ink-5) 0 6px, transparent 6px 12px);
}
.ps-section.dark .ps-road::before {
  background: repeating-linear-gradient(90deg, rgba(250,250,248,0.3) 0 6px, transparent 6px 12px);
}
.ps-road-cell { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; position: relative; }
.ps-road-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink-5);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-2);
  position: relative;
  z-index: 2;
}
.ps-road-cell.done .ps-road-dot { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.ps-road-cell.now .ps-road-dot {
  background: oklch(0.78 0.14 80);
  color: var(--ink);
  border-color: oklch(0.62 0.14 70);
  box-shadow: 0 0 0 4px oklch(0.78 0.14 80 / 0.3);
}
.ps-section.dark .ps-road-dot { background: rgba(250,250,248,0.05); color: rgba(250,250,248,0.7); border-color: rgba(250,250,248,0.2); }
.ps-section.dark .ps-road-cell.done .ps-road-dot { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.ps-road-cell .when {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-4);
}
.ps-section.dark .ps-road-cell .when { color: rgba(250,250,248,0.5); }
.ps-road-cell h4 { margin: 0; font-size: 16px; font-weight: 600; letter-spacing: -0.012em; }
.ps-road-cell p { margin: 0; font-size: 13px; color: var(--ink-3); line-height: 1.5; }
.ps-section.dark .ps-road-cell p { color: rgba(250,250,248,0.65); }
.ps-road-cell .tag {
  align-self: flex-start;
  font-size: 10.5px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(11,13,14,0.06);
  color: var(--ink-3);
}
.ps-road-cell.done .tag { background: oklch(0.62 0.10 150 / 0.15); color: oklch(0.4 0.10 150); }
.ps-road-cell.now .tag { background: oklch(0.78 0.14 80); color: var(--ink); font-weight: 600; }
.ps-section.dark .ps-road-cell .tag { background: rgba(250,250,248,0.08); color: rgba(250,250,248,0.7); }
.ps-section.dark .ps-road-cell.done .tag { background: oklch(0.7 0.12 150 / 0.18); color: oklch(0.78 0.16 150); }

/* ─── Use cases ───────────────────────────────────── */
.ps-uc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* ─── Inline waitlist form (bottom of every page) ─── */
.ps-cta {
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: radial-gradient(900px 320px at 80% 20%, oklch(0.55 0.18 280 / 0.18), transparent 60%), var(--ink);
  color: var(--paper);
  padding: 56px 48px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px;
  align-items: center;
}
.ps-cta h2 {
  font-size: 38px; letter-spacing: -0.024em; line-height: 1.1;
  margin: 0 0 12px; text-wrap: balance; font-weight: 600;
}
.ps-cta p { color: rgba(250,250,248,0.7); font-size: 15.5px; line-height: 1.55; margin: 0 0 22px; }
.ps-cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 8px 8px 8px 16px;
  display: flex; align-items: center; gap: 8px;
}
.ps-cta-form input {
  flex: 1; min-width: 0;
  background: transparent;
  border: none;
  color: var(--paper);
  font-size: 14.5px;
  padding: 10px 0;
  font-family: inherit;
}
.ps-cta-form input::placeholder { color: rgba(250,250,248,0.45); }
.ps-cta-form button {
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 9px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: transform 120ms;
  font-family: inherit;
}
.ps-cta-form button:hover { transform: translateY(-1px); }
.ps-cta-pic {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(250,250,248,0.65);
}
.ps-cta-pic .row { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px dashed rgba(250,250,250,0.12); }
.ps-cta-pic .row:last-child { border-bottom: none; }
.ps-cta-pic .row .ck { color: oklch(0.75 0.12 150); }

/* ─── Modal ───────────────────────────────────────── */
.ps-modal {
  position: fixed; inset: 0;
  background: rgba(11,13,14,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center;
  z-index: 100;
  padding: 24px;
  animation: pagein 280ms cubic-bezier(.2,.8,.2,1) both;
}
.ps-modal-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 32px 28px;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 40px 80px -24px rgba(0,0,0,0.4);
}
.ps-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--bg-subtle);
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink-3);
  border: 1px solid var(--line);
  transition: background 120ms;
  font-family: inherit;
  font-size: inherit;
}
.ps-modal-close:hover { background: var(--bg-hover); color: var(--ink); }
.ps-modal h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.018em;
}
.ps-modal .lead { font-size: 14px; color: var(--ink-3); margin: 0 0 24px; line-height: 1.5; }
.ps-modal-form { display: flex; flex-direction: column; gap: 12px; }
.ps-modal-form .field {
  display: flex; flex-direction: column; gap: 6px;
}
.ps-modal-form label { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.ps-modal-form input, .ps-modal-form select {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--bg);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 150ms, background 150ms;
  font-family: inherit;
}
.ps-modal-form input:focus, .ps-modal-form select:focus {
  border-color: var(--ink);
  background: var(--bg-elev);
  outline: none;
}
.ps-modal-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ps-modal-success {
  text-align: center;
  padding: 16px 0;
}
.ps-modal-success .ck-big {
  width: 56px; height: 56px;
  background: var(--ink); color: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.ps-modal-success h3 { margin: 0 0 6px; font-size: 22px; font-weight: 600; }
.ps-modal-success p { color: var(--ink-3); font-size: 14px; margin: 0 0 18px; line-height: 1.5; }
.ps-modal-confirm {
  text-align: left;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.ps-modal-confirm .r { display: flex; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.ps-modal-confirm .r:last-child { border-bottom: none; }
.ps-modal-confirm .r b { color: var(--ink); font-weight: 600; margin-left: auto; }
.ps-modal-confirm .r span { color: var(--ink-4); }

/* ─── FAQ ─────────────────────────────────────────── */
.ps-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.ps-faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.ps-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ps-faq summary::-webkit-details-marker { display: none; }
.ps-faq summary::after {
  content: '+';
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ink-3);
}
.ps-faq details[open] summary::after { content: '−'; }
.ps-faq details p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 60ch;
}

/* ─── Docs page ───────────────────────────────────── */
.docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
  min-width: 0;
}
.docs-side {
  position: sticky; top: 88px;
  display: flex; flex-direction: column; gap: 18px;
  font-size: 13.5px;
}
.docs-side h5 {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  font-weight: 500;
}
.docs-side ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 4px; }
.docs-side a,
.docs-side button {
  text-decoration: none;
  padding: 5px 8px;
  display: block;
  border-radius: 6px;
  color: var(--ink-2);
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  font: inherit;
}
.docs-side a:hover,
.docs-side button:hover { background: var(--bg-hover); color: var(--ink); }
.docs-side a.active,
.docs-side button.active { background: var(--ink); color: var(--paper); }
.docs-content { min-width: 0; overflow-x: hidden; }
.docs-content h2 { font-size: 28px; margin: 0 0 12px; letter-spacing: -0.022em; }
.docs-content h3 { font-size: 18px; margin: 28px 0 8px; letter-spacing: -0.014em; }
.docs-content p { font-size: 14.5px; line-height: 1.65; color: var(--ink-2); max-width: 64ch; margin: 0 0 14px; }
.docs-code {
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.65;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 12px 0 18px;
  white-space: pre;
  max-width: 100%;
  display: block;
}
.docs-code .k { color: oklch(0.78 0.14 280); }
.docs-code .s { color: oklch(0.78 0.14 80); }
.docs-code .c { color: rgba(250,250,248,0.4); }
.docs-code .url { color: oklch(0.78 0.12 150); }
.docs-code .field { color: oklch(0.78 0.14 280); }
.docs-content p code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  padding: 1px 5px;
  border-radius: 4px;
  color: var(--ink-2);
}
.docs-banner {
  background: var(--accent-2-soft);
  border: 1px solid oklch(0.85 0.06 280);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  font-size: 13.5px;
}
.docs-banner b { color: var(--accent-ink); }

/* ─── Customers page ──────────────────────────────── */
.story {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-elev);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: center;
}
.story h3 {
  font-size: 22px; margin: 0 0 10px;
  letter-spacing: -0.018em; font-weight: 600;
  text-wrap: balance;
}
.story p { margin: 0; font-size: 14.5px; color: var(--ink-3); line-height: 1.6; max-width: 60ch; }
.story-stats {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--paper-2);
  border-radius: 12px;
  padding: 18px;
}
.story-stat .v {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  font-feature-settings: 'tnum' 1;
}
.story-stat .l { font-size: 12px; color: var(--ink-3); }
.story-meta { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line-2); margin-top: 18px; font-size: 12.5px; color: var(--ink-3); }
.story-meta .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, oklch(0.55 0.18 280), oklch(0.55 0.14 230));
  color: white;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 600;
}
.story-meta b { color: var(--ink); font-weight: 500; }

/* ─── Security page ──────────────────────────────── */
.sec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sec-cell {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 26px;
  background: var(--bg-elev);
  display: flex; gap: 16px;
}
.sec-cell .ic {
  width: 36px; height: 36px;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--ink);
}
.sec-cell h4 { margin: 0 0 6px; font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.sec-cell p { margin: 0; font-size: 13px; color: var(--ink-3); line-height: 1.55; }

.cert-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: 14px;
  margin-bottom: 28px;
  align-items: center;
}
.cert-row .cert {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--paper-2);
  border-radius: 999px;
}
.cert-row .cert .d {
  width: 8px; height: 8px; border-radius: 50%;
  background: oklch(0.62 0.10 150);
}

/* ─── Footer ─────────────────────────────────────── */
.ps-foot {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 56px 0 24px;
}
.ps-foot-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
}
.ps-foot h5 {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  font-weight: 500;
  margin: 0 0 14px;
}
.ps-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.ps-foot a { text-decoration: none; font-size: 13.5px; color: var(--ink-2); cursor: pointer; }
.ps-foot a:hover { color: var(--ink); }
.ps-foot button {
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  font: inherit;
  font-size: 13.5px;
  color: var(--ink-2);
  cursor: pointer;
}
.ps-foot button:hover { color: var(--ink); }
.ps-foot-bottom {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-4);
  font-family: var(--font-mono);
  flex-wrap: wrap;
  gap: 12px;
}
.ps-foot-bottom .right { display: flex; gap: 18px; }
.ps-foot-bottom a { color: inherit; }

/* Responsive */
@media (max-width: 980px) {
  .ps-nav-links { display: none; }
  .ps-grid-3, .ps-grid-4, .ps-uc, .ps-pricing, .ps-steps, .ps-stats { grid-template-columns: 1fr 1fr; }
  .ps-grid-2, .docs-layout, .story { grid-template-columns: 1fr; }
  .docs-side { position: static; }
  .ps-frame-body { grid-template-columns: 1fr; }
  .ps-frame-side { display: none; }
  .ps-float { display: none; }
  .ps-cta { grid-template-columns: 1fr; padding: 36px 24px; }
  .ps-faq { grid-template-columns: 1fr; }
  .ps-cmp-row { grid-template-columns: 1fr; }
  .ps-cmp-cell { border-right: none; border-bottom: 1px solid var(--line-2); }
  .ps-counter { grid-template-columns: 1fr 1fr; }
  .ps-counter .c:nth-child(2) { border-right: none; }
  .ps-counter .c { border-bottom: 1px solid var(--line-2); }
  .ps-road { grid-template-columns: 1fr 1fr; }
  .ps-road::before { display: none; }
  .sec-grid { grid-template-columns: 1fr; }
  .ps-foot-grid { grid-template-columns: 1fr 1fr; }
  .ps-hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .ps-container { padding: 0 16px; }
  .ps-nav-inner {
    padding: 10px 12px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .ps-brand { font-size: 14px; }
  .ps-dash-btn { margin-left: auto; }
  .ps-nav-cta {
    width: 100%;
    margin-left: 0;
  }
  .ps-nav-cta .wl-btn {
    width: 100%;
    justify-content: center;
  }

  .ps-section { padding: 56px 0; }
  .ps-section.tight { padding: 40px 0; }
  .ps-hero { padding: 48px 0 42px; }
  .ps-h1 { font-size: clamp(34px, 10vw, 44px); }
  .ps-h2 { font-size: clamp(25px, 7vw, 32px); }
  .ps-sub { font-size: 15px; }
  .ps-hero-meta { gap: 12px; margin-top: 18px; }

  .ps-grid-3,
  .ps-grid-4,
  .ps-grid-2,
  .ps-uc,
  .ps-pricing,
  .ps-steps,
  .ps-stats,
  .ps-road,
  .sec-grid,
  .ps-counter,
  .ps-logos,
  .ps-foot-grid {
    grid-template-columns: 1fr;
  }

  .ps-hero-actions { width: 100%; }
  .ps-hero-actions .wl-btn {
    width: 100%;
    justify-content: center;
  }
  .ps-frame { border-radius: 12px; }
  .ps-frame-bar { padding: 0 10px; }
  .ps-frame-bar .url {
    min-width: 0;
    max-width: none;
    font-size: 10px;
  }

  .ps-cmp-row { grid-template-columns: 1fr; }
  .ps-cmp-cell {
    border-right: none;
    border-bottom: 1px solid var(--line-2);
  }
  .ps-cmp-cell:last-child { border-bottom: none; }

  .ps-cta {
    padding: 24px 18px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ps-cta h2 { font-size: 28px; }
  .ps-cta-form {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }
  .ps-cta-form button {
    width: 100%;
    justify-content: center;
  }

  .story {
    grid-template-columns: 1fr;
    padding: 20px 18px;
    gap: 18px;
  }
  .story h3 { font-size: 19px; }

  .docs-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }
  .docs-banner .wl-btn {
    width: 100%;
    justify-content: center;
  }
  .docs-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .docs-side {
    position: static;
    top: auto;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
    background: var(--bg-elev);
  }
  .docs-content h2 { font-size: 24px; }
  .docs-content h3 { font-size: 17px; }
  .docs-code {
    font-size: 12px;
    line-height: 1.55;
    padding: 14px;
  }

  .ps-modal {
    padding: 14px;
    align-items: end;
  }
  .ps-modal-card {
    max-width: 100%;
    padding: 24px 16px 18px;
    border-radius: 14px 14px 0 0;
  }
  .ps-modal-form .row2 { grid-template-columns: 1fr; }

  .ps-foot { padding: 40px 0 18px; }
  .ps-foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .ps-foot-bottom .right {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
}

@media (max-width: 420px) {
  .ps-container { padding: 0 12px; }
  .ps-nav-inner { padding: 8px 10px; }
  .ps-brand small { display: none; }
  .ps-dash-btn { font-size: 11.5px; padding: 5px 8px; }
  .wl-btn.lg { padding: 11px 14px; font-size: 14px; }
  .ps-h1 { font-size: 31px; }
  .ps-h2 { font-size: 23px; }
  .ps-card,
  .ps-step,
  .ps-price,
  .sec-cell {
    padding: 16px;
  }
  .docs-code {
    font-size: 11px;
    padding: 12px;
  }
}

/* ─── Hamburger button ─────────────────────────────── */
.ps-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 120ms, color 120ms;
  flex-shrink: 0;
}
.ps-burger:hover { background: var(--bg-hover); color: var(--ink); }

/* Mobile nav drawer — appears below the nav bar */
.ps-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0 18px;
  border-top: 1px solid var(--line-2);
}
.ps-mobile-nav .ps-nav-link {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  font-size: 14.5px;
  border-radius: 8px;
}

/* Show burger at tablet and below; fix row ordering at mobile */
@media (max-width: 980px) {
  .ps-burger { display: inline-flex; }
  .ps-logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  /* Row 1: [Brand][Dash]...[Burger→right]  Row 2: [CTA full-width] */
  .ps-dash-btn { margin-left: 0; }
  .ps-burger { margin-left: auto; }
  .ps-nav-cta { order: 10; }
}

/* Never show mobile nav on desktop even if state leaks */
@media (min-width: 981px) {
  .ps-mobile-nav { display: none !important; }
}

/* ─── Company page: two-column "Why now" section ───── */
.ps-why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
}
@media (max-width: 980px) {
  .ps-why-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .ps-why-grid { gap: 24px; }
}

/* ─── Changelog: version rows ───────────────────────── */
.ps-changelog-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
}
@media (max-width: 760px) {
  .ps-changelog-row { grid-template-columns: 1fr; gap: 12px; }
}

/* ─── Company page: open-roles job row ──────────────── */
.ps-job-row {
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.6fr auto;
  gap: 16px;
  align-items: center;
}
@media (max-width: 760px) {
  .ps-job-row {
    grid-template-columns: 1fr auto;
    gap: 4px 10px;
    padding: 14px 16px;
  }
  .ps-job-row > *:nth-child(2) { grid-column: 1; font-size: 12.5px; }
  .ps-job-row > *:nth-child(3) { display: none; }
  .ps-job-row > *:nth-child(4) { grid-column: 2; grid-row: 1 / 3; align-self: center; }
}

/* ─── Responsive grid utilities (replace inline gridTemplateColumns) ── */

/* Hero query-history mini-table scroll wrapper */
.ps-query-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Features alternating section: text + art */
.ps-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .ps-feature-grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 760px) { .ps-feature-grid { gap: 24px; } }

/* Feature bullet points 2-col */
.ps-feature-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
@media (max-width: 760px) { .ps-feature-bullets { grid-template-columns: 1fr; } }
