/* SwiftBalance marketing site — Soft Steel palette, extended for marketing.
 * Single source of truth for the homepage and the news pages.
 */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  /* Soft Steel base */
  --canvas:          #eaecef;
  --bg:              #e2e4e8;
  --surface:         #ffffff;
  --surface-hover:   #eef0f2;
  --border:          #cdd1d7;
  --border-strong:   #b8bcc4;
  --border-subtle:   rgba(0,0,0,0.08);

  --text:            #1a1d23;
  --text-strong:     #0d0f12;
  --text-secondary:  #3d4350;
  --text-muted:      #636a75;
  --text-disabled:   #8b929c;

  /* Accent (tweakable) */
  --accent:          #ea580c;
  --accent-dark:     #c2410c;
  --accent-darker:   #9a3412;
  --accent-light:    #f97316;
  --accent-subtle:   rgba(234, 88, 12, 0.08);
  --accent-mid:      rgba(234, 88, 12, 0.14);
  --accent-border:   rgba(234, 88, 12, 0.25);

  --success:         #10b981;
  --success-bg:      #d1fae5;
  --error:           #dc2626;
  --error-bg:        #fee2e2;

  /* Fonts (tweakable) */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'IBM Plex Sans', -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', Consolas, monospace;

  /* Rhythm */
  --max-w: 1240px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ───────────── Typography ───────────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.h-display em {
  font-style: italic;
  color: var(--accent);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: 1px;
}

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ───────────── Buttons ───────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: all 150ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--text-strong);
  color: #fff;
  border-color: var(--text-strong);
}
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); }
.btn-ghost {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--text-strong); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ───────────── Nav ───────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(234, 236, 239, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--text-secondary);
}
.nav-links a { transition: color 150ms ease; }
.nav-links a:hover { color: var(--text-strong); }
.nav-links a.is-active { color: var(--text-strong); }
.nav-ctas { display: flex; gap: 10px; align-items: center; }

/* ───────────── Hero ───────────── */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.7fr);
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 5.4vw, 84px);
  margin: 20px 0 24px;
}
.hero p.lede {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex; gap: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-meta span strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-strong);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-top: 4px;
}

/* ───────────── Variance Table (animated) ───────────── */
.report-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 6px 18px -10px rgba(15,23,42,0.10);
  overflow: hidden;
  position: relative;
}
.report-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fafbfc, #f5f6f8);
}
.report-tabs { display: flex; gap: 4px; }
.report-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}
.report-tab.active { background: var(--text-strong); color: #fff; }
.report-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-strong);
}
.report-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--accent-subtle);
  color: var(--accent-darker);
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--accent-border);
}

.report-body { padding: 0; }
table.variance {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
table.variance th {
  text-align: right;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: #f7f8fa;
}
table.variance th:first-child { text-align: left; }
table.variance td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  text-align: right;
  transition: background 400ms ease;
}
table.variance td:first-child {
  text-align: left;
  font-family: var(--font-body);
  color: var(--text-strong);
  font-weight: 400;
}
table.variance tr.section-head td {
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-strong);
  background: #f5f6f8;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding-top: 11px; padding-bottom: 11px;
}
table.variance tr.total td {
  font-weight: 600;
  border-top: 1px solid var(--border-strong);
  background: #fafbfc;
}
table.variance tr.indent td:first-child { padding-left: 30px; color: var(--text-secondary); }

