/* ════════════════════════════════════════════════════════════════
   Percira — Landing page styles
   Self-contained: bundles the DM Sans / Lato fonts and the brand tokens it
   needs, so it does not depend on the dashboard's app.css. All classes are
   prefixed .lp- so nothing collides with the dashboard app shell.
   ════════════════════════════════════════════════════════════════ */

/* ── Fonts (DM Sans display / Lato body) ── */
@font-face {
  font-family: "DM Sans";
  src: url("/static/fonts/DMSans-VariableFont_opsz_wght.ttf") format("truetype");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lato"; src: url("/static/fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lato"; src: url("/static/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lato"; src: url("/static/fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lato"; src: url("/static/fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900; font-style: normal; font-display: swap;
}

.lp {
  /* Fonts + semantic tokens (mirrors app.css so the page stands alone) */
  --font-display: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body:    "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --rv-success: #10B981;

  --ink: #0C1024;            /* near-black indigo for headlines */
  --indigo: #1F2585;
  --indigo-600: #2A30A0;
  --indigo-500: #4F58C8;
  --orange: #F7931E;
  --orange-soft: #FEEBD0;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --line: #E8ECF2;
  --maxw: 1200px;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(12,16,36,0.05), 0 1px 3px rgba(12,16,36,0.04);
  --shadow-md: 0 10px 30px rgba(12,16,36,0.08), 0 2px 8px rgba(12,16,36,0.04);
  --shadow-lg: 0 30px 70px rgba(12,16,36,0.16), 0 8px 24px rgba(12,16,36,0.08);
  --shadow-indigo: 0 22px 50px rgba(31,37,133,0.30);

  font-family: var(--font-body);
  color: var(--slate-700);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.lp * { box-sizing: border-box; }

/* ── Type ── */
.lp h1, .lp h2, .lp h3, .lp h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.08;
  font-weight: 700;
  text-wrap: balance;
}
.lp p { margin: 0; }
.lp a { color: inherit; text-decoration: none; }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--indigo-600);
}
.lp-eyebrow.amber { color: #C2410C; }
.lp-eyebrow.on-dark { color: var(--orange); }
.lp-eyebrow::before {
  content: ""; width: 18px; height: 1.5px; background: currentColor; opacity: 0.5;
}

/* ── Layout ── */
.lp-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.lp-section { padding: 104px 0; position: relative; }
.lp-section.tight { padding: 76px 0; }
.lp-section.slate { background: var(--slate-50); }
.lp-section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.lp-section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.lp-section-head .lp-eyebrow { margin-bottom: 18px; }
.lp-section-head p { font-size: 18px; color: var(--slate-500); margin-top: 18px; }

.lp-grad-text { color: var(--indigo); }
.lp-accent { color: var(--orange); }
.lp-underline {
  position: relative; white-space: nowrap;
}
.lp-underline::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 0.06em; height: 0.32em;
  background: var(--orange); opacity: 0.26; border-radius: 3px; z-index: -1;
}

