/**
 * IndexVero theme stylesheet — ported verbatim from the real LinkRardar frontend
 * (src/index.css globals + src/pages/LandingPageV2.css). Dark glassmorphism +
 * cyan accent. Marketing pages are wrapped in <div class="landing-v2"> (see
 * header.php / footer.php) so the lr-* rules apply.
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===================== Global tokens (from index.css :root) ===================== */
:root {
  --bg-color: #050b14;
  --bg-gradient: radial-gradient(circle at 50% 0%, #0a192f 0%, #050b14 70%);
  --card-bg: rgba(10, 20, 35, 0.6);
  --card-border: rgba(0, 242, 254, 0.1);
  --card-hover-border: rgba(0, 242, 254, 0.3);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --primary: #00f2fe;
  --primary-hover: #4facfe;
  --primary-glow: rgba(0, 242, 254, 0.3);
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 16px;
  --radius-pill: 999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 { font-weight: 600; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
p { color: var(--text-muted); line-height: 1.6; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; height: auto; }

.text-gradient-primary {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}

/* Glass card */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}
.glass-card:hover { border-color: var(--card-hover-border); box-shadow: 0 8px 32px -8px var(--primary-glow); }

/* Buttons (global) */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-pill);
  font-weight: 600; font-family: inherit; font-size: 0.95rem;
  cursor: pointer; transition: var(--transition); border: 1px solid transparent; gap: 0.5rem;
}
.btn-primary {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #050b14; box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover { background: linear-gradient(90deg, var(--primary-hover) 0%, var(--primary) 100%); box-shadow: 0 6px 20px rgba(0, 242, 254, 0.6); color: #050b14; }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--card-border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(0, 242, 254, 0.05); }

/* Tables */
.table-container { width: 100%; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; text-align: left; }
th { padding: 1rem; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); border-bottom: 1px solid var(--card-border); }
td { padding: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.03); font-size: 0.95rem; }
tbody tr:hover td { background: rgba(255, 255, 255, 0.02); }
tbody tr:last-child td { border-bottom: none; }

/* Badges */
.badge { padding: 0.25rem 0.6rem; border-radius: 6px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-success { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-warning { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-danger { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-primary { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.iv-skip-link { position: absolute; left: -9999px; top: 0; z-index: 2000; background: var(--primary); color: #050b14; padding: 0.6rem 1rem; border-radius: 8px; }
.iv-skip-link:focus { left: 1rem; top: 1rem; }

/* ===================== LandingPageV2 (marketing, verbatim) ===================== */
.landing-v2 {
  --lr-bg: #07090f;
  --lr-surface: #0c111d;
  --lr-surface-2: #111827;
  --lr-border: #1e293b;
  --lr-border-2: #334155;
  --lr-text: #f8fafc;
  --lr-muted: #94a3b8;
  --lr-dim: #64748b;
  --lr-accent: var(--primary);
  --lr-accent-hover: var(--primary-hover);
  --lr-gradient: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 100%);
  --lr-accent-soft: rgba(0, 242, 254, 0.09);
  --lr-accent-border: rgba(0, 242, 254, 0.2);
  --lr-danger: #ef4444;
  --lr-warning: #f59e0b;
  min-height: 100vh;
  background: var(--lr-bg);
  color: var(--lr-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
.landing-v2 * { box-sizing: border-box; }
.landing-v2 a { color: inherit; text-decoration: none; }
.landing-v2 button { font: inherit; }
.landing-v2 .mono { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }

.lr-wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

.lr-nav { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--lr-border); background: rgba(7, 9, 15, 0.9); backdrop-filter: blur(18px); }
.lr-nav-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.lr-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--lr-text); font-size: 17px; font-weight: 800; }
.lr-nav-links { display: flex; align-items: center; gap: 28px; }
.lr-nav-links a { position: relative; color: var(--lr-muted); font-size: 13px; font-weight: 650; transition: color 0.18s, transform 0.18s; }
.lr-nav-links a::after { position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; border-radius: 999px; background: var(--lr-gradient); opacity: 0; transform: scaleX(0.35); transition: opacity 0.2s, transform 0.2s; content: ""; }
.lr-nav-links a:hover { color: var(--lr-text); transform: translateY(-1px); }
.lr-nav-links a:hover::after { opacity: 1; transform: scaleX(1); }

.lr-nav-dropdown { position: relative; }
.lr-dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; padding: 0; border: none; background: none; color: var(--lr-muted); font-family: inherit; font-size: 13px; font-weight: 650; cursor: pointer; transition: color 0.18s, transform 0.18s; }
.lr-dropdown-trigger:hover, .lr-nav-dropdown.open .lr-dropdown-trigger { color: var(--lr-text); }
.lr-caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-1px); transition: transform 0.2s ease; }
.lr-nav-dropdown.open .lr-caret { transform: rotate(-135deg) translateY(1px); }
.lr-dropdown-panel { position: absolute; top: calc(100% + 14px); left: 50%; display: grid; gap: 2px; min-width: 244px; padding: 8px; border: 1px solid var(--lr-border); border-radius: 12px; background: #0b1020; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42); opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(-50%) translateY(6px); transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s; z-index: 120; }
.lr-dropdown-panel::before { position: absolute; left: 0; right: 0; top: -14px; height: 14px; content: ""; }
.lr-nav-dropdown.open .lr-dropdown-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.lr-dropdown-panel a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--lr-muted); font-size: 13px; font-weight: 600; white-space: nowrap; transition: background 0.15s ease, color 0.15s ease; }
.lr-dropdown-panel a::after { display: none; }
.lr-dropdown-panel a:hover { background: var(--lr-surface); color: var(--lr-text); transform: none; }