.var-pos { color: var(--success); }
.var-neg { color: var(--error); }
.var-zero { color: var(--text-muted); }
.var-pill {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
}
.var-pill.pos { background: var(--success-bg); color: #065f46; }
.var-pill.neg { background: var(--error-bg); color: #991b1b; }

@keyframes cellPulse {
  0%   { background: transparent; }
  30%  { background: var(--accent-mid); }
  100% { background: transparent; }
}
td.pulsing { animation: cellPulse 1.4s ease; }

.hero-annotation {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
  pointer-events: none;
}
.hero-annotation .line {
  width: 40px; height: 1px;
  background: var(--text-muted);
}

/* Scroll ticker */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
  padding: 18px 0;
}
.ticker-track {
  display: flex; gap: 60px;
  animation: scroll 50s linear infinite;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
}
.ticker-track span { display: inline-flex; align-items: center; gap: 10px; }
.ticker-track .sep { color: var(--accent); font-weight: 600; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───────────── Section shell ───────────── */
section.block { padding: 100px 0; }
section.block.tight { padding: 70px 0; }
section.dark {
  background: var(--text-strong);
  color: #e8e9ec;
}
section.dark .h-display { color: #fff; }
section.dark .eyebrow { color: #8b929c; }
section.dark .eyebrow .dot { background: var(--accent-light); }
section.dark p { color: #b8bcc4; }

.section-head {
  max-width: 780px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(34px, 3.6vw, 56px);
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.section-head p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 620px;
}

/* ───────────── 3-up features ───────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.feat-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(15,23,42,0.08); }
.feat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 8px 0 12px;
  color: var(--text-strong);
}
.feat-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.feat-visual {
  height: 160px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

/* ───────────── Deep-dive split ───────────── */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.split.reverse .split-text { order: 2; }

.split-text h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 14px 0 18px;
  color: var(--text-strong);
}
.split-text p.lede {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.checklist { list-style: none; padding: 0; margin: 0 0 28px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.checklist li:last-child { border-bottom: 1px solid var(--border); }
.checklist .idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  padding-top: 3px;
  min-width: 28px;
}

/* Builder visual */
.builder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 18px -10px rgba(15,23,42,0.10);
  overflow: hidden;
}
.builder-head {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: #f7f8fa;
}
.builder-dots { display: flex; gap: 5px; }
.builder-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.builder-head .path {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 12px;
}
.builder-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 380px;
}
.builder-side {
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  background: #f9fafb;
}
.builder-side-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 8px 8px 6px;
}
.builder-side-item {
  padding: 7px 9px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 8px;
  cursor: default;
}
.builder-side-item:hover { background: var(--surface-hover); }
.builder-side-item.active { background: var(--accent-subtle); color: var(--accent-darker); }
.builder-side-item .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: auto;
  color: var(--text-muted);
}
.builder-side-item.active .tag { background: var(--accent-mid); color: var(--accent-darker); }

.builder-main {
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  background: repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(0,0,0,0.025) 28px, rgba(0,0,0,0.025) 29px);
}
.builder-row {
  display: grid;
  grid-template-columns: 1fr 100px 100px 100px;
  gap: 12px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  align-items: center;
}
.builder-row .label { color: var(--text-strong); }
.builder-row .val { font-family: var(--font-mono); text-align: right; color: var(--text); }
.builder-row.group {
  background: #f5f6f8;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-strong);
}
.builder-row.sum {
  background: #fafbfc;
  border-top: 2px solid var(--text-strong);
  font-weight: 600;
}
.builder-row.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}
.builder-handle {
  display: inline-block; width: 10px;
  color: var(--text-disabled); margin-right: 6px;
  cursor: grab;
}

/* Variance deep-dive visualization */
.var-viz {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 18px -10px rgba(15,23,42,0.10);
  padding: 28px;
}
.var-viz-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 22px;
}
.var-viz-head h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  color: var(--text-strong);
}
.var-viz-head .period {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.var-bar-row {
  display: grid;
  grid-template-columns: 150px 1fr 90px;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--border-subtle);
  align-items: center;
  font-size: 14px;
}
.var-bar-row:first-child { border-top: none; }
.var-bar-row .name { color: var(--text-strong); }
.var-bar-track {
  position: relative;
  height: 22px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}
.var-bar-mid {
  position: absolute;
  left: 50%; top: -4px; bottom: -4px;
  width: 1px;
  background: var(--border-strong);
}
.var-bar-fill {
  position: absolute; top: 3px; bottom: 3px;
  border-radius: 2px;
}
.var-bar-fill.pos { background: var(--success); left: 50%; }
.var-bar-fill.neg { background: var(--error); right: 50%; }
.var-bar-row .pct {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 13px;
}