/* ════════════════════════════════════════════════════════════
   Buttons
   ════════════════════════════════════════════════════════════ */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  padding: 14px 26px; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform 140ms ease, box-shadow 200ms ease, background 160ms ease, color 160ms;
}
.lp-btn:active { transform: scale(0.97); }
.lp-btn-primary {
  background: var(--indigo); color: #fff;
  box-shadow: 0 8px 20px rgba(31,37,133,0.24);
}
.lp-btn-primary:hover { background: var(--indigo-600); box-shadow: 0 12px 28px rgba(31,37,133,0.32); transform: translateY(-1px); }
.lp-btn-ghost {
  background: #fff; color: var(--ink); border-color: var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.lp-btn-ghost:hover { border-color: var(--slate-400); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.lp-btn-ghost svg { color: var(--indigo); }
.lp-btn-light { background: #fff; color: var(--indigo); }
.lp-btn-light:hover { background: var(--slate-50); transform: translateY(-1px); }
.lp-btn-amber { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(247,147,30,0.30); }
.lp-btn-amber:hover { background: #E8850F; transform: translateY(-1px); box-shadow: 0 12px 28px rgba(247,147,30,0.38); }
.lp-btn-lg { padding: 16px 32px; font-size: 16.5px; }
.lp-btn-block { width: 100%; }
.lp-btn-outline-dark {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.28);
}
.lp-btn-outline-dark:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

/* ════════════════════════════════════════════════════════════
   Nav
   ════════════════════════════════════════════════════════════ */
.lp-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, box-shadow 200ms, background 200ms;
}
.lp-nav.scrolled { border-color: var(--line); box-shadow: 0 1px 20px rgba(12,16,36,0.05); background: rgba(255,255,255,0.86); }
.lp-nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.lp-brand { display: inline-flex; align-items: center; gap: 11px; }
.lp-brand .mark {
  width: 34px; height: 34px; border-radius: 9px; background: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.lp-brand .mark svg { width: 24px; height: 24px; display: block; }
.lp-brand .name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); letter-spacing: -0.02em; }
.lp-nav-links { display: flex; align-items: center; gap: 34px; }
.lp-nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--slate-700);
  transition: color 140ms; position: relative;
}
.lp-nav-links a:hover { color: var(--indigo); }
.lp-nav-cta { display: flex; align-items: center; gap: 8px; }
.lp-login {
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink);
  padding: 10px 16px; border-radius: 10px; transition: background 140ms;
}
.lp-login:hover { background: var(--slate-100); }
.lp-nav-toggle { display: none; }

/* ════════════════════════════════════════════════════════════
   Hero
   ════════════════════════════════════════════════════════════ */
.lp-hero { position: relative; padding: 92px 0 84px; overflow: hidden; }
.lp-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(79,88,200,0.10), transparent 70%),
    radial-gradient(40% 40% at 85% 20%, rgba(247,147,30,0.07), transparent 70%);
}
/* Concentric iris rings */
.lp-iris {
  position: absolute; top: -340px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; z-index: 0; pointer-events: none; opacity: 0.5;
}
.lp-iris circle { fill: none; stroke: var(--indigo); stroke-opacity: 0.06; }
.lp-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; }
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 8px 7px 14px; font-size: 13px; font-weight: 600; color: var(--slate-700);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.lp-hero-badge .pill {
  background: var(--orange-soft); color: #C2410C; font-weight: 700; font-size: 11px;
  padding: 3px 9px; border-radius: 999px; letter-spacing: 0.02em;
}
.lp-hero h1 { font-size: clamp(38px, 6vw, 68px); letter-spacing: -0.03em; }
.lp-hero .lp-sub {
  font-size: clamp(17px, 2vw, 20px); color: var(--slate-500); line-height: 1.65;
  max-width: 680px; margin: 26px auto 0;
}
.lp-hero-cta { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.lp-hero-trust {
  margin-top: 22px; font-size: 14px; color: var(--slate-400);
  display: inline-flex; align-items: center; gap: 9px;
}
.lp-hero-trust svg { color: var(--rv-success, #10B981); }

/* Hero dashboard mockup */
.lp-hero-mock { position: relative; z-index: 1; max-width: 1000px; margin: 64px auto 0; }
.lp-mock-glow {
  position: absolute; inset: -6% 6% -10% 6%; z-index: 0;
  background: radial-gradient(50% 60% at 50% 40%, rgba(31,37,133,0.22), transparent 72%);
  filter: blur(20px);
}
.lp-ai-bubble {
  position: absolute; z-index: 3; right: -18px; top: 64px;
  width: 268px; background: #fff; border-radius: 16px; padding: 16px 17px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  text-align: left;
}
.lp-ai-bubble .ai-head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.lp-ai-bubble .ai-ic {
  width: 28px; height: 28px; border-radius: 8px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo)); color: #fff;
  display: grid; place-items: center;
}
.lp-ai-bubble .ai-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--indigo-600); }
.lp-ai-bubble .ai-text { font-size: 13.5px; color: var(--slate-700); line-height: 1.5; }
.lp-ai-bubble .ai-text b { color: var(--ink); font-weight: 700; }
.lp-ai-bubble .ai-tag {
  margin-top: 11px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; color: #047857;
  background: rgba(16,185,129,0.10); padding: 4px 10px; border-radius: 999px;
}

