/* ==========================================================================
   Sellerio — shared site stylesheet
   Design system: Monday.com-style clarity (board colors, flat surfaces,
   generous whitespace) refined for a calmer, more confident feel, with
   proof-section structure borrowed from SellerPlex (stat strip, pull-quote).
   ========================================================================== */

:root {
  /* Brand — same values the app itself uses, not invented for marketing */
  --accent: #1a6fff;
  --accent2: #0052e0;
  --accent-soft: rgba(26,111,255,0.08);
  --teal: #0891b2;
  --teal-soft: rgba(8,145,178,0.08);

  /* Board palette — matches the product's own .board-group-* colors */
  --mblue: #579bfc;
  --mgreen: #00c875;
  --mred: #e2445c;
  --morange: #fdab3d;
  --mpurple: #a25ddc;
  --mgold: #ffcb00;

  /* Neutrals */
  --text-primary: #15161a;
  --text-secondary: #53545e;
  --text-muted: #8c8d97;
  --surface: #ffffff;
  --border: rgba(21,22,26,0.07);
  --border-strong: rgba(21,22,26,0.13);
  --body-bg: #f7f8fa;

  /* Scale */
  --r-sm: 8px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15,15,20,0.04), 0 1px 1px rgba(15,15,20,0.03);
  --shadow-md: 0 4px 14px rgba(15,15,20,0.06), 0 1px 3px rgba(15,15,20,0.04);
  --shadow-lg: 0 12px 32px rgba(15,15,20,0.09), 0 2px 8px rgba(15,15,20,0.05);
  --shadow-xl: 0 24px 60px rgba(15,15,20,0.14), 0 6px 16px rgba(15,15,20,0.06);

  --dark: #131319;
  --dark-line: rgba(255,255,255,0.08);
  --dark-text-soft: #a6a7b3;

  --container: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--body-bg);
  background-image:
    radial-gradient(560px circle at 8% 6%, rgba(26,111,255,0.055), transparent 60%),
    radial-gradient(480px circle at 92% 12%, rgba(8,145,178,0.05), transparent 60%),
    radial-gradient(520px circle at 50% 100%, rgba(162,93,220,0.045), transparent 60%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: bodyGlowDrift 24s ease-in-out infinite alternate;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@keyframes bodyGlowDrift {
  0% { background-position: 0% 0%, 100% 0%, 50% 100%; }
  100% { background-position: 3% 4%, 96% 7%, 47% 96%; }
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}
.display { font-family: 'Space Grotesk', 'Inter', sans-serif; }
.mono { font-family: 'JetBrains Mono', monospace; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---- Nav ---- */
nav {
  position: sticky; top: 0; z-index: 300;
  background: rgba(247,248,250,0.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo a { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 36px; width: auto; display: block; }
.footer-top .logo img { height: 32px; }
.navlinks { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; }
.navlinks a:not(.nav-cta) { color: var(--text-secondary); text-decoration: none; transition: color .15s, background .15s; padding: 7px 12px; border-radius: var(--r-pill); }
.navlinks a:not(.nav-cta):hover { color: var(--text-primary); }
.navlinks a.active { color: var(--accent); background: var(--accent-soft); font-weight: 600; }
.navlinks a.active:hover { color: var(--accent); }
a.nav-cta {
  background: var(--accent); color: #fff !important; padding: 10px 20px; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 600; text-decoration: none; transition: background .15s, transform .15s;
  margin-left: 14px;
}
a.nav-cta:hover { background: var(--accent2); color: #fff !important; transform: translateY(-1px); }
.menu-btn { display: none; background: none; border: none; padding: 6px; position: relative; z-index: 210; }
.menu-btn svg { width: 22px; height: 22px; color: var(--text-primary); }
.menu-btn .icon-close { display: none; }
.menu-btn.active .icon-open { display: none; }
.menu-btn.active .icon-close { display: block; }
.mobile-menu {
  display: none; position: fixed; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; background: var(--body-bg); z-index: 250;
  padding: 84px 28px 28px; flex-direction: column; gap: 4px; overflow-y: auto; -webkit-overflow-scrolling: touch; box-sizing: border-box;
}
.mobile-menu.open { display: flex; }
body.menu-open { overflow: hidden; position: fixed; width: 100%; }
.mobile-menu a {
  padding: 15px 4px; font-size: 16px; font-weight: 600; text-decoration: none; color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.active:not(.nav-cta) { color: var(--accent); background: var(--accent-soft); padding-left: 12px; padding-right: 12px; border-radius: var(--r-md); border-bottom-color: transparent; }
.mobile-menu .nav-cta { text-align: center; margin-top: 14px; padding: 13px; }

/* ---- Hero ---- */
.hero { padding: 68px 0 64px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600;
  color: var(--teal); background: var(--teal-soft); border: 1px solid rgba(8,145,178,0.18);
  padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 20px; letter-spacing: 0.01em;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
h1 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: 46px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.09; margin-bottom: 18px; }
h1 .hl { color: var(--accent); }
.hero-sub { font-size: 16.5px; color: var(--text-secondary); max-width: 460px; margin-bottom: 28px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #fff; padding: 14px 26px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 14.5px; text-decoration: none; display: inline-block;
  transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: 0 1px 2px rgba(26,111,255,0.15);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  color: var(--text-primary); background: var(--surface); padding: 14px 24px; border-radius: var(--r-pill); font-weight: 600; font-size: 14.5px;
  text-decoration: none; border: 1px solid var(--border-strong); transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: var(--text-muted); background: #fbfbfc; }
.hero-note { font-size: 12.5px; color: var(--text-muted); margin-top: 14px; }

.hero-visual { position: relative; }
.device-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: 20px; position: relative;
}
.device-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.device-title { font-size: 13px; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
.device-title .tag { font-size: 11px; font-weight: 600; color: var(--teal); background: var(--teal-soft); padding: 3px 9px; border-radius: var(--r-pill); }
.kw-row { border: 1px solid var(--border); border-radius: var(--r-md); padding: 13px; margin-bottom: 9px; background: var(--body-bg); }
.kw-row:last-child { margin-bottom: 0; }
.kw-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.kw-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.kw-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.badge-profit { font-size: 10.5px; font-weight: 700; background: var(--teal-soft); color: var(--teal); padding: 3px 8px; border-radius: var(--r-pill); white-space: nowrap; }
.kw-reason { font-size: 11.5px; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.5; }
.kw-reason .mono { color: var(--text-primary); font-weight: 600; }
.kw-bid { display: flex; align-items: center; justify-content: space-between; }
.bid-change { font-size: 13px; }
.bid-old { color: var(--text-muted); text-decoration: line-through; margin-right: 6px; }
.bid-new { color: var(--teal); font-weight: 700; }
.mini-btn { font-size: 11px; font-weight: 600; padding: 5px 11px; border-radius: var(--r-pill); background: var(--accent); color: #fff; }
.float-chip { position: absolute; z-index: 5; background: var(--dark); color: #fff; border-radius: var(--r-md); padding: 10px 14px; font-size: 12px; font-weight: 600; box-shadow: var(--shadow-lg); }
.float-chip.c1 { top: -14px; right: 18px; }
.float-chip .num { font-family: 'JetBrains Mono', monospace; color: var(--teal); font-weight: 600; }

/* ---- Stat strip (SellerPlex-style proof bar, honest numbers) ---- */
.stat-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.stat-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 26px 20px; text-align: center; border-left: 1px solid var(--border); }
.stat-item:first-child { border-left: none; }
.stat-num { font-family: 'JetBrains Mono', monospace; font-size: 27px; font-weight: 600; color: var(--text-primary); letter-spacing: -0.01em; }
.stat-label { font-size: 12.5px; color: var(--text-muted); font-weight: 500; margin-top: 5px; }

/* ---- Proof strip (brand swatches) ---- */
.proof { padding: 20px 0; background: var(--surface); }
.proof .wrap { display: flex; align-items: center; justify-content: center; gap: 38px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.proof-item .swatch { width: 8px; height: 8px; border-radius: 2px; }

/* ---- Section shell ---- */
section { padding: 84px 0; }
.section-head { max-width: 620px; margin-bottom: 42px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent); margin-bottom: 12px; }
h2 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: 30px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.16; margin-bottom: 14px; }
.section-sub { font-size: 15.5px; color: var(--text-secondary); line-height: 1.62; }

/* ---- How it works ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--step-color, var(--accent)); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); position: relative; }
.step-num {
  width: 32px; height: 32px; border-radius: var(--r-md); background: color-mix(in srgb, var(--step-color, var(--accent)) 14%, white); color: var(--step-color, var(--accent));
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13.5px; margin-bottom: 16px;
}
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 9px; letter-spacing: -0.01em; }
.step-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.58; }

/* ---- Capability grid (board-group recipe: thin colored left border) ---- */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cap-card {
  background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--cap-color, var(--accent));
  padding: 22px; transition: box-shadow .15s, transform .15s;
}
.cap-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cap-icon {
  width: 36px; height: 36px; border-radius: var(--r-md); background: var(--cap-color, var(--accent));
  display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 15px;
}
.cap-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.cap-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.58; }
.cap-tag {
  display: inline-block; margin-top: 13px; font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--cap-color, var(--accent)); background: color-mix(in srgb, var(--cap-color, var(--accent)) 12%, white);
  padding: 3px 9px; border-radius: var(--r-pill);
}

/* ---- Feature showcase rows ---- */
.feature-row { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center; margin-bottom: 64px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.rev { grid-template-columns: 1.15fr 0.85fr; }
.feature-row.rev .feature-visual { order: -1; }
.feature-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--teal); font-weight: 600; margin-bottom: 13px; letter-spacing: 0.03em; }
.feature-row h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 13px; line-height: 1.28; }
.feature-row p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.64; margin-bottom: 17px; }
.feature-list { list-style: none; }
.feature-list li { font-size: 14px; color: var(--text-primary); padding-left: 21px; position: relative; margin-bottom: 10px; }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.feature-visual { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 20px; box-shadow: var(--shadow-md); }

.kpi-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 12px; }
.kpi-tile { border: 1px solid var(--border); border-radius: var(--r-md); padding: 12px; background: var(--body-bg); border-top: 3px solid transparent; }
.kpi-tile.c-blue { background: rgba(87,155,252,0.10); border-color: rgba(87,155,252,0.18); border-top-color: var(--mblue); }
.kpi-tile.c-red { background: rgba(226,68,92,0.08); border-color: rgba(226,68,92,0.16); border-top-color: var(--mred); }
.kpi-tile.c-green { background: rgba(0,200,117,0.08); border-color: rgba(0,200,117,0.18); border-top-color: var(--mgreen); }
.kpi-tile.c-purple { background: rgba(162,93,220,0.08); border-color: rgba(162,93,220,0.18); border-top-color: var(--mpurple); }
.kpi-tile.c-orange { background: rgba(253,171,61,0.12); border-color: rgba(253,171,61,0.22); border-top-color: var(--morange); }
.kpi-tile.c-teal { background: var(--teal-soft); border-color: rgba(8,145,178,0.18); border-top-color: var(--teal); }
.kpi-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 5px; }
.kpi-val { font-family: 'JetBrains Mono', monospace; font-size: 15px; font-weight: 600; color: var(--text-primary); }
.kpi-val.pos { color: var(--teal); }
.chart-mock { height: 84px; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--body-bg); position: relative; overflow: hidden; padding: 12px; }
.chart-line { position: absolute; bottom: 12px; left: 12px; right: 12px; height: 50px; }