.comment-thread {
  margin-top: 24px;
  padding: 18px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.comment-thread strong { color: var(--text-strong); }
.comment-thread .who {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.comment-thread .avatar {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
}

/* ───────────── How it works ───────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.step {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
}
.step .idx {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--text-strong);
}
.step p { color: var(--text-secondary); font-size: 14.5px; margin: 0 0 20px; }
.step-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  min-height: 120px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ───────────── Testimonials ───────────── */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.quote .mark {
  font-family: var(--font-display);
  font-size: 54px;
  color: var(--accent);
  line-height: 0.8;
  margin-bottom: 0;
}
.quote p {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-strong);
  margin: 8px 0 22px;
  letter-spacing: -0.005em;
}
.quote footer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.avatar-lg {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--text-strong);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500;
  font-size: 13px;
  flex-shrink: 0;
}
.quote footer .name { color: var(--text-strong); font-weight: 500; display: block; }
.quote footer .role { color: var(--text-muted); font-size: 12px; }

/* ───────────── Pricing ───────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}
.pricing-card {
  background: var(--surface);
  padding: 36px 32px;
  gap: 1px;
  position: relative;
}
.pricing-card.featured {
  background: var(--text-strong);
  color: #fff;
}
.pricing-card.featured h4,
.pricing-card.featured .price-amt { color: #fff; }
.pricing-card.featured p,
.pricing-card.featured li { color: #b8bcc4; }
.pricing-card.featured .price-unit,
.pricing-card.featured .plan-tag { color: #8b929c; }
.plan-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.pricing-card h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin: 8px 0;
  letter-spacing: -0.01em;
}
.price-amt {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 12px 0 4px;
}
.price-unit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.price-unit:has(+ .price-billed) { margin-bottom: 4px; }
.price-billed {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.pricing-card.featured .price-billed { color: #8b929c; }
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  font-size: 14px;
  color: var(--text-secondary);
}
.pricing-card li {
  padding: 8px 0;
  display: flex; gap: 8px; align-items: flex-start;
  border-top: 1px solid var(--border);
}
.pricing-card.featured li { border-color: #2a2e35; }
.pricing-card li::before {
  content: '→';
  color: var(--accent);
  font-family: var(--font-mono);
}
.pricing-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
/* ─────────────────────────────────────────────────────────────────────────
 * Cookie consent banner + Cookies info modal
 * ───────────────────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 760px;
  margin: 0 auto;
  z-index: 1000;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px -16px rgba(15, 23, 42, 0.22);
  padding: 18px 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.cookie-banner-text { flex: 1 1 280px; }
.cookie-banner-text a { color: var(--accent); text-decoration: underline; }
.cookie-banner-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}

.cookie-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 1100;
  padding: 24px;
}
.cookie-modal {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 32px 64px -24px rgba(15, 23, 42, 0.4);
  max-width: 620px; width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 36px 36px 32px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.55;
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-strong);
  margin: 0 0 12px;
}
.cookie-modal h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 22px 0 8px;
}
.cookie-modal p { margin: 8px 0; }
.cookie-modal ul { margin: 6px 0 10px; padding-left: 22px; }
.cookie-modal li { padding: 3px 0; }
.cookie-modal code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 3px;
  border: 1px solid var(--border);
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
}
.cookie-modal-close:hover { background: var(--bg); color: var(--text-strong); }
.cookie-modal-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .cookie-banner { padding: 14px 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1 1 auto; justify-content: center; }
  .cookie-modal { padding: 28px 22px 24px; }
}

.pricing-card .addon-note {
  margin-top: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.pricing-card.featured .addon-note {
  border-color: #2a2e35;
  color: #8b929c;
}
.pricing-card .price-badge {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
}

/* ───────────── vs Excel ───────────── */
.compare {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  text-align: left;
  vertical-align: top;
}
.compare th {
  background: #f7f8fa;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
}
.compare th:first-child { width: 280px; }
.compare tr:last-child td { border-bottom: none; }
.compare .row-label {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-strong);
  font-weight: 400;
}
.compare .excel { color: var(--text-muted); }
.compare .excel::before {
  content: '—';
  font-family: var(--font-mono);
  margin-right: 8px;
  color: var(--text-disabled);
}
.compare .swift::before {
  content: '✓';
  font-family: var(--font-mono);
  margin-right: 8px;
  color: var(--success);
  font-weight: 600;
}
.compare .swift { color: var(--text); }
.compare td.ours { background: #fafbfc; border-left: 3px solid var(--accent); }
.compare th.ours {
  background: var(--text-strong);
  color: #fff;
}

/* ───────────── FAQ ───────────── */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  user-select: none;
  gap: 24px;
}
.faq-q .plus {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--accent);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, margin 300ms ease;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 260px; margin-top: 14px; }

