/* ════════════════════════════════════════════════════════════════════
   AccSota landing — PRO redesign styles (logo, hero-pro, in-action,
   whofor, steps, sidebar SVG icons, video-coming-soon)
   Loaded LAST so any rule overrides earlier landing.css.
   ──────────────────────────────────────────────────────────────────── */

/* ── NAV: logo image + brand text ── */
.nav-brand { gap: 12px; }
.nav-brand-logo {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  flex: none;
}
.nav-brand-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav-brand-name {
  font-family: var(--rm-font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.022em;
  color: var(--rm-fg-strong);
}
.nav-brand-tag {
  font-family: var(--rm-font-display);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rm-fg-muted);
}

/* ── HERO PRO: two-col with photo + floating cards ── */
.hero-pro {
  padding: 80px 0 110px;
  position: relative;
  overflow: visible;
  color: var(--rm-fg);
}
.hero-pro .hero-title,
.hero-pro .hero-pro-title { color: var(--rm-fg-strong); }
.hero-pro .hero-sub        { color: var(--rm-fg-muted); }
.hero-pro .hero-eyebrow    { color: var(--rm-primary); }
.hero-pro .hero-meta-item  { color: var(--rm-fg-muted); }
.hero-pro .btn-outline     { color: var(--rm-fg-strong); border-color: var(--rm-border-strong); }
.hero-pro .btn-outline:hover { background: var(--rm-surface-hover); }
.rm-light .hero-pro {
  background:
    radial-gradient(900px 600px at 85% 0%, rgba(91,91,214,0.10), transparent 60%),
    radial-gradient(700px 500px at 15% 100%, rgba(14,165,233,0.08), transparent 60%),
    linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
}
.rm-dark .hero-pro {
  background:
    radial-gradient(900px 600px at 85% 0%, rgba(91,91,214,0.18), transparent 60%),
    radial-gradient(700px 500px at 15% 100%, rgba(14,165,233,0.12), transparent 60%);
}
.hero-pro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero-pro-copy { min-width: 0; }
.hero-pro-title { font-size: clamp(36px, 4.4vw, 60px); margin-bottom: 18px; }

.hero-pro-stage { position: relative; min-width: 0; }
.hero-shot-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--rm-bg-subtle);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 60px -28px rgba(15,23,42,0.35),
    0 0 0 1px var(--rm-border);
  isolation: isolate;
}
.hero-shot { width: 100%; height: auto; display: block; }