.board-mock-col { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-bottom: 8px; }
.board-mock-head { padding: 10px 14px; font-size: 12px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.board-mock-head.green { background: rgba(0,200,117,0.1); color: #04834e; }
.board-mock-head.red { background: rgba(226,68,92,0.08); color: var(--mred); }
.board-mock-row { padding: 10px 14px; border-top: 1px solid var(--border); font-size: 12px; display: flex; justify-content: space-between; color: var(--text-secondary); background: var(--body-bg); }
.board-mock-row .term { color: var(--text-primary); font-weight: 600; }

/* ---- Contrast moment ---- */
.contrast { background: var(--dark); color: #fff; border-radius: var(--r-xl); padding: 46px 40px; }
.contrast .section-eyebrow { color: var(--teal); }
.contrast h2 { color: #fff; }
.contrast .section-sub { color: var(--dark-text-soft); }
.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.contrast-card { border-radius: var(--r-lg); padding: 24px; }
.contrast-card.bad { background: rgba(255,255,255,0.04); border: 1px solid var(--dark-line); }
.contrast-card.good { background: rgba(8,145,178,0.1); border: 1px solid rgba(8,145,178,0.35); }
.contrast-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 15px; }
.contrast-card.bad .contrast-label { color: var(--dark-text-soft); }
.contrast-card.good .contrast-label { color: var(--teal); }
.contrast-metric { font-family: 'JetBrains Mono', monospace; font-size: 36px; font-weight: 600; margin-bottom: 7px; }
.contrast-card.bad .contrast-metric { color: #fff; }
.contrast-card.good .contrast-metric { color: var(--teal); }
.contrast-desc { font-size: 13px; color: var(--dark-text-soft); line-height: 1.55; }

/* ---- Founder pull-quote (SellerPlex-style proof section, kept honest) ---- */
.pullquote-section { padding: 0 0 84px; }
.pullquote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); padding: 44px 48px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
.pullquote-mark { font-family: 'Space Grotesk', sans-serif; font-size: 64px; line-height: 0.7; color: var(--accent-soft); font-weight: 700; }
.pullquote blockquote { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.5; color: var(--text-primary); margin-bottom: 14px; }
.pullquote-attr { font-size: 13px; color: var(--text-secondary); }
.pullquote-attr strong { color: var(--text-primary); }

/* ---- Coming soon ---- */
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.roadmap-card {
  background: var(--surface); border: 1px dashed var(--border-strong); border-radius: var(--r-lg);
  padding: 22px; position: relative;
}
.roadmap-badge {
  position: absolute; top: 18px; right: 18px; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--text-muted); background: var(--body-bg); padding: 3px 8px; border-radius: var(--r-pill);
  border: 1px solid var(--border);
}
.roadmap-card h3 { font-size: 14.5px; font-weight: 700; margin-bottom: 8px; padding-right: 70px; }
.roadmap-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.58; }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 24px; display: flex; flex-direction: column; }
.price-card.feat { border-color: var(--accent); box-shadow: var(--shadow-lg); position: relative; }
.price-card.feat::before {
  content: 'MOST PICKED'; position: absolute; top: -11px; left: 24px; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; padding: 4px 10px; border-radius: var(--r-pill);
}
.price-tier { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 13px; }
.price-amt { font-family: 'JetBrains Mono', monospace; font-size: 42px; font-weight: 800; color: var(--accent2); margin-bottom: 5px; letter-spacing: -0.015em; }
.price-amt span:not(.amt-val) { font-size: 15px; font-weight: 500; color: var(--text-muted); }
.price-amt .amt-val { color: inherit; font-size: inherit; font-weight: inherit; }
.price-card.feat .price-amt { font-size: 46px; }
.price-for { font-size: 12.5px; color: var(--text-secondary); margin-bottom: 22px; }
.price-list { list-style: none; margin-bottom: 24px; flex: 1; }
.price-list li { font-size: 13px; color: var(--text-secondary); padding-left: 21px; position: relative; margin-bottom: 11px; line-height: 1.45; }
.price-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.price-cta { text-align: center; padding: 12px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 600; text-decoration: none; border: 1px solid var(--border-strong); color: var(--text-primary); transition: border-color .15s, background .15s; }
.price-cta:hover { border-color: var(--text-muted); background: #fbfbfc; }
.price-card.feat .price-cta { background: var(--accent); color: #fff; border-color: var(--accent); }
.price-card.feat .price-cta:hover { background: var(--accent2); }
.pricing-note { text-align: center; font-size: 12.5px; color: var(--text-muted); margin-top: 24px; }

/* ---- Billing toggle ---- */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 0 34px; }
.billing-toggle span { font-size: 13.5px; font-weight: 600; color: var(--text-muted); transition: color .15s; }
.billing-toggle span.active { color: var(--text-primary); }
.toggle-switch {
  position: relative; width: 46px; height: 26px; border-radius: var(--r-pill); background: var(--border-strong);
  border: none; cursor: pointer; transition: background .2s; flex-shrink: 0;
}
.toggle-switch.on { background: var(--accent); }
.toggle-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch.on::after { transform: translateX(20px); }
.save-badge {
  display: inline-block; background: var(--mgreen); color: #fff; font-size: 10.5px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--r-pill); letter-spacing: 0.02em;
}
.price-period { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.price-annual-note { font-size: 11.5px; color: var(--text-muted); margin-top: -2px; margin-bottom: 22px; min-height: 15px; }
.price-annual-note strong { color: var(--mgreen); }

/* ---- Comparison table ---- */
.compare-wrap { overflow-x: auto; margin-top: 48px; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 13px; }
.compare-table th, .compare-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); background: var(--body-bg); }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; }
.compare-table td:first-child { color: var(--text-secondary); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--mgreen); font-weight: 700; }
.compare-table .no { color: var(--border-strong); }
.compare-section td { background: var(--body-bg); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); padding-top: 16px; padding-bottom: 8px; }