/* ───────────── Final CTA ───────────── */
.final-cta {
  padding: 120px 0;
  background: var(--text-strong);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.18;
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0 0 24px;
  color: #fff;
  max-width: 780px;
}
.final-cta h2 em { font-style: italic; color: var(--accent-light); }
.final-cta p { font-size: 19px; color: #b8bcc4; max-width: 540px; margin: 0 0 36px; }
.final-cta .btn-accent { padding: 16px 28px; font-size: 15px; }

/* ───────────── Footer ───────────── */
footer.site {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--canvas);
  color: var(--text-secondary);
  font-size: 13.5px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.foot-col a { display: block; padding: 5px 0; color: var(--text-secondary); }
.foot-col a:hover { color: var(--text-strong); }
.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ───────────── V2 Modern Operator overrides ───────────── */
body.v2 {
  --canvas: #f7f7f5;
  --bg: #ececea;
  --surface: #ffffff;
  --surface-hover: #f3f3f1;
  --border: #e4e4e1;
  --border-strong: #cbcbc7;
  --text-strong: #111111;
  --text: #242424;
  --text-secondary: #4a4a4a;
  --text-muted: #8a8a85;
}
body.v2 .h-display,
body.v2 .section-head h2,
body.v2 .hero h1,
body.v2 .feat-card h3,
body.v2 .split-text h3,
body.v2 .step h4,
body.v2 .quote p,
body.v2 .pricing-card h4,
body.v2 .faq-q,
body.v2 .final-cta h2,
body.v2 .var-viz-head h4,
body.v2 .price-amt,
body.v2 .step .idx,
body.v2 .brand {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -0.03em;
}
body.v2 .h-display em,
body.v2 .final-cta h2 em { font-style: normal; font-weight: 400; }
body.v2 .hero h1 { font-weight: 500; }
body.v2 .step .idx { font-size: 42px; font-weight: 500; }
body.v2 .price-amt { font-weight: 500; }

/* Responsive */
/* Inline-styled grids (set on JSX components) collapsed on mobile via class
 * hooks — the media query can't reach inline `grid-template-columns`. */
.mkt-grid-2      { display: grid; grid-template-columns: 1fr 1fr; }
.mkt-grid-3      { display: grid; grid-template-columns: repeat(3, 1fr); }
.mkt-grid-split  { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.7fr); }
.mkt-grid-2-wide { display: grid; grid-template-columns: 1fr 1.15fr; }

/* Mobile nav: hamburger + dropdown panel (hidden on desktop) */
.nav-toggle { display: none; }
.nav-mobile { display: none; }
/* "Best on desktop" notice replaces the Start-free CTA on mobile */
.nav-desktop-note { display: none; }