/* Floating UI cards on top of the photo */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 28px -16px rgba(15, 23, 42, 0.4);
  min-width: 160px;
  font-family: var(--rm-font-sans);
}
.rm-dark .hero-float {
  background: rgba(31, 32, 39, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
}
.hero-float-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  flex: none;
}
.hero-float-icon-emerald { background: rgba(16, 185, 129, 0.14); color: #047857; }
.hero-float-icon-rose    { background: rgba(244, 63, 94, 0.12);  color: #be123c; }
.hero-float-icon-sky     { background: rgba(14, 165, 233, 0.14); color: #0369a1; }
.hero-float-icon-indigo  { background: rgba(91, 91, 214, 0.14);  color: #3d3aa8; }
.hero-float-num {
  font-family: var(--rm-font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--rm-fg-strong);
  font-variant-numeric: tabular-nums;
}
.hero-float-l { font-size: 11px; color: var(--rm-fg-muted); margin-top: 1px; max-width: 180px; }

.hero-float-tl { top: -16px;    left: -16px; }
.hero-float-tr { top: 90px;     right: 14px; }
.hero-float-bl { bottom: 110px; left: 14px;  }
.hero-float-br { bottom: -16px; right: -16px; }

@media (max-width: 980px) {
  .hero-pro-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-float-tl, .hero-float-bl { left: 8px; }
  .hero-float-tr, .hero-float-br { right: 8px; }
}

/* ── IN-ACTION section: studio photo + 4 role points ── */
.in-action {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--rm-bg) 0%, var(--rm-bg-subtle) 100%);
}
.in-action-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 56px;
  margin-top: 36px;
  align-items: center;
}
.in-action-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 30px 60px -28px rgba(15, 23, 42, 0.35),
    0 0 0 1px var(--rm-border);
}
.in-action-photo img { width: 100%; height: auto; display: block; }
.in-action-photo-cap {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.in-action-photo-dot {
  width: 7px; height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.in-action-points { display: flex; flex-direction: column; gap: 18px; }
.in-action-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--rm-border);
}
.in-action-point:last-child { border-bottom: 0; }
.in-action-point-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--rm-primary-tint);
  color: var(--rm-primary);
  display: grid; place-items: center;
  flex: none;
}
.in-action-point-icon svg { width: 18px; height: 18px; }
.in-action-point-title {
  font-family: var(--rm-font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.018em;
  color: var(--rm-fg-strong);
  margin-bottom: 4px;
}
.in-action-point-desc {
  font-size: 13.5px;
  color: var(--rm-fg-muted);
  line-height: 1.55;
}
@media (max-width: 880px) { .in-action-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── WHO-FOR section: 4 business types ── */
.whofor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.whofor-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-r-md);
  padding: 22px;
  transition: border-color var(--rm-dur) var(--rm-ease), transform var(--rm-dur) var(--rm-ease);
}
.whofor-card:hover {
  border-color: var(--rm-primary-tint-2);
  transform: translateY(-2px);
}
.whofor-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--rm-primary-tint);
  color: var(--rm-primary);
  margin-bottom: 14px;
}
.whofor-icon svg { width: 22px; height: 22px; }
.whofor-card-title {
  font-family: var(--rm-font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--rm-fg-strong);
  margin: 0 0 8px;
}
.whofor-card-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--rm-fg-muted);
  margin: 0 0 14px;
}
.whofor-bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.whofor-bullets li {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px;
  color: var(--rm-fg);
  font-weight: 500;
}
.whofor-bullets svg { color: var(--rm-success); flex: none; }
@media (max-width: 980px) { .whofor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .whofor-grid { grid-template-columns: 1fr; } }

/* ── STEPS section: 3 onboarding steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.step-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-r-md);
  padding: 24px;
  position: relative;
}
.step-num {
  font-family: var(--rm-font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.04em;
  background: var(--rm-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
.step-title {
  font-family: var(--rm-font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--rm-fg-strong);
  margin: 0 0 8px;
}
.step-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--rm-fg-muted);
  margin: 0 0 14px;
}
.step-bullet {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--rm-success-tint);
  color: var(--rm-success);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── SCREENSHOTS sidebar SVG icons (replaces emoji) ── */
.shot-crm-side-item .ssi {
  display: inline-flex;
  width: 16px; height: 16px;
  align-items: center; justify-content: center;
  margin-right: 8px;
  vertical-align: -3px;
}
.shot-crm-side-item .ssi svg { width: 14px; height: 14px; opacity: 0.85; }
.shot-crm-side-item.active .ssi svg { opacity: 1; }