/* ---- Billing/subscription note strip ---- */
.billing-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.billing-info-card { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--bic-color, var(--accent)); border-radius: var(--r-md); padding: 18px 20px; }
.billing-info-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.billing-info-card p { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }

/* ---- Final CTA ---- */
.final-cta { text-align: center; padding: 76px 0; }
.final-cta h2 { font-size: 33px; margin: 0 auto 15px; max-width: 560px; }
.final-cta .section-sub { max-width: 470px; margin: 0 auto 26px; }

/* ---- Footer ---- */
footer { border-top: 1px solid var(--border); padding: 40px 0 26px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; flex-wrap: wrap; gap: 20px; }
.footer-links { display: flex; gap: 16px 26px; font-size: 13px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 18px; }

/* ==========================================================================
   Content pages (About / Contact / Privacy / Terms)
   ========================================================================== */
.content-wrap { max-width: 760px; margin: 0 auto; padding: 56px 28px 90px; }
.page-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent); margin-bottom: 14px; }
.content-wrap h1 { font-size: 36px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 12px; }
.tagline { font-size: 16.5px; color: var(--text-secondary); font-weight: 500; margin-bottom: 22px; }
.lede { font-size: 16px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.updated { font-size: 12.5px; color: var(--text-muted); margin-bottom: 30px; }
.content-wrap p { font-size: 15px; color: var(--text-secondary); line-height: 1.72; margin-bottom: 16px; }
.content-wrap h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; margin: 40px 0 14px; color: var(--text-primary); }
.content-wrap ul { margin: 0 0 18px; padding-left: 20px; }
.content-wrap li { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 10px; }
.content-wrap li strong { color: var(--text-primary); }
.content-wrap a { color: var(--accent); font-weight: 600; text-decoration: none; }
.content-wrap a:hover { text-decoration: underline; }
.content-wrap table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 13.5px; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.content-wrap th { text-align: left; background: var(--surface); border-bottom: 1px solid var(--border); padding: 11px 14px; font-weight: 700; color: var(--text-primary); }
.content-wrap td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text-secondary); background: var(--surface); vertical-align: top; }
.content-wrap tr:last-child td { border-bottom: none; }