@media (max-width: 900px) {
  .hero-grid, .split, .feat-grid, .steps, .quote-grid, .pricing-grid, .foot-grid {
    grid-template-columns: 1fr !important;
  }
  .split.reverse .split-text { order: 0; }
  .nav-links { display: none; }
  .hero h1 { font-size: 44px; }
  .container { padding: 0 20px; }

  /* Stack inline-styled multi-column sections */
  .mkt-grid-2, .mkt-grid-3, .mkt-grid-split, .mkt-grid-2-wide {
    grid-template-columns: 1fr;
  }
  /* Decorative absolute callouts overflow the viewport on phones — hide them */
  .mkt-callout { display: none !important; }

  /* Hamburger button */
  .nav-signin { display: none; }
  /* Hide the app-launching Start-free CTA; show a desktop hint instead */
  .nav-startfree { display: none; }
  .nav-desktop-note {
    display: inline-flex; align-items: center;
    font-family: var(--font-mono); font-size: 9.5px;
    letter-spacing: 0.01em;
    color: var(--text-muted); white-space: nowrap;
  }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
    width: 38px; height: 38px; padding: 0 9px;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 8px; cursor: pointer;
  }
  .nav-toggle span {
    display: block; height: 2px; width: 100%;
    background: var(--text-strong); border-radius: 2px;
  }
  .nav-mobile {
    display: flex; flex-direction: column;
    padding: 4px 20px 18px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile a {
    padding: 13px 2px; font-size: 15px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
  }
  .nav-mobile a:first-child { border-top: none; }
  .nav-mobile a:hover { color: var(--text-strong); }

  /* Let hero/report visuals scale down to the column instead of overflowing.
   * Grid & flex children default to min-width:auto (= content width), which
   * forced the report-card to ~421px and clipped the image/table. */
  .hero-grid > * { min-width: 0; }
  .report-card { max-width: 100%; min-width: 0; }
  /* Header can't force the card wide: let the tab strip wrap below the title */
  .report-header { flex-wrap: wrap; row-gap: 8px; }
  .report-header > div { min-width: 0; }
  /* If a data table is still wider than the screen, let it scroll within the
   * card rather than clip (the image cards aren't affected). */
  .report-body { overflow-x: auto; }
  table.variance { font-size: 12px; }
  table.variance th, table.variance td { padding: 8px 10px; }
  table.variance tr.indent td:first-child { padding-left: 18px; }

  /* App-launch CTAs hidden on mobile (don't funnel phone users into the app) */
  .hide-on-mobile { display: none !important; }

  /* vs-Excel comparison: three text columns can't fit a phone, so stack each
   * row into a card (Excel value above the SwiftBalance value). */
  .compare { overflow-x: visible; }
  .compare table, .compare tbody, .compare tr, .compare td { display: block; width: 100%; }
  .compare thead { display: none; }
  .compare tr { padding: 16px 18px; border-bottom: 1px solid var(--border); }
  .compare tr:last-child { border-bottom: none; }
  .compare td { padding: 0; border: none; }
  .compare td.row-label { font-size: 16px; margin-bottom: 10px; }
  .compare td.excel,
  .compare td.swift {
    font-size: 14px; line-height: 1.45;
    padding: 10px 12px; border-radius: var(--radius-sm);
    margin-top: 8px;
  }
  .compare td.excel { background: var(--bg); color: var(--text-muted); }
  .compare td.swift.ours {
    background: var(--accent-subtle);
    border-left: 3px solid var(--accent);
    color: var(--text);
  }
  /* Replace the —/✓ marks with a source tag now that the header is hidden */
  .compare td.excel::before,
  .compare td.swift::before {
    display: block;
    margin: 0 0 4px;
    font-family: var(--font-mono); font-size: 10px;
    text-transform: uppercase; letter-spacing: 0.08em;
    font-weight: 500;
  }
  .compare td.excel::before { content: "Excel"; color: var(--text-disabled); }
  .compare td.swift::before { content: "SwiftBalance"; color: var(--accent); }
}

/* ─────────────────────────────────────────────────────────────────────────
 * News pages
 * ───────────────────────────────────────────────────────────────────────── */

/* List page — card grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15,23,42,0.08);
  border-color: var(--accent-border);
}
.news-card-hero {
  aspect-ratio: 16/9;
  background: var(--bg);
  background-size: cover;
  background-position: center;
}
.news-card-body { padding: 22px 26px 26px; }
.news-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.news-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin: 0 0 10px;
}
.news-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
.news-empty {
  padding: 96px 0; text-align: center;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Loading skeleton — placeholder cards shown while /api/news/posts/ is in flight */