/* ── VIDEO: coming-soon styling ── */
.video-corner-soon {
  background: rgba(245, 158, 11, 0.18) !important;
  color: #d97706 !important;
}
.video-corner-soon .video-corner-dot { background: #d97706 !important; }

/* ── HERO meta SVG checks (replaces text ✓) ── */
.hero-meta-item svg { color: var(--rm-success); }

/* ── HERO accent — override the dark-theme gradient (light pastels were
   nearly invisible on the new light hero background) with saturated stops. ── */
.hero-pro .hero-title .accent {
  background: linear-gradient(90deg, #4a48c4 0%, #047857 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ════════════════════════════════════════════════════════════════════
   CM-APP — embedded dark dashboard mock used inside Hero & ProductOverview
   Reproduces the real CRM look: dark navy + emerald accent + 7-stage funnel.
   ──────────────────────────────────────────────────────────────────── */
.hero-shot-app {
  background: #0a1320;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 30px 60px -28px rgba(2, 6, 23, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}
.cm-app {
  display: grid;
  grid-template-columns: 156px 1fr;
  font-family: var(--rm-font-sans);
  color: #e2e8f0;
  background: #0a1320;
  height: 480px;
  font-size: 11px;
  line-height: 1.3;
}

/* Sidebar */
.cm-side {
  background: #0f1a2b;
  border-right: 1px solid #1c2a40;
  padding: 10px 8px 8px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cm-profile {
  display: flex; gap: 8px; align-items: center;
  padding: 8px 6px 12px;
  border-bottom: 1px solid #1c2a40;
  margin-bottom: 8px;
}
.cm-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b5bd6, #3d3aa8);
  color: #fff;
  font-weight: 800; font-size: 12px;
  display: grid; place-items: center;
  flex: none;
}
.cm-profile-meta { min-width: 0; }
.cm-profile-name {
  font-size: 11.5px;
  font-weight: 700;
  color: #f8fafc;
  white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.cm-profile-role { font-size: 9.5px; color: #64748b; margin-top: 1px; }

.cm-side-list {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 1px;
  overflow: hidden;
}
.cm-side-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
}
.cm-side-item.active {
  background: rgba(16, 185, 129, 0.14);
  color: #6ee7b7;
}
.cm-side-ico {
  width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.cm-side-ico svg { width: 14px; height: 14px; }
.cm-side-label { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.cm-side-badge {
  background: #ef4444;
  color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 1px 5px;
  border-radius: 999px;
  flex: none;
}
.cm-side-foot {
  display: flex; align-items: center; gap: 8px;
  padding: 8px;
  border-top: 1px solid #1c2a40;
  color: #f87171;
  font-size: 11px; font-weight: 600;
  margin-top: 4px;
}

/* Main column */
.cm-main { min-width: 0; display: flex; flex-direction: column; background: #0a1320; }
.cm-topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: #0f1a2b;
  border-bottom: 1px solid #1c2a40;
  font-size: 11px;
}
.cm-crumb { color: #cbd5e1; }
.cm-crumb b { color: #f8fafc; }
.cm-loc {
  background: rgba(91, 91, 214, 0.18);
  color: #a5b4fc;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}

.cm-content { padding: 12px 14px; overflow: hidden; flex: 1; }

.cm-hello {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.cm-hello-h { font-size: 13px; font-weight: 700; color: #f1f5f9; }
.cm-hello-h b { color: #6ee7b7; }
.cm-hello-sub { font-size: 10px; color: #64748b; margin-top: 2px; }
.cm-hello-kpi { display: flex; gap: 6px; }
.cm-hello-kpi-i {
  background: #16243a;
  border: 1px solid #1c2a40;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex; flex-direction: column; gap: 1px;
  min-width: 64px;
}
.cm-hello-kpi-i span { font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.cm-hello-kpi-i b { font-size: 13px; color: #f1f5f9; font-family: var(--rm-font-display); font-weight: 800; font-variant-numeric: tabular-nums; }
.cm-add-btn {
  margin-left: auto;
  background: #10b981;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  border: 0;
  padding: 7px 14px;
  border-radius: 8px;
}

/* Funnel */
.cm-funnel {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}
.cm-fl {
  background: #16243a;
  border: 1px solid #1c2a40;
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  border-top: 2px solid #475569;
}
.cm-fl-num { font-size: 16px; font-weight: 800; font-family: var(--rm-font-display); color: #f8fafc; font-variant-numeric: tabular-nums; }
.cm-fl-l { font-size: 9px; color: #94a3b8; margin-top: 1px; line-height: 1.2; }
.cm-fl-blue   { border-top-color: #3b82f6; }
.cm-fl-blue   .cm-fl-num { color: #93c5fd; }
.cm-fl-amber  { border-top-color: #f59e0b; }
.cm-fl-amber  .cm-fl-num { color: #fcd34d; }
.cm-fl-green  { border-top-color: #10b981; }
.cm-fl-green  .cm-fl-num { color: #6ee7b7; }
.cm-fl-purple { border-top-color: #a855f7; }
.cm-fl-purple .cm-fl-num { color: #d8b4fe; }
.cm-fl-rose   { border-top-color: #f43f5e; }
.cm-fl-rose   .cm-fl-num { color: #fda4af; }
.cm-fl-cyan   { border-top-color: #06b6d4; }
.cm-fl-cyan   .cm-fl-num { color: #67e8f9; }

/* Two-col row */
.cm-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
}
.cm-card {
  background: #16243a;
  border: 1px solid #1c2a40;
  border-radius: 10px;
  padding: 10px 12px;
}
.cm-card-h {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11.5px; font-weight: 700; color: #e2e8f0;
  margin-bottom: 6px;
}
.cm-card-h b { color: #fbbf24; font-family: var(--rm-font-display); font-weight: 800; }
.cm-card-h-r { font-size: 10px; font-weight: 600; color: #6ee7b7; font-family: var(--rm-font-mono); }

.cm-cash-row {
  display: grid;
  grid-template-columns: 1fr 70px 70px 70px;
  gap: 6px;
  font-size: 10.5px;
  padding: 5px 0;
  border-bottom: 1px solid #1c2a40;
  font-family: var(--rm-font-mono);
  font-variant-numeric: tabular-nums;
}
.cm-cash-row > :first-child { font-family: var(--rm-font-sans); color: #cbd5e1; font-weight: 500; }
.cm-cash-row > :not(:first-child) { text-align: right; color: #f1f5f9; }
.cm-cash-row.cm-cash-head > * { color: #64748b; font-size: 9px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.cm-cash-row.cm-cash-head { border-bottom-color: #1c2a40; }
.cm-cash-foot {
  display: grid;
  grid-template-columns: 1fr 70px 70px 70px;
  gap: 6px;
  padding-top: 6px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--rm-font-mono);
}
.cm-cash-foot > :first-child { font-family: var(--rm-font-sans); color: #f1f5f9; }
.cm-cash-foot > :not(:first-child) { text-align: right; color: #f1f5f9; }
.cm-debt { color: #fbbf24 !important; }

.cm-side-col { display: flex; flex-direction: column; gap: 10px; }
.cm-warn-card { border-color: rgba(244, 63, 94, 0.25); background: linear-gradient(180deg, #1f1622, #16243a); }
.cm-warn-row { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 11px; color: #fda4af; }
.cm-warn-row .cm-dot { width: 5px; height: 5px; background: #f43f5e; border-radius: 50%; flex: none; }

.cm-ok-card { border-color: rgba(16, 185, 129, 0.25); background: linear-gradient(180deg, #0f1f1c, #16243a); }
.cm-ok-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  color: #6ee7b7;
  font-weight: 600;
}

/* Hero shot wrap doesn't need bg if HeroStage is dark */
.hero-shot-app { background: transparent; box-shadow: none; }
.hero-shot-app .cm-app { border-radius: 18px; box-shadow: 0 30px 60px -28px rgba(2, 6, 23, 0.55), 0 0 0 1px rgba(15, 26, 43, 0.6); }

/* Screenshots tab "CRM" — embed the same dark dashboard mock */
.shot-crm-dark {
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -28px rgba(2, 6, 23, 0.55),
    0 0 0 1px rgba(15, 26, 43, 0.6);
  max-width: 1100px;
  margin: 0 auto;
}
.shot-crm-dark .cm-app { height: 560px; }

/* ── Bento: 7-stage funnel visual ── */
.b-funnel-7 {
  display: flex;
  gap: 4px;
  align-items: stretch;
  flex-wrap: nowrap;
  overflow: hidden;
}
.b-fl7-step {
  flex: 1;
  min-width: 0;
  background: var(--rm-bg-subtle);
  border: 1px solid var(--rm-border);
  border-top-width: 2px;
  border-radius: 6px;
  padding: 6px 4px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.b-fl7-arrow {
  align-self: center;
  color: var(--rm-fg-muted);
  font-size: 12px;
  font-weight: 700;
  flex: none;
}
