/* ================================================================
   WPStack Frontend Design System
   Auto-extracted from homepage.html design bundle
   Contains: variables, typography, buttons, nav, footer, all sections
   ================================================================ */

:root {
  /* brand */
  --accent: #4f46e5;
  --accent-600: #4338ca;
  --accent-700: #3730a3;
  --accent-tint: #eef2ff;
  --accent-tint-2: #e0e7ff;
  --success: #22c55e;
  --success-tint: #dcfce7;
  --success-700: #15803d;

  /* neutrals */
  --ink: #111827;
  --ink-700: #1f2937;
  --ink-600: #374151;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --line: #e5e7eb;
  --line-soft: #eef0f3;
  --bg: #f9fafb;
  --surface: #ffffff;
  --surface-2: #f3f4f6;

  /* type */
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* shadow */
  --sh-xs: 0 1px 2px rgba(17,24,39,.05);
  --sh-sm: 0 1px 3px rgba(17,24,39,.06), 0 1px 2px rgba(17,24,39,.04);
  --sh-md: 0 6px 16px -4px rgba(17,24,39,.10), 0 2px 6px -2px rgba(17,24,39,.06);
  --sh-lg: 0 24px 48px -16px rgba(17,24,39,.18), 0 8px 20px -8px rgba(17,24,39,.10);
  --sh-accent: 0 12px 28px -8px color-mix(in srgb, var(--accent) 45%, transparent);

  --container: 1200px;
  --pad: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, .display { font-family: var(--font); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent-tint-2); }

.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  line-height: 1; border: 1px solid transparent; border-radius: var(--r-md);
  padding: 13px 20px; cursor: pointer; white-space: nowrap;
  transition: transform .15s cubic-bezier(.16,1,.3,1), background .18s, box-shadow .18s, border-color .18s, color .18s;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--sh-accent); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--sh-xs); }
.btn-ghost:hover { border-color: var(--muted-2); transform: translateY(-1px); }
.btn-soft { background: var(--accent-tint); color: var(--accent-700); }
.btn-soft:hover { background: var(--accent-tint-2); }
.btn-lg { padding: 16px 26px; font-size: 16px; border-radius: var(--r-md); }
.btn-sm { padding: 9px 14px; font-size: 13.5px; border-radius: var(--r-sm); }
.btn-ghost-dark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); }
.btn-ghost-dark:hover { background: rgba(255,255,255,.14); }

/* ---------- eyebrow / pill ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 12.5px;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent-700); background: var(--accent-tint);
  padding: 6px 12px; border-radius: var(--r-pill); white-space: nowrap;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.section-head { max-width: 660px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -.02em;
  margin: 16px 0 14px; font-weight: 700;
}
.section-head p { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}

/* utility */
.muted { color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; }

main { display: block; }
.section { padding: 96px 0; }
@media (max-width: 720px){ .section { padding: 64px 0; } }