/* ---- Legal doc: table of contents + numbered sections ---- */
.legal-doc { counter-reset: section-counter; }
.legal-doc h2 { counter-increment: section-counter; }
.legal-doc h2::before { content: counter(section-counter) ". "; color: var(--accent); }
.toc-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 24px; margin: 8px 0 8px; }
.toc-box .toc-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 14px; }
.toc-list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 26px; counter-reset: toc-counter; }
.toc-list li { margin-bottom: 9px; font-size: 13.5px; break-inside: avoid; counter-increment: toc-counter; }
.toc-list li::before { content: counter(toc-counter) ". "; color: var(--text-muted); font-weight: 600; }
.toc-list a { color: var(--text-secondary); font-weight: 500; text-decoration: none; }
.toc-list a:hover { color: var(--accent); }
.legal-callout {
  background: var(--accent-soft); border: 1px solid rgba(26,111,255,0.18); border-radius: var(--r-md);
  padding: 14px 16px; margin: 4px 0 18px; font-size: 13.5px; color: var(--text-primary); line-height: 1.6;
}
.legal-callout strong { color: var(--accent2); }
.legal-callout.warn { background: rgba(226,68,92,0.06); border-color: rgba(226,68,92,0.2); }
.legal-callout.warn strong { color: var(--mred); }
.content-wrap h3 { font-size: 15.5px; font-weight: 700; margin: 22px 0 10px; color: var(--text-primary); }
.content-wrap ol { margin: 0 0 18px; padding-left: 20px; }
.content-wrap ol li { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 10px; }

.brands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0 32px; }
.brand-card { border-radius: var(--r-md); padding: 16px; background: color-mix(in srgb, var(--mblue) 8%, white); border: 1px solid var(--border); border-left: 3px solid var(--mblue); }
.brand-card:nth-child(2) { border-left-color: var(--teal); background: color-mix(in srgb, var(--teal) 8%, white); }
.brand-card:nth-child(3) { border-left-color: var(--mpurple); background: color-mix(in srgb, var(--mpurple) 8%, white); }
.brand-card .cat { font-size: 13px; font-weight: 700; color: var(--text-primary); }

.platform-badges { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 30px; }
.badge { font-size: 12.5px; font-weight: 600; color: var(--text-secondary); background: var(--surface); border: 1px solid var(--border); padding: 6px 13px; border-radius: var(--r-pill); }