.lr-nav-actions { display: flex; align-items: center; gap: 12px; }
.lr-signin { color: var(--lr-muted); font-size: 13px; font-weight: 700; }
.lr-signin:hover { color: var(--lr-text); }
.lr-menu-btn { display: none; width: 42px; height: 40px; border: 1px solid var(--lr-border); border-radius: 8px; background: var(--lr-surface); color: var(--lr-text); cursor: pointer; }
.lr-menu-btn span, .lr-menu-btn span::before, .lr-menu-btn span::after { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 999px; content: ""; }
.lr-menu-btn span { position: relative; margin: 0 auto; }
.lr-menu-btn span::before, .lr-menu-btn span::after { position: absolute; left: 0; }
.lr-menu-btn span::before { top: -6px; }
.lr-menu-btn span::after { top: 6px; }

.lr-btn { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 8px; padding: 11px 19px; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, background 0.18s; white-space: nowrap; }
.lr-btn:hover { transform: translateY(-1px); }
.lr-btn-primary { background: var(--lr-gradient); color: #050b14; box-shadow: 0 14px 28px rgba(0, 242, 254, 0.22); }
.lr-btn-primary:hover { box-shadow: 0 16px 34px rgba(79, 172, 254, 0.32); }
.lr-btn-ghost { background: rgba(255, 255, 255, 0.02); color: var(--lr-text); border-color: var(--lr-border-2); }
.lr-btn-ghost:hover { border-color: var(--lr-accent); background: var(--lr-accent-soft); }

.lr-hero { position: relative; padding: 86px 0 62px; overflow: hidden; }
.lr-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--lr-border) 1px, transparent 1px), linear-gradient(90deg, var(--lr-border) 1px, transparent 1px); background-size: 48px 48px; opacity: 0.15; pointer-events: none; }
.lr-hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 520px); gap: 54px; align-items: center; }
.lr-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; border: 1px solid var(--lr-accent-border); border-radius: 999px; background: var(--lr-accent-soft); color: var(--lr-accent); padding: 6px 14px; font-size: 11px; font-weight: 850; letter-spacing: 0; text-transform: uppercase; }
.lr-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--lr-gradient); }
.lr-hero h1 { max-width: 720px; margin: 0 0 22px; color: var(--lr-text); font-size: clamp(42px, 6vw, 70px); line-height: 1.02; letter-spacing: 0; font-weight: 900; animation: lrTitleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.lr-hero-highlight { position: relative; display: inline-block; background: var(--lr-gradient); background-clip: text; color: transparent; filter: drop-shadow(0 0 18px rgba(0, 242, 254, 0.24)); animation: lrHighlightPulse 3.6s ease-in-out infinite; }
.lr-hero-highlight::after { position: absolute; left: 2px; right: 2px; bottom: 3px; height: 12px; border-radius: 999px; background: linear-gradient(90deg, rgba(0, 242, 254, 0.2), rgba(79, 172, 254, 0.08)); z-index: -1; content: ""; }
.lr-hero-break { display: inline; }
.lr-hero-copy p { max-width: 600px; margin: 0 0 32px; color: var(--lr-muted); font-size: 17px; }
.lr-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.lr-dashboard { border: 1px solid var(--lr-border); border-radius: 16px; background: var(--lr-surface); box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38); overflow: hidden; }
.lr-dashboard-top { height: 48px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--lr-border); background: #0b1020; padding: 0 16px; color: var(--lr-dim); font-size: 12px; }
.lr-dots { display: flex; gap: 7px; }
.lr-dots span { width: 10px; height: 10px; border-radius: 50%; }
.lr-dots span:nth-child(1) { background: var(--lr-danger); }
.lr-dots span:nth-child(2) { background: var(--lr-warning); }
.lr-dots span:nth-child(3) { background: var(--lr-accent); }
.lr-dashboard-body { padding: 18px; }
.lr-dash-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.lr-dash-head strong, .lr-dash-head span { display: block; }
.lr-dash-head strong { color: var(--lr-text); font-size: 18px; }
.lr-dash-head span { color: var(--lr-muted); font-size: 12px; }
.lr-dash-head em { display: inline-flex; align-items: center; border-radius: 999px; border: 1px solid var(--lr-accent-border); background: var(--lr-accent-soft); color: var(--lr-accent); padding: 6px 10px; font-size: 11px; font-style: normal; font-weight: 850; }
.lr-dash-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 16px; }
.lr-dash-stats div { min-height: 96px; border: 1px solid var(--lr-border); border-radius: 8px; background: #0f172a; padding: 14px; }
.lr-dash-stats span { display: block; margin-bottom: 10px; color: var(--lr-dim); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.lr-dash-stats strong { display: block; color: var(--lr-text); font-size: 28px; line-height: 1; }
.lr-status-table { border: 1px solid var(--lr-border); border-radius: 8px; overflow: hidden; }
.lr-row { display: grid; grid-template-columns: minmax(0, 1.4fr) 0.75fr 0.65fr; gap: 12px; align-items: center; border-bottom: 1px solid var(--lr-border); padding: 12px 14px; color: #dbeafe; font-size: 12px; }
.lr-row:last-child { border-bottom: 0; }
.lr-row span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lr-row-head { background: #0b1020; color: var(--lr-dim); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.lr-row b { width: max-content; border-radius: 999px; padding: 4px 8px; font-size: 10px; }
.lr-row b.ok { background: rgba(16, 185, 129, 0.13); color: #6ee7b7; }
.lr-row b.crawl { background: rgba(0, 242, 254, 0.11); color: var(--lr-accent); }
.lr-row b.wait { background: rgba(245, 158, 11, 0.13); color: #fbbf24; }
.lr-row b.fail { background: rgba(239, 68, 68, 0.13); color: #fca5a5; }

.lr-stats { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 48px; border: 1px solid var(--lr-border); border-radius: 12px; overflow: hidden; background: rgba(12, 17, 29, 0.82); }
.lr-stat { min-height: 96px; padding: 18px 14px; border-right: 1px solid var(--lr-border); text-align: center; }
.lr-stat:last-child { border-right: 0; }
.lr-stat strong { display: block; background: var(--lr-gradient); background-clip: text; color: transparent; font-size: 26px; font-weight: 900; line-height: 1.1; }
.lr-stat span { display: block; margin-top: 6px; color: var(--lr-dim); font-size: 12px; font-weight: 700; }

.lr-section { padding: 78px 0; border-top: 1px solid var(--lr-border); }
.lr-section-alt { background: #090d16; }
.lr-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; margin-bottom: 34px; }
.lr-kicker { display: block; margin-bottom: 11px; background: var(--lr-gradient); background-clip: text; color: transparent; font-size: 11px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.lr-section h2, .lr-cta h2 { max-width: 680px; margin: 0; color: var(--lr-text); font-size: clamp(30px, 4.2vw, 48px); line-height: 1.08; letter-spacing: 0; font-weight: 900; }
.lr-section-head p { max-width: 470px; margin: 0; color: var(--lr-muted); font-size: 15px; }

.lr-pain-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.lr-pain-card, .lr-feature-card, .lr-tool-card, .lr-plan, .lr-cta-box { border: 1px solid var(--lr-border); border-radius: 12px; background: var(--lr-surface); }
.lr-pain-card { position: relative; overflow: hidden; padding: 24px; }
.lr-pain-card::before { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--lr-danger), transparent); content: ""; }
.lr-pain-card > span { display: block; margin-bottom: 11px; color: #f87171; font-size: 11px; font-weight: 800; }
.lr-pain-card h3, .lr-feature-card h3, .lr-tool-card h3 { margin: 0 0 7px; color: var(--lr-text); font-size: 16px; letter-spacing: 0; }
.lr-pain-card p, .lr-feature-card p, .lr-tool-card p { margin: 0; color: var(--lr-muted); font-size: 13px; }

.lr-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--lr-border); border-radius: 14px; background: var(--lr-border); }
.lr-feature-card { min-height: 252px; border: 0; border-radius: 0; padding: 26px 24px; transition: background 0.18s; }
.lr-feature-card:hover { background: var(--lr-surface-2); }
.lr-feature-mark { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 34px; margin-bottom: 18px; border: 1px solid var(--lr-accent-border); border-radius: 8px; background: var(--lr-accent-soft); color: var(--lr-accent); padding: 0 9px; font-size: 11px; font-weight: 900; }
.lr-feature-card > span { display: inline-flex; margin-top: 15px; border-radius: 6px; background: var(--lr-accent-soft); color: var(--lr-accent); padding: 4px 8px; font-size: 10px; }

.lr-tools-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.lr-tool-card { min-height: 178px; padding: 20px 16px; text-align: center; transition: border-color 0.18s, background 0.18s; }
.lr-tool-card:hover { border-color: var(--lr-border-2); background: var(--lr-surface-2); }
.lr-tool-card > strong { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 34px; margin-bottom: 14px; border-radius: 8px; background: var(--lr-gradient); color: #050b14; font-size: 12px; }

.lr-price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.lr-plan { position: relative; display: flex; min-height: 486px; flex-direction: column; padding: 28px 24px; }
.lr-plan.popular { border-color: var(--lr-accent); box-shadow: 0 0 34px rgba(0, 242, 254, 0.13); }
.lr-plan.vip { border-color: rgba(245, 158, 11, 0.35); background: rgba(245, 158, 11, 0.035); }
.lr-hot, .lr-vip-label { display: inline-flex; width: max-content; margin-bottom: 12px; border-radius: 999px; padding: 4px 12px; font-size: 10px; font-weight: 900; }
.lr-hot { background: var(--lr-gradient); color: #050b14; }
.lr-vip-label { background: rgba(245, 158, 11, 0.14); color: #fbbf24; }
.lr-plan-name { color: var(--lr-dim); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.lr-plan h3 { margin: 6px 0 14px; color: var(--lr-accent); font-size: 14px; letter-spacing: 0; }
.lr-plan-price { margin-bottom: 4px; color: var(--lr-text); font-size: 38px; font-weight: 900; line-height: 1; }
.lr-plan-per { margin-bottom: 18px; color: var(--lr-accent); font-size: 13px; font-weight: 900; }
.lr-plan-per.has-sub { margin-bottom: 4px; }
.lr-plan-sub { margin-bottom: 18px; color: var(--lr-dim); font-size: 12px; font-weight: 700; }
.lr-plan ul { display: flex; flex: 1; flex-direction: column; gap: 10px; margin: 0 0 24px; padding: 18px 0 0; border-top: 1px solid var(--lr-border); list-style: none; }
.lr-plan li { display: flex; gap: 9px; align-items: flex-start; color: var(--lr-muted); font-size: 13px; }
.lr-plan li::before { flex: 0 0 auto; width: 14px; height: 14px; margin-top: 4px; border-radius: 50%; background: var(--lr-gradient); content: ""; }
.lr-plan li.off { color: var(--lr-dim); }
.lr-plan li.off::before { background: var(--lr-border-2); }
.lr-plan .lr-btn { width: 100%; }
.lr-price-note { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 16px; border: 1px solid var(--lr-border); border-radius: 8px; background: var(--lr-surface); color: var(--lr-dim); padding: 13px 16px; text-align: center; font-size: 12px; }
.lr-price-note span { display: inline-flex; align-items: center; gap: 8px; }
.lr-price-note span:not(:last-child)::after { width: 4px; height: 4px; border-radius: 50%; background: var(--lr-accent); opacity: 0.75; content: ""; }
.lr-price-note span:first-child { color: var(--lr-accent); }

.lr-cta { padding: 82px 0; border-top: 1px solid var(--lr-border); }
.lr-cta-box { padding: 58px 40px; text-align: center; }
.lr-cta-box .lr-kicker { margin-left: auto; margin-right: auto; }
.lr-cta h2 { margin: 0 auto 14px; }
.lr-cta p { max-width: 620px; margin: 0 auto 30px; color: var(--lr-muted); }
.lr-cta .lr-hero-actions { justify-content: center; }

.lr-footer { border-top: 1px solid var(--lr-border); padding: 28px 0; background: #050b14; }
.lr-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.lr-footer-inner > div { display: flex; gap: 20px; flex-wrap: wrap; }
.lr-footer a, .lr-footer span { color: var(--lr-dim); font-size: 13px; }
.lr-footer .lr-logo { color: var(--lr-text); }
.lr-footer a:hover { color: var(--lr-text); }

.lr-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 48px; }
.lr-faq-card { display: flex; flex-direction: column; gap: 12px; }
.lr-faq-card h3 { display: flex; align-items: flex-start; gap: 10px; margin: 0; color: var(--lr-text); font-size: 18px; }
.lr-faq-card h3 svg { flex-shrink: 0; color: var(--lr-accent); margin-top: 2px; }
.lr-faq-card p { margin: 0 0 0 34px; color: var(--lr-muted); font-size: 15px; }

/* Steps (tool landing "how it works") */
.lr-steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.lr-step-card { border: 1px solid var(--lr-border); border-radius: 12px; background: var(--lr-surface); padding: 24px; }
.lr-step-card > span { display: inline-flex; margin-bottom: 12px; border-radius: 6px; background: var(--lr-accent-soft); color: var(--lr-accent); padding: 4px 8px; font-size: 10px; font-weight: 900; letter-spacing: 0.04em; }
.lr-step-card h3 { margin: 0 0 7px; color: var(--lr-text); font-size: 16px; }
.lr-step-card p { margin: 0; color: var(--lr-muted); font-size: 13px; }
@media (max-width: 820px) { .lr-steps-grid { grid-template-columns: 1fr; } }

/* Prose (blog + long-form article bodies) on the dark theme */
.lr-prose { max-width: 760px; margin: 0 auto; color: var(--lr-muted); font-size: 16px; line-height: 1.7; }
.lr-prose h2 { margin: 2rem 0 0.75rem; color: var(--lr-text); font-size: 1.6rem; font-weight: 800; }
.lr-prose h3 { margin: 1.5rem 0 0.5rem; color: var(--lr-text); font-size: 1.2rem; font-weight: 700; }
.lr-prose p { margin: 0 0 1rem; color: var(--lr-muted); }
.lr-prose ul, .lr-prose ol { margin: 0 0 1rem 1.25rem; color: var(--lr-muted); }
.lr-prose li { margin-bottom: 0.4rem; }
.lr-prose a { color: var(--lr-accent); }
.lr-prose a:hover { color: var(--lr-accent-hover); }
.lr-prose strong { color: var(--lr-text); }
.lr-prose figure.wp-block-table { overflow-x: auto; margin: 1.5rem 0; }
.lr-prose table { border: 1px solid var(--lr-border); border-radius: 8px; }

/* Tool widget mount (React embed placeholder — real bundle mounts here later) */
.indexvero-tool-embed { min-height: 120px; border: 1px dashed var(--lr-accent-border); border-radius: 12px; background: var(--lr-accent-soft); display: flex; align-items: center; justify-content: center; padding: 1.5rem; margin: 1rem 0; }
.indexvero-tool-loading { color: var(--lr-accent); font-weight: 700; }
/* When a baked preview mock hydrates the mount, drop the dashed placeholder chrome. */
.indexvero-tool-embed:has(.lr-mock) { display: block; min-height: 0; padding: 0; margin: 0; border: 0; background: none; }

/* Fake-app-window preview mock (.lr-mock) — per-tool + per-product hero visual.
   Non-interactive; also the React mount point placeholder. Styled with lr-* tokens. */
.lr-mock { border: 1px solid var(--lr-border); border-radius: 16px; background: var(--lr-surface); box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38); overflow: hidden; }
.lr-mock-top { display: flex; align-items: center; gap: 12px; height: 44px; border-bottom: 1px solid var(--lr-border); background: #0b1020; padding: 0 16px; }
.lr-mock-title { color: var(--lr-dim); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; letter-spacing: 0.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lr-mock-body { display: flex; flex-direction: column; gap: 12px; padding: 16px; }

/* Option chips */
.lr-mock-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.lr-mock-chip { border: 1px solid var(--lr-border); border-radius: 999px; background: rgba(0, 0, 0, 0.28); color: var(--lr-dim); padding: 4px 11px; font-size: 11px; font-weight: 700; }
.lr-mock-chip.on { border-color: var(--lr-accent-border); background: var(--lr-accent-soft); color: var(--lr-accent); }

/* Faux fields (input / textarea / select) */
.lr-mock-field { display: flex; flex-direction: column; gap: 5px; }
.lr-mock-field > label { color: var(--lr-dim); font-size: 10px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; }
.lr-mock-input { min-height: 34px; display: flex; align-items: center; border: 1px solid var(--lr-border); border-radius: 8px; background: rgba(0, 0, 0, 0.35); color: var(--lr-muted); padding: 7px 11px; font-size: 12px; }
.lr-mock-select { justify-content: space-between; }
.lr-mock-select i { flex: 0 0 auto; width: 7px; height: 7px; margin-left: 10px; border-right: 2px solid var(--lr-dim); border-bottom: 2px solid var(--lr-dim); transform: rotate(45deg) translateY(-2px); }
.lr-mock-textarea { display: flex; flex-direction: column; gap: 3px; min-height: 34px; border: 1px solid var(--lr-border); border-radius: 8px; background: rgba(0, 0, 0, 0.35); color: var(--lr-muted); padding: 8px 11px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 11px; }
.lr-mock-textarea span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lr-mock-field.readonly .lr-mock-textarea, .lr-mock-field.readonly .lr-mock-input { border-style: dashed; color: #6ee7b7; }

/* in -> out transform rule */
.lr-mock-rule { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; border: 1px solid var(--lr-border); border-radius: 8px; background: rgba(0, 0, 0, 0.28); padding: 10px 12px; }
.lr-mock-rule code { border-radius: 6px; background: rgba(0, 0, 0, 0.4); color: var(--lr-text); padding: 3px 8px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 11px; }
.lr-mock-arrow { color: var(--lr-accent); font-weight: 900; }

/* Stat tiles */
.lr-mock-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(72px, 1fr)); gap: 8px; }
.lr-mock-stat { border: 1px solid var(--lr-border); border-radius: 8px; background: #0f172a; padding: 10px 11px; }
.lr-mock-stat span { display: block; margin-bottom: 5px; color: var(--lr-dim); font-size: 9px; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; }
.lr-mock-stat strong { display: block; color: var(--lr-text); font-size: 20px; line-height: 1; }

/* Action buttons (non-interactive) */
.lr-mock-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.lr-mock-btn { border-radius: 8px; padding: 8px 13px; font-size: 12px; font-weight: 800; }
.lr-mock-btn.primary { background: var(--lr-gradient); color: #050b14; }
.lr-mock-btn.outline { border: 1px solid var(--lr-border-2); color: var(--lr-text); }

/* Results table */
.lr-mock-table { border: 1px solid var(--lr-border); border-radius: 8px; overflow: hidden; }
.lr-mock-tr { display: grid; grid-template-columns: 1.5fr repeat(calc(var(--cols) - 1), minmax(0, 1fr)); gap: 10px; align-items: center; border-bottom: 1px solid var(--lr-border); padding: 9px 12px; color: #dbeafe; font-size: 11px; }
.lr-mock-tr:last-child { border-bottom: 0; }
.lr-mock-tr > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lr-mock-th { background: #0b1020; color: var(--lr-dim); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.lr-mock-muted { color: var(--lr-dim); }
.lr-mock-badge { display: inline-block; width: max-content; border-radius: 999px; padding: 3px 8px; font-size: 10px; font-weight: 700; }
.lr-mock-badge.success { background: rgba(16, 185, 129, 0.13); color: #6ee7b7; }
.lr-mock-badge.warning { background: rgba(245, 158, 11, 0.13); color: #fbbf24; }
.lr-mock-badge.danger { background: rgba(239, 68, 68, 0.13); color: #fca5a5; }
.lr-mock-badge.primary { background: rgba(0, 242, 254, 0.11); color: var(--lr-accent); }

/* Product mock extras: campaign header + progress bar */
.lr-mock-camp { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.lr-mock-camp strong { display: block; color: var(--lr-text); font-size: 16px; }
.lr-mock-camp span { display: block; color: var(--lr-muted); font-size: 12px; }
.lr-mock-camp em { display: inline-flex; align-items: center; border-radius: 999px; border: 1px solid var(--lr-accent-border); background: var(--lr-accent-soft); color: var(--lr-accent); padding: 5px 10px; font-size: 11px; font-style: normal; font-weight: 850; }
.lr-mock-progress { height: 10px; border-radius: 999px; background: rgba(0, 0, 0, 0.4); overflow: hidden; }
.lr-mock-progress span { display: block; height: 100%; border-radius: 999px; background: var(--lr-gradient); }

/* Blog post/card list */
.lr-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.lr-post-card { display: block; border: 1px solid var(--lr-border); border-radius: 12px; background: var(--lr-surface); padding: 22px; transition: border-color 0.18s, background 0.18s; }
.lr-post-card:hover { border-color: var(--lr-border-2); background: var(--lr-surface-2); }
.lr-post-card .lr-kicker { margin-bottom: 10px; }
.lr-post-card h3 { margin: 0 0 8px; color: var(--lr-text); font-size: 18px; }
.lr-post-card h3 a { color: inherit; text-decoration: none; }
.lr-post-card h3 a:hover { color: var(--lr-accent); }
.lr-post-card p { margin: 0; color: var(--lr-muted); font-size: 14px; }

/* Topic-map card: spoke link list + "more" link inside a .lr-post-card */
.lr-topic-card { display: flex; flex-direction: column; }
.lr-topic-links { list-style: none; margin: 14px 0 0; padding: 14px 0 0; border-top: 1px solid var(--lr-border); display: grid; gap: 9px; }
.lr-topic-links a { color: var(--lr-muted); font-size: 13px; font-weight: 600; text-decoration: none; transition: color 0.15s; }
.lr-topic-links a:hover { color: var(--lr-text); text-decoration: underline; }
.lr-topic-more { margin-top: auto; padding-top: 16px; }
.lr-topic-more a { color: var(--lr-accent); font-size: 13px; font-weight: 800; text-decoration: none; }
.lr-topic-more a:hover { text-decoration: underline; }

/* Grouped-by-cluster blog/topic index */
.lr-cluster-block { margin-top: 48px; }
.lr-cluster-block:first-of-type { margin-top: 8px; }
.lr-cluster-block .lr-section-head { margin-bottom: 22px; }
.lr-cluster-block .lr-section-head h2 a { color: inherit; text-decoration: none; }
.lr-cluster-block .lr-section-head h2 a:hover { color: var(--lr-accent); }

@media (max-width: 1080px) {
  .lr-hero-inner { grid-template-columns: 1fr; }
  .lr-dashboard, .lr-mock { max-width: 760px; }
  .lr-tools-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lr-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .lr-wrap { width: min(100% - 32px, 720px); }
  .lr-nav-inner { min-height: 64px; }
  .lr-menu-btn { display: inline-flex; align-items: center; justify-content: center; order: 3; }
  .lr-nav-links { position: absolute; top: 64px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--lr-border); border-radius: 10px; background: #0b1020; padding: 10px; box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28); }
  .lr-nav-links.open { display: flex; }
  .lr-nav-links a { border-radius: 8px; padding: 12px; }
  .lr-nav-links a::after { display: none; }
  .lr-nav-links a:hover { background: var(--lr-surface); }
  .lr-nav-actions { margin-left: auto; }
  .lr-signin { display: none; }
  .lr-nav-dropdown { width: 100%; }
  .lr-dropdown-trigger { width: 100%; justify-content: space-between; padding: 12px; border-radius: 8px; font-size: 14px; }
  .lr-dropdown-panel { position: static; display: none; min-width: 0; margin: 2px 0 4px; padding: 2px 4px 6px 10px; border: none; background: transparent; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .lr-dropdown-panel::before { display: none; }
  .lr-nav-dropdown.open .lr-dropdown-panel { display: grid; transform: none; }
  .lr-dropdown-panel a { white-space: normal; }
  .lr-hero { padding: 58px 0 46px; }
  .lr-section-head { display: block; }
  .lr-section-head p { margin-top: 14px; }
  .lr-stats, .lr-pain-grid, .lr-feature-grid { grid-template-columns: 1fr; }
  .lr-stat { border-right: 0; border-bottom: 1px solid var(--lr-border); }
  .lr-stat:last-child { border-bottom: 0; }
  .lr-feature-card { min-height: auto; }
  .lr-faq-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 620px) {
  .lr-wrap { width: min(100% - 28px, 560px); }
  .lr-logo { font-size: 16px; }
  .lr-nav-actions .lr-btn { min-height: 38px; padding: 9px 12px; font-size: 13px; }
  .lr-hero h1 { font-size: 38px; }
  .lr-hero-break { display: block; }
  .lr-hero-actions .lr-btn { width: 100%; }
  .lr-tools-grid, .lr-price-grid { grid-template-columns: 1fr; }
  .lr-section { padding: 58px 0; }
  .lr-plan { min-height: auto; }
  .lr-price-note { align-items: stretch; flex-direction: column; text-align: left; }
  .lr-price-note span:not(:last-child)::after { display: none; }
  .lr-cta { padding: 58px 0; }
  .lr-cta-box { padding: 40px 18px; }
}

@keyframes lrTitleIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lrHighlightPulse { 0%, 100% { filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.22)); } 50% { filter: drop-shadow(0 0 28px rgba(79, 172, 254, 0.42)); } }
@keyframes route-loading-spin { to { transform: rotate(360deg); } }

/* 4-up feature/step grid — "How it works" has 4 steps; keep one even row (no empty cell) */
.lr-feature-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lr-feature-grid--4 .lr-feature-card { min-height: auto; }
@media (max-width: 1080px) { .lr-feature-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .lr-feature-grid--4 { grid-template-columns: 1fr; } }