/* ════════════════════════════════════════════════════════════
   Dashboard mockup (shared — hero + showcase)
   ════════════════════════════════════════════════════════════ */
.lp-dash {
  position: relative; z-index: 2;
  background: #fff; border-radius: 20px; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.lp-dash-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--slate-50);
}
.lp-dash-bar .dots { display: flex; gap: 6px; }
.lp-dash-bar .dots i { width: 11px; height: 11px; border-radius: 999px; display: block; background: var(--slate-200); }
.lp-dash-bar .dots i:nth-child(1) { background: #FF5F57; }
.lp-dash-bar .dots i:nth-child(2) { background: #FEBC2E; }
.lp-dash-bar .dots i:nth-child(3) { background: #28C840; }
.lp-dash-bar .url {
  margin-left: 12px; font-size: 12px; color: var(--slate-400);
  background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 4px 12px;
  flex: 1; max-width: 320px;
}
.lp-dash-bar .url b { color: var(--slate-700); font-weight: 600; }
.lp-dash-body { padding: 22px; display: grid; gap: 16px; }
.lp-dash-row { display: grid; gap: 14px; }
.lp-kpis { grid-template-columns: repeat(4, 1fr); }
.lp-kpi {
  background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 14px 15px;
  text-align: left;
}
.lp-kpi .k-top { display: flex; align-items: center; justify-content: space-between; }
.lp-kpi .k-ic { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; }
.lp-kpi .k-ic.indigo { background: rgba(31,37,133,0.08); color: var(--indigo); }
.lp-kpi .k-ic.amber { background: rgba(247,147,30,0.12); color: #C2410C; }
.lp-kpi .k-ic.green { background: rgba(16,185,129,0.12); color: #047857; }
.lp-kpi .k-ic.violet { background: rgba(124,58,237,0.10); color: #6D28D9; }
.lp-kpi .k-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-400); }
.lp-kpi .k-val { font-family: var(--font-display); font-weight: 700; font-size: 25px; color: var(--ink); letter-spacing: -0.02em; margin-top: 6px; line-height: 1; }
.lp-kpi .k-delta { font-size: 11.5px; font-weight: 600; margin-top: 5px; display: inline-flex; align-items: center; gap: 4px; }
.lp-kpi .k-delta.up { color: #047857; }
.lp-kpi .k-delta.down { color: #047857; }

.lp-dash-2col { grid-template-columns: 1.7fr 1fr; align-items: stretch; }
.lp-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 17px; text-align: left;
}
.lp-panel .p-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.lp-panel .p-title { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); }
.lp-panel .p-tag { font-size: 11px; font-weight: 600; color: #047857; background: rgba(16,185,129,0.10); padding: 3px 9px; border-radius: 999px; }
.lp-panel .p-big { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--ink); letter-spacing: -0.02em; }
.lp-panel .p-big .unit { font-size: 15px; color: var(--slate-400); font-weight: 600; }

/* trend chart */
.lp-chart { margin-top: 8px; }
.lp-chart svg { width: 100%; height: 116px; display: block; overflow: visible; }

/* sentiment / dist bars */
.lp-bars { display: flex; flex-direction: column; gap: 9px; margin-top: 10px; }
.lp-bar-row { display: grid; grid-template-columns: 14px 1fr 30px; gap: 9px; align-items: center; font-size: 12px; color: var(--slate-500); }
.lp-bar-row .star { color: var(--orange); font-weight: 700; text-align: right; }
.lp-bar-track { height: 8px; background: var(--slate-100); border-radius: 999px; overflow: hidden; }
.lp-bar-fill { height: 100%; border-radius: 999px; background: var(--orange); }
.lp-bar-fill.dim { background: var(--slate-200); }
.lp-bar-row .num { font-size: 11.5px; color: var(--slate-400); text-align: right; font-variant-numeric: tabular-nums; }

/* ════════════════════════════════════════════════════════════
   Logo bar
   ════════════════════════════════════════════════════════════ */
.lp-logobar { text-align: center; }
.lp-logobar .cap { font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--slate-400); }
.lp-logos { display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; margin-top: 28px; }
.lp-logo-item { display: inline-flex; align-items: center; gap: 10px; color: var(--slate-300); opacity: 0.85; }
.lp-logo-item .lg-mark { width: 30px; height: 30px; border-radius: 8px; background: var(--slate-200); display: grid; place-items: center; color: var(--slate-400); }
.lp-logo-item .lg-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--slate-300); letter-spacing: -0.01em; }

/* ════════════════════════════════════════════════════════════
   Impact numbers (dark band)
   ════════════════════════════════════════════════════════════ */
.lp-dark {
  background: linear-gradient(160deg, #1C2150 0%, #161A40 60%, #11143A 100%);
  color: #fff; position: relative; overflow: hidden;
}
.lp-dark .lp-eyebrow { color: var(--orange); }
.lp-dark h2 { color: #fff; }
.lp-impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.lp-impact { text-align: center; position: relative; }
.lp-impact::after {
  content: ""; position: absolute; right: -14px; top: 14%; bottom: 14%; width: 1px;
  background: rgba(255,255,255,0.12);
}
.lp-impact:last-child::after { display: none; }
.lp-impact .big {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 5vw, 56px);
  letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(180deg, #fff, #C7CBF0); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-impact .big .suf { color: var(--orange); -webkit-text-fill-color: var(--orange); }
.lp-impact .lab { font-size: 14.5px; color: rgba(255,255,255,0.66); margin-top: 12px; font-weight: 500; }

/* ════════════════════════════════════════════════════════════
   Problem cards (perception gap)
   ════════════════════════════════════════════════════════════ */
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms;
}
.lp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--slate-200); }
.lp-card .c-ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(31,37,133,0.07); color: var(--indigo);
}
.lp-card h3 { font-size: 20px; margin-bottom: 11px; }
.lp-card p { font-size: 15px; color: var(--slate-500); line-height: 1.65; }
.lp-card p b { color: var(--slate-700); font-weight: 700; }