/* ---------------- NAV ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .25s, box-shadow .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 70px; }
.nav-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-wordmark { font-family: var(--font); font-weight: 800; font-size: 18.6px; letter-spacing: -.02em; color: var(--ink); line-height: 1; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-wordmark { font-family: var(--font); font-weight: 800; font-size: 18.6px; letter-spacing: -.02em; color: #fff; line-height: 1; }
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-links a {
  font-family: var(--font); font-weight: 500; font-size: 14.5px; color: var(--ink-600);
  padding: 8px 12px; border-radius: var(--r-sm); transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.nav-active { color: var(--accent); }
.nav-links a.nav-active:hover { background: var(--accent-tint); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-login {
  background: none; border: 0; font-family: var(--font); font-weight: 600; font-size: 14.5px;
  color: var(--ink-700); padding: 8px 6px; white-space: nowrap;
}
.nav-login:hover { color: var(--accent); }
.nav-burger { display: none; background: none; border: 0; color: var(--ink); padding: 8px; margin-left: auto; }
.nav-burger svg { width: 28px; height: 28px; }
.nav-mobile { display: none; }

/* ---- modules mega-menu ---- */
.nav-item { position: relative; display: inline-flex; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font); font-weight: 500; font-size: 14.5px; color: var(--ink-600);
  padding: 8px 12px; border-radius: var(--r-sm); cursor: pointer;
  background: color-mix(in srgb, var(--surface-2) 55%, #fff); border: 0;
  transition: color .15s, background .15s;
}
.nav-trigger:hover, .nav-item.open .nav-trigger { color: var(--ink); background: var(--surface-2); }
.nav-trigger.nav-active { color: var(--accent); }
.nav-trigger svg { transition: transform .2s; opacity: .7; }
.nav-item.open .nav-trigger svg { transform: rotate(180deg); }
.mega {
  position: absolute; top: 100%; left: 0; width: min(860px, 94vw);
  margin-top: 12px; transform: translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); padding: 18px; z-index: 60;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s cubic-bezier(.16,1,.3,1), visibility .18s;
}
.mega::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 16px; }
.nav-item.open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.mega-grid { display: grid; grid-auto-flow: column; grid-template-rows: repeat(3, auto); grid-auto-columns: minmax(196px, 1fr); gap: 4px 6px; }
.mega-link { display: flex; gap: 11px; align-items: center; padding: 9px 10px; border-radius: var(--r-md); transition: background .14s; }
.mega-link:hover { background: var(--surface-2); }
.mega-ic { width: 36px; height: 36px; border-radius: 10px; flex: none; display: grid; place-items: center; background: color-mix(in srgb, var(--mc, var(--accent)) 13%, #fff); color: var(--mc, var(--accent)); transition: background .15s, color .15s; }
.mega-link:hover .mega-ic { background: var(--mc, var(--accent)); color: #fff; }
.mega-txt { min-width: 0; }
.mega-txt b { display: block; font-family: var(--font); font-weight: 700; font-size: 13.5px; color: var(--ink); letter-spacing: -.01em; line-height: 1.25; }
.mega-txt > span { display: block; font-size: 11.5px; color: var(--muted); line-height: 1.3; margin-top: 1px; }
.mega-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 14px 6px 2px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.mega-foot-note { font-size: 12.5px; color: var(--muted); max-width: 52ch; }
.mega-foot-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font); font-weight: 600; font-size: 13px; color: var(--accent); white-space: nowrap; }
.mega-foot-link:hover { color: var(--accent-700); }
.mega-foot-link svg { transition: transform .15s; }
.mega-foot-link:hover svg { transform: translateX(3px); }
@media (max-width: 1040px){ .mega-grid { grid-auto-columns: minmax(176px, 1fr); } }

/* mobile modules accordion */
.nav-mobile-acc { display: flex; align-items: center; justify-content: space-between; width: 100%; background: color-mix(in srgb, var(--surface-2) 55%, #fff); border: 1px solid var(--line); padding: 13px 14px; font-family: var(--font); font-weight: 700; font-size: 16px; color: var(--ink); border-radius: var(--r-md); cursor: pointer; transition: background .15s, border-color .15s; }
.nav-mobile-acc.open { background: var(--surface-2); border-color: var(--line); }
.nav-mobile-acc-label { display: inline-flex; align-items: center; gap: 14px; }
.nav-mobile-acc-ic { width: 38px; height: 38px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); }
.nav-mobile-acc > svg { transition: transform .2s; opacity: .55; flex: none; }
.nav-mobile-acc.open > svg { transform: rotate(180deg); }
.nav-mobile-mods { display: flex; flex-direction: column; gap: 2px; padding: 6px 0 12px; }
.nav-mobile-mods[hidden] { display: none; }
.nav-mobile-mods a { display: flex; align-items: center; gap: 13px; padding: 9px 10px; border-radius: var(--r-md); }
.nav-mobile-mods a:hover { background: var(--surface-2); }
.nav-mobile-mods .mega-ic { width: 40px; height: 40px; border-radius: 11px; }
.nav-mobile-mod-txt { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.nav-mobile-mod-txt b { font-family: var(--font); font-weight: 700; font-size: 15px; color: var(--ink); }
.nav-mobile-mod-txt span { font-size: 12.5px; color: var(--muted); }
.nav-mobile-all { display: flex !important; align-items: center; justify-content: center; gap: 7px; margin-top: 8px; padding: 12px !important; background: var(--accent-tint); color: var(--accent-700) !important; font-family: var(--font); font-weight: 700; font-size: 14px; border-radius: var(--r-md); }
.nav-mobile-all svg { flex: none; }
@media (max-width: 880px){
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }

  /* Overlay panel — slides over content, never pushes it */
  .nav-mobile {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(360px, 86vw); z-index: 200;
    display: flex; flex-direction: column; gap: 2px;
    padding: 80px 22px 28px;
    background: #fff; box-shadow: -16px 0 48px -16px rgba(17,24,39,.22);
    overflow-y: auto;
  }
  .nav-mobile[hidden] { display: none; }
  .nav-mobile a { padding: 13px 10px; font-family: var(--font); font-weight: 600; font-size: 15.5px; border-radius: var(--r-sm); }
  .nav-mobile a:hover { background: var(--surface-2); }
  .nav-mobile-cta { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 16px; }
  .nav-mobile-cta .btn { justify-content: center; }

  /* Close (X) button inside the panel */
  .nav-mobile-close {
    position: absolute; top: 18px; right: 18px;
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center; cursor: pointer;
    background: var(--surface-2); border: 0; color: var(--ink);
  }
  .nav-mobile-close:hover { background: var(--line); }

  /* Backdrop behind the panel */
  .nav-backdrop {
    position: fixed; inset: 0; z-index: 199;
    background: rgba(12,18,34,.45);
    backdrop-filter: blur(2px);
  }
  .nav-backdrop[hidden] { display: none; }
}
@media (min-width: 881px){
  .nav-mobile, .nav-backdrop, .nav-mobile-close { display: none !important; }
}

/* ---------------- HERO ---------------- */
.hero { padding: 64px 0 84px; position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }

/* light decorative shapes — kept to the right & far corners, clear of the title/description */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(color-mix(in srgb, var(--ink) 6%, transparent) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(68% 70% at 100% 0%, #000, transparent 60%);
  mask-image: radial-gradient(68% 70% at 100% 0%, #000, transparent 60%);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); }
.hero-blob.hb1 { width: 440px; height: 440px; top: -170px; right: -110px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent), transparent 70%); opacity: .5; }
.hero-blob.hb2 { width: 300px; height: 300px; bottom: -150px; right: 22%;
  background: radial-gradient(circle, color-mix(in srgb, #7c3aed 12%, transparent), transparent 70%); opacity: .34; }
.hero-ring { position: absolute; width: 300px; height: 300px; border-radius: 50%; top: -110px; right: -120px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 14%, transparent); }
.hero-square { position: absolute; width: 104px; height: 104px; border-radius: 26px; transform: rotate(16deg); bottom: 54px; right: 6%;
  border: 1.5px solid color-mix(in srgb, var(--ink) 8%, transparent); }
.hero-d { position: absolute; border-radius: 50%; animation: heroDrift 10s ease-in-out infinite; }
.hero-d.hd1 { width: 9px; height: 9px; background: #8b5cf6; top: 13%; right: 9%; opacity: .75; }
.hero-d.hd2 { width: 7px; height: 7px; background: #0891b2; top: 54%; right: 3.5%; opacity: .65; animation-delay: 1.2s; animation-duration: 12s; }
.hero-d.hd3 { width: 11px; height: 11px; background: #d97706; bottom: 9%; left: 4%; opacity: .4; animation-delay: .5s; animation-duration: 11s; }
@keyframes heroDrift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@media (prefers-reduced-motion: reduce){ .hero-d { animation: none !important; } }
@media (max-width: 920px){ .hero-square { right: 8%; bottom: auto; top: 6%; } }
.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 58px); line-height: 1.04; letter-spacing: -.028em;
  font-weight: 800; margin: 20px 0 18px; max-width: 14ch; text-wrap: balance;
}
.hero-sub { font-size: 18px; line-height: 1.62; color: var(--muted); max-width: 46ch; margin: 0 0 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 30px; font-size: 14px; color: var(--muted); }
.hero-trust b { color: var(--ink); font-weight: 700; }
.hero-stars { display: inline-flex; gap: 2px; color: #f59e0b; }
.hero-dot { color: var(--muted-2); }

/* live site-count badge */
.livecount { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-xs); border-radius: var(--r-pill); padding: 7px 14px 7px 12px; }
.lc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); position: relative; flex: none; }
.lc-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--success); opacity: .5; animation: lcPulse 1.8s ease-out infinite; }
@keyframes lcPulse { 0% { transform: scale(.5); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }
.lc-num { font-family: var(--font); font-weight: 800; font-size: 14px; color: var(--ink); letter-spacing: -.01em; }
.lc-label { font-size: 13px; color: var(--muted); font-weight: 500; }
@media (prefers-reduced-motion: reduce){ .lc-dot::after { animation: none; } }
@media (max-width: 920px){
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy h1 { max-width: 18ch; }
}

/* hero visual shell */
.hero-visual { position: relative; min-height: 440px; display: flex; align-items: center; justify-content: center; }
.hv-glow {
  position: absolute; inset: -10% -6% 0 -6%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 42% at 70% 30%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 70%),
    radial-gradient(40% 40% at 28% 78%, color-mix(in srgb, var(--success) 16%, transparent), transparent 70%);
  filter: blur(8px);
}
.hv-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 45%, #000 35%, transparent 78%);
  mask-image: radial-gradient(70% 70% at 50% 45%, #000 35%, transparent 78%);
  background-image:
    linear-gradient(to right, rgba(17,24,39,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17,24,39,.06) 1px, transparent 1px);
  background-size: 34px 34px;
}

/* dashboard mock */
.hv-dash, .hv-layered { position: relative; z-index: 2; width: 100%; }
.dash {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); overflow: hidden;
}
.dash-bar { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--line-soft); background: linear-gradient(#fff, #fcfcfd); }
.dash-word { font-family: var(--font); font-weight: 800; font-size: 14.5px; letter-spacing: -.02em; color: var(--ink); line-height: 1; margin-left: -4px; }
.dash-search {
  margin-left: 6px; flex: 1; display: flex; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 7px 14px; color: var(--muted-2); font-size: 13px; max-width: 220px;
}
.dash-ava { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent-700); font-family: var(--font); font-weight: 700; font-size: 12px; }
.dash-body { padding: 18px 18px 20px; }
.dash-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.dash-title { font-family: var(--font); font-weight: 700; font-size: 18px; }
.dash-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.dash-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--success-700);
  background: var(--success-tint); padding: 6px 11px; border-radius: var(--r-pill); }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-row {
  display: flex; align-items: center; gap: 11px; padding: 11px 12px;
  border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; transition: border-color .2s, background .2s;
}
.dash-row.on { border-color: color-mix(in srgb, var(--accent) 34%, var(--line)); background: color-mix(in srgb, var(--accent) 4%, #fff); }
.dash-ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--surface-2); color: var(--ink-600); flex: none; }
.dash-row.on .dash-ic { background: var(--accent-tint); color: var(--accent-700); }
.dash-rt { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.dash-rn { font-family: var(--font); font-weight: 600; font-size: 13.5px; }
.dash-rm { font-size: 11.5px; color: var(--muted); }
@media (max-width: 480px){ .dash-grid { grid-template-columns: 1fr; } }

/* toggle switch */
.sw { width: 38px; height: 22px; border-radius: 999px; background: #d8dbe2; border: 0; padding: 0; position: relative; flex: none; cursor: pointer; transition: background .2s; }
.sw i { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.25); transition: left .2s cubic-bezier(.16,1,.3,1); }
.sw-on { background: var(--mc, var(--accent)); }
.sw-static { cursor: default; pointer-events: none; }
.sw-on i { left: 19px; }

/* floating cards */
.fcards { position: relative; z-index: 2; width: 100%; height: 440px; }
.fcard {
  position: absolute; display: flex; align-items: center; gap: 11px; width: 224px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 13px 14px;
}
.fcard-ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); flex: none; }
.fcard-t { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.fcard-n { font-family: var(--font); font-weight: 700; font-size: 14px; }
.fcard-m { font-size: 11.5px; color: var(--muted); }
.fcards .f1 { top: 8%; left: 4%; animation: float 7s ease-in-out infinite; }
.fcards .f2 { top: 2%; right: 0%; animation: float 8s ease-in-out infinite .4s; }
.fcards .f3 { top: 42%; right: 8%; animation: float 7.5s ease-in-out infinite .8s; }
.fcards .f4 { bottom: 6%; left: 10%; animation: float 8.5s ease-in-out infinite .2s; }
.fcards .f5 { bottom: 18%; right: 2%; animation: float 7s ease-in-out infinite 1s; width: 196px; }
.fcore {
  position: absolute; top: 50%; left: 46%; transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 116px; height: 116px; justify-content: center; border-radius: 26px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 92%, #000), var(--accent));
  color: #fff; box-shadow: var(--sh-accent), var(--sh-lg);
  font-family: var(--font); font-weight: 700; font-size: 14px; z-index: 3;
}
.fcore svg path[fill="var(--accent)"] { display: none; }

/* layered */
.hv-layered { position: relative; }
.hv-layered .lf1 { position: absolute; z-index: 4; width: 196px; top: -28px; right: -22px; animation: float 7s ease-in-out infinite; }
.hv-layered .lf2 { position: absolute; z-index: 4; width: 196px; bottom: -24px; left: -26px; animation: float 8s ease-in-out infinite .5s; }
.hv-badge {
  position: absolute; z-index: 5; bottom: 30px; right: -10px;
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700;
  color: var(--success-700); background: #fff; border: 1px solid var(--success);
  padding: 9px 14px; border-radius: var(--r-pill); box-shadow: var(--sh-md);
  animation: float 6s ease-in-out infinite 1s;
}
.hv-badge svg { color: var(--success); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce){ .fcard, .lf1, .lf2, .hv-badge { animation: none !important; } }
@media (max-width: 480px){ .fcard, .hv-layered .lf1, .hv-layered .lf2 { width: 168px; } }

/* ---------------- MODULES ---------------- */
.modules-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.modules-counter { display: flex; align-items: center; gap: 14px; padding: 14px 18px; }
.mc-ring {
  width: 52px; height: 52px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: conic-gradient(var(--accent) var(--p), var(--surface-2) 0);
  font-family: var(--font); font-weight: 800; color: var(--ink); position: relative;
}
.mc-ring::before { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: #fff; }
.mc-ring span { position: relative; z-index: 1; font-size: 16px; }
.mc-text { display: flex; flex-direction: column; line-height: 1.2; }
.mc-text b { font-family: var(--font); font-size: 15px; }
.mc-text span { font-size: 12.5px; color: var(--muted); }
@media (max-width: 720px){ .modules-top { flex-direction: column; align-items: flex-start; } }

.modules-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.tabs { display: flex; gap: 6px; flex-wrap: wrap; background: var(--surface-2); padding: 5px; border-radius: var(--r-pill); }
.tab {
  display: inline-flex; align-items: center; gap: 7px; border: 0; background: none;
  font-family: var(--font); font-weight: 600; font-size: 13.5px; color: var(--ink-600);
  padding: 8px 15px; border-radius: var(--r-pill); transition: background .15s, color .15s;
}
.tab:hover { color: var(--ink); }
.tab-on { background: #fff; color: var(--ink); box-shadow: var(--sh-xs); }
.tab-n { font-size: 11px; color: var(--muted); background: color-mix(in srgb, var(--ink) 8%, transparent); padding: 1px 7px; border-radius: 999px; }
.tab-on .tab-n { background: var(--accent-tint); color: var(--accent-700); }
.modules-actions { display: flex; align-items: center; gap: 12px; }
.link-btn { background: none; border: 0; font-family: var(--font); font-weight: 600; font-size: 13.5px; color: var(--accent); }
.link-btn:hover { color: var(--accent-700); }
.sep { width: 1px; height: 16px; background: var(--line); }

.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 920px){ .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .modules-grid { grid-template-columns: 1fr; } }
.mod-card {
  display: block;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px;
  box-shadow: var(--sh-xs); transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s, border-color .2s;
}
.mod-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: color-mix(in srgb, var(--mc, var(--ink)) 26%, var(--line)); }
.mod-on { border-color: color-mix(in srgb, var(--mc, var(--accent)) 40%, var(--line)); box-shadow: 0 0 0 1px color-mix(in srgb, var(--mc, var(--accent)) 30%, transparent), var(--sh-sm); }
.mod-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.mod-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--mc, var(--ink)) 11%, #fff); color: var(--mc, var(--ink-600)); transition: background .2s, color .2s; }
.mod-on .mod-ic { background: color-mix(in srgb, var(--mc, var(--accent)) 15%, #fff); color: var(--mc, var(--accent-700)); }
.mod-name { font-family: var(--font); font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.mod-desc { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0 0 16px; min-height: 44px; }
.mod-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.mod-cat { font-size: 12px; font-weight: 600; color: var(--muted); background: var(--surface-2); padding: 4px 10px; border-radius: var(--r-pill); }
.mod-inc { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font); font-size: 12px; font-weight: 600; color: var(--ink-600); }
.mod-inc svg { color: var(--success); }
.mod-arrow { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: var(--muted-2); transition: color .18s, background .18s, transform .18s; }
.mod-arrow svg { width: 26px; height: 26px; }
.mod-card:hover .mod-arrow { color: var(--mc, var(--accent)); background: color-mix(in srgb, var(--mc, var(--accent)) 12%, #fff); transform: translate(2px, -2px); }
.mod-state { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.mod-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); }
.mod-state.on { color: var(--success-700); }
.mod-state.on .mod-dot { background: var(--success); box-shadow: 0 0 0 3px var(--success-tint); }

.modules-note { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.modules-note svg { color: var(--muted-2); }

/* ---------------- BENEFITS ---------------- */
.benefit-ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); }
.benefit-ic.sm { width: 40px; height: 40px; border-radius: 11px; flex: none; }

/* bento: one feature card + a stacked rows card */
.benefits-bento {
  display: grid; grid-template-columns: 1.18fr 1fr; gap: 18px;
  margin: 48px 0 18px; align-items: stretch;
}
@media (max-width: 880px){ .benefits-bento { grid-template-columns: 1fr; } }

/* feature card */
.bft-feature { padding: 30px; display: flex; flex-direction: column; gap: 26px; }
.bft-feature .benefit-ic { margin-bottom: 16px; }
.bft-feature h3 { font-size: 21px; font-weight: 700; letter-spacing: -.015em; margin: 0 0 9px; }
.bft-feature .bft-feature-top p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 38ch; }

/* consolidation visual */
.merge {
  margin-top: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px;
  background: linear-gradient(180deg, var(--surface-2), #fff); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); padding: 18px;
}
.merge-cap { display: block; font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 11px; }
.merge-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mchip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--ink-600);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px 9px 4px 7px;
}
.mchip-more { color: var(--muted-2); font-weight: 700; padding-inline: 9px; }
.mdot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.mdot.d0 { background: #f59e0b; } .mdot.d1 { background: #10b981; }
.mdot.d2 { background: #ef4444; } .mdot.d3 { background: #06b6d4; }
.merge-arrow { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: var(--accent); background: var(--accent-tint); flex: none; }
.merge-one {
  display: flex; align-items: center; gap: 11px; background: #fff;
  border: 1px solid var(--accent-tint-2); border-radius: var(--r-md); padding: 12px 13px;
  box-shadow: 0 1px 2px rgba(79,70,229,.10), 0 0 0 3px var(--accent-tint);
}
.merge-logo { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 800; font-size: 15px; }
.merge-one-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.merge-one-txt b { font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--ink); }
.merge-one-txt span { font-size: 11.5px; color: var(--muted); }
.merge-ck { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--success-tint); color: var(--success-700); flex: none; }
@media (max-width: 460px){
  .merge { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .merge-chips { justify-content: center; }
  .merge-arrow { transform: rotate(90deg); margin-inline: auto; }
}

/* stacked benefit rows */
.bft-rows { display: flex; flex-direction: column; padding: 8px 22px; }
.bft-row { display: flex; gap: 16px; padding: 20px 0; }
.bft-row + .bft-row { border-top: 1px solid var(--line-soft); }
.bft-row-txt { flex: 1; }
.bft-row h3 { font-size: 16px; font-weight: 700; letter-spacing: -.01em; margin: 1px 0 6px; }
.bft-row p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.bft-row:hover .benefit-ic.sm { background: var(--accent); color: #fff; }
.benefit-ic.sm { transition: background .18s, color .18s; }

/* stats band */
.benefits-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); padding: 26px 8px; overflow: hidden;
}
.bstat { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 4px 18px; position: relative; }
.bstat + .bstat::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 52px; background: var(--line); }
.bstat-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); margin-bottom: 12px; }
.bstat b { display: block; font-family: var(--font); font-weight: 800; font-size: clamp(28px, 3vw, 38px); letter-spacing: -.02em; color: var(--ink); line-height: 1; margin-bottom: 7px; }
.bstat span { font-size: 13px; line-height: 1.4; color: var(--muted); max-width: 18ch; }
@media (max-width: 620px){
  .benefits-stats { grid-template-columns: 1fr 1fr; gap: 30px 0; padding: 28px 8px; }
  .bstat:nth-child(odd) + .bstat::before { display: none; }
}