.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 24px; margin-top: 8px; }
.contact-card p { margin-bottom: 6px; }
.contact-card p:last-child { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0 32px; }
.contact-grid .contact-card { display: flex; flex-direction: column; gap: 4px; border-top: 3px solid var(--cc-color, var(--accent)); }
.contact-grid .icon { font-size: 22px; margin-bottom: 6px; }
.contact-grid h3 { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.contact-grid p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 4px; }
.contact-grid a { color: var(--accent); font-weight: 600; font-size: 13.5px; text-decoration: none; }
.contact-grid a:hover { text-decoration: underline; }
.biz-card { background: var(--dark); color: #fff; border-radius: var(--r-lg); padding: 24px; margin-top: 8px; }
.biz-card p { color: var(--dark-text-soft); margin-bottom: 6px; }
.biz-card p:first-child { color: #fff; font-size: 15px; }
.biz-card p:last-child { margin-bottom: 0; }

/* ---- Lucide icon sizing (replaces emoji icon system) ---- */
.cap-icon svg { width: 18px; height: 18px; color: #fff; stroke-width: 2.1; }
.stop-flag svg { width: 13px; height: 13px; stroke-width: 2.4; }
.billing-info-card h4 svg { width: 15px; height: 15px; stroke-width: 2.2; vertical-align: -3px; margin-right: 5px; color: var(--bic-color, var(--accent)); }
.contact-grid .icon svg { width: 24px; height: 24px; stroke-width: 1.9; color: var(--cc-color, var(--accent)); }
.road-you-are-here svg { width: 12px; height: 12px; vertical-align: -2px; margin-right: 3px; stroke-width: 2.4; }

/* ---- Trust strip ---- */
.trust-strip { padding: 18px 0; background: var(--body-bg); border-bottom: 1px solid var(--border); }
.trust-strip .wrap { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.trust-item svg { width: 17px; height: 17px; color: var(--teal); stroke-width: 2.1; flex-shrink: 0; }

/* ---- Roadmap teaser stat badges (homepage) ---- */
.roadmap-stat { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; padding: 8px 16px; border-radius: var(--r-pill); border: 1px solid transparent; }
.roadmap-stat svg { width: 13px; height: 13px; stroke-width: 2.4; }
.roadmap-stat-shipped { color: #04834e; background: rgba(0,200,117,0.1); border-color: rgba(0,200,117,0.25); }
.roadmap-stat-progress { color: var(--accent2); background: var(--accent-soft); border-color: rgba(26,111,255,0.22); }
.roadmap-stat-planned { color: var(--text-secondary); background: var(--body-bg); border-color: var(--border-strong); }
.trust-item a { color: inherit; text-decoration: underline; text-decoration-color: var(--border-strong); text-underline-offset: 3px; }
.trust-item a:hover { color: var(--text-primary); }

/* ---- Real dashboard screenshot (hero + proof) ---- */
.hero-shot {
  border-radius: var(--r-xl); border: 1px solid var(--border); box-shadow: var(--shadow-xl);
  overflow: hidden; aspect-ratio: 3 / 2; background: var(--surface);
}
.hero-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
.hero-shot-tag { text-align: center; font-size: 11.5px; color: var(--text-muted); font-weight: 600; margin-top: 10px; }
.proof-shot {
  border-radius: var(--r-xl); border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  overflow: hidden; margin: 36px 0 0;
}
.proof-shot img { width: 100%; height: auto; display: block; }
.proof-shot-caption { text-align: center; font-size: 12.5px; color: var(--text-muted); margin-top: 12px; }

/* ---- Comparison table mobile scroll fade ---- */
.compare-wrap { position: relative; }
.compare-wrap::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 28px; pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(21,22,26,0.07)); opacity: 1; transition: opacity .2s;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.compare-wrap.scrolled-end::after { opacity: 0; }

/* ---- Lead capture form (Pricing final CTA) ---- */
.lead-form { max-width: 480px; margin: 0 auto; text-align: left; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px 26px; box-shadow: var(--shadow-md); }
.lead-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.lead-form label { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 5px; }
.lead-form input, .lead-form select {
  width: 100%; padding: 11px 13px; border: 1px solid var(--border-strong); border-radius: var(--r-md);
  font-family: inherit; font-size: 14px; color: var(--text-primary); background: var(--body-bg);
}
.lead-form input:focus, .lead-form select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.lead-form .full { grid-column: 1 / -1; }
.lead-form button { width: 100%; margin-top: 6px; border: none; }
.lead-form-note { font-size: 11.5px; color: var(--text-muted); text-align: center; margin-top: 12px; }
.lead-success { display: none; text-align: center; padding: 20px 0; }
.lead-success.show { display: block; }
.lead-success svg { width: 40px; height: 40px; color: var(--mgreen); margin: 0 auto 12px; }
.lead-success h3 { font-size: 17px; margin-bottom: 6px; }
.lead-success p { font-size: 13.5px; color: var(--text-secondary); }

/* ---- Compact page hero (Features / Pricing / Roadmap) ---- */
.page-hero { padding: 56px 0 20px; text-align: center; }
.page-hero .eyebrow { justify-content: center; margin: 0 auto 16px; }
.page-hero h1 { max-width: 760px; margin: 0 auto 16px; }
.page-hero .hero-sub { max-width: 620px; margin: 0 auto; text-align: center; }
.page-hero .hero-ctas { justify-content: center; margin-top: 26px; }

/* ---- Roadmap: the road (zigzag timeline) ---- */
.road-wrap { position: relative; max-width: 720px; margin: 20px auto 0; padding: 20px 0 40px; }
.road-svg-line {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 14px; height: 100%; z-index: 0;
  background: linear-gradient(90deg, #3a3b42, #26272d 50%, #3a3b42);
  border-radius: 8px;
}
.road-svg-line::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 2px; height: 100%;
  background-image: repeating-linear-gradient(to bottom, #fff 0, #fff 14px, transparent 14px, transparent 26px);
  opacity: 0.85;
}
.road-stops { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 28px; }
.road-stop { display: flex; align-items: center; width: 50%; gap: 16px; }
.road-stop.left { align-self: flex-start; }
.road-stop.right { align-self: flex-end; }
.road-stop.left .stop-card { text-align: right; order: 2; }
.road-stop.left .road-marker { order: 3; }
.road-stop.left .stop-empty { order: 1; }
.road-stop.right .stop-card { text-align: left; order: 2; }
.road-stop.right .road-marker { order: 1; }
.road-stop.right .stop-empty { order: 3; }
.road-stop.left .stop-flag { justify-content: flex-end; }
.road-stop.right .stop-flag { justify-content: flex-start; }
.stop-card {
  flex: 0 1 300px; min-width: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.stop-empty { flex: 1 1 auto; min-width: 0; }
.road-marker { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.road-dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--surface); border: 4px solid var(--mgreen);
  box-shadow: 0 0 0 4px var(--body-bg);
}
.road-dot.upcoming { border-color: var(--border-strong); }
.road-dot.current { border-color: var(--accent); box-shadow: 0 0 0 4px var(--body-bg), 0 0 0 8px var(--accent-soft); }
.stop-flag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; display: flex; gap: 6px; align-items: center; }
.stop-flag.done { color: var(--mgreen); }
.stop-flag.upcoming { color: var(--text-muted); }
.stop-flag.current { color: var(--accent); }
.stop-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.stop-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.5; }
.road-you-are-here {
  align-self: center; display: inline-flex; align-items: center; width: fit-content; background: var(--dark); color: #fff;
  font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: var(--r-pill); z-index: 3;
  white-space: nowrap; box-shadow: var(--shadow-md);
}
@media (max-width: 720px) {
  .road-svg-line { left: 20px; transform: none; width: 10px; }
  .road-stop, .road-stop.left, .road-stop.right { width: 100%; flex-direction: row; align-self: flex-start; }
  .road-marker, .road-stop.left .road-marker, .road-stop.right .road-marker { width: 40px; order: 1; }
  .road-stop .stop-card, .road-stop.left .stop-card, .road-stop.right .stop-card { text-align: left; flex: 1 1 auto; max-width: none; order: 2; }
  .stop-empty { display: none; }
  .road-stop .stop-flag, .road-stop.left .stop-flag, .road-stop.right .stop-flag { justify-content: flex-start; }
  .road-you-are-here { align-self: flex-start; margin-left: 4px; }
}
@media (max-width: 1024px) {
  .wrap { padding: 0 22px; }
  .cap-grid, .steps, .roadmap { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .price-card { padding: 22px 18px; }
  h1 { font-size: 38px; }
  .hero .wrap { gap: 36px; }
  .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
}

/* ══════════ Responsive: mobile ══════════ */
@media (max-width: 720px) {
  .navlinks { display: none; }
  .menu-btn { display: block; }
  .hero { padding: 40px 0 44px; }
  .hero .wrap, .feature-row, .feature-row.rev { grid-template-columns: 1fr; }
  .feature-row.rev .feature-visual { order: 0; }
  .feature-row { margin-bottom: 44px; gap: 26px; }
  h1 { font-size: 32px; }
  .hero-sub { max-width: none; }
  .kpi-strip { grid-template-columns: repeat(2,1fr); }
  .cap-grid, .steps, .roadmap, .contrast-grid, .pricing-grid, .brands, .contact-grid, .billing-info { grid-template-columns: 1fr; }
  .toc-list { columns: 1; }
  .stat-strip .wrap { grid-template-columns: 1fr 1fr; }
  .float-chip { display: none; }
  section { padding: 48px 0; }
  .section-head { margin-bottom: 30px; }
  h2 { font-size: 25px; }
  .contrast { padding: 28px 20px; }
  .price-card.feat { order: -1; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { text-align: center; }
  .footer-top { flex-direction: column; }
  .pullquote { grid-template-columns: 1fr; padding: 30px 26px; text-align: left; }
  .pullquote-mark { display: none; }
  .pullquote blockquote { font-size: 17px; }
  .content-wrap { padding: 40px 22px 64px; }
  .content-wrap h1 { font-size: 28px; }
  .content-wrap table { display: block; overflow-x: auto; }
}

/* ==========================================================================
   Motion layer — scroll reveals, count-ups, animated charts, live pulses
   Added on top of the base design system above; no existing rule overridden.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-item, .bar-fill, .sync-diagram { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---- Scroll reveal (fade + rise) ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s cubic-bezier(.2,.7,.3,1), transform .65s cubic-bezier(.2,.7,.3,1); }
.reveal.in-view { opacity: 1; transform: none; }

.reveal-group .reveal-item { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal-group.in-view .reveal-item { opacity: 1; transform: none; }
.reveal-group.in-view .reveal-item:nth-child(1) { transition-delay: .02s; }
.reveal-group.in-view .reveal-item:nth-child(2) { transition-delay: .09s; }
.reveal-group.in-view .reveal-item:nth-child(3) { transition-delay: .16s; }
.reveal-group.in-view .reveal-item:nth-child(4) { transition-delay: .23s; }
.reveal-group.in-view .reveal-item:nth-child(5) { transition-delay: .30s; }
.reveal-group.in-view .reveal-item:nth-child(6) { transition-delay: .37s; }

/* ---- Animated bar charts (device-card mini bar graphs) ---- */
.bar-fill { transform: scaleY(0); transform-origin: bottom; transition: transform .85s cubic-bezier(.2,.8,.2,1); }
.in-view .bar-fill:nth-of-type(1) { transition-delay: .05s; }
.in-view .bar-fill:nth-of-type(2) { transition-delay: .16s; }
.in-view .bar-fill:nth-of-type(3) { transition-delay: .27s; }
.in-view .bar-fill { transform: scaleY(1); }

/* ---- Glow-pulse primary CTA ---- */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 1px 2px rgba(26,111,255,0.15), 0 0 0 0 rgba(26,111,255,0.25); }
  50% { box-shadow: 0 1px 2px rgba(26,111,255,0.15), 0 0 20px 3px rgba(26,111,255,0.28); }
}
.btn-primary.glow { animation: glowPulse 2.8s ease-in-out infinite; }

/* ---- Floating chip gentle bob ---- */
@keyframes chipBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.float-chip.bob { animation: chipBob 3.6s ease-in-out infinite; }

/* ---- Generic small pulsing status dot (used in Live badges) ---- */
@keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(1.35); } }

.device-title .tag, .cap-tag { position: relative; padding-left: 18px !important; }
.device-title .tag::before, .cap-tag::before {
  content: ''; position: absolute; left: 8px; top: 50%; width: 5px; height: 5px; margin-top: -2.5px;
  border-radius: 50%; background: currentColor; animation: dotPulse 1.8s ease-in-out infinite;
}
.eyebrow .dot { animation: dotPulse 2s ease-in-out infinite; }

/* ---- Cross-platform sync diagram ---- */
.sync-diagram {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 26px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-md); padding: 28px;
}
.sync-node {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: var(--body-bg); border: 1px solid var(--border-strong); border-radius: var(--r-lg); padding: 24px 18px;
  height: 100%;
}
.sync-node .sync-count { font-family: 'JetBrains Mono', monospace; font-size: 34px; font-weight: 700; color: var(--accent2); line-height: 1; }
.sync-node .sync-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-top: 8px; }
.sync-node .sync-sub { font-size: 11.5px; color: var(--teal); font-weight: 600; margin-top: 10px; }
.sync-targets { display: flex; flex-direction: column; gap: 12px; }
.sync-target { display: flex; align-items: center; gap: 12px; background: var(--body-bg); border: 1px solid var(--border); border-radius: var(--r-md); padding: 13px 16px; }
.sync-target .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.sync-target .platform { font-size: 13.5px; font-weight: 700; color: var(--text-primary); }
.sync-target .synced { margin-left: auto; font-size: 11.5px; color: var(--teal); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.sync-target .synced::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--mgreen); animation: dotPulse 1.8s ease-in-out infinite; }