.lp-transition { text-align: center; margin-top: 52px; font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.6vw, 27px); color: var(--ink); letter-spacing: -0.02em; }
.lp-transition .lp-accent { color: var(--orange); }

/* ════════════════════════════════════════════════════════════
   Features
   ════════════════════════════════════════════════════════════ */
.lp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms; position: relative; overflow: hidden;
}
.lp-feat::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--indigo), var(--indigo-500)); transition: width 300ms ease;
}
.lp-feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lp-feat:hover::before { width: 100%; }
.lp-feat .f-ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(31,37,133,0.10), rgba(79,88,200,0.06)); color: var(--indigo);
}
.lp-feat.amber .f-ic { background: linear-gradient(135deg, rgba(247,147,30,0.16), rgba(247,147,30,0.06)); color: #C2410C; }
.lp-feat h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.25; }
.lp-feat p { font-size: 14.5px; color: var(--slate-500); line-height: 1.62; }

/* ════════════════════════════════════════════════════════════
   How it works
   ════════════════════════════════════════════════════════════ */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.lp-step { text-align: center; position: relative; }
.lp-step .s-num {
  width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 22px;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 24px;
  color: #fff; background: linear-gradient(150deg, var(--indigo-500), var(--indigo)); box-shadow: var(--shadow-indigo);
  position: relative; z-index: 1;
}
.lp-step.amber .s-num { background: linear-gradient(150deg, var(--orange), #E8850F); box-shadow: 0 22px 50px rgba(247,147,30,0.28); }
.lp-step h3 { font-size: 21px; margin-bottom: 11px; }
.lp-step p { font-size: 15px; color: var(--slate-500); line-height: 1.62; max-width: 320px; margin: 0 auto; }
.lp-steps .lp-step-line {
  position: absolute; top: 30px; left: 16.66%; right: 16.66%; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--slate-200) 0 7px, transparent 7px 15px);
}

/* ════════════════════════════════════════════════════════════
   Showcase (full-width with callouts)
   ════════════════════════════════════════════════════════════ */