/* ---------------- HOW IT WORKS ---------------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.steps-line { position: absolute; top: 30px; left: 16%; right: 16%; height: 2px; z-index: 0;
  background: repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 16px); }
.step { position: relative; z-index: 1; text-align: center; }
.step-badge { position: relative; width: 60px; height: 60px; border-radius: 18px; margin: 0 auto 18px;
  display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--accent); box-shadow: var(--sh-sm); }
.step-n { position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: #fff;
  font-family: var(--font); font-weight: 700; font-size: 11px; display: grid; place-items: center; }
.step h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.step p { font-size: 14.5px; line-height: 1.58; color: var(--muted); margin: 0 auto; max-width: 30ch; }
@media (max-width: 720px){ .steps { grid-template-columns: 1fr; gap: 36px; } .steps-line { display: none; } }

/* ---------------- SCROLL STACK (capabilities) ---------------- */
.ss-outer { position: relative; background: var(--surface); border-block: 1px solid var(--line); }
.ss-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.ss-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; width: 100%; }
.ss-rail { display: flex; align-items: center; gap: 9px; margin: 24px 0 22px; }
.ss-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: background .3s, transform .3s; }
.ss-dot.done { background: var(--accent-tint-2); }
.ss-dot.on { background: var(--accent); transform: scale(1.3); }
.ss-count { margin-left: 8px; font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--muted); }
.ss-count b { color: var(--ink); font-weight: 800; }
.ss-text { animation: ssIn .5s cubic-bezier(.16,1,.3,1); }
@keyframes ssIn { from { opacity: 0; transform: translateY(16px); } }
.ss-tag { font-family: var(--font); font-weight: 700; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; }
.ss-text h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; margin: 8px 0 14px; text-wrap: balance; }
.ss-text p { font-size: 17px; line-height: 1.62; color: var(--muted); max-width: 42ch; margin: 0; }
.ss-right { position: relative; height: 440px; }
.ss-cards { position: absolute; inset: 0; display: grid; place-items: center; }
.ss-card {
  position: absolute; width: min(420px, 100%);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  padding: 26px; opacity: 0; transform: translateY(125%) scale(.94);
  transition: transform .7s cubic-bezier(.16,1,.3,1), opacity .5s ease;
}
.ss-card.show { opacity: 1; transform: translateY(calc(var(--i) * 20px - 30px)) scale(1); }
.ss-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ss-card-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: color-mix(in srgb, var(--mc) 13%, #fff); color: var(--mc); }
.ss-card-tag { font-family: var(--font); font-weight: 700; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--mc); background: color-mix(in srgb, var(--mc) 12%, #fff); padding: 5px 11px; border-radius: var(--r-pill); }
.ss-card-h { font-family: var(--font); font-size: 21px; font-weight: 700; letter-spacing: -.015em; margin: 0 0 22px; color: var(--ink); }
.ss-card-foot { display: flex; align-items: flex-end; justify-content: space-between; }
.ss-card-metric b { font-family: var(--font); font-weight: 800; font-size: 32px; letter-spacing: -.02em; color: var(--mc); line-height: 1; }
.ss-card-metric span { font-size: 13px; color: var(--muted); margin-left: 7px; }
.ss-card-i { font-family: var(--font); font-weight: 800; font-size: 22px; color: var(--line); }
@media (prefers-reduced-motion: reduce){ .ss-card { transition: opacity .3s; } .ss-text { animation: none; } }
@media (max-width: 860px){
  .ss-outer { height: auto !important; }
  .ss-sticky { position: static; height: auto; padding: 64px 0; }
  .ss-grid { grid-template-columns: 1fr; gap: 32px; }
  .ss-right { height: auto; }
  .ss-cards { position: static; display: flex; flex-direction: column; gap: 14px; }
  .ss-card { position: static; width: 100%; opacity: 1 !important; transform: none !important; }
  .ss-rail { display: none; }
}

/* ---------------- BUILDERS / INTEGRATION HUB ---------------- */
.builders-inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.builders-copy h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin: 16px 0 14px; text-wrap: balance; }
.builders-copy > p { font-size: 16.5px; line-height: 1.62; color: var(--muted); margin: 0 0 24px; max-width: 44ch; }
.builders-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.builders-list li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink-600); }
.builders-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-weight: 600; font-size: 15px; color: var(--accent); }
.builders-link svg { transition: transform .15s; }
.builders-link:hover svg { transform: translateX(3px); }
.hub { position: relative; width: min(540px, 100%); aspect-ratio: 1; margin: 0 auto; }
.hub-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; z-index: 0; }
.hub-line {
  stroke: color-mix(in srgb, var(--accent) 38%, transparent); stroke-width: .5; stroke-linecap: round;
  stroke-dasharray: 1.4 2.6; animation: hubDash 2.6s linear infinite;
}
@keyframes hubDash { to { stroke-dashoffset: -8; } }
.hub-center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 96px; height: 96px; border-radius: 26px; display: grid; place-items: center;
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 90%, #000), var(--accent));
  box-shadow: var(--sh-accent), var(--sh-lg);
}
.hub-ring {
  position: absolute; left: 50%; top: 50%; width: 96px; height: 96px; border-radius: 26px; z-index: 1;
  transform: translate(-50%, -50%); border: 1.5px solid color-mix(in srgb, var(--accent) 45%, transparent);
  animation: hubPulse 3.4s ease-out infinite;
}
.hub-ring-2 { animation-delay: 1.7s; }
@keyframes hubPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
  70% { transform: translate(-50%, -50%) scale(1.9); opacity: 0; }
  100% { opacity: 0; }
}
.hub-node {
  position: absolute; transform: translate(-50%, -50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-md);
  border-radius: var(--r-pill); padding: 7px 15px 7px 7px;
  transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow .18s, border-color .18s;
}
.hub-node:hover { transform: translate(-50%, -50%) scale(1.06); border-color: color-mix(in srgb, var(--bc) 45%, var(--line)); }
.hub-node-ic { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--bc); color: #fff; font-family: var(--font); font-weight: 800; font-size: 11.5px; letter-spacing: -.02em; }
.hub-node-name { font-family: var(--font); font-weight: 600; font-size: 13.5px; color: var(--ink-700); letter-spacing: -.01em; }
.builders-foot { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 22px; font-size: 14px; color: var(--muted); text-align: center; }
.builders-ck { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--success-tint); color: var(--success-700); }
@media (prefers-reduced-motion: reduce){ .hub-line, .hub-ring { animation: none !important; } .hub-ring { opacity: 0; } }
@media (max-width: 880px){ .builders-inner { grid-template-columns: 1fr; gap: 40px; } .builders-copy { max-width: 560px; } }
@media (max-width: 640px){
  .hub { aspect-ratio: auto; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 18px; }
  .hub-lines, .hub-ring { display: none; }
  .hub-center { position: static; transform: none; }
  .hub-node { position: static !important; transform: none !important; left: auto !important; top: auto !important; }
  .builders .hub { flex-wrap: wrap; flex-direction: row; justify-content: center; }
  .hub-center { order: -1; flex-basis: 100%; margin: 0 auto; }
}