@media (max-width: 720px) {
  .sync-diagram { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Motion layer, wave 2 — ambient glow, dot field, shine sweep, pulses
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .ambient-glow span, .dot-field i, .btn-primary::after, .save-badge, .road-dot.current, .eyebrow { animation: none !important; transition: none !important; }
}

/* ---- Ambient drifting glow orbs (hero / page-hero backdrops) ---- */
.ambient-glow { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; border-radius: inherit; }
.ambient-glow span { position: absolute; border-radius: 50%; filter: blur(64px); opacity: 0.28; animation: driftGlow 15s ease-in-out infinite; }
.ambient-glow span:nth-child(1) { width: 320px; height: 320px; background: var(--accent); top: -90px; left: 6%; }
.ambient-glow span:nth-child(2) { width: 260px; height: 260px; background: var(--teal); top: 20px; right: 4%; animation-delay: -5s; animation-duration: 18s; }
.ambient-glow span:nth-child(3) { width: 220px; height: 220px; background: var(--mpurple); bottom: -70px; left: 40%; animation-delay: -10s; animation-duration: 20s; }
@keyframes driftGlow {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(26px,-20px) scale(1.08); }
  66% { transform: translate(-20px,16px) scale(0.94); }
}
.hero, .page-hero { position: relative; }
.hero > .wrap, .page-hero > .wrap { position: relative; z-index: 1; }

/* ---- Twinkling ambient dot field ---- */
.dot-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.dot-field i { position: absolute; width: 4px; height: 4px; border-radius: 50%; opacity: 0; animation: twinkle 5s ease-in-out infinite; font-style: normal; }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(0.5); } 50% { opacity: .6; transform: scale(1); } }

/* ---- Button shine sweep on hover ---- */
.btn-primary { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; z-index: 1;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg); transition: left .65s ease; pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }

/* ---- Save / promo badge pulse ---- */
@keyframes badgePulseGreen { 0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,117,0.45); } 50% { box-shadow: 0 0 0 6px rgba(0,200,117,0); } }
.save-badge { animation: badgePulseGreen 2.4s ease-in-out infinite; }