.news-card-skeleton {
  pointer-events: none;
  cursor: default;
}
.news-card-skeleton:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}
.skeleton-line {
  display: block;
  border-radius: 6px;
}
.skeleton-shimmer {
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.06) 0%,
    rgba(15, 23, 42, 0.12) 50%,
    rgba(15, 23, 42, 0.06) 100%
  );
  background-size: 200% 100%;
  animation: news-skeleton-shimmer 1.4s ease-in-out infinite;
}
@keyframes news-skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton-shimmer { animation: none; }
}
.news-loading-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Detail page — typographic prose */
.news-detail-hero {
  width: 100%;
  object-fit: cover;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 24px 0 40px;
}
.news-detail header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
  margin-bottom: 36px;
}
.news-detail .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.news-detail h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 14px 0 18px;
}
body.v2 .news-detail h1 {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.news-prose {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  max-width: 70ch;
}
.news-prose p { margin: 0 0 1.2em; }
.news-prose h2,
.news-prose h3,
.news-prose h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-strong);
  margin: 2em 0 0.5em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
body.v2 .news-prose h2,
body.v2 .news-prose h3,
body.v2 .news-prose h4 {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.news-prose h2 { font-size: 1.7em; }
.news-prose h3 { font-size: 1.35em; }
.news-prose h4 { font-size: 1.1em; }
.news-prose a { color: var(--accent); border-bottom: 1px solid var(--accent-border); }
.news-prose a:hover { border-bottom-color: var(--accent); }
.news-prose img {
  margin: 1.6em auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.news-prose blockquote {
  margin: 1.6em 0;
  padding: 0.6em 1.2em;
  border-left: 3px solid var(--accent);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 1.1em;
  font-style: italic;
}
body.v2 .news-prose blockquote {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
}
.news-prose pre {
  background: var(--text-strong);
  color: #f4f4f4;
  font-family: var(--font-mono);
  font-size: 0.92em;
  padding: 1em 1.2em;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 1.4em 0;
}
.news-prose code { font-family: var(--font-mono); font-size: 0.92em; }
.news-prose ul,
.news-prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.news-prose hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2.4em 0;
}

/* Editor (post/index.html) — author-only */
.editor-shell {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
}
@media (max-width: 900px) {
  .editor-shell { grid-template-columns: 1fr; }
}
.editor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.editor-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--text-strong);
}
body.v2 .editor-card h2 { font-family: var(--font-body); font-weight: 500; letter-spacing: -0.02em; }
.editor-card p.lede { color: var(--text-muted); font-size: 14px; margin: 0 0 24px; }

.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-row label .hint {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 8px;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="password"],
.form-row textarea {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}
.form-row textarea { height: auto; padding: 10px 12px; resize: vertical; }
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}
.form-error {
  background: var(--error-bg);
  color: var(--error);
  font-size: 13px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.editor-side {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  height: fit-content;
}
.editor-side h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.editor-side ul { list-style: none; padding: 0; margin: 0; }
.editor-side li {
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.editor-side li:first-child { border-top: 0; }
.editor-side .post-link {
  display: block;
  color: var(--text-strong);
  cursor: pointer;
  font-size: 14px;
}
.editor-side .post-link:hover { color: var(--accent); }
.editor-side .draft {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.editor-side .post-actions { display: flex; gap: 12px; margin-top: 6px; }
.editor-side .post-actions button {
  background: none; border: 0; padding: 0;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.editor-side .post-actions button:hover { color: var(--accent); }
.editor-side .post-actions .danger:hover { color: var(--error); }

#editor { min-height: 360px; background: var(--surface); }
.ql-toolbar.ql-snow,
.ql-container.ql-snow { border-color: var(--border-strong); }
.ql-toolbar.ql-snow {
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: var(--radius-sm);
}
.ql-container.ql-snow {
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
}

.flash {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.flash.is-success { color: var(--success); }
.flash.is-error { color: var(--error); }

.hero-img-preview {
  margin-top: 12px;
  max-height: 180px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.hero-picker-frame {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  max-width: 100%;
  cursor: crosshair;
  user-select: none;
  line-height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.hero-picker-frame .hero-img-preview {
  display: block;
  margin-top: 0;
  max-height: 320px;
  max-width: 100%;
}
.hero-crop-rect {
  position: absolute;
  outline: 2px solid #fff;
  outline-offset: -2px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  border-radius: 2px;
}
.hero-focal-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  margin-top: -7px;
  border: 2px solid #fff;
  background: var(--accent, #ea580c);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