/* ---------------- REVIEWS ---------------- */
.reviews { overflow: hidden; }
.rv-agg { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; }
.rv-agg-stars { display: inline-flex; gap: 2px; color: #f59e0b; }
.rv-agg-txt { font-size: 14px; color: var(--muted); }
.rv-agg-txt b { color: var(--ink); font-weight: 700; }
.rv-rows { display: flex; flex-direction: column; gap: 6px; margin-top: 46px; }
.rv-track { overflow: hidden; padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent); }
.rv-row { display: flex; align-items: flex-start; gap: 14px; width: max-content; animation: rvScroll 64s linear infinite; will-change: transform; }
.rv-row-rev { animation-direction: reverse; animation-duration: 78s; }
.rv-rows:hover .rv-row { animation-play-state: paused; }
@keyframes rvScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.rv-card { width: 340px; flex: none; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-sm); padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.rv-stars { display: flex; gap: 2px; color: #f59e0b; }
.rv-quote { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-700); letter-spacing: -.005em; }
.rv-person { display: flex; align-items: center; gap: 12px; padding-top: 2px; }
.rv-ava { width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--font); font-weight: 700; font-size: 14px; color: #fff; }
.rv-meta { display: flex; flex-direction: column; line-height: 1.3; }
.rv-name { font-family: var(--font); font-weight: 700; font-size: 14px; color: var(--ink); }
.rv-role { font-size: 12.5px; color: var(--muted); }
@media (max-width: 560px){ .rv-card { width: 300px; } }
@media (prefers-reduced-motion: reduce){
  .rv-row { animation: none; }
  .rv-track { overflow-x: auto; }
}

/* ---------------- PRICING ---------------- */
.cycle { display: inline-flex; gap: 4px; background: var(--surface-2); padding: 5px; border-radius: var(--r-pill); margin: 30px auto 40px; justify-self: center; }
.pricing .container { display: flex; flex-direction: column; align-items: center; }
.pricing .section-head { width: 100%; }
.cycle-btn { display: inline-flex; align-items: center; gap: 8px; border: 0; background: none; font-family: var(--font); font-weight: 600; font-size: 14px; color: var(--ink-600); padding: 9px 20px; border-radius: var(--r-pill); }
.cycle-btn.on { background: #fff; color: var(--ink); box-shadow: var(--sh-xs); }
.cycle-save { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--success-700); background: var(--success-tint); padding: 2px 7px; border-radius: 999px; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; width: 100%; }
@media (max-width: 860px){ .plans { grid-template-columns: 1fr; max-width: 440px; } }
.plan { position: relative; padding: 26px; display: flex; flex-direction: column; }
.plan-pop { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--sh-md); }
.plan-flag { position: absolute; top: -12px; left: 26px; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 700; font-size: 11.5px; padding: 5px 12px; border-radius: 999px; box-shadow: var(--sh-accent); }
.plan-name { font-family: var(--font); font-weight: 700; font-size: 18px; }
.plan-tag { font-size: 13.5px; color: var(--muted); margin: 6px 0 18px; line-height: 1.45; min-height: 38px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.plan-cur { font-family: var(--font); font-weight: 700; font-size: 22px; color: var(--ink); }
.plan-amt { font-family: var(--font); font-weight: 800; font-size: 46px; letter-spacing: -.03em; line-height: 1; }
.plan-cents { font-family: var(--font); font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: var(--ink); align-self: flex-start; margin-top: 4px; }
.plan-per { font-size: 14px; color: var(--muted); margin-left: 4px; }
.plan-sites { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink-600); margin: 8px 0 20px; }
.plan-sites svg { color: var(--accent); }
.plan-feats { list-style: none; margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 12px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-600); }
.feat-ck { width: 19px; height: 19px; border-radius: 50%; background: var(--success-tint); color: var(--success-700); display: grid; place-items: center; flex: none; margin-top: 1px; }
.pricing-foot { margin-top: 30px; font-size: 14px; color: var(--muted); text-align: center; }
.pricing-foot a { color: var(--accent); font-weight: 600; }

/* ---------------- CTA ---------------- */
.cta-wrap { padding-bottom: 96px; }
.cta { position: relative; overflow: hidden; text-align: center; padding: 64px 32px;
  border-radius: 28px; color: #fff;
  background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 88%, #000), var(--accent) 55%, color-mix(in srgb, var(--accent) 78%, #7c3aed)); }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, rgba(255,255,255,.22), transparent 70%); pointer-events: none; }
.cta h2 { position: relative; font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; text-wrap: balance; }
.cta p { position: relative; font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.86); max-width: 50ch; margin: 0 auto 28px; }
.cta-btns { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-white { background: #fff; color: var(--accent-700); }
.cta-white:hover { background: #f1f1ff; transform: translateY(-1px); }
.cta-note { position: relative; display: block; margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.72); }

/* ---------------- FOOTER ---------------- */
.footer { background: #0c1222; color: #c8cdda; padding: 64px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2.6fr; gap: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: #8b93a7; max-width: 34ch; margin: 18px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-soc { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #c8cdda; transition: background .2s, color .2s; }
.footer-soc:hover { background: var(--accent); color: #fff; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { font-family: var(--font); font-size: 13px; font-weight: 700; color: #fff; margin: 0 0 14px; letter-spacing: .01em; }
.footer-col a { display: block; font-size: 14px; color: #8b93a7; padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #6b7280; }

/* footer trust badges */
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 44px; }
.fbadge { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-family: var(--font); font-weight: 600; font-size: 12.5px; color: #c8cdda; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-pill); padding: 8px 14px 8px 11px; }
.fbadge svg { color: #7fd9a6; }
.fbadge-w { width: 19px; height: 19px; border-radius: 6px; flex: none; display: grid; place-items: center; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 800; font-size: 11px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: #fff; }
@media (max-width: 820px){ .footer-inner { grid-template-columns: 1fr; gap: 36px; } .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-bottom { flex-direction: column; gap: 12px; } }

/* ---------------- AUTH MODAL ---------------- */
.auth-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(12,18,34,.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 24px; animation: fade .2s ease; }
@keyframes fade { from { opacity: 0; } }
.auth-card { position: relative; width: min(880px, 100%); background: #fff; border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.1fr; box-shadow: var(--sh-lg); animation: pop .25s cubic-bezier(.16,1,.3,1); }
@keyframes pop { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.auth-close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; }
.auth-close:hover { background: rgba(255,255,255,.26); }
.auth-side { background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 90%, #000), var(--accent)); color: #fff; padding: 32px; display: flex; flex-direction: column; }
.auth-side-body { margin-top: auto; }
.auth-side h3 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 10px; line-height: 1.15; text-wrap: balance; }
.auth-side-body > p { font-size: 14.5px; color: rgba(255,255,255,.84); margin: 0 0 22px; }
.auth-side ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.auth-side li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.92); }
.auth-side li svg { flex: none; }
.auth-side-foot { display: flex; align-items: center; gap: 8px; margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); font-size: 12.5px; color: rgba(255,255,255,.78); }
.auth-main { padding: 40px 38px; display: flex; flex-direction: column; }
.auth-main h2 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 6px; }
.auth-lead { font-size: 14px; color: var(--muted); margin: 0 0 22px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--muted-2); font-size: 12.5px; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: 13px; font-weight: 600; color: var(--ink-700); }
.field-row { display: flex; align-items: center; justify-content: space-between; }
.field-row a { font-size: 12.5px; color: var(--accent); font-weight: 600; }
.field input { font-family: var(--font-body); font-size: 14.5px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; transition: border-color .15s, box-shadow .15s; }
.field input:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.field input::placeholder { color: var(--muted-2); }
.auth-err { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: #b42318; background: #fef3f2; border: 1px solid #fecdca; border-radius: var(--r-sm); padding: 9px 12px; }
.auth-switch { font-size: 14px; color: var(--muted); margin: 20px 0 0; }
.auth-switch button { background: none; border: 0; font-family: var(--font); font-weight: 700; color: var(--accent); font-size: 14px; }
.auth-done { text-align: center; margin: auto 0; display: flex; flex-direction: column; align-items: center; }
.auth-done-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--success-tint); color: var(--success-700); display: grid; place-items: center; margin-bottom: 18px; }
.auth-done h3 { font-size: 22px; font-weight: 800; margin: 0 0 8px; }
.auth-done p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0 0 24px; max-width: 32ch; }
@media (max-width: 680px){ .auth-card { grid-template-columns: 1fr; } .auth-side { display: none; } .auth-main { padding: 36px 26px; } }


/* ═══════════════════════════════════════════
   HOW IT WORKS PAGE — CSS
   ═══════════════════════════════════════════ */

.how-hero { padding: 72px 0 8px; }
.how-hero h1 { font-size: clamp(34px, 4.4vw, 54px); font-weight: 800; letter-spacing: -.028em; line-height: 1.05; margin: 18px 0 16px; text-wrap: balance; }
.how-hero .container > p { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 56ch; margin: 0; }
.how-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.how-stepper { list-style: none; margin: 50px 0 0; padding: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 10px 0; }
.how-stepper-item { position: relative; display: flex; align-items: center; gap: 13px; flex: 1; min-width: 210px; }
.how-stepper-item:last-child { flex: 0 0 auto; }
.how-stepper-badge { position: relative; width: 52px; height: 52px; border-radius: 15px; flex: none; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--accent); box-shadow: var(--sh-sm); }
.how-stepper-n { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 700; font-size: 10.5px; display: grid; place-items: center; }
.how-stepper-txt { font-family: var(--font); font-weight: 700; font-size: 15px; color: var(--ink); }
.how-stepper-line { flex: 1; height: 2px; min-width: 26px; margin: 0 16px; background: repeating-linear-gradient(to right, var(--line) 0 7px, transparent 7px 14px); }

.how-detail { padding-top: 60px; }
.how-row { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.how-row + .how-row { margin-top: 84px; }
.how-row-rev .how-copy { order: 2; }
.how-step-tag { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font); font-weight: 700; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-700); }
.how-step-num { width: 36px; height: 36px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); font-size: 15px; font-weight: 800; letter-spacing: 0; }
.how-copy h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin: 16px 0 14px; }
.how-copy > p { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin: 0 0 22px; max-width: 46ch; }
.how-checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.how-checks li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink-600); }
.how-visual { position: relative; }
.how-visual .mp-spot-glow { z-index: 0; }
.how-visual .dash { position: relative; z-index: 1; }
.how-bar-tag { margin-left: 6px; flex: 1; font-size: 12.5px; font-weight: 600; color: var(--muted); }

/* install mock */
.how-install-body { padding: 22px; }
.how-ic-row { display: flex; align-items: center; gap: 13px; }
.how-ic-mark { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 90%, #000), var(--accent)); box-shadow: var(--sh-accent); }
.how-ic-txt { flex: 1; line-height: 1.3; min-width: 0; }
.how-ic-txt b { display: block; font-family: var(--font); font-size: 14.5px; font-weight: 700; color: var(--ink); }
.how-ic-txt span { font-size: 12.5px; color: var(--muted); }
.how-ic-btn { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font); font-weight: 700; font-size: 12.5px; color: var(--success-700); background: var(--success-tint); padding: 7px 12px; border-radius: var(--r-pill); white-space: nowrap; }
.how-ic-prog { height: 8px; border-radius: 999px; background: var(--surface-2); margin: 20px 0 14px; overflow: hidden; }
.how-ic-prog span { display: block; height: 100%; width: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-600)); }
.how-ic-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.how-ic-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-600); }
.how-ic-meta svg { color: var(--success-700); }

