/* =============================================================
   actcenter Landing Pages — shared system
   Locked tokens borrowed from actcenterppc.com + dashboards.
   ============================================================= */

:root {
  /* Surfaces */
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-2: #fbfbfd;
  --surface-dark: #0f172a;
  --surface-dark-2: #1e293b;

  /* Ink */
  --ink: #0f172a;
  --ink-2: #475569;
  --ink-3: #94a3b8;
  --ink-on-dark: #f1f5f9;
  --ink-on-dark-2: #cbd5e1;

  /* Borders */
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --border-dark: #334155;

  /* Brand */
  --accent: #4f46e5;
  --accent-soft: #eef2ff;
  --accent-dark: #4338ca;
  --accent-grad: linear-gradient(90deg, #4f46e5, #7c3aed);

  /* Semantic */
  --green: #10b981; --green-soft: #ecfdf5;
  --blue:  #3b82f6; --blue-soft:  #eff6ff;
  --amber: #f59e0b; --amber-soft: #fffbeb;
  --red:   #ef4444; --red-soft:   #fef2f2;
  --violet:#7c3aed; --violet-soft:#ede9fe;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --shadow-lg: 0 20px 40px rgba(15,23,42,.12), 0 8px 16px rgba(15,23,42,.06);
  --shadow-glow: 0 0 0 4px rgba(79,70,229,.12), 0 12px 30px -8px rgba(79,70,229,.35);

  /* Radii */
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11', 'ss01';
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* =========================================================
   Header (sticky dark — matches dashboards)
   ========================================================= */
.lp-top {
  background: var(--surface-dark);
  color: var(--ink-on-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 60;
}
.lp-brand { display: flex; align-items: center; gap: 14px; }
.lp-brand-wrap { gap: 12px; }
.lp-brand-img {
  height: 38px; width: auto; display: block;
  filter: brightness(1.05);
}
.lp-brand-pill {
  font-size: 10px; font-weight: 700;
  color: var(--ink-on-dark-2);
  letter-spacing: .14em;
  padding: 4px 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  white-space: nowrap;
}
.lp-brand-logo {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--accent-grad);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 4px 12px rgba(79,70,229,.4);
}
.lp-brand-text { font-weight: 600; font-size: 15px; letter-spacing: -.01em; line-height: 1.2; }
.lp-brand-text .lp-name { color: var(--ink-on-dark); }
.lp-brand-text .lp-divider { color: var(--ink-3); margin: 0 8px; }
.lp-brand-text .lp-context { color: var(--ink-on-dark-2); font-weight: 500; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.lp-brand-sub { font-size: 11px; color: var(--ink-3); margin-top: 3px; letter-spacing: .02em; }

.lp-top-right { display: flex; align-items: center; gap: 14px; font-size: 13px; }
.lp-live-pill {
  background: rgba(16,185,129,.12); color: #34d399;
  padding: 5px 11px; border-radius: 999px; font-size: 11px; font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  border: 1px solid rgba(16,185,129,.2);
}
.lp-live-pill .lp-dot {
  width: 6px; height: 6px; background: #34d399; border-radius: 50%;
  animation: lp-pulse 2s infinite;
}
@keyframes lp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.lp-btn {
  padding: 9px 16px; border-radius: 8px; font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,.08); color: var(--ink-on-dark);
  border: 1px solid rgba(255,255,255,.12); cursor: pointer;
  transition: all .12s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.lp-btn:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.24); }
.lp-btn-primary {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.lp-btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.lp-btn-lg { padding: 13px 22px; font-size: 14px; }
.lp-btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.lp-btn-ghost:hover { background: var(--surface); border-color: var(--ink); }

/* =========================================================
   Section primitives
   ========================================================= */
.lp-section { padding: 88px 28px; }
.lp-section.tight { padding: 64px 28px; }
.lp-section.dark { background: var(--surface-dark); color: var(--ink-on-dark); }
.lp-section.tinted { background: var(--surface-2); }
.lp-inner { max-width: var(--max); margin: 0 auto; }
.lp-inner.narrow { max-width: 920px; }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  color: var(--accent); text-transform: uppercase;
  padding: 5px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  margin-bottom: 22px;
}
.lp-eyebrow.on-dark { background: rgba(79,70,229,.18); color: #a5b4fc; }
.lp-eyebrow::before {
  content: ''; width: 5px; height: 5px; background: var(--accent); border-radius: 50%;
}
.lp-eyebrow.on-dark::before { background: #a5b4fc; }

.lp-h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 0 0 22px 0;
  text-wrap: balance;
}
.lp-h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 18px 0;
  text-wrap: balance;
}
.lp-h3 {
  font-size: 18px; font-weight: 700; letter-spacing: -.01em; margin: 0 0 8px 0;
}
.lp-lede {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 32px 0;
  max-width: 720px;
  text-wrap: pretty;
}
.lp-lede.center { margin-left: auto; margin-right: auto; }
.lp-lede.on-dark { color: var(--ink-on-dark-2); }
.lp-grad { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.center { text-align: center; }

/* =========================================================
   Hero
   ========================================================= */
.lp-hero {
  position: relative;
  padding: 96px 28px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% -10%, rgba(79,70,229,.10), transparent 60%),
    radial-gradient(ellipse 70% 60% at 95% 10%, rgba(124,58,237,.08), transparent 60%),
    var(--bg);
}
.lp-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
}
.lp-hero-inner { position: relative; max-width: var(--max); margin: 0 auto; }
.lp-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.lp-trust-strip {
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
  font-size: 13px; color: var(--ink-2);
  border-top: 1px dashed var(--border-strong);
  padding-top: 22px; max-width: 720px;
}
.lp-trust-strip .lp-trust-num {
  font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums;
}
.lp-trust-sep { color: var(--ink-3); }

