/* Stockzen marketing landing — 2026 (light) */
:root {
  --bg: #ffffff;
  --bg-2: #f4f7fd;
  --elev: #ffffff;
  --card: #ffffff;
  --line: #d9e2f5;
  --line-strong: #c5d3ee;
  --text: #0b1220;
  --muted: #5b6474;
  --faint: #8a93a3;
  --ink: #0f1420;
  --ink-hover: #1f2937;
  --accent: #0a25dc;
  --accent-hover: #0820c2;
  --accent-soft: #eaf0ff;
  --brand: #f26b00;
  --good: #15803d;
  --mono: "DM Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 1px 2px rgba(16, 24, 40, 0.04), 0 16px 40px -20px rgba(16, 24, 40, 0.18);
  --radius: 14px;
  --max: 1120px;
  --nav-h: 72px;
  --sans: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
button { cursor: pointer; }

.sz-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.03em; color: var(--text); }
.sz-h2 .accent, .sz-h1 .accent { color: var(--accent); }

/* Section header bar (label · index/total) */
.sz-sec-head {
  position: sticky;
  top: calc(var(--nav-h) - 1px);
  z-index: 20;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sz-sec-head-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(calc(var(--max) + 64px), calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 32px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.sz-sec-label,
.sz-sec-count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.sz-sec-count { letter-spacing: 0.025em; text-transform: none; }
.sz-sec-count b { color: var(--accent); font-weight: 500; }
.sz-chevron { color: var(--accent); margin-right: 4px; }
.sz-sec-spacer { flex: 1; }

.sz-h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 600;
  text-wrap: balance;
}

.sz-h1 em {
  font-style: normal;
  color: var(--accent);
}

.sz-h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  font-weight: 600;
}

.sz-lede {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  max-width: 38rem;
}

/* Nav */
.sz-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}

.sz-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.sz-brand img { height: 28px; width: auto; }

.sz-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sz-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.sz-nav-links a:hover { color: var(--text); }