/* settings mock */
.how-set-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.how-set-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px 15px; }
.how-set-txt b { display: block; font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--ink); }
.how-set-txt span { font-size: 12.5px; color: var(--muted); }
.how-set-save { margin-top: 4px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 600; font-size: 14px; border: 0; padding: 11px 18px; border-radius: var(--r-md); box-shadow: var(--sh-accent); }

@media (max-width: 900px){
  .how-row, .how-row-rev { grid-template-columns: 1fr; gap: 36px; }
  .how-row-rev .how-copy { order: 0; }
  .how-row + .how-row { margin-top: 56px; }
}
@media (max-width: 720px){
  .how-stepper { flex-direction: column; align-items: flex-start; gap: 18px; }
  .how-stepper-item { flex: 0 0 auto; min-width: 0; }
  .how-stepper-line { display: none; }
}


/* ═══════════════════════════════════════════
   MODULES PAGE — CSS
   ═══════════════════════════════════════════ */

.mp-hero, .pr-hero { padding: 72px 0 8px; }
.mp-hero-inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 56px; align-items: center; }
.mp-hero h1, .pr-hero h1 { font-size: clamp(34px, 4.4vw, 54px); font-weight: 800; letter-spacing: -.028em; line-height: 1.05; margin: 18px 0 16px; text-wrap: balance; }
.mp-hero p, .pr-hero p { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 52ch; margin: 0; }
.mp-hero-stats { display: flex; gap: 40px; margin-top: 34px; }
.mp-hero-stats div { display: flex; flex-direction: column; }
.mp-hero-stats b { font-family: var(--font); font-weight: 800; font-size: 32px; letter-spacing: -.02em; }
.mp-hero-stats span { font-size: 13.5px; color: var(--muted); }

/* "standard in every module" card */
.mp-hl { padding: 16px 18px 14px; width: 100%; max-width: 360px; justify-self: end; }
.mp-hl-head { padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); }
.mp-hl-title { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-family: var(--font); font-weight: 700; font-size: 14px; color: var(--ink); }
.mp-hl-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.mp-hl-list { list-style: none; margin: 0; padding: 14px 0 2px; display: flex; flex-direction: column; gap: 12px; }
.mp-hl-list li { display: flex; align-items: center; gap: 11px; font-size: 13.5px; font-weight: 500; color: var(--ink-600); }
.mp-hl-ck { width: 20px; height: 20px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); }
@media (max-width: 900px){ .mp-hero-inner { grid-template-columns: 1fr; gap: 36px; } .mp-hl { max-width: 420px; justify-self: start; } }

/* roadmap / coming soon at end of list */
.mp-soon { border-top: 1px solid var(--line); }
.mp-soon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 860px){ .mp-soon-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.mp-soon-card { position: relative; background: linear-gradient(180deg, var(--surface-2), #fff); border: 1px dashed color-mix(in srgb, var(--mc, var(--line)) 40%, var(--line)); border-radius: var(--r-lg); padding: 20px; }
.mp-soon-card .mod-ic { background: color-mix(in srgb, var(--mc) 12%, #fff); color: var(--mc); }
.mp-soon-tag { font-family: var(--font); font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--mc); background: color-mix(in srgb, var(--mc) 12%, #fff); padding: 4px 10px; border-radius: var(--r-pill); }
.mp-soon-card .mod-desc { margin-bottom: 0; min-height: 0; }
.mp-soon-foot { text-align: center; margin-top: 28px; font-size: 14px; color: var(--muted); }
.mp-soon-foot a { color: var(--accent); font-weight: 600; }

/* ---------- catalog ---------- */
.mp-catalog { padding-top: 44px; }
.mp-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.mp-search { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 9px 16px; color: var(--muted-2); box-shadow: var(--sh-xs); min-width: 240px; }
.mp-search input { border: 0; outline: 0; background: none; font-family: var(--font-body); font-size: 14px; color: var(--ink); width: 100%; }
.mp-search input::placeholder { color: var(--muted-2); }
.mp-grid { align-items: stretch; }
.mp-grid .mod-card { display: flex; flex-direction: column; }
.mp-desc { min-height: 0; flex: 1; }
.mp-doclink { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--accent); }
.mp-doclink:hover { color: var(--accent-700); }
.mp-empty { text-align: center; color: var(--muted); font-size: 15px; padding: 40px 0; }

/* ---------- spotlight ---------- */
.mp-spot { background: var(--surface); border-top: 1px solid var(--line); }
.mp-spot-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.mp-spot-copy h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin: 16px 0 14px; }
.mp-spot-copy > p { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin: 0 0 24px; }
.mp-feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.mp-feats li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink-600); }
.mp-spot-visual { position: relative; }
.mp-spot-glow { position: absolute; inset: 6% -4%; background: radial-gradient(50% 50% at 60% 40%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%); filter: blur(10px); }
.mp-spot-card { position: relative; z-index: 1; }
.mp-spot-tag { margin-left: 6px; flex: 1; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.mp-fb { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.mp-fb-field { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.mp-fb-label { font-size: 12px; font-weight: 600; color: var(--ink-700); }
.mp-fb-input { height: 38px; border: 1px solid var(--line); border-radius: 9px; background: var(--bg); }
.mp-fb-select { position: relative; }
.mp-fb-select::after { content: ""; position: absolute; right: 13px; top: 15px; width: 7px; height: 7px; border-right: 2px solid var(--muted-2); border-bottom: 2px solid var(--muted-2); transform: rotate(45deg); }
.mp-fb-area { height: 70px; }
.mp-fb-row { display: flex; gap: 12px; }
.mp-fb-submit { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 600; font-size: 14px; padding: 11px 18px; border-radius: var(--r-md); box-shadow: var(--sh-accent); }
.mp-spot-chip { position: absolute; z-index: 2; bottom: 18px; left: -16px; display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-md); border-radius: var(--r-pill); padding: 9px 14px; font-size: 13px; font-weight: 600; color: var(--ink); }
@media (max-width: 900px){ .mp-spot-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- pricing page: comparison ---------- */
.pr-compare { padding-top: 44px; }
.pr-compare .section-head { margin-bottom: 36px; }
.cmp { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.cmp th, .cmp td { padding: 16px 22px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line-soft); }
.cmp thead th { background: var(--surface-2); font-family: var(--font); font-weight: 700; font-size: 14px; color: var(--ink); }
.cmp thead th:not(:first-child), .cmp td:not(:first-child) { text-align: center; width: 150px; }
.cmp thead th.cmp-pop { color: var(--accent); }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp .cmp-group td { background: #fff; font-family: var(--font); font-weight: 700; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); padding-top: 22px; padding-bottom: 10px; }
.cmp-row-label { color: var(--ink-600); }
.cmp-yes { color: var(--success-700); display: inline-flex; }
.cmp-no { color: var(--muted-2); }
.cmp-val { font-weight: 600; color: var(--ink); }
.cmp-col-pop { background: color-mix(in srgb, var(--accent) 4%, #fff); }
@media (max-width: 760px){ .cmp { display: block; overflow-x: auto; white-space: nowrap; } }

/* ---------- pricing page: FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: 0; padding: 22px 4px; text-align: left; font-family: var(--font); font-weight: 600; font-size: 17px; color: var(--ink); }
.faq-q .faq-ic { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; color: var(--ink-600); transition: transform .2s, background .2s, color .2s; }
.faq-item.open .faq-ic { background: var(--accent); color: #fff; transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .28s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { margin: 0; padding: 0 4px 24px; font-size: 15px; line-height: 1.62; color: var(--muted); max-width: 64ch; }

/* ---------- How it works page ---------- */
.how-hero { padding: 72px 0 8px; }
.how-hero h1 { font-size: clamp(34px, 4.4vw, 54px); font-weight: 800; letter-spacing: -.028em; line-height: 1.05; margin: 18px 0 16px; text-wrap: balance; }
.how-hero .container > p { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 56ch; margin: 0; }
.how-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.how-stepper { list-style: none; margin: 50px 0 0; padding: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 10px 0; }
.how-stepper-item { position: relative; display: flex; align-items: center; gap: 13px; flex: 1; min-width: 210px; }
.how-stepper-item:last-child { flex: 0 0 auto; }
.how-stepper-badge { position: relative; width: 52px; height: 52px; border-radius: 15px; flex: none; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--accent); box-shadow: var(--sh-sm); }
.how-stepper-n { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 700; font-size: 10.5px; display: grid; place-items: center; }
.how-stepper-txt { font-family: var(--font); font-weight: 700; font-size: 15px; color: var(--ink); }
.how-stepper-line { flex: 1; height: 2px; min-width: 26px; margin: 0 16px; background: repeating-linear-gradient(to right, var(--line) 0 7px, transparent 7px 14px); }

.how-detail { padding-top: 60px; }
.how-row { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.how-row + .how-row { margin-top: 84px; }
.how-row-rev .how-copy { order: 2; }
.how-step-tag { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font); font-weight: 700; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-700); }
.how-step-num { width: 36px; height: 36px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); font-size: 15px; font-weight: 800; letter-spacing: 0; }
.how-copy h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin: 16px 0 14px; }
.how-copy > p { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin: 0 0 22px; max-width: 46ch; }
.how-checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.how-checks li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink-600); }
.how-visual { position: relative; }
.how-visual .mp-spot-glow { z-index: 0; }
.how-visual .dash { position: relative; z-index: 1; }
.how-bar-tag { margin-left: 6px; flex: 1; font-size: 12.5px; font-weight: 600; color: var(--muted); }

/* install mock */
.how-install-body { padding: 22px; }
.how-ic-row { display: flex; align-items: center; gap: 13px; }
.how-ic-mark { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 90%, #000), var(--accent)); box-shadow: var(--sh-accent); }
.how-ic-txt { flex: 1; line-height: 1.3; min-width: 0; }
.how-ic-txt b { display: block; font-family: var(--font); font-size: 14.5px; font-weight: 700; color: var(--ink); }
.how-ic-txt span { font-size: 12.5px; color: var(--muted); }
.how-ic-btn { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font); font-weight: 700; font-size: 12.5px; color: var(--success-700); background: var(--success-tint); padding: 7px 12px; border-radius: var(--r-pill); white-space: nowrap; }
.how-ic-prog { height: 8px; border-radius: 999px; background: var(--surface-2); margin: 20px 0 14px; overflow: hidden; }
.how-ic-prog span { display: block; height: 100%; width: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-600)); }
.how-ic-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.how-ic-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-600); }
.how-ic-meta svg { color: var(--success-700); }