.lp-showcase-stage { position: relative; max-width: 1080px; margin: 0 auto; }
.lp-callout {
  position: absolute; z-index: 5; max-width: 230px;
  background: var(--ink); color: #fff; border-radius: 13px; padding: 12px 14px;
  font-size: 13px; line-height: 1.45; box-shadow: var(--shadow-lg);
}
.lp-callout .co-dot { display: inline-block; width: 7px; height: 7px; border-radius: 999px; background: var(--orange); margin-right: 7px; }
.lp-callout b { color: #fff; font-weight: 700; }
.lp-callout::after { content: ""; position: absolute; width: 12px; height: 12px; background: var(--ink); transform: rotate(45deg); }
.lp-callout.tl { top: 40px; left: -42px; }
.lp-callout.tl::after { right: -5px; top: 22px; }
.lp-callout.tr { top: 96px; right: -46px; }
.lp-callout.tr::after { left: -5px; top: 22px; }
.lp-callout.bl { bottom: 78px; left: -40px; }
.lp-callout.bl::after { right: -5px; top: 22px; }
.lp-callout.br { bottom: 40px; right: -44px; }
.lp-callout.br::after { left: -5px; top: 22px; }

/* ════════════════════════════════════════════════════════════
   Before / After
   ════════════════════════════════════════════════════════════ */
.lp-shift { max-width: 940px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: #fff; }
.lp-shift-head { display: grid; grid-template-columns: 1fr 1fr; }
.lp-shift-head > div { padding: 20px 28px; font-family: var(--font-display); font-weight: 700; font-size: 17px; display: flex; align-items: center; gap: 10px; }
.lp-shift-head .without { color: var(--slate-500); background: var(--slate-50); border-bottom: 1px solid var(--line); }
.lp-shift-head .with { color: #fff; background: var(--indigo); }
.lp-shift-head .with .badge { font-size: 11px; background: var(--orange); color: #fff; padding: 2px 9px; border-radius: 999px; font-weight: 700; letter-spacing: 0.02em; }
.lp-shift-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.lp-shift-row:last-child { border-bottom: none; }
.lp-shift-row > div { padding: 17px 28px; font-size: 14.5px; display: flex; align-items: center; gap: 11px; }
.lp-shift-row .l { color: var(--slate-500); border-right: 1px solid var(--line); }
.lp-shift-row .l .x { color: var(--slate-300); flex: 0 0 auto; }
.lp-shift-row .r { color: var(--ink); font-weight: 500; background: rgba(31,37,133,0.025); }
.lp-shift-row .r .ck { color: var(--rv-success, #10B981); flex: 0 0 auto; }
.lp-shift-row .r b { font-weight: 700; }

/* ════════════════════════════════════════════════════════════
   Pricing
   ════════════════════════════════════════════════════════════ */
.lp-bill-toggle { display: inline-flex; align-items: center; gap: 12px; justify-content: center; margin: 0 auto; }
.lp-switch { width: 50px; height: 28px; border-radius: 999px; background: var(--slate-200); border: none; padding: 0; position: relative; cursor: pointer; transition: background 200ms; }
.lp-switch.on { background: var(--indigo); }
.lp-switch .knob { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 999px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.2); transition: transform 200ms; }
.lp-switch.on .knob { transform: translateX(22px); }
.lp-bill-label { font-size: 14.5px; font-weight: 600; color: var(--slate-400); transition: color 160ms; }
.lp-bill-label.active { color: var(--ink); }
.lp-save-pill { font-size: 11.5px; font-weight: 700; color: #047857; background: rgba(16,185,129,0.12); padding: 3px 9px; border-radius: 999px; }

.lp-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.lp-plan {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px 28px;
  box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column;
  transition: transform 220ms, box-shadow 220ms;
}
.lp-plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lp-plan.featured {
  border: 1.5px solid var(--indigo); box-shadow: var(--shadow-indigo); transform: scale(1.02);
  background: linear-gradient(180deg, #fff, #FBFBFE);
}
.lp-plan.featured:hover { transform: scale(1.02) translateY(-3px); }
.lp-plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.04em; padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(247,147,30,0.34); white-space: nowrap;
}
.lp-plan .pl-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); }
.lp-plan .pl-for { font-size: 13.5px; color: var(--slate-400); margin-top: 5px; min-height: 38px; }
.lp-plan .pl-price { display: flex; align-items: baseline; gap: 4px; margin: 18px 0 4px; }
.lp-plan .pl-price .amt { font-family: var(--font-display); font-weight: 700; font-size: 42px; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.lp-plan .pl-price .per { font-size: 14.5px; color: var(--slate-400); font-weight: 500; }
.lp-plan .pl-annual { font-size: 12.5px; color: var(--slate-400); min-height: 18px; }
.lp-plan .pl-annual b { color: #047857; font-weight: 700; }
.lp-plan .lp-btn { margin: 24px 0; }
.lp-plan .pl-feats { display: flex; flex-direction: column; gap: 13px; }
.lp-plan .pl-feat { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--slate-700); }
.lp-plan .pl-feat .fk { color: var(--indigo); flex: 0 0 auto; margin-top: 2px; }
.lp-plan.featured .pl-feat .fk { color: var(--indigo); }

/* ════════════════════════════════════════════════════════════
   Testimonials
   ════════════════════════════════════════════════════════════ */
.lp-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.lp-quote .q-stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.lp-quote .q-text { font-size: 16px; color: var(--ink); line-height: 1.62; font-weight: 500; flex: 1; }
.lp-quote .q-text b { color: var(--indigo); font-weight: 700; }
.lp-quote .q-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.lp-quote .q-ava { width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px; flex: 0 0 auto; }
.lp-quote .q-name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.lp-quote .q-role { font-size: 12.5px; color: var(--slate-400); }

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.lp-faq { max-width: 800px; margin: 0 auto; }
.lp-faq-item { border-bottom: 1px solid var(--line); }
.lp-faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink);
}
.lp-faq-ic { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 8px; background: var(--slate-100); display: grid; place-items: center; color: var(--indigo); transition: transform 260ms, background 200ms; }
.lp-faq-item.open .lp-faq-ic { transform: rotate(45deg); background: var(--indigo); color: #fff; }
.lp-faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms ease; }
.lp-faq-a-inner { padding: 0 4px 24px; font-size: 15.5px; color: var(--slate-500); line-height: 1.7; max-width: 92%; }

/* ════════════════════════════════════════════════════════════
   Final CTA
   ════════════════════════════════════════════════════════════ */
.lp-final { text-align: center; position: relative; overflow: hidden; }
.lp-final .lp-eye-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 760px; height: 760px;
  opacity: 0.5; pointer-events: none;
}
.lp-final .lp-eye-watermark circle { fill: none; stroke: rgba(255,255,255,0.06); }
.lp-final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.lp-final h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.lp-final .lp-final-sub { color: rgba(255,255,255,0.7); font-size: 18px; margin-top: 20px; line-height: 1.6; }
.lp-final .lp-hero-cta { margin-top: 34px; }
.lp-final .lp-final-note { margin-top: 22px; color: rgba(255,255,255,0.55); font-size: 14.5px; }

/* ════════════════════════════════════════════════════════════
   Footer
   ════════════════════════════════════════════════════════════ */
.lp-footer { background: #0B0E22; color: rgba(255,255,255,0.62); padding: 72px 0 32px; }
.lp-foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.lp-foot-brand .lp-brand .name { color: #fff; }
.lp-foot-brand .mark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.lp-foot-brand p { font-size: 14px; line-height: 1.65; margin-top: 18px; max-width: 320px; color: rgba(255,255,255,0.5); }
.lp-foot-social { display: flex; gap: 10px; margin-top: 22px; }
.lp-foot-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: rgba(255,255,255,0.7); transition: background 160ms, color 160ms; }
.lp-foot-social a:hover { background: var(--indigo); color: #fff; }
.lp-foot-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.lp-foot-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 12px; transition: color 140ms; }
.lp-foot-col a:hover { color: #fff; }
.lp-foot-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.42); flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   Scroll reveal
   ════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   Dashboard carousel (showcase section)
   ════════════════════════════════════════════════════════════ */
.lp-carousel { position: relative; min-height: 340px; }
.lp-screen {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}
.lp-screen.active { position: relative; opacity: 1; pointer-events: auto; }
.lp-carousel-nav {
  display: flex; justify-content: center; gap: 8px;
  padding: 18px 0 8px;
}
.lp-dot {
  background: var(--slate-200); border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px; color: var(--slate-500);
  padding: 7px 18px; border-radius: 999px;
  transition: background 200ms, color 200ms, box-shadow 200ms;
}
.lp-dot:hover { background: var(--slate-100); color: var(--ink); }
.lp-dot.active {
  background: var(--indigo); color: #fff;
  box-shadow: 0 4px 12px rgba(31,37,133,0.28);
}

/* Competitor comparison bars (carousel screen 2) */
.lp-comp-list { display: flex; flex-direction: column; gap: 11px; }
.lp-comp-row {
  display: grid; grid-template-columns: 24px 1fr 1fr 56px;
  align-items: center; gap: 12px; font-size: 13.5px;
}
.lp-comp-row .c-rank { font-family: var(--font-display); font-weight: 700; color: var(--slate-400); text-align: center; }
.lp-comp-row .c-name { font-weight: 500; color: var(--slate-700); display: flex; align-items: center; gap: 8px; }
.lp-comp-row .c-name b { color: var(--ink); font-weight: 700; }
.lp-comp-row .c-you {
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(31,37,133,0.10); color: var(--indigo); padding: 2px 7px; border-radius: 4px;
}
.lp-comp-row .c-bar-track { height: 10px; background: var(--slate-100); border-radius: 999px; overflow: hidden; }
.lp-comp-row .c-bar { height: 100%; border-radius: 999px; transition: width 600ms ease; }
.lp-comp-row .c-score { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--ink); text-align: right; }
.lp-comp-row.you .c-rank { color: var(--indigo); }

/* ════════════════════════════════════════════════════════════
   Button text fix — ensure white text is always readable on
   primary/amber buttons in every context
   ════════════════════════════════════════════════════════════ */
.lp-btn-primary, .lp-btn-amber {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF;
}


   across environments where compositor transitions may be paused).
   A gentle fade-up is layered on only when the host confirms animation
   is safe by adding .lp-anim to the root (see landing.js).
   ════════════════════════════════════════════════════════════ */
.lp-reveal { opacity: 1; transform: none; }
.lp-anim .lp-reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 640ms cubic-bezier(0.2,0.8,0.2,1), transform 640ms cubic-bezier(0.2,0.8,0.2,1);
}
.lp-anim .lp-reveal.in { opacity: 1; transform: none; }
.lp-anim .lp-reveal.d1 { transition-delay: 80ms; }
.lp-anim .lp-reveal.d2 { transition-delay: 160ms; }
.lp-anim .lp-reveal.d3 { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  .lp-anim .lp-reveal { opacity: 1; transform: none; transition: none; }
}