.sz-nav-end { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Six links between the brand and the CTAs: tighten before the burger takes over at 900px. */
@media (max-width: 1100px) {
  .sz-nav-links { gap: 18px; }
  .sz-nav-inner { gap: 18px; }
}

.sz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.sz-btn:active { transform: translateY(1px); }

.sz-btn-ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.sz-btn-ghost:hover { background: var(--bg-2); border-color: #c9cdd6; }

.sz-btn-solid {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.sz-btn-solid:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.sz-btn-lg { height: 50px; padding: 0 22px; font-size: 15px; }

.sz-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
}

.sz-nav-toggle span,
.sz-nav-toggle span::before,
.sz-nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  margin: 0 auto;
}
.sz-nav-toggle span::before,
.sz-nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.sz-nav-toggle span::before { top: -5px; }
.sz-nav-toggle span::after { top: 5px; }

/* Hero */
.sz-hero {
  position: relative;
  padding: 60px 0 56px;
  overflow: hidden;
  isolation: isolate;
  background: #f6f8fc;
}

/* Soft mesh — pale sky, lavender, mint and peach on an off-white base */
.sz-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(42% 46% at 12% 18%, rgba(178, 208, 255, 0.70), transparent 72%),
    radial-gradient(38% 42% at 88% 12%, rgba(212, 199, 255, 0.62), transparent 72%),
    radial-gradient(48% 40% at 74% 78%, rgba(196, 212, 255, 0.60), transparent 72%),
    radial-gradient(40% 38% at 22% 88%, rgba(191, 238, 221, 0.58), transparent 72%),
    linear-gradient(180deg, #f8faff 0%, #f4f6fb 100%);
  pointer-events: none;
  z-index: -2;
}

/* Fine dot grid, faded toward the edges */
.sz-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 20, 32, 0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 35%, #000 30%, transparent 100%);
  mask-image: radial-gradient(70% 60% at 50% 35%, #000 30%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.sz-hero-copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.sz-hero .sz-h1 { margin: 0 auto 16px; max-width: 20ch; }

/* Homepage H1 carries the six platform names for SEO (one long sentence), so it
   runs a step smaller than the default hero title and wraps to ~3 lines. */
.sz-hero .sz-h1.sz-h1-seo {
  max-width: 44ch;
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.sz-nowrap { white-space: nowrap; }
.sz-hero .sz-lede { max-width: 40rem; }

.sz-hero .sz-lede {
  margin: 0 auto 26px;
}

.sz-trial {
  display: flex;
  gap: 6px;
  max-width: 520px;
  margin: 0 auto;
  padding: 5px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.sz-trial:focus-within { border-color: #aab1bd; }

.sz-trial input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 44px;
  min-height: 44px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  padding: 0 16px;
  font-size: 15px;
  font-family: inherit;
  line-height: 44px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.sz-trial .sz-btn { flex: 0 0 auto; white-space: nowrap; }

.sz-trial input::placeholder { color: var(--faint); }

.sz-trial-note {
  margin: 12px 0 0;
  color: var(--faint);
  font-size: 13px;
}

.sz-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.sz-trust span { display: inline-flex; align-items: center; gap: 7px; }

.sz-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Product stage */
.sz-stage {
  position: relative;
  margin-top: 40px;
}

.sz-window {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(15, 20, 32, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    0 30px 60px -30px rgba(16, 24, 40, 0.30),
    0 0 0 8px rgba(255, 255, 255, 0.45);
}

.sz-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.sz-url {
  flex: 1;
  text-align: center;
  padding: 5px 12px;
  margin: 0 120px 0 60px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--line);
}

.sz-traffic { display: flex; gap: 6px; margin-right: 10px; }
.sz-traffic i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9dce3;
}

.sz-window-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
}

.sz-pane { padding: 18px 20px; min-width: 0; }
.sz-pane-side {
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfcfe, #fff);
}

.sz-pane-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}

.sz-mt { margin-top: 22px; }

/* Recent rows */
.sz-recent { margin-top: 14px; border-top: 1px solid var(--line); }
.sz-recent-row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--text);
}
.sz-recent-row em { font-style: normal; color: var(--faint); font-size: 11.5px; }
.sz-lib { width: 8px; height: 8px; border-radius: 50%; background: #c4c9d4; }
.sz-lib.fp { background: #101010; } /* Magnific (formerly Freepik) */
.sz-lib.sb { background: #7c6cf0; }
.sz-lib.vz { background: #f26b00; }

/* Cost comparison */
.sz-cost { display: grid; gap: 14px; }
.sz-cost-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 6px;
}
.sz-cost-meta strong { color: var(--text); font-size: 13px; }
.sz-bar {
  height: 8px;
  border-radius: 999px;
  background: #eceff4;
  overflow: hidden;
}
.sz-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #aab3c2;
}
.sz-bar.accent i { background: var(--accent); }

/* Weekly chart */
.sz-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  height: 88px;
  align-items: end;
}
.sz-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  height: 100%;
  gap: 6px;
}
.sz-col i {
  display: block;
  height: var(--h);
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #4f6bff, #6f86ff);
}
.sz-col:nth-child(2) i { background: linear-gradient(180deg, #6d5cf0, #8d7ff5); }
.sz-col:nth-child(3) i { background: linear-gradient(180deg, #38a3c6, #5fb8d6); }
.sz-col:nth-child(4) i { background: linear-gradient(180deg, #f26b00, #ff9440); }
.sz-col:nth-child(5) i { background: linear-gradient(180deg, #2ea96b, #5dc38f); }
.sz-col:nth-child(6) i { background: linear-gradient(180deg, #0f1420, #3b4252); }
.sz-col span {
  font-size: 10px;
  color: var(--faint);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sz-chart-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.sz-chart-foot strong { color: var(--text); font-size: 14px; }

/* Floating proof chips */
.sz-float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 20, 32, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
}
.sz-float strong { display: block; font-size: 12.5px; color: var(--text); }
.sz-float span { color: var(--muted); font-size: 11.5px; }
.sz-float-ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eef2ff;
  color: #4f6bff;
}
.sz-float-ic.ok { background: #e7f8ee; color: var(--good); }
.sz-float-a { top: -20px; right: calc(50% - 490px - 118px); }
.sz-float-b { bottom: 86px; left: calc(50% - 490px - 118px); }

/* Stats strip */
.sz-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 980px;
  margin: 28px auto 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 20, 32, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.sz-stats > div {
  padding: 18px 22px;
  border-left: 1px solid var(--line);
}
.sz-stats > div:first-child { border-left: 0; }
.sz-stats dt {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.1;
}
.sz-stats dt small { font-size: 13px; font-weight: 500; color: var(--faint); letter-spacing: 0; margin-left: 2px; }
.sz-stats dd { margin: 4px 0 0; font-size: 13px; color: var(--muted); }

.sz-fake-form {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
}

.sz-fake-form .url {
  flex: 1;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  padding: 10px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sz-chip {
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.sz-result {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
}

.sz-result h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
}

.sz-result p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.sz-result-actions { display: flex; gap: 8px; align-items: center; }

.sz-mini {
  height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.sz-mini.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.sz-ok {
  color: var(--good);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Logos */
.sz-logos {
  padding: 0;
  background: #fff;
}

.sz-logos > .sz-wrap { padding-top: 56px; padding-bottom: 72px; }

.sz-logos p {
  text-align: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

.sz-logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.sz-logo-row a,
.sz-logo-row div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 12px 16px;
  background: #fff;
  filter: grayscale(1);
  opacity: 0.6;
  transition: opacity 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.sz-logo-row a:hover {
  filter: none;
  opacity: 1;
  box-shadow: inset 0 0 0 1px var(--accent);
}

.sz-logo-row img { max-height: 28px; max-width: 100%; width: auto; height: auto; object-fit: contain; }
/* Magnific's wordmark is wide (≈6:1); cap it a little lower so it sits optically level with the others */
.sz-logo-row img[src*="magnific"] { max-height: 22px; }

/* Sections */
.sz-section { padding: 0; }
.sz-section > .sz-wrap { padding-top: 72px; padding-bottom: 80px; }
.sz-section.alt { background: var(--bg-2); }

/* Vertical rules on the content column, RedBuster style */
.sz-section > .sz-wrap,
.sz-logos > .sz-wrap {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding-left: 32px;
  padding-right: 32px;
  width: min(calc(var(--max) + 64px), calc(100% - 40px));
}

.sz-head { max-width: 640px; margin: 0 0 44px; }
.sz-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sz-head.center .sz-lede { margin-left: auto; margin-right: auto; }
.sz-head .sz-h2 { margin: 0 0 14px; letter-spacing: -0.04em; }
.sz-head .sz-lede { font-weight: 500; }

.sz-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* 1px-gap feature grid */
.sz-feature-grid {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sz-card {
  position: relative;
  padding: 32px;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.sz-card:hover { box-shadow: inset 0 0 0 1px var(--accent); }

.sz-step-num {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.sz-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.sz-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

/* Split */
.sz-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.sz-split .sz-h2 { margin: 0 0 14px; letter-spacing: -0.04em; }

.sz-list { list-style: none; margin: 22px 0 0; padding: 0; }
.sz-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.sz-list svg { margin-top: 3px; color: var(--accent); }

.sz-panel {
  padding: 28px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.sz-panel h3 { font-size: 20px; margin-bottom: 10px; }
.sz-panel p { color: var(--muted); margin: 0 0 18px; font-size: 15px; font-weight: 500; }

.sz-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sz-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.sz-meta strong { display: block; font-size: 13px; margin-bottom: 4px; }
.sz-meta span { color: var(--muted); font-size: 12.5px; }

/* Pricing */
.sz-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.sz-plan {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.sz-plan > :not(.sz-pixel-canvas) { position: relative; z-index: 2; }

.sz-plan.featured {
  background: linear-gradient(135deg, #108cf6 0%, #0035e2 30%, #0228e0 55%, #120fd7 100%);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 30px 60px -30px rgba(2, 40, 224, 0.6);
}

.sz-plan-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.sz-plan.featured .sz-plan-label { color: rgba(255, 255, 255, 0.85); }

.sz-plan-rec {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fff;
  border-radius: 999px;
  padding: 3px 9px;
}

.sz-plan-price {
  margin: 18px 0 6px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text);
}

.sz-plan.featured .sz-plan-price { color: #fff; }

.sz-plan-price small {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}

.sz-plan.featured .sz-plan-price small { color: rgba(255, 255, 255, 0.7); }

.sz-plan p { color: var(--muted); font-size: 14px; font-weight: 500; margin: 0 0 22px; min-height: 44px; }
.sz-plan.featured p { color: rgba(255, 255, 255, 0.78); }

.sz-plan ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sz-plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.sz-plan li::before {
  content: "✓";
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.sz-plan.featured li { color: rgba(255, 255, 255, 0.9); }
.sz-plan.featured li::before { background: #fff; color: var(--accent); }

.sz-plan .sz-btn { margin-top: auto; }

.sz-plan.featured .sz-btn-solid {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.sz-plan.featured .sz-btn-solid:hover { background: #eaf0ff; border-color: #eaf0ff; }

/* Plan cards: per-library limits (shared by landing + /shop) */
.sz-plan .sz-limits {
  display: block;
  gap: 0;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.sz-plan.featured .sz-limits { border-color: rgba(255, 255, 255, 0.22); }
.sz-limits li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
}
.sz-plan .sz-limits li::before { content: none; display: none; }
.sz-limits li > span { flex: 1; min-width: 0; }
.sz-plan.featured .sz-limits li { border-color: rgba(255, 255, 255, 0.22); color: rgba(255, 255, 255, 0.92); }
.sz-limits li.off { color: var(--faint); }
.sz-plan.featured .sz-limits li.off { color: rgba(255, 255, 255, 0.5); }
.sz-limits li small { display: block; font-size: 11.5px; font-weight: 400; color: var(--muted); }
.sz-plan.featured .sz-limits li small { color: rgba(255, 255, 255, 0.7); }
.sz-limits b {
  flex: none;
  min-width: 34px;
  height: 24px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
}
.sz-plan.featured .sz-limits b { background: #fff; color: var(--accent); }
.sz-limits li.off b { background: transparent; color: var(--faint); }
.sz-plan.featured .sz-limits li.off b { color: rgba(255, 255, 255, 0.5); }
.sz-limits-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.sz-plan.featured .sz-limits-title { color: rgba(255, 255, 255, 0.7); }

.sz-plan .sz-btn[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }

.sz-check {
  font-size: 0 !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230a25dc' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8.4l2.6 2.6L12 5.6'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 12px !important;
}

/* How credits work */
.sz-credits {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.sz-credits-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.sz-credits-head h3 { margin: 0; font-size: 18px; letter-spacing: -0.02em; }
.sz-credits-head p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 500; }

.sz-credits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.sz-credit { padding: 24px 28px; background: #fff; }

.sz-credit-n {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.sz-credit h4 { margin: 0 0 6px; font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.sz-credit p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 500; line-height: 1.6; }

.sz-compare {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.sz-compare strong { color: var(--accent); font-weight: 600; }
.sz-compare a:hover strong { text-decoration: underline; }

/* Video */
.sz-video {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-md);
}

.sz-video iframe { width: 100%; height: 100%; border: 0; }

/* Quotes */
.sz-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.sz-quote {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.sz-quote:hover { box-shadow: inset 0 0 0 1px var(--accent); }

.sz-quote p {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
}

.sz-person { display: flex; align-items: center; gap: 12px; }
.sz-avatar {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.sz-person strong { display: block; font-size: 14px; }
.sz-person span { font-size: 12.5px; color: var(--muted); }

/* FAQ */
.sz-faq-head {
  max-width: none;
  margin-bottom: 0;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.sz-faq { margin: 0; }

.sz-faq details {
  border-top: 1px solid var(--line);
  transition: background-color 0.2s ease;
}
.sz-faq details:first-child { border-top: 0; }
.sz-faq details:last-child { border-bottom: 1px solid var(--line); }
.sz-faq details[open] { background: var(--accent-soft); }

.sz-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 20px;
}

.sz-faq summary::-webkit-details-marker { display: none; }

.sz-faq-num {
  flex: none;
  width: 28px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

.sz-faq-q {
  flex: auto;
  min-width: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
}

.sz-faq-toggle {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
  align-self: center;
  color: var(--muted);
}
.sz-faq-toggle::before,
.sz-faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
}
.sz-faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }

.sz-faq details[open] .sz-faq-num,
.sz-faq details[open] .sz-faq-toggle { color: var(--accent); }
.sz-faq details[open] .sz-faq-q { color: var(--accent); font-weight: 600; }
.sz-faq details[open] .sz-faq-toggle::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg) scaleX(0); }

.sz-faq details p {
  margin: 0;
  padding: 0 20px 28px 68px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  max-width: 860px;
}

.sz-faq details p a { color: var(--accent); text-decoration: underline; }

.sz-faq-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 28px;
}
.sz-faq-foot p { margin: 0; color: var(--muted); font-weight: 500; }
.sz-faq-foot-links { display: flex; flex-wrap: wrap; gap: 12px; }

/* Final CTA card */
/* Close the vertical rules with a full-width line after the last framed section */
#faq { border-bottom: 1px solid var(--line); }

.sz-final {
  padding: 72px 0 96px;
  background: #fff;
}

.sz-cta-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 72px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #27a4fc 0%, #108cf6 12%, #0035e2 28%, #0228e0 50%, #0e1ada 68%, #120fd7 84%, #1a15d8 100%);
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.06),
    0 40px 80px -40px rgba(2, 40, 224, 0.55);
}

/* Fine white grain, like paper over the gradient */
.sz-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0.7px, transparent 0.9px);
  background-size: 5px 5px;
}

.sz-pixel-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
}

.sz-cta-card > :not(.sz-pixel-canvas) {
  position: relative;
  z-index: 2;
}

.sz-cta-card h2 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 22ch;
  margin: 0 auto 16px;
}

.sz-cta-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  max-width: 46ch;
  margin: 0 auto 32px;
}

.sz-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sz-btn-white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.sz-btn-white:hover { background: #eef2ff; }

.sz-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.sz-btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.6);
}

.sz-cta-trust {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 22px auto 0;
  padding: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.sz-cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sz-cta-trust li::before {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230a25dc' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 8.4l2.6 2.6L12 5.6'/></svg>") center / 10px no-repeat,
    #fff;
}

/* Mobile */
@media (max-width: 1240px) {
  .sz-float { display: none; }
}

@media (max-width: 900px) {
  .sz-window-body { grid-template-columns: 1fr; }
  .sz-pane-side { border-left: 0; border-top: 1px solid var(--line); }
  .sz-url { margin: 0 0 0 8px; }
  .sz-stats { grid-template-columns: 1fr 1fr; }
  .sz-stats > div:nth-child(3) { border-left: 0; }
  .sz-stats > div:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .sz-stage { margin-top: 40px; }
  .sz-nav-toggle { display: grid; place-items: center; }
  .sz-nav-links,
  .sz-nav-end .sz-btn-ghost { display: none; }
  .sz-nav.is-open .sz-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    padding: 16px 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    gap: 14px;
  }
  .sz-grid-3,
  .sz-plans,
  .sz-quotes,
  .sz-split,
  .sz-logo-row {
    grid-template-columns: 1fr;
  }
  .sz-credits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sz-credits-head { padding: 18px 20px; }
  .sz-credit { padding: 20px; }
  .sz-logo-row { grid-template-columns: repeat(2, 1fr); }
  .sz-trial { flex-direction: column; gap: 8px; border-radius: 14px; padding: 8px; max-width: 100%; }
  .sz-trial input {
    flex: none;
    width: 100%;
    height: 48px;
    min-height: 48px;
    line-height: 48px;
    font-size: 16px; /* ≥16px stops iOS Safari from zooming the page on focus */
    background: var(--bg-2);
    border: 1px solid var(--line);
  }
  .sz-trial input:focus { background: #fff; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(10, 37, 220, 0.12); }
  .sz-trial .sz-btn { width: 100%; }
  .sz-hero { padding-top: 48px; }
  .sz-result { grid-template-columns: 1fr; }
  .sz-section > .sz-wrap,
  .sz-logos > .sz-wrap {
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: min(var(--max), calc(100% - 40px));
  }
  .sz-section > .sz-wrap { padding-top: 56px; padding-bottom: 64px; }
  .sz-logos > .sz-wrap { padding-top: 48px; padding-bottom: 56px; }
  .sz-sec-head { position: static; }
  .sz-sec-head-inner { width: min(var(--max), calc(100% - 40px)); padding: 12px 0; border-left: 0; border-right: 0; }
  .sz-faq summary { padding: 16px 12px; gap: 12px; }
  .sz-faq-num { width: 22px; font-size: 11px; }
  .sz-faq-q { font-size: 16px; }
  .sz-faq details p { padding: 0 12px 22px 46px; font-size: 15px; }
}

@media (max-width: 600px) {
  .sz-wrap { width: calc(100% - 28px); }
  .sz-section > .sz-wrap,
  .sz-logos > .sz-wrap { width: calc(100% - 28px); }
  .sz-hero { padding-top: 40px; }
  .sz-hero-copy { text-align: center; }
  .sz-hero .sz-h1,
  .sz-hero .sz-lede { margin-left: auto; margin-right: auto; }
  .sz-window { width: 100%; }
  .sz-window-body { padding: 14px; }
  .sz-fake-form { min-width: 0; }
  .sz-fake-form .url { font-size: 12px; }
  .sz-trust { flex-direction: column; align-items: center; gap: 8px; }
  .sz-plan-price { font-size: 36px; }
  .sz-credits-grid { grid-template-columns: 1fr; }
  .sz-cta-card { padding: 48px 22px; border-radius: 16px; }
  .sz-cta-card h2 { font-size: 1.85rem; }
  .sz-cta-actions .sz-btn { width: 100%; }
}