/* settings mock */
.how-set-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.how-set-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px 15px; }
.how-set-txt b { display: block; font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--ink); }
.how-set-txt span { font-size: 12.5px; color: var(--muted); }
.how-set-save { margin-top: 4px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 600; font-size: 14px; border: 0; padding: 11px 18px; border-radius: var(--r-md); box-shadow: var(--sh-accent); }

@media (max-width: 900px){
  .how-row, .how-row-rev { grid-template-columns: 1fr; gap: 36px; }
  .how-row-rev .how-copy { order: 0; }
  .how-row + .how-row { margin-top: 56px; }
}
@media (max-width: 720px){
  .how-stepper { flex-direction: column; align-items: flex-start; gap: 18px; }
  .how-stepper-item { flex: 0 0 auto; min-width: 0; }
  .how-stepper-line { display: none; }
}

/* ═══════════════════════════════════════════
   AUTH PAGES (login / register) — CSS
   ═══════════════════════════════════════════ */

.ap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) 1.08fr;
}

/* ---- brand panel ---- */
.ap-brand {
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 36px 48px;
  color: #fff;
  background: linear-gradient(165deg, color-mix(in srgb, var(--accent) 86%, #000) 0%, var(--accent) 52%, color-mix(in srgb, var(--accent) 72%, #7c3aed) 100%);
}
.ap-brand-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(38% 30% at 78% 12%, rgba(255,255,255,.22), transparent 70%),
    radial-gradient(40% 36% at 8% 92%, rgba(0,0,0,.22), transparent 70%);
}
.ap-brand > * { position: relative; z-index: 1; }
.ap-brand-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex: none; }
.ap-back {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--font);
  font-weight: 600; font-size: 13.5px; color: rgba(255,255,255,.82);
  padding: 8px 14px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.22);
  transition: background .18s, color .18s;
}
.ap-back:hover { background: rgba(255,255,255,.12); color: #fff; }

.ap-brand-mid { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; justify-content: center; max-width: 30rem; padding: 32px 0; }
.ap-brand-mid h2 { font-size: clamp(28px, 2.6vw, 38px); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; margin: 0 0 14px; text-wrap: balance; }
.ap-brand-mid > p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.86); margin: 0 0 26px; }
.ap-points { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.ap-points li { display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,.94); }
.ap-pt-ic { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.16); }

.ap-quote { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-lg); padding: 20px; backdrop-filter: blur(6px); }
.ap-stars { display: inline-flex; gap: 2px; color: #fde68a; margin-bottom: 10px; }
.ap-quote > p { font-size: 15px; line-height: 1.55; color: #fff; margin: 0 0 16px; font-weight: 500; }
.ap-quote-by { display: flex; align-items: center; gap: 11px; }
.ap-ava { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; font-family: var(--font); font-weight: 700; font-size: 13px; flex: none; }
.ap-quote-by b { display: block; font-family: var(--font); font-size: 14px; }
.ap-quote-by span { font-size: 12.5px; color: rgba(255,255,255,.74); }

.ap-brand-foot { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.78); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); flex: none; }

/* ---- form panel ---- */
.ap-main { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 40px; background: var(--bg); }
/* Mobile-only back link (the brand panel — and its "Back" — is hidden < 900px) */
.ap-back-m {
  display: none; align-items: center; gap: 7px; position: absolute; top: 20px; left: 22px;
  font-family: var(--font); font-weight: 600; font-size: 13.5px; color: var(--ink-700);
  padding: 8px 14px; border-radius: var(--r-pill); border: 1px solid var(--line); background: #fff;
  transition: border-color .15s, color .15s;
}
.ap-back-m:hover { border-color: var(--accent); color: var(--accent); }
.ap-logo-mobile { display: none; }
.ap-form { width: 100%; max-width: 408px; }
.ap-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-weight: 600;
  font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-700);
  background: var(--accent-tint); padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.ap-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.ap-form h1 { font-size: clamp(26px, 3vw, 32px); font-weight: 800; letter-spacing: -.022em; margin: 0 0 8px; }
.ap-lead { font-size: 15.5px; color: var(--muted); margin: 0 0 26px; }
.ap-full { width: 100%; justify-content: center; }

.ap-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--muted-2); font-size: 12.5px; }
.ap-divider::before, .ap-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.ap-fields { display: flex; flex-direction: column; gap: 15px; }
.ap-fields .field > span { font-size: 13px; font-weight: 600; color: var(--ink-700); }
.ap-fields .field input {
  width: 100%; font-family: var(--font-body); font-size: 15px; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: var(--r-md); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.ap-fields .field input:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.ap-fields .field input::placeholder { color: var(--muted-2); }
.field-row { display: flex; align-items: center; justify-content: space-between; }
.field-row a { font-size: 12.5px; color: var(--accent); font-weight: 600; white-space: nowrap; }

.ap-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-600); cursor: pointer; user-select: none; margin-top: -2px; }
.ap-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.ap-check-box { width: 20px; height: 20px; border-radius: 6px; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; color: transparent; transition: background .15s, border-color .15s, color .15s; flex: none; }
.ap-check input:checked + .ap-check-box { background: var(--accent); border-color: var(--accent); color: #fff; }
.ap-check input:focus-visible + .ap-check-box { box-shadow: 0 0 0 3px var(--accent-tint); }

.ap-terms { font-size: 12.5px; line-height: 1.5; color: var(--muted); margin: -2px 0 2px; }
.ap-terms a { color: var(--accent); font-weight: 600; }

.auth-err { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: #b42318; background: #fef3f2; border: 1px solid #fecdca; border-radius: var(--r-sm); padding: 10px 12px; }

.ap-switch { font-size: 14.5px; color: var(--muted); margin: 24px 0 0; text-align: center; }
.ap-switch a { color: var(--accent); font-weight: 700; }

.ap-done { text-align: center; display: flex; flex-direction: column; align-items: center; }
.ap-done-ic { width: 72px; height: 72px; border-radius: 50%; background: var(--success-tint); color: var(--success-700); display: grid; place-items: center; margin-bottom: 22px; }
.ap-done h1 { font-size: 28px; font-weight: 800; margin: 0 0 10px; }
.ap-done p { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0 0 26px; max-width: 32ch; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .ap { grid-template-columns: 1fr; }
  .ap-brand { display: none; }
  .ap-main { padding: 72px 24px 40px; min-height: 100vh; }
  .ap-back-m { display: inline-flex; }
  .ap-logo-mobile { display: inline-flex; margin-bottom: 32px; }
}
/* Auth logo lockup */
.ap-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.ap-logo-word { font-family: var(--font); font-weight: 800; font-size: 18.6px; letter-spacing: -.02em; color: #fff; line-height: 1; }
.wpstack-bare { background: var(--bg); }

/* ── Email verification (OTP) ── */
.otp-grid { display: flex; gap: 10px; margin: 4px 0 4px; }
.otp-box {
  width: 100%; max-width: 58px; height: 64px;
  text-align: center; font-family: var(--font); font-weight: 700; font-size: 26px; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r-md); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.otp-box:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.otp-box.is-filled { border-color: var(--accent); }
.otp-meta { display: flex; align-items: center; justify-content: center; margin-top: 4px; }
.otp-timer { font-family: var(--font); font-weight: 600; font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.otp-timer.is-expired { color: #b42318; }
.otp-resend-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: 14px; color: var(--accent);
}
.otp-resend-btn:hover { color: var(--accent-700); }
@media (max-width: 420px){ .otp-box { height: 56px; font-size: 22px; } .otp-grid { gap: 7px; } }

/* Honeypot — visually hidden, off-screen, ignored by real users */
.wps-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }


/* ═══════════════════════════════════════════
   PRICING PAGE — comparison + FAQ
   ═══════════════════════════════════════════ */

.pr-compare { padding-top: 44px; }
.pr-compare .section-head { margin-bottom: 36px; }
.cmp { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.cmp th, .cmp td { padding: 16px 22px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line-soft); }
.cmp thead th { background: var(--surface-2); font-family: var(--font); font-weight: 700; font-size: 14px; color: var(--ink); }
.cmp thead th:not(:first-child), .cmp td:not(:first-child) { text-align: center; width: 150px; }
.cmp thead th.cmp-pop { color: var(--accent); }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp .cmp-group td { background: #fff; font-family: var(--font); font-weight: 700; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); padding-top: 22px; padding-bottom: 10px; }
.cmp-row-label { color: var(--ink-600); }
.cmp-yes { color: var(--success-700); display: inline-flex; }
.cmp-no { color: var(--muted-2); }
.cmp-val { font-weight: 600; color: var(--ink); }
.cmp-col-pop { background: color-mix(in srgb, var(--accent) 4%, #fff); }
@media (max-width: 760px){ .cmp { display: block; overflow-x: auto; white-space: nowrap; } }

/* ---------- pricing page: FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: 0; padding: 22px 4px; text-align: left; font-family: var(--font); font-weight: 600; font-size: 17px; color: var(--ink); }
.faq-q .faq-ic { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; color: var(--ink-600); transition: transform .2s, background .2s, color .2s; }
.faq-item.open .faq-ic { background: var(--accent); color: #fff; transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .28s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { margin: 0; padding: 0 4px 24px; font-size: 15px; line-height: 1.62; color: var(--muted); max-width: 64ch; }

/* ---------- How it works page ---------- */
.how-hero { padding: 72px 0 8px; }
.how-hero h1 { font-size: clamp(34px, 4.4vw, 54px); font-weight: 800; letter-spacing: -.028em; line-height: 1.05; margin: 18px 0 16px; text-wrap: balance; }
.how-hero .container > p { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 56ch; margin: 0; }
.how-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.how-stepper { list-style: none; margin: 50px 0 0; padding: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 10px 0; }
.how-stepper-item { position: relative; display: flex; align-items: center; gap: 13px; flex: 1; min-width: 210px; }
.how-stepper-item:last-child { flex: 0 0 auto; }
.how-stepper-badge { position: relative; width: 52px; height: 52px; border-radius: 15px; flex: none; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--accent); box-shadow: var(--sh-sm); }
.how-stepper-n { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 700; font-size: 10.5px; display: grid; place-items: center; }
.how-stepper-txt { font-family: var(--font); font-weight: 700; font-size: 15px; color: var(--ink); }
.how-stepper-line { flex: 1; height: 2px; min-width: 26px; margin: 0 16px; background: repeating-linear-gradient(to right, var(--line) 0 7px, transparent 7px 14px); }

.how-detail { padding-top: 60px; }
.how-row { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.how-row + .how-row { margin-top: 84px; }
.how-row-rev .how-copy { order: 2; }
.how-step-tag { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font); font-weight: 700; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-700); }
.how-step-num { width: 36px; height: 36px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); font-size: 15px; font-weight: 800; letter-spacing: 0; }
.how-copy h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin: 16px 0 14px; }
.how-copy > p { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin: 0 0 22px; max-width: 46ch; }
.how-checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.how-checks li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink-600); }
.how-visual { position: relative; }
.how-visual .mp-spot-glow { z-index: 0; }
.how-visual .dash { position: relative; z-index: 1; }
.how-bar-tag { margin-left: 6px; flex: 1; font-size: 12.5px; font-weight: 600; color: var(--muted); }