/* ════════════════════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .lp-grid-3, .lp-feat-grid, .lp-quotes { grid-template-columns: repeat(2, 1fr); }
  .lp-price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .lp-plan.featured { transform: none; }
  .lp-plan.featured:hover { transform: translateY(-3px); }
  .lp-impact-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .lp-impact:nth-child(2)::after { display: none; }
  .lp-ai-bubble { display: none; }
  .lp-callout { display: none; }
  .lp-foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lp-foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .lp-section { padding: 72px 0; }
  .lp-nav-links { display: none; }
  .lp-grid-3, .lp-feat-grid, .lp-quotes, .lp-steps { grid-template-columns: 1fr; }
  .lp-steps .lp-step-line { display: none; }
  .lp-kpis { grid-template-columns: repeat(2, 1fr); }
  .lp-dash-2col { grid-template-columns: 1fr; }
  .lp-shift-head > div, .lp-shift-row > div { padding-left: 18px; padding-right: 18px; }
  .lp-shift-row { font-size: 13px; }
  .lp-hero-cta { flex-direction: column; }
  .lp-hero-cta .lp-btn { width: 100%; }
  .lp-foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .lp-impact-grid { grid-template-columns: 1fr; }
  .lp-impact::after { display: none; }
  .lp-foot-grid { grid-template-columns: 1fr; }
}