/* ---- Eyebrow pill gentle breathing glow ---- */
@keyframes pillGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(8,145,178,0); } 50% { box-shadow: 0 0 0 5px rgba(8,145,178,0.09); } }
.eyebrow { animation: pillGlow 3.2s ease-in-out infinite; }

/* ---- Roadmap: current stop pulses, stops slide in from their side ---- */
@keyframes badgePulseBlue { 0%, 100% { box-shadow: 0 0 0 4px var(--body-bg), 0 0 0 8px var(--accent-soft); } 50% { box-shadow: 0 0 0 4px var(--body-bg), 0 0 0 15px rgba(26,111,255,0.12); } }
.road-dot.current { animation: badgePulseBlue 2.1s ease-in-out infinite; }
.road-you-are-here { animation: badgePulseGreen 2.4s ease-in-out infinite; }

.road-stop.reveal-lr { opacity: 0; transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.road-stop.left.reveal-lr { transform: translateX(-26px); }
.road-stop.right.reveal-lr { transform: translateX(26px); }
.road-stop.reveal-lr.in-view { opacity: 1; transform: none; }
@media (max-width: 720px) {
  .road-stop.left.reveal-lr, .road-stop.right.reveal-lr { transform: translateX(-26px); }
}

/* ---- SVG sparkline draw-in ---- */
.draw-line { stroke-dasharray: 1; stroke-dashoffset: 1; }
.in-view .draw-line { animation: drawLine 1.3s ease forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

/* ==========================================================================
   Motion layer, wave 3 — site-wide ambient dots, dropdown nav, browser-chrome
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .site-dot-field i { animation: none !important; opacity: .3 !important; }
}

/* ---- Site-wide fixed twinkling dot field (behind all content, whole site) ---- */
.site-dot-field { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.site-dot-field i {
  position: absolute; width: 4px; height: 4px; border-radius: 50%; opacity: 0;
  animation: twinkle 6s ease-in-out infinite; font-style: normal;
}

/* ---- Nav: Home link + active-page light-blue backdrop already covered by .navlinks a.active ---- */

/* ---- Nav dropdown (Product mega-menu) ---- */
.nav-item { position: relative; }
.nav-item > .nav-trigger {
  display: flex; align-items: center; gap: 4px; color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 7px 12px; border-radius: var(--r-pill); transition: color .15s, background .15s; cursor: pointer;
}
.nav-item > .nav-trigger:hover, .nav-item.open > .nav-trigger { color: var(--text-primary); }
.nav-item > .nav-trigger svg { width: 13px; height: 13px; stroke-width: 2.4; transition: transform .2s; }
.nav-item:hover > .nav-trigger svg, .nav-item.open > .nav-trigger svg { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  width: 740px; max-width: 92vw; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); padding: 20px; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 6px 16px;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 320;
}
.nav-item:hover .nav-dropdown-panel, .nav-item:focus-within .nav-dropdown-panel, .nav-item.open .nav-dropdown-panel {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-drop-group-title { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin: 4px 0 8px; display: flex; align-items: center; gap: 6px; }
.nav-drop-group-title .soon-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: dotPulse 2s ease-in-out infinite; }
.nav-item .nav-dropdown-panel a.nav-drop-link {
  display: flex; align-items: flex-start; gap: 10px; padding: 8px 8px; border-radius: var(--r-md); text-decoration: none;
  color: var(--text-primary); transition: background .12s;
}
.nav-item .nav-dropdown-panel a.nav-drop-link:hover { background: var(--body-bg); color: var(--text-primary); }
.nav-drop-link .icn {
  width: 28px; height: 28px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-drop-link .icn svg { width: 14px; height: 14px; stroke-width: 2.2; }
.nav-drop-link .txt strong { display: block; font-size: 12.5px; font-weight: 700; line-height: 1.3; color: var(--text-primary); }
.nav-drop-link .txt span { display: block; font-size: 11px; color: var(--text-muted); line-height: 1.4; margin-top: 2px; }
.nav-item .nav-dropdown-panel a.nav-drop-link.compact { padding: 6px 8px; gap: 8px; }
.nav-drop-link.compact .icn { width: 22px; height: 22px; background: color-mix(in srgb, var(--accent) 10%, white); }
.nav-drop-link.compact .icn svg { width: 12px; height: 12px; stroke-width: 2.1; }
.nav-drop-link.compact .txt strong { font-size: 12px; font-weight: 600; line-height: 1.3; }
@media (max-width: 1180px) {
  .nav-dropdown-panel { grid-template-columns: 1fr 1fr; width: 460px; }
}
@media (max-width: 1024px) {
  .nav-dropdown-panel { display: none; }
}

/* ---- Browser-chrome mockup bar (used on top of device-card / feature-visual demos) ---- */
.browser-chrome {
  display: flex; align-items: center; gap: 10px; background: var(--body-bg); border: 1px solid var(--border);
  border-bottom: none; border-radius: var(--r-lg) var(--r-lg) 0 0; padding: 10px 14px;
}
.browser-chrome .dots { display: flex; gap: 6px; flex-shrink: 0; }
.browser-chrome .dots span { width: 9px; height: 9px; border-radius: 50%; }
.browser-chrome .dots span:nth-child(1) { background: var(--mred); }
.browser-chrome .dots span:nth-child(2) { background: var(--morange); }
.browser-chrome .dots span:nth-child(3) { background: var(--mgreen); }
.browser-chrome .url {
  flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 5px 12px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.browser-chrome .live-pill {
  font-size: 10px; font-weight: 700; color: var(--teal); background: var(--teal-soft); padding: 3px 9px;
  border-radius: var(--r-pill); flex-shrink: 0; position: relative; padding-left: 17px;
}
.browser-chrome .live-pill::before {
  content: ''; position: absolute; left: 8px; top: 50%; width: 5px; height: 5px; margin-top: -2.5px;
  border-radius: 50%; background: currentColor; animation: dotPulse 1.8s ease-in-out infinite;
}
.browser-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.browser-frame .device-card, .browser-frame .feature-visual { border-radius: 0 0 var(--r-xl) var(--r-xl); box-shadow: none; border-top: none; }

/* ==========================================================================
   Upcoming-feature landing pages — TL;DR box, coming-soon badge, FAQ, stepper
   ========================================================================== */

/* ---- "Coming to Sellerio" badge (distinct from the green Live-now tag) ---- */
.page-badge-soon {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
  color: var(--accent2); background: var(--accent-soft); border: 1px solid rgba(26,111,255,0.2);
  padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.page-badge-soon .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: dotPulse 2s ease-in-out infinite; }
.cap-tag.soon { color: var(--accent2); background: color-mix(in srgb, var(--accent) 12%, white); }

/* ---- TL;DR callout ---- */
.tldr-box { background: var(--accent-soft); border: 1px solid rgba(26,111,255,0.18); border-radius: var(--r-lg); padding: 24px 28px; }
.tldr-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent2); margin-bottom: 13px; }
.tldr-box ul { list-style: none; }
.tldr-box li { font-size: 14px; color: var(--text-primary); padding-left: 22px; position: relative; margin-bottom: 10px; line-height: 1.55; }
.tldr-box li:last-child { margin-bottom: 0; }
.tldr-box li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---- FAQ accordion (native details/summary, zero extra JS) ---- */
.faq-list { border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-size: 14.5px; font-weight: 700; color: var(--text-primary);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .12s;
}
.faq-item summary:hover { background: var(--body-bg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--text-muted); flex-shrink: 0; transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 22px 20px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }

/* ---- Mini state stepper (claim lifecycle, process stages) ---- */
.mini-stepper { display: flex; align-items: flex-start; justify-content: space-between; gap: 4px; margin: 22px 0 4px; }
.mini-stepper .msc-step { display: flex; flex-direction: column; align-items: center; gap: 9px; flex: 1; text-align: center; position: relative; }
.mini-stepper .msc-step:not(:last-child)::after { content: ''; position: absolute; top: 11px; left: 50%; width: 100%; height: 2px; background: var(--border-strong); z-index: 0; }
.mini-stepper .msc-step.done:not(:last-child)::after { background: var(--teal); }
.msc-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--surface); border: 3px solid var(--border-strong); z-index: 1; flex-shrink: 0; }
.msc-step.done .msc-dot { border-color: var(--teal); background: var(--teal); }
.msc-step.current .msc-dot { border-color: var(--accent); animation: badgePulseBlue 2s ease-in-out infinite; }
.msc-label { font-size: 12px; font-weight: 700; color: var(--text-primary); }
.msc-sub { font-size: 10.5px; color: var(--text-muted); }