/* Floating "preview" composition on hero right */
.lp-hero-two {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.lp-hero-mock {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.lp-hero-mock:hover { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }
.lp-hero-mock::after {
  content: '● SAMPLE DATA';
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(15,23,42,.85); color: #cbd5e1;
  padding: 5px 10px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: .08em;
}
.lp-hero-mock-bar {
  background: var(--surface-dark); color: var(--ink-on-dark);
  padding: 10px 14px; display: flex; gap: 8px; align-items: center;
  font-size: 11px;
}
.lp-hero-mock-bar .lp-wmcdot { width: 9px; height: 9px; border-radius: 50%; }
.lp-hero-mock-bar .lp-wmcdot:nth-child(1) { background: #ef4444; }
.lp-hero-mock-bar .lp-wmcdot:nth-child(2) { background: #f59e0b; }
.lp-hero-mock-bar .lp-wmcdot:nth-child(3) { background: #10b981; }
.lp-hero-mock-bar .lp-wmctitle { margin-left: 10px; color: #cbd5e1; font-weight: 500; }
.lp-hero-mock-body { padding: 18px; background: var(--bg); }
.lp-hero-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.lp-hero-kpi { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.lp-hero-kpi-label { font-size: 9px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }
.lp-hero-kpi-val { font-size: 18px; font-weight: 700; margin-top: 2px; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.lp-hero-kpi-foot { font-size: 10px; color: var(--green); margin-top: 1px; font-weight: 600; }
.lp-hero-kpi-foot.red { color: var(--red); }
.lp-hero-list { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 12px; }
.lp-hero-list-h { font-size: 9px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.lp-hero-list-row { display: flex; align-items: center; gap: 8px; padding: 6px 8px; font-size: 11px; border-radius: 5px; }
.lp-hero-list-row:hover { background: var(--accent-soft); }
.lp-hero-tag {
  font-size: 8px; font-weight: 700; padding: 1px 5px; border-radius: 3px; letter-spacing: .05em;
}
.lp-hero-tag.up { background: var(--green-soft); color: var(--green); }
.lp-hero-tag.down { background: var(--red-soft); color: var(--red); }
.lp-hero-tag.alert { background: var(--amber-soft); color: var(--amber); }
.lp-hero-list-name { font-weight: 600; flex: 1; }
.lp-hero-list-num { font-variant-numeric: tabular-nums; color: var(--ink-2); font-size: 10px; }

/* =========================================================
   Pain cards
   ========================================================= */
.lp-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-pain {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  transition: transform .15s, border-color .15s, box-shadow .15s;
  position: relative;
}
.lp-pain:hover { transform: translateY(-2px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.lp-pain-num {
  position: absolute; top: 22px; right: 22px;
  font-size: 56px; font-weight: 800; color: var(--bg);
  -webkit-text-stroke: 1px var(--border-strong);
  line-height: 1; letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  user-select: none;
}
.lp-pain-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: var(--red); text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px; background: var(--red-soft);
  margin-bottom: 14px;
}
.lp-pain h3 { font-size: 19px; font-weight: 700; margin: 0 0 10px 0; letter-spacing: -.015em; max-width: 22ch; }
.lp-pain p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.55; }
.lp-pain-cost { margin-top: 18px; padding-top: 14px; border-top: 1px dashed var(--border); font-size: 12px; color: var(--ink-3); font-weight: 600; letter-spacing: .02em; }
.lp-pain-cost strong { color: var(--red); font-weight: 700; font-variant-numeric: tabular-nums; }

/* =========================================================
   Solution / method diagram
   ========================================================= */
.lp-method {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 12px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  position: relative;
}
.lp-method-step {
  padding: 26px 22px;
  border-right: 1px solid var(--border);
  position: relative;
  background: var(--surface);
}
.lp-method-step:last-child { border-right: none; }
.lp-method-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -10px; top: 32px;
  width: 22px; height: 22px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--accent); font-weight: 700;
  z-index: 2;
}
.lp-method-num {
  font-size: 11px; font-weight: 700; color: var(--accent);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 6px;
}
.lp-method-num span {
  width: 22px; height: 22px; background: var(--accent-soft); color: var(--accent);
  border-radius: 6px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.lp-method-step h4 { font-size: 17px; font-weight: 700; margin: 0 0 8px 0; letter-spacing: -.015em; }
.lp-method-step p { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.55; }
.lp-method-step .lp-method-where { margin-top: 12px; font-size: 11px; color: var(--ink-3); font-weight: 600; padding: 4px 8px; background: var(--surface-2); border-radius: 5px; display: inline-block; }

.lp-method-callout {
  margin-top: 22px;
  padding: 18px 22px;
  background: var(--surface-dark); color: var(--ink-on-dark);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--border-dark);
}
.lp-method-callout-icon {
  flex: none;
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(16,185,129,.12); color: #34d399;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(16,185,129,.2);
}
.lp-method-callout h4 { font-size: 16px; font-weight: 700; margin: 0 0 3px 0; color: #fff; letter-spacing: -.01em; }
.lp-method-callout p { font-size: 13px; color: var(--ink-on-dark-2); margin: 0; }

/* =========================================================
   Platform sample (iframe embed)
   ========================================================= */
.lp-sample-tabs { display: flex; gap: 4px; background: var(--surface); border: 1px solid var(--border); padding: 4px; border-radius: 12px; margin-bottom: 16px; max-width: 100%; overflow-x: auto; }
.lp-sample-tab {
  flex: 1; min-width: 220px;
  padding: 12px 18px; background: none; border: none; cursor: pointer;
  border-radius: 8px; text-align: left;
  transition: all .12s;
}
.lp-sample-tab-name { font-size: 14px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.lp-sample-tab-sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.lp-sample-tab.active { background: var(--surface-dark); }
.lp-sample-tab.active .lp-sample-tab-name { color: #fff; }
.lp-sample-tab.active .lp-sample-tab-sub { color: var(--ink-on-dark-2); }
.lp-sample-tab.active .lp-sample-tab-tag { background: rgba(16,185,129,.15); color: #34d399; border-color: rgba(16,185,129,.25); }
.lp-sample-tab:hover:not(.active) { background: var(--accent-soft); }
.lp-sample-tab-tag {
  font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 3px; letter-spacing: .08em;
  background: var(--green-soft); color: var(--green); border: 1px solid rgba(16,185,129,.2);
  text-transform: uppercase;
}

.lp-iframe-wrap {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.lp-iframe-bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.lp-iframe-bar .lp-dot-r { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.lp-iframe-bar .lp-dot-a { width: 10px; height: 10px; border-radius: 50%; background: #f59e0b; }
.lp-iframe-bar .lp-dot-g { width: 10px; height: 10px; border-radius: 50%; background: #10b981; }
.lp-iframe-bar .lp-url {
  flex: 1; margin: 0 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 10px;
  font-size: 11px; color: var(--ink-2); font-family: 'SF Mono', Menlo, monospace;
  display: flex; align-items: center; gap: 6px;
}
.lp-iframe-bar .lp-url::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.18);
}
.lp-iframe-bar .lp-iframe-fullbtn {
  font-size: 11px; padding: 4px 9px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 5px; color: var(--ink-2); cursor: pointer; font-weight: 500;
  transition: all .12s;
  text-decoration: none;
}
.lp-iframe-bar .lp-iframe-fullbtn:hover { border-color: var(--accent); color: var(--accent); }
.lp-iframe-frame {
  width: 100%; height: 720px; border: 0; display: block; background: #f7f8fb;
}
.lp-iframe-disc {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(15,23,42,.85); color: #cbd5e1;
  padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 600;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
  pointer-events: none;
  display: flex; align-items: center; gap: 6px;
}
.lp-iframe-disc::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #34d399;
  animation: lp-pulse 2s infinite;
}
.lp-sample-caption {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  font-size: 14px; color: var(--ink-2);
  display: flex; justify-content: space-between; gap: 18px; align-items: center; flex-wrap: wrap;
}
.lp-sample-caption strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   Proof / KPI strip
   ========================================================= */
.lp-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 8px; }
.lp-kpi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  position: relative;
  transition: all .18s;
}
.lp-kpi-card:hover { transform: translateY(-2px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.lp-kpi-card .lp-live {
  position: absolute; top: 16px; right: 16px;
  font-size: 9px; font-weight: 700; color: var(--green); letter-spacing: .08em;
  background: var(--green-soft); padding: 2px 6px; border-radius: 3px;
  display: flex; align-items: center; gap: 4px;
}
.lp-kpi-card .lp-live::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green);
  animation: lp-pulse 2s infinite;
}
.lp-kpi-label { font-size: 11px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; max-width: 16ch; }
.lp-kpi-value { font-size: 38px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; font-variant-numeric: tabular-nums; line-height: 1; }
.lp-kpi-value .lp-kpi-unit { font-size: 18px; font-weight: 600; color: var(--ink-3); margin-left: 2px; letter-spacing: 0; }
.lp-kpi-foot { font-size: 12px; color: var(--ink-2); margin-top: 8px; }

/* Logos strip */
.lp-logos {
  margin-top: 48px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.lp-logos-head { font-size: 11px; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .12em; text-align: center; margin-bottom: 22px; }
.lp-logos-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; }
.lp-logo {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--ink-2);
  padding: 12px 22px;
  letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: 9px;
  filter: grayscale(1);
  opacity: .8;
  transition: all .15s;
  border-radius: 8px;
}
.lp-logo:hover { filter: none; opacity: 1; color: var(--ink); }
.lp-logo-glyph {
  width: 22px; height: 22px;
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}

/* Quote */
.lp-quote {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.lp-quote::before {
  content: '“';
  position: absolute; top: -8px; left: 22px;
  font-size: 96px; font-family: Georgia, serif; line-height: 1;
  color: var(--accent); opacity: .2;
}
.lp-quote-body { font-size: 22px; font-weight: 500; line-height: 1.4; color: var(--ink); letter-spacing: -.015em; margin: 0 0 18px 0; text-wrap: pretty; }
.lp-quote-attr { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-2); }
.lp-quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  color: #fff; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.lp-quote-attr strong { color: var(--ink); font-weight: 600; display: block; }
.lp-quote-placeholder {
  margin-top: 14px;
  font-size: 10px; font-weight: 700; color: var(--amber); letter-spacing: .08em; text-transform: uppercase;
  background: var(--amber-soft); padding: 3px 7px; border-radius: 4px;
  display: inline-block;
}

/* =========================================================
   Method vs Them (comparison)
   ========================================================= */
.lp-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.lp-compare-col {
  padding: 22px 26px;
}
.lp-compare-col.them { background: var(--surface-2); }
.lp-compare-col.us { background: var(--surface); border-left: 1px solid var(--border); position: relative; }
.lp-compare-col.us::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--accent-grad);
}
.lp-compare-head {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.lp-compare-head.them { color: var(--ink-3); }
.lp-compare-head.us { color: var(--accent); }
.lp-compare-title { font-size: 19px; font-weight: 700; margin: 0 0 18px 0; letter-spacing: -.015em; }
.lp-compare-col.them .lp-compare-title { color: var(--ink-2); }
.lp-compare-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.lp-compare-row:first-of-type { border-top: none; padding-top: 6px; }
.lp-compare-col.them .lp-compare-row { color: var(--ink-2); opacity: .82; }
.lp-compare-col.us .lp-compare-row { color: var(--ink); }
.lp-compare-icon {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.lp-compare-icon.x { background: var(--red-soft); color: var(--red); }
.lp-compare-icon.v { background: var(--green-soft); color: var(--green); }

/* =========================================================
   Pricing
   ========================================================= */
.lp-pricing { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.lp-price {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px 24px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all .15s;
}
.lp-price:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.lp-price.emph {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  background:
    linear-gradient(180deg, var(--accent-soft) 0%, var(--surface) 50%);
}
.lp-price.emph::before {
  content: attr(data-badge);
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--accent-grad); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .12em;
  padding: 4px 12px; border-radius: 999px;
  white-space: nowrap;
}
.lp-price-name { font-size: 12px; font-weight: 700; color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.lp-price.emph .lp-price-name { color: var(--accent); }
.lp-price-amount { font-size: 28px; font-weight: 800; letter-spacing: -.025em; line-height: 1; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.lp-price-period { font-size: 12px; color: var(--ink-3); font-weight: 500; margin-bottom: 18px; min-height: 18px; }
.lp-price-desc { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin: 0 0 18px 0; flex: 1; }
.lp-price-cta {
  display: block; text-align: center;
  padding: 10px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  background: var(--surface); border: 1px solid var(--border-strong); color: var(--ink);
  transition: all .12s;
}
.lp-price-cta:hover { border-color: var(--ink); }
.lp-price.emph .lp-price-cta { background: var(--accent); color: #fff; border-color: var(--accent); }
.lp-price.emph .lp-price-cta:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* =========================================================
   Final CTA + form
   ========================================================= */
.lp-final {
  background:
    radial-gradient(ellipse 50% 60% at 20% 20%, rgba(79,70,229,.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(124,58,237,.16), transparent 60%),
    var(--surface-dark);
  color: var(--ink-on-dark);
  border-top: 1px solid var(--border-dark);
}
.lp-final-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: flex-start; }
.lp-final h2 { color: #fff; }
.lp-final-bullets { list-style: none; padding: 0; margin: 22px 0 0; }
.lp-final-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 14px; color: var(--ink-on-dark-2);
}
.lp-final-bullets li::before {
  content: '✓'; flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(16,185,129,.15); color: #34d399;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  border: 1px solid rgba(16,185,129,.2);
  margin-top: 1px;
}
.lp-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(8px);
}
.lp-form-head { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.lp-form-sub { font-size: 12px; color: var(--ink-3); margin-bottom: 22px; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.lp-form-row.full { grid-template-columns: 1fr; }
.lp-form-field { display: flex; flex-direction: column; gap: 6px; }
.lp-form-field label {
  font-size: 11px; font-weight: 600; color: var(--ink-on-dark-2); letter-spacing: .04em; text-transform: uppercase;
}
.lp-form-field input,
.lp-form-field select {
  background: rgba(15,23,42,.5); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 11px 12px;
  color: #fff; font-size: 14px; font-family: inherit;
  transition: border-color .12s;
}
.lp-form-field input:focus,
.lp-form-field select:focus { outline: none; border-color: var(--accent); }
.lp-form-field input::placeholder { color: rgba(203,213,225,.4); }
.lp-form-submit {
  width: 100%; padding: 13px;
  background: var(--accent); color: #fff;
  border: 1px solid var(--accent); border-radius: 8px;
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; margin-top: 8px;
  transition: all .12s;
}
.lp-form-submit:hover { background: var(--accent-dark); }
.lp-form-or { text-align: center; color: var(--ink-3); font-size: 11px; margin: 16px 0; letter-spacing: .12em; }
.lp-form-or::before, .lp-form-or::after { content: ''; display: inline-block; width: 40px; height: 1px; background: rgba(255,255,255,.1); vertical-align: middle; margin: 0 10px; }
.lp-form-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px;
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: all .12s;
}
.lp-form-wa:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.lp-form-wa .lp-wa-glyph {
  width: 22px; height: 22px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700;
}
.lp-form-micro { margin-top: 14px; font-size: 11px; color: var(--ink-3); text-align: center; letter-spacing: .02em; }

/* =========================================================
   Persona switcher
   ========================================================= */
.lp-switch {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lp-switch-head {
  text-align: center;
  font-size: 11px; font-weight: 700; color: var(--ink-3); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.lp-switch h3 { font-size: 26px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 28px 0; text-align: center; }
.lp-switch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lp-switch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  text-decoration: none;
  color: inherit;
  transition: all .15s;
  display: flex; flex-direction: column;
}
.lp-switch-card:hover {
  border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.lp-switch-eyebrow { font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.lp-switch-card h4 { font-size: 17px; font-weight: 700; margin: 0 0 6px 0; letter-spacing: -.015em; }
.lp-switch-card p { font-size: 13px; color: var(--ink-2); margin: 0; flex: 1; }
.lp-switch-arrow {
  margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--accent);
  display: flex; align-items: center; gap: 6px;
}

/* Hero lead-capture form (replaces preview mock) */
.lp-hero-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  align-self: start;
}
.lp-hero-form::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent-grad);
}
.lp-hero-form-head {
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.lp-hero-form-title {
  font-size: 20px; font-weight: 700; letter-spacing: -.015em; color: var(--ink);
  margin-bottom: 6px;
}
.lp-hero-form-meta {
  font-size: 12px; color: var(--ink-2); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.lp-hero-form-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.18);
  animation: lp-pulse 2s infinite;
}
.lp-hero-form-body { padding: 22px 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.lp-hero-form-body .lp-form-field label {
  font-size: 11px; font-weight: 600; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 6px; display: block;
}
.lp-hero-form-body .lp-form-field input,
.lp-hero-form-body .lp-form-field select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 14px; font-family: inherit; color: var(--ink);
  transition: border-color .12s, box-shadow .12s;
}
.lp-hero-form-body .lp-form-field input:focus,
.lp-hero-form-body .lp-form-field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.lp-hero-form-body .lp-form-field input::placeholder { color: var(--ink-3); }
.lp-hero-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lp-hero-form-submit {
  width: 100%; padding: 13px;
  background: var(--accent); color: #fff;
  border: 1px solid var(--accent); border-radius: 8px;
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer; margin-top: 4px;
  transition: all .12s;
  box-shadow: 0 4px 12px -2px rgba(79,70,229,.4);
}
.lp-hero-form-submit:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 16px -2px rgba(79,70,229,.5); }
.lp-hero-form-foot {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  font-size: 11px; color: var(--ink-3); font-weight: 500;
  margin-top: 4px;
}
.lp-hero-form-sep { color: var(--border-strong); }
.lp-hero-form-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 6px;
  padding: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  text-decoration: none;
  transition: all .12s;
}
.lp-hero-form-wa:hover { border-color: #25d366; color: var(--ink); background: #f0fdf4; }
.lp-hero-form-wa .lp-wa-glyph {
  width: 20px; height: 20px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700;
  flex: none;
}

/* Footer logos */
.lp-footer-logo-link { display: inline-block; text-decoration: none; margin-bottom: 16px; }
.lp-footer-actcenter-logo { height: 44px; width: auto; display: block; filter: brightness(1.1); }
.lp-footer-builtby {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border-dark);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.lp-footer-builtby-label {
  font-size: 10px; font-weight: 700; color: var(--ink-3);
  letter-spacing: .14em; text-transform: uppercase;
}
.lp-footer-rmc-link { display: inline-flex; align-items: center; opacity: .9; transition: opacity .12s; }
.lp-footer-rmc-link:hover { opacity: 1; }
.lp-footer-rmc-logo { height: 30px; width: auto; display: block; filter: brightness(1.2); }
.lp-footer-rmc-mark {
  display: inline-flex; align-items: center;
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 17px; letter-spacing: -.02em;
  color: #fff;
  padding: 7px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}
.lp-footer-rmc-mark span {
  margin-left: 6px; color: var(--accent);
  font-weight: 700;
  background: var(--accent-soft);
  padding: 1px 6px; border-radius: 4px;
  font-size: 12px; letter-spacing: .04em;
}

/* =========================================================
   Footer (matches site)
   ========================================================= */
.lp-footer {
  background: var(--surface-dark);
  color: var(--ink-on-dark-2);
  padding: 48px 28px 22px;
}
.lp-footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  padding-bottom: 28px; border-bottom: 1px solid var(--border-dark);
}
.lp-footer-brand { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.lp-footer-tagline { font-size: 13px; line-height: 1.55; color: var(--ink-3); margin: 0; max-width: 380px; }
.lp-footer-right p { font-size: 13px; line-height: 1.55; color: var(--ink-on-dark-2); margin: 0 0 16px 0; max-width: 420px; }
.lp-footer-right a { color: #a5b4fc; text-decoration: none; }
.lp-footer-right a:hover { color: #c7d2fe; }
.lp-footer-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-footer-bottom {
  max-width: var(--max); margin: 18px auto 0;
  display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-3);
  flex-wrap: wrap; gap: 8px;
}

/* =========================================================
   Mobile sticky CTA bar
   ========================================================= */
.lp-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface-dark);
  border-top: 1px solid var(--border-dark);
  padding: 12px 14px;
  z-index: 50;
  box-shadow: 0 -8px 20px rgba(15,23,42,.18);
}
.lp-mobile-cta-inner {
  display: flex; gap: 8px; align-items: center;
}
.lp-mobile-cta-text {
  font-size: 12px; color: var(--ink-on-dark-2);
  flex: 1; line-height: 1.3;
}
.lp-mobile-cta-text strong { color: #fff; }
.lp-mobile-cta a {
  background: var(--accent); color: #fff; padding: 11px 16px;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
}

/* =========================================================
   Persona switcher (top floating back link)
   ========================================================= */
.lp-back-home {
  position: fixed; top: 70px; right: 22px;
  font-size: 12px; color: var(--ink-3); text-decoration: none;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--border);
  z-index: 40;
  transition: all .15s;
}
.lp-back-home:hover { color: var(--ink); border-color: var(--border-strong); background: #fff; }

/* =========================================================
   Tweaks panel hook (styled lightly, panel chrome is in TweaksPanel)
   ========================================================= */
.lp-tweak-swatch {
  width: 28px; height: 28px; border-radius: 6px;
  border: 2px solid var(--border); cursor: pointer; transition: transform .12s;
  display: inline-block;
}
.lp-tweak-swatch:hover { transform: scale(1.08); }
.lp-tweak-swatch.active { border-color: var(--ink); box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--ink); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .lp-section { padding: 64px 22px; }
  .lp-hero { padding: 64px 22px 56px; }
  .lp-hero-two { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-mock { transform: none; }
  .lp-pain-grid { grid-template-columns: 1fr; }
  .lp-method { grid-template-columns: 1fr 1fr; }
  .lp-method-step { border-bottom: 1px solid var(--border); }
  .lp-method-step:nth-child(odd) { border-right: 1px solid var(--border); }
  .lp-method-step:nth-child(even) { border-right: none; }
  .lp-method-step:not(:last-child)::after { display: none; }
  .lp-compare { grid-template-columns: 1fr; }
  .lp-compare-col.us { border-left: none; border-top: 1px solid var(--border); }
  .lp-compare-col.us::before { width: 100%; height: 3px; }
  .lp-pricing { grid-template-columns: 1fr 1fr; }
  .lp-final-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-switch-grid { grid-template-columns: 1fr; }
  .lp-footer-inner { grid-template-columns: 1fr; }
  .lp-top-right .lp-live-pill { display: none; }
  .lp-back-home { display: none; }
  .lp-mobile-cta { display: block; }
  body { padding-bottom: 72px; }
}
@media (max-width: 600px) {
  .lp-pricing { grid-template-columns: 1fr; }
  .lp-method { grid-template-columns: 1fr; }
  .lp-method-step { border-right: none; border-bottom: 1px solid var(--border); }
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-iframe-frame { height: 540px; }
  .lp-brand-sub { display: none; }
  .lp-brand-img { height: 32px; }
  .lp-brand-pill { display: none; }
  .lp-hero-form-head { padding: 18px 20px 14px; }
  .lp-hero-form-body { padding: 18px 20px 22px; }
  .lp-hero-form-row { grid-template-columns: 1fr; }
}