/* install mock */
.how-install-body { padding: 22px; }
.how-ic-row { display: flex; align-items: center; gap: 13px; }
.how-ic-mark { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 90%, #000), var(--accent)); box-shadow: var(--sh-accent); }
.how-ic-txt { flex: 1; line-height: 1.3; min-width: 0; }
.how-ic-txt b { display: block; font-family: var(--font); font-size: 14.5px; font-weight: 700; color: var(--ink); }
.how-ic-txt span { font-size: 12.5px; color: var(--muted); }
.how-ic-btn { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font); font-weight: 700; font-size: 12.5px; color: var(--success-700); background: var(--success-tint); padding: 7px 12px; border-radius: var(--r-pill); white-space: nowrap; }
.how-ic-prog { height: 8px; border-radius: 999px; background: var(--surface-2); margin: 20px 0 14px; overflow: hidden; }
.how-ic-prog span { display: block; height: 100%; width: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-600)); }
.how-ic-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.how-ic-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-600); }
.how-ic-meta svg { color: var(--success-700); }

/* settings mock */
.how-set-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.how-set-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px 15px; }
.how-set-txt b { display: block; font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--ink); }
.how-set-txt span { font-size: 12.5px; color: var(--muted); }
.how-set-save { margin-top: 4px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 600; font-size: 14px; border: 0; padding: 11px 18px; border-radius: var(--r-md); box-shadow: var(--sh-accent); }

@media (max-width: 900px){
  .how-row, .how-row-rev { grid-template-columns: 1fr; gap: 36px; }
  .how-row-rev .how-copy { order: 0; }
  .how-row + .how-row { margin-top: 56px; }
}
@media (max-width: 720px){
  .how-stepper { flex-direction: column; align-items: flex-start; gap: 18px; }
  .how-stepper-item { flex: 0 0 auto; min-width: 0; }
  .how-stepper-line { display: none; }
}

/* ═══════════════════════════════════════════
   CUSTOMER DASHBOARD — CSS
   ═══════════════════════════════════════════ */

.db-app { display: grid; grid-template-columns: 264px 1fr; min-height: 100vh; background: var(--bg); }

/* ---------------- sidebar ---------------- */
.db-side { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; background: #fff; border-right: 1px solid var(--line); padding: 20px 16px; }
.db-side-top { display: flex; flex-direction: column; gap: 11px; padding: 4px 6px 18px; }
.db-back-site {
  display: inline-flex; align-items: center; gap: 6px; width: max-content;
  font-family: var(--font); font-weight: 600; font-size: 11.5px;
  color: var(--muted); background: var(--surface-2); border: 1px solid var(--line);
  padding: 5px 11px 5px 9px; border-radius: var(--r-pill);
  transition: color .15s, background .15s, border-color .15s;
}
.db-back-site:hover { color: var(--accent-700); background: var(--accent-tint); border-color: var(--accent-tint-2); }
.db-back-site svg { flex: none; }
.db-workspace { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border: 1px solid var(--line); border-radius: var(--r-md); cursor: pointer; transition: border-color .15s, background .15s; }
.db-workspace:hover { border-color: var(--muted-2); background: var(--surface-2); }
.db-ws-logo { width: 32px; height: 32px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--accent); color: #fff; font-family: var(--font); font-weight: 800; font-size: 12px; }
.db-ws-name { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.db-ws-name b { font-family: var(--font); font-size: 13.5px; font-weight: 700; color: var(--ink); }
.db-ws-name span { font-size: 11.5px; color: var(--muted); }

.db-nav { display: flex; flex-direction: column; gap: 3px; }
.db-nav-label { font-family: var(--font); font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted-2); padding: 8px 12px 6px; }
.db-nav-item { display: flex; align-items: center; gap: 11px; width: 100%; text-align: left; border: 0; background: none; cursor: pointer; font-family: var(--font); font-weight: 600; font-size: 14px; color: var(--ink-600); padding: 10px 12px; border-radius: var(--r-md); transition: background .15s, color .15s; }
.db-nav-item svg { color: var(--muted-2); transition: color .15s; }
.db-nav-item:hover { background: var(--surface-2); color: var(--ink); }
.db-nav-item.on { background: var(--accent-tint); color: var(--accent-700); }
.db-nav-item.on svg { color: var(--accent); }
.db-badge { margin-left: auto; font-family: var(--font); font-weight: 700; font-size: 11px; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; display: inline-grid; place-items: center; background: var(--surface-2); color: var(--ink-600); }
.db-nav-item.on .db-badge { background: #fff; color: var(--accent-700); }

.db-side-foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-top: 14px; }
.db-upsell { background: linear-gradient(160deg, var(--accent-tint), #fff); border: 1px solid var(--accent-tint-2); border-radius: var(--r-lg); padding: 16px; }
.db-upsell b { font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--ink); }
.db-upsell p { font-size: 12.5px; line-height: 1.5; color: var(--muted); margin: 6px 0 12px; }
.db-upsell .btn { width: 100%; justify-content: center; }
.db-user { display: flex; align-items: center; gap: 10px; padding: 8px 6px; border-top: 1px solid var(--line-soft); }
.db-user-name { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.db-user-name b { font-family: var(--font); font-size: 13px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.db-user-name span { font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.db-ava { width: 32px; height: 32px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); font-family: var(--font); font-weight: 700; font-size: 12px; }
.db-edit-btn { flex: none; width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--line); background: #fff; color: var(--muted); display: grid; place-items: center; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.db-edit-btn:hover { background: var(--accent-tint); color: var(--accent-700); border-color: var(--accent-tint-2); }

/* ---------------- main ---------------- */
.db-main { min-width: 0; display: flex; flex-direction: column; }
.db-top { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 18px; padding: 16px 28px; background: rgba(255,255,255,.85); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line); }
.db-top h1 { font-family: var(--font); font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin: 0; }
.db-top-search { display: flex; align-items: center; gap: 9px; margin-left: 14px; flex: 1; max-width: 420px; background: var(--surface-2); border: 1px solid transparent; border-radius: var(--r-pill); padding: 9px 16px; color: var(--muted-2); transition: border-color .15s, background .15s; }
.db-top-search:focus-within { background: #fff; border-color: var(--line); }
.db-top-search input { border: 0; outline: 0; background: none; font-family: var(--font-body); font-size: 13.5px; color: var(--ink); width: 100%; }
.db-top-search input::placeholder { color: var(--muted-2); }
.db-top-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.db-icon-btn { position: relative; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink-600); display: grid; place-items: center; cursor: pointer; transition: background .15s, color .15s; }
.db-icon-btn:hover { background: var(--surface-2); color: var(--ink); }
.db-dot { position: absolute; top: 8px; right: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); border: 2px solid #fff; }
.db-plan-chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font); font-weight: 600; font-size: 12.5px; color: var(--accent-700); background: var(--accent-tint); padding: 7px 12px; border-radius: var(--r-pill); }
.db-top-right .db-ava { width: 36px; height: 36px; }

.db-content { padding: 28px; max-width: 1320px; width: 100%; margin: 0 auto; }

/* Hamburger toggle + dropdown logout: desktop hides them (full sidebar shows). */
/* The .db-menu wrapper is transparent on desktop so the nav flows in the sidebar. */
.db-menu { display: contents; }
.db-menu-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--ink-700); place-items: center; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.db-menu-toggle:hover, .db-menu-toggle.open { background: var(--surface-2); color: var(--ink); }
.db-nav-logout { display: none; }

/* ---------------- responsive: tablet + mobile ---------------- */
/* The sidebar collapses to a top bar; nav becomes a right-aligned dropdown. */
@media (max-width: 1024px){
  .db-app { grid-template-columns: 1fr; }
  .db-side {
    position: sticky; top: 0; z-index: 30; height: auto;
    flex-direction: row; align-items: center; gap: 12px;
    padding: 12px 16px; border-right: 0; border-bottom: 1px solid var(--line);
  }
  .db-side-top { flex-direction: row; padding: 0; }                 /* logo, left */
  .db-side-foot { order: 2; margin: 0; flex-direction: row; align-items: center; gap: 10px; padding: 0; }
  .db-upsell { display: none; }
  .db-user { border-top: 0; padding: 0; }

  /* relative wrapper so the dropdown always anchors to the burger (not a sticky ancestor) */
  .db-menu { display: flex; position: relative; order: 3; margin-left: auto; }
  .db-menu-toggle { display: inline-grid; }

  /* nav → dropdown panel anchored to the burger's right edge */
  .db-nav {
    position: absolute; top: calc(100% + 8px); right: 0; z-index: 40;
    width: 236px; max-width: calc(100vw - 32px);
    flex-direction: column; gap: 2px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
    box-shadow: var(--sh-lg); padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
  }
  .db-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .db-nav-label { display: none; }
  .db-nav-item { width: 100%; }
  .db-nav-logout { display: block; border-top: 1px solid var(--line-soft); margin-top: 6px; padding-top: 6px; }
  .db-nav-logout .db-nav-item { color: var(--ink-600); }
}
@media (max-width: 560px){
  .db-user-name { display: none; }   /* keep just the avatar + edit chip on phones */
  .db-back-site { display: none; }   /* tight top bar — logo still links home */
  .db-top { padding: 13px 16px; }
  .db-content { padding: 18px 16px; }
}