/* ---- Two-up sub-link cards (used for "how it works" / "related" mini-links) ---- */
.sublink-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sublink-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.sublink-card h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 7px; }
.sublink-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.55; }
@media (max-width: 720px) {
  .sublink-grid { grid-template-columns: 1fr; }
  .mini-stepper { flex-wrap: wrap; }
}

/* ---- page-hero split modifier: left-aligned two-column variant ---- */
.page-hero.split { text-align: left; }
.page-hero.split h1 { max-width: none; margin: 0 0 18px; }
.page-hero.split .hero-sub { max-width: 480px; margin: 0 0 28px; text-align: left; }
.page-hero.split .hero-ctas { justify-content: flex-start; margin-top: 0; }
@media (max-width: 900px) {
  .page-hero.split .feature-row { grid-template-columns: 1fr; }
}

/* ---- Solutions dropdown: 2-column variant ---- */
.nav-dropdown-panel.cols-2 { grid-template-columns: 1fr 1fr; width: 420px; }

/* ---- Nav login button (paired with Start free) ---- */
.nav-login {
  color: var(--text-primary); background: var(--surface); border: 1px solid var(--border-strong);
  padding: 9px 18px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 600;
  text-decoration: none; margin-left: 14px; transition: border-color .15s, background .15s; white-space: nowrap;
}
.nav-login:hover { border-color: var(--text-muted); background: #fbfbfc; }
@media (max-width: 1024px) {
  .nav-login { display: none; }
}
.mobile-menu .nav-login { display: block; text-align: center; border-radius: var(--r-pill); border: 1px solid var(--border-strong); margin-top: 10px; }

/* ==========================================================================
   Rich footer
   ========================================================================== */
.footer-rich { border-top: 1px solid var(--border); padding-top: 56px; background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 32px; padding-bottom: 36px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; max-width: 260px; }
.footer-contact { font-size: 13px; color: var(--text-secondary); line-height: 1.9; }
.footer-contact a { color: var(--text-secondary); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }
.footer-entity { font-size: 11.5px; color: var(--text-muted); margin-top: 16px; line-height: 1.6; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-secondary); text-decoration: none; margin-bottom: 12px; line-height: 1.4; }
.footer-col a:hover { color: var(--accent); }
.footer-disclaimer { font-size: 11.5px; color: var(--text-muted); line-height: 1.6; border-top: 1px solid var(--border); padding: 20px 0; text-align: center; }
.footer-legal-bar { display: flex; justify-content: space-between; align-items: center; padding: 18px 0 30px; flex-wrap: wrap; gap: 12px; }
.footer-legal-bar .copyright { font-size: 12px; color: var(--text-muted); }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 12px; color: var(--text-muted); text-decoration: none; }
.footer-legal-links a:hover { color: var(--text-primary); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* ---- Mobile menu accordions (Features / Solutions / Company) ---- */
.mobile-menu details.mobile-accordion { border-bottom: 1px solid var(--border); }
.mobile-menu details.mobile-accordion summary {
  list-style: none; cursor: pointer; padding: 15px 4px; font-size: 16px; font-weight: 600; color: var(--text-primary);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu details.mobile-accordion summary::-webkit-details-marker { display: none; }
.mobile-menu details.mobile-accordion summary::after { content: '+'; font-size: 21px; font-weight: 400; color: var(--text-muted); transition: transform .2s; line-height: 1; }
.mobile-menu details.mobile-accordion[open] summary::after { transform: rotate(45deg); }
.mobile-menu details.mobile-accordion summary.active { color: var(--accent); }
.mobile-accordion-body { padding: 0 4px 16px 10px; display: flex; flex-direction: column; }
.mobile-accordion-body .macc-group-title { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin: 12px 0 4px; }
.mobile-accordion-body .macc-group-title:first-child { margin-top: 0; }
.mobile-menu .mobile-accordion-body a { padding: 8px 4px; font-size: 14.5px; font-weight: 500; color: var(--text-secondary); border-bottom: none; margin-bottom: 0; }
.mobile-menu .mobile-accordion-body a:hover { color: var(--accent); }