/* greeting + tools */
.db-greet { margin-bottom: 22px; }
.db-greet h2 { font-family: var(--font); font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 5px; }
.db-greet p { font-size: 14.5px; color: var(--muted); margin: 0; }
.db-tools { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.db-note { display: flex; align-items: center; gap: 10px; background: var(--accent-tint); border: 1px solid var(--accent-tint-2); color: var(--accent-700); font-family: var(--font); font-weight: 600; font-size: 13px; padding: 11px 16px; border-radius: var(--r-md); margin-bottom: 18px; }
.db-note svg { color: var(--accent); flex: none; }

/* stats */
.db-download { display: flex; align-items: center; gap: 16px; background: linear-gradient(120deg, var(--accent-tint), #fff 70%); border: 1px solid var(--accent-tint-2); border-radius: var(--r-lg); padding: 18px 20px; margin-bottom: 22px; }
.db-dl-ic { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 90%, #000), var(--accent)); box-shadow: var(--sh-accent); }
.db-dl-txt { flex: 1; min-width: 0; }
.db-dl-txt b { display: block; font-family: var(--font); font-weight: 700; font-size: 15px; color: var(--ink); }
.db-dl-txt span { font-size: 13px; color: var(--muted); }
.db-dl-ver { font-family: var(--font); font-weight: 600; font-size: 12.5px; color: var(--accent-700); background: #fff; border: 1px solid var(--accent-tint-2); padding: 6px 12px; border-radius: var(--r-pill); white-space: nowrap; }
@media (max-width: 620px){ .db-download { flex-wrap: wrap; } .db-dl-txt { flex-basis: 100%; } }
.db-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }
.db-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-xs); padding: 18px; }
.db-stat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.db-stat-ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); }
.db-stat-ic.green { background: var(--success-tint); color: var(--success-700); }
.db-stat-delta { font-family: var(--font); font-weight: 700; font-size: 12px; color: var(--success-700); background: var(--success-tint); padding: 3px 9px; border-radius: 999px; }
.db-stat-val { font-family: var(--font); font-weight: 800; font-size: 28px; letter-spacing: -.02em; color: var(--ink); line-height: 1; }
.db-stat-val small { font-size: 16px; font-weight: 700; color: var(--muted-2); }
.db-stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* columns + panels */
.db-cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: 18px; align-items: start; }
.db-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-xs); margin-bottom: 18px; overflow: hidden; }
.db-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line-soft); }
.db-panel-head h3 { font-family: var(--font); font-size: 15px; font-weight: 700; margin: 0; }
.db-panel-link { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; border: 0; background: none; cursor: pointer; font-family: var(--font); font-weight: 600; font-size: 12.5px; color: var(--accent); }
.db-panel-link:hover { color: var(--accent-700); }
.db-panel-body { padding: 8px; }

/* module / list rows */
.db-mrow { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: var(--r-md); transition: background .15s; }
.db-mrow:hover { background: var(--surface-2); }
.db-mic { width: 38px; height: 38px; border-radius: 10px; flex: none; display: grid; place-items: center; background: var(--surface-2); color: var(--ink-600); transition: background .15s, color .15s; }
.db-mrow.on .db-mic, .db-mcard.on .db-mic { background: var(--accent-tint); color: var(--accent-700); }
.db-mtext { flex: 1; min-width: 0; }
.db-mname { font-family: var(--font); font-weight: 700; font-size: 14px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.db-mmeta { font-size: 12px; color: var(--muted); }
.db-mstate { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--muted); }
.db-mstate .mod-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); }
.db-mstate.on { color: var(--success-700); }
.db-mstate.on .mod-dot { background: var(--success); box-shadow: 0 0 0 3px var(--success-tint); }

/* activity feed */
.db-feed { display: flex; flex-direction: column; gap: 2px; padding: 8px; }
.db-feed-item { display: flex; gap: 12px; padding: 10px 10px; border-radius: var(--r-md); }
.db-feed-item:hover { background: var(--surface-2); }
.db-feed-ic { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--surface-2); color: var(--ink-600); }
.db-feed-ic.green { background: var(--success-tint); color: var(--success-700); }
.db-feed-ic.brand { background: var(--accent-tint); color: var(--accent-700); }
.db-feed-text { font-size: 13.5px; color: var(--ink-600); line-height: 1.45; }
.db-feed-text b { font-weight: 700; color: var(--ink); }
.db-feed-time { font-size: 12px; color: var(--muted-2); margin-top: 2px; }

/* license panel */
.db-license { padding: 18px; }
.db-lic-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.db-lic-plan { font-family: var(--font); font-size: 20px; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.db-lic-badge { font-family: var(--font); font-weight: 700; font-size: 11.5px; color: var(--success-700); background: var(--success-tint); padding: 4px 11px; border-radius: 999px; }
.db-meter { height: 8px; border-radius: 999px; background: var(--surface-2); overflow: hidden; margin: 8px 0 10px; }
.db-meter-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-600)); }
.db-lic-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--muted); }
.db-lic-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft); font-size: 12.5px; color: var(--muted); }

/* favicon + pills */
.db-fav { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); font-family: var(--font); font-weight: 700; font-size: 12px; }
.db-pill { display: inline-flex; align-items: center; font-family: var(--font); font-weight: 600; font-size: 11.5px; padding: 4px 11px; border-radius: 999px; white-space: nowrap; }
.db-pill.live { color: var(--success-700); background: var(--success-tint); }
.db-pill.dev { color: #b45309; background: #fff7ed; }
.db-pill.paused { color: var(--muted); background: var(--surface-2); }

/* modules grid (modules view) */
.db-mgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.db-mcard { display: flex; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-xs); padding: 18px; transition: border-color .15s, box-shadow .15s; }
.db-mcard.on { border-color: color-mix(in srgb, var(--accent) 30%, var(--line)); }
.db-mcard:hover { box-shadow: var(--sh-sm); }
.db-mcard .db-mic { width: 44px; height: 44px; border-radius: 12px; }
.db-mcard-body { flex: 1; min-width: 0; }
.db-mcard-body h4 { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-family: var(--font); font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.db-mcard-body p { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 0 0 14px; }
.db-mcard-actions { display: flex; align-items: center; gap: 14px; }
.db-cfg { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font); font-weight: 600; font-size: 12.5px; color: var(--ink-600); cursor: pointer; }
.db-cfg:hover { color: var(--accent); }
.db-cfg svg { color: var(--muted-2); }
.db-del { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; border: 0; background: none; cursor: pointer; font-family: var(--font); font-weight: 600; font-size: 12.5px; color: #b42318; }
.db-del svg { color: #b42318; }
.db-del:hover { color: #912018; }

/* ---------------- LICENSES ---------------- */
.lic-list { display: flex; flex-direction: column; gap: 16px; }
.lic-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-xs); padding: 20px 22px; }
.lic-top { display: flex; align-items: center; justify-content: space-between; gap: 8px 16px; flex-wrap: wrap; }
.lic-id { display: flex; align-items: center; gap: 9px; flex-wrap: nowrap; flex: none; }
.lic-id h3 { font-family: var(--font); font-size: 17px; font-weight: 700; margin: 0; line-height: 1.2; white-space: nowrap; }
.lic-tag { display: inline-flex; align-items: center; height: auto; line-height: 1; margin: 0; font-family: var(--font); font-weight: 700; font-size: 11px; letter-spacing: .03em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.lic-tag.on { color: var(--success-700); background: var(--success-tint); }
.lic-tag.off { color: var(--muted); background: var(--surface-2); }
.lic-tag.cycle { color: var(--accent-700); background: var(--accent-tint); }
.lic-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.lic-meta b { color: var(--ink); font-weight: 700; }
.lic-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.lic-keyrow { display: flex; align-items: center; gap: 10px; margin: 16px 0; flex-wrap: wrap; }
.lic-key { flex: 1; min-width: 220px; font-family: ui-monospace, Menlo, monospace; font-size: 13px; color: var(--ink); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 11px 14px; letter-spacing: .02em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lic-copy { width: 40px; height: 40px; flex: none; border-radius: var(--r-md); border: 1px solid var(--line); background: #fff; color: var(--muted); display: grid; place-items: center; cursor: pointer; transition: background .15s, color .15s; }
.lic-copy:hover { background: var(--surface-2); color: var(--ink); }
.lic-domains { border-top: 1px solid var(--line-soft); padding-top: 14px; }
.lic-domains-h { font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.lic-domain { display: flex; align-items: center; gap: 12px; padding: 11px 0; }
.lic-domain:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
.lic-fav { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-700); font-family: var(--font); font-weight: 700; font-size: 12px; }
.lic-domain-txt { flex: 1; min-width: 0; }
.lic-domain-txt b { display: block; font-family: var(--font); font-weight: 600; font-size: 14px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lic-domain-txt span { font-size: 12px; color: var(--muted); }
.lic-env { font-family: var(--font); font-weight: 700; font-size: 11px; text-transform: capitalize; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.lic-env.production { color: var(--success-700); background: var(--success-tint); }
.lic-env.staging { color: var(--accent-700); background: var(--accent-tint); }
.lic-env.dev { color: #b45309; background: #fff7ed; }
.lic-empty { font-size: 13px; color: var(--muted); padding: 4px 0 2px; }
.lic-add { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-family: var(--font); font-weight: 600; font-size: 14px; color: var(--accent-700); background: #fff; border: 1px dashed var(--accent-tint-2); border-radius: var(--r-md); padding: 13px 18px; cursor: pointer; transition: background .15s; }
.lic-add:hover { background: var(--accent-tint); }
.lic-add svg { color: var(--accent); }

/* tables */
.db-table { width: 100%; border-collapse: collapse; }
.db-table th { text-align: left; font-family: var(--font); font-size: 11.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--muted-2); padding: 10px 12px; border-bottom: 1px solid var(--line-soft); }
.db-table td { padding: 13px 12px; font-size: 13.5px; color: var(--ink-600); border-bottom: 1px solid var(--line-soft); }
.db-table tbody tr:last-child td { border-bottom: 0; }
.db-table tbody tr:hover td { background: var(--surface-2); }
.db-site { display: inline-flex; align-items: center; gap: 11px; }

/* settings */
.db-section-title { font-family: var(--font); font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.db-title-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.db-edit-link { display: inline-flex; align-items: center; gap: 6px; border: 0; background: none; cursor: pointer; font-family: var(--font); font-weight: 600; font-size: 12.5px; color: var(--accent); }
.db-edit-link svg { color: var(--accent); }
.db-edit-link:hover { color: var(--accent-700); }
.db-form { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.db-form-actions { display: flex; gap: 10px; margin-top: 4px; }
.db-rows { display: flex; flex-direction: column; }
.db-kv { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.db-kv:last-child { border-bottom: 0; }
.db-kv-k { font-size: 13.5px; color: var(--muted); }
.db-kv-v { font-family: var(--font); font-weight: 600; font-size: 13.5px; color: var(--ink); }

/* responsive */
@media (max-width: 1040px){ .db-cols { grid-template-columns: 1fr; } .db-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px){
  .db-app { grid-template-columns: 1fr; }
  .db-side { position: static; height: auto; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 12px; }
  .db-side-top, .db-side-foot { padding: 0; }
  .db-nav { flex-direction: row; flex-wrap: wrap; flex: 1; }
  .db-nav-label, .db-upsell { display: none; }
  .db-side-foot { margin: 0; }
}
@media (max-width: 620px){
  .db-mgrid { grid-template-columns: 1fr; }
  .db-top-search { display: none; }
  .db-content { padding: 20px; }
}
/* Dashboard subscriptions list */
.db-subs { padding: 6px 8px 10px; }
.db-sub { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 12px; border-radius: var(--r-md); }
.db-sub + .db-sub { border-top: 1px solid var(--line-soft); }
.db-sub-name { display: flex; align-items: center; gap: 8px; font-family: var(--font); font-weight: 700; font-size: 15px; color: var(--ink); }
.db-sub-meta { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.db-sub-action { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.db-sub-renew-label { font-family: var(--font); font-weight: 600; font-size: 13px; color: var(--ink-600); }
