/* ═══════════════════════════════════════════════════════════
   WorkPilot™ — New Landing Page Styles
   Modern, light, conversion-focused design
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-500: #3b82f6;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-50: #ecfdf5;
  --amber-500: #f59e0b;
  --amber-50: #fffbeb;
  --red-500: #ef4444;
  --red-50: #fef2f2;
  --purple-500: #8b5cf6;
  --purple-50: #f5f3ff;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --max-w: 1280px;
  --transition: 0.2s ease;
  --Primary-Colors-Primary-50: #eff4ff;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--slate-700);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.ln-nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1320px, calc(100vw - 48px));
  max-width: 1320px;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.ln-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ln-nav-inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ln-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ln-logo-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.ln-logo-icon svg {
  width: 26px;
  height: 23px;
  display: block;
}

.ln-logo-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-600);
  letter-spacing: -0.02em;
}

.ln-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ln-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  transition: color var(--transition);
}

.ln-nav-links a:hover {
  color: var(--slate-900);
}

.ln-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--blue-600);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.ln-nav-cta:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  color: var(--white) !important;
}

/* Mobile menu button */
.ln-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.ln-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.ln-hero {
  position: relative;
  padding: 152px 24px 120px;
  text-align: center;
  background-color: var(--blue-50);
  background-image:
    linear-gradient(180deg, rgba(239, 246, 255, 0.9) 0%, rgba(255, 255, 255, 0.93) 100%),
    url(../img/main_bg.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.ln-hero-badge {
  font-family: var(--font-sans);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--Primary-Colors-Primary-50, #eff4ff);
  border-radius: var(--radius-full);
  color: var(--slate-900);
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease forwards;
}

.ln-hero-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ln-hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--slate-600);
  border-radius: 50%;
  flex-shrink: 0;
}

.ln-hero h1 {
  font-family: 'Instrument Sans', var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.125rem, 5vw + 1rem, 5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--slate-900);
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  animation: fadeUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.ln-hero h1 .accent {
  color: var(--blue-600);
}

.ln-hero-sub {
  font-size: clamp(15px, 1.6vw + 0.65rem, 17px);
  line-height: 1.7;
  color: var(--slate-500);
  margin: 0 auto 40px;
  max-width: 42rem;
  padding: 0 4px;
  animation: fadeUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.ln-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.ln-hero-ctas .btn-primary.btn-primary-lg,
.ln-hero-ctas .btn-secondary {
  font-family: 'Instrument Sans', var(--font-sans);
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0 36px;
  border-radius: 12px;
}

.ln-hero-ctas .btn-primary.btn-primary-lg {
  border: 1.5px solid transparent;
  padding: 0 36px;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.ln-hero-ctas .btn-secondary {
  border-width: 1.5px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--blue-600);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-primary-lg {
  padding: 18px 44px;
  font-size: 17px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary-lg:hover {
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-primary svg {
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--slate-900);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.ln-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--slate-400);
  animation: fadeUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.ln-hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ln-hero-trust .sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--slate-300);
}

/* Hero Preview (app screenshot) */
.ln-hero-preview {
  margin: 64px auto 0;
  max-width: 1320px;
  position: relative;
  animation: fadeUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.ln-hero-preview-frame {
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
  border-image-source: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 68.59%);
  border-image-slice: 1;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.ln-hero-preview-frame-inner {
  background: #eef3ff;
  padding: 16px;
  padding-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.ln-hero-preview-frame-inner img {
  display: block;
  width: 100%;
  height: auto;
}

.ln-hero-preview .preview-glow {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: min(110%, 920px);
  height: 140px;
  background: radial-gradient(ellipse 100% 80% at 50% 0%,
      rgba(96, 165, 250, 0.45) 0%,
      rgba(59, 130, 246, 0.22) 35%,
      rgba(37, 99, 235, 0.08) 55%,
      transparent 72%);
  filter: blur(36px);
  pointer-events: none;
}

/* ══════════════════════════════════════
   INTELLIGENCE BRIEF SCANNER
   ══════════════════════════════════════ */
.ln-how-it-works-scanner-container {
  margin: 40px 0 25px 0;
}
.ln-scanner {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.ln-scanner-form {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: 14px;
  padding: 5px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.ln-scanner-form:focus-within {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 8px 32px rgba(59, 130, 246, 0.08);
}

.ln-scanner-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--slate-900);
  font-size: 15px;
  font-family: inherit;
}

.ln-scanner-form input::placeholder {
  color: var(--slate-400);
}

.ln-scanner-form button {
  padding: 14px 28px;
  border-radius: 10px;
  background: #292929;
  color: white;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  letter-spacing: -0.2px;
}

.ln-scanner-form button:hover {
  background: var(--blue-700);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.ln-scanner-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.ln-scanner-hint {
  text-align: center;
  font-size: 13px;
  color: var(--slate-400);
  margin-top: 10px;
}

.ln-scanner-error {
  text-align: center;
  margin-top: 8px;
  font-size: 13px;
  color: #ef4444;
  font-weight: 600;
  min-height: 20px;
}

/* ── Pipeline ── */
.ln-ib-pipeline {
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

.ln-ib-pipeline .ib-stages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.ln-ib-pipeline .ib-stage {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  opacity: 0.4;
  transition: all 0.4s ease;
}

.ln-ib-pipeline .ib-stage.active {
  opacity: 1;
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.04);
  animation: ibPulseLight 2s ease-in-out infinite;
}

.ln-ib-pipeline .ib-stage.done {
  opacity: 0.85;
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.04);
}

@keyframes ibPulseLight {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }

  50% {
    box-shadow: 0 0 16px 0 rgba(59, 130, 246, 0.08);
  }
}

.ln-ib-pipeline .ib-stage-icon {
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  color: var(--slate-400);
}

.ln-ib-pipeline .ib-stage.active .ib-stage-icon {
  color: var(--blue-600);
}

.ln-ib-pipeline .ib-stage.done .ib-stage-icon {
  color: var(--emerald-500);
}

.ln-ib-pipeline .ib-stage-body {
  flex: 1;
  min-width: 0;
}

.ln-ib-pipeline .ib-stage-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 2px;
}

.ln-ib-pipeline .ib-stage-status {
  font-size: 12px;
  color: var(--slate-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ln-ib-pipeline .ib-stage.active .ib-stage-status {
  color: var(--blue-600);
}

.ln-ib-pipeline .ib-stage.done .ib-stage-status {
  color: var(--emerald-600);
}

.ln-ib-pipeline .ib-stage-check {
  font-size: 16px;
  color: var(--slate-300);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.ln-ib-pipeline .ib-stage.done .ib-stage-check {
  color: var(--emerald-500);
}

.ln-ib-pipeline .ib-live-detail {
  background: rgba(59, 130, 246, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  min-height: 44px;
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.6;
  max-height: 120px;
  overflow-y: auto;
}

.ln-ib-pipeline .ib-live-detail strong {
  color: var(--slate-800);
}

/* ── Result ── */
.ln-ib-result {
  max-width: 640px;
  margin: 24px auto 0;
  width: 100%;
  animation: fadeUp 0.6s ease;
}

.ln-ib-result .ib-result-header {
  text-align: center;
  margin-bottom: 28px;
}

.ln-ib-result .ib-result-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-600);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ln-ib-result .ib-result-company {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--slate-900);
  margin: 0 0 4px;
}

.ln-ib-result .ib-result-industry {
  font-size: 14px;
  color: var(--blue-600);
  margin: 0;
}

.ln-ib-result .ib-result-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  margin-bottom: 24px;
  align-items: start;
}

.ln-ib-result .ib-score-card {
  text-align: center;
  padding: 20px 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  position: relative;
}

.ln-ib-result .ib-score-ring {
  width: 100px;
  height: 100px;
  margin: 0 auto 8px;
  display: block;
}

.ln-ib-result .ib-score-arc {
  transition: stroke-dashoffset 1.5s ease;
}

.ln-ib-result .ib-score-num {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  font-weight: 800;
  color: var(--slate-900);
}

.ln-ib-result .ib-score-label {
  font-size: 11px;
  color: var(--slate-400);
  font-weight: 600;
}

.ln-ib-result .ib-signal-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ln-ib-result .ib-signal {
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  transition: border-color 0.2s;
}

.ln-ib-result .ib-signal:hover {
  border-color: rgba(59, 130, 246, 0.25);
}

.ln-ib-result .ib-signal-type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.ln-ib-result .ib-signal-type.market {
  color: var(--amber-500);
}

.ln-ib-result .ib-signal-type.opportunity {
  color: var(--emerald-600);
}

.ln-ib-result .ib-signal-type.threat {
  color: #ef4444;
}

.ln-ib-result .ib-signal-headline {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
  line-height: 1.4;
}

.ln-ib-result .ib-signal-detail {
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.55;
}

.ln-ib-result .ib-signal-blurred {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}

.ln-ib-result .ib-headline {
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(59, 130, 246, 0.02));
  border: 1px solid var(--slate-200);
  text-align: center;
}

.ln-ib-result .ib-headline-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  margin-bottom: 6px;
}

.ln-ib-result .ib-headline-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-900);
  line-height: 1.5;
  margin: 0;
}

.ln-ib-result .ib-sent {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 24px;
}

.ln-ib-result .ib-sent-icon {
  flex-shrink: 0;
}

.ln-ib-result .ib-sent-text strong {
  font-size: 14px;
  color: var(--slate-900);
  display: block;
  margin-bottom: 4px;
}

.ln-ib-result .ib-sent-text p {
  font-size: 12px;
  color: var(--slate-500);
  margin: 0;
  line-height: 1.5;
}

.ln-ib-result .ib-download-btn {
  padding: 12px 24px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--blue-600);
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.ln-ib-result .ib-download-btn:hover {
  background: var(--blue-700);
}

.ln-ib-result .ib-inline-gate {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(59, 130, 246, 0.01));
  border: 1px solid var(--slate-200);
  margin-bottom: 24px;
}

.ln-ib-result .ib-inline-gate-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.ln-ib-result .ib-inline-gate-body {
  flex: 1;
}

.ln-ib-result .ib-inline-gate-body strong {
  color: var(--slate-900);
  font-size: 15px;
  display: block;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ln-ib-result .ib-inline-gate-field {
  display: flex;
  gap: 0;
  border: 2px solid var(--slate-200);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  max-width: 460px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ln-ib-result .ib-inline-gate-field:focus-within {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.ln-ib-result .ib-inline-gate-field .ib-email {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: var(--slate-900);
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.ln-ib-result .ib-inline-gate-field .ib-email::placeholder {
  color: var(--slate-400);
}

.ln-ib-result .ib-inline-gate-field .ib-go {
  padding: 12px 20px;
  background: var(--blue-600);
  color: white;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.ln-ib-result .ib-inline-gate-field .ib-go:hover {
  background: var(--blue-700);
}

.ln-ib-result .ib-gate-hint {
  font-size: 12px;
  color: var(--slate-400);
  margin-top: 8px;
}

.ln-ib-result .ib-result-cta {
  text-align: center;
  padding-top: 8px;
}

.ln-ib-result .ib-result-cta .btn-ghost {
  padding: 12px 24px;
  border-radius: 8px;
  background: transparent;
  color: var(--slate-500);
  border: 1px solid var(--slate-200);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.ln-ib-result .ib-result-cta .btn-ghost:hover {
  color: var(--slate-900);
  border-color: var(--blue-500);
}

/* ══════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════ */
.ln-stats {
  padding: clamp(32px, 5vw, 48px) clamp(16px, 3vw, 24px);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  background: var(--white);
}

.ln-stats-text {
  font-family: Instrument Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(1.125rem, 1.5vw + 0.65rem, 1.5rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
  text-align: center;
  padding: 0 8px;
}

.ln-stats-inner {
  max-width: var(--max-w);
  padding: clamp(24px, 4vw, 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px);
}

.ln-stat-item:not(:last-child) {
  border-right: 1px solid var(--slate-200);
}

.ln-stat-num {
  font-family: 'Instrument Sans', var(--font-sans), sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw + 1.5rem, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--slate-900);
}

.ln-stat-label {
  font-size: 14px;
  color: var(--slate-500);
  margin-top: 4px;
  font-weight: 500;
}

/* ══════════════════════════════════════
   SECTIONS — SHARED
   ══════════════════════════════════════ */
.ln-section {
  padding: 96px 24px;
}

.ln-section.alt-bg {
  background: var(--slate-50);
}

.ln-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid var(--Primary-Colors-Primary-50, #eff4ff);
  border-radius: var(--radius-full);
  color: var(--slate-900);
  padding: 8px 20px;
}

.ln-section-title {
  font-family: Instrument Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(1.75rem, 2.5vw + 1rem, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.ln-section-desc {
  font-size: 17px;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 640px;
}

.ln-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.ln-section-header-left {
  flex: 1;
  min-width: 280px;
}

.ln-section-header-right {
  flex: 0 1 470px;
}

.ln-section-header-right-600px {
  flex: 0 1 600px;
}

.ln-section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ln-section-header.centered .ln-section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
   FEATURES — What You Get
   ══════════════════════════════════════ */
.ln-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Second and third cards (Golden Opportunities, Strategic Score) span wider columns */
.ln-features-grid .ln-feature-card:nth-child(1),
.ln-features-grid .ln-feature-card:nth-child(4) {
  grid-column: span 2;
}

.ln-features-grid .ln-feature-card:nth-child(2),
.ln-features-grid .ln-feature-card:nth-child(3) {
  grid-column: span 3;
}

.ln-feature-card {
  padding: 32px;
  background: #F9FAFB;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.ln-feature-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.ln-feature-content {
  display: flex;
  gap: 5px;
  align-items: start;
  margin-bottom: 40px;
}

.ln-feature-icon {
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 5px;
  overflow: hidden;
  flex-shrink: 0;
}

.ln-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ln-feature-icon.compose {
  background: var(--amber-50);
}

.ln-feature-icon.guardian {
  background: var(--red-50);
}

.ln-feature-card h3 {
  font-weight: 500;
  font-size: clamp(1.375rem, 1.5vw + 0.85rem, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.ln-feature-card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--slate-500);
}

.ln-feature-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 8px;
}

.ln-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature card sample data visualization */
.ln-feature-chart {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

/* Opportunity visual */
.ln-opp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

.ln-opp-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  background: var(--emerald-50);
  color: var(--emerald-500);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Threat items */
.ln-threat-items {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

.ln-threat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--slate-600);
}

.ln-threat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ln-threat-dot.red {
  background: var(--red-500);
}

.ln-threat-dot.amber {
  background: var(--amber-500);
}

/* Score ring */
.ln-score-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

.ln-score-ring-wrap {
  position: relative;
  width: 90px;
  height: 90px;
}

.ln-score-ring-wrap svg {
  width: 100%;
  height: 100%;
}

.ln-score-ring-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 800;
  color: var(--slate-900);
}

.ln-score-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ln-score-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--slate-500);
}

.ln-score-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ══════════════════════════════════════
   HOW IT WORKS (Steps)
   ══════════════════════════════════════ */
.ln-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 20px;
}

.ln-step-card {
  background: #3B76F6;
  color: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
}

.ln-step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.ln-step-num {
  font-weight: 400;
  font-size: clamp(2.75rem, 8vw + 1rem, 4.625rem);
  line-height: 1.05;
  letter-spacing: 0;
  opacity: 0.3;
  margin-bottom: clamp(1.25rem, 3vw, 3rem);
}

.ln-step-card h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(1.25rem, 1.2vw + 0.9rem, 2rem);
  line-height: 1.35;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.ln-step-card p {
  font-weight: 400;
  font-style: Regular;
  font-size: clamp(1rem, 0.6vw + 0.85rem, 1.125rem);
  line-height: 1.45;
  letter-spacing: 0;
}

/* ══════════════════════════════════════
   AI TOOLS SUITE
   ══════════════════════════════════════ */
.ln-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ln-tool-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ln-tool-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

a.ln-tool-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.ln-tool-card:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

.ln-tool-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ln-tool-icon {
  border-radius: var(--radius-md);
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #EFF4FF;
}

.ln-tool-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ln-tool-badge.live {
  background: #F0FDF4;
  color: #00A63E;
  border: 1px solid #00A63E;
}

.ln-tool-badge.live::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00A63E;
  animation: pulse-dot 2s infinite;
}

.ln-tool-card h3 {
  font-family: Instrument Sans;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
}

.ln-tool-card p {
  color: var(--slate-500);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

/* ══════════════════════════════════════
   WHY WORKPILOT (Feature Strip)
   ══════════════════════════════════════ */
.ln-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ln-why-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid #e5e7eb;
  transition: border-color var(--transition);
}

.ln-why-card:hover {
  border-color: var(--slate-300);
}

.ln-why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: #3B76F6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
}

.ln-why-icon svg {
  display: block;
}

.ln-why-card h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -1.5%;
  margin-bottom: 0.5rem;
}

.ln-why-card p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════ */
.ln-cta-section {
  padding: 96px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
}

.ln-cta-headline {
  font-weight: 500;
  font-size: clamp(1.75rem, 2.5vw + 1rem, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 16px;
  overflow-wrap: break-word;
}

.ln-cta-headline-line {
  display: block;
}

.ln-cta-desc {
  color: var(--slate-500);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw + 0.75rem, 16px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 36rem;
  padding: 0 4px;
}

.ln-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13px;
  color: var(--slate-400);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.ln-footer {
  padding: 48px 24px 32px;
  border-top: 1px solid var(--slate-200);
  background: var(--white);
}

.ln-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.ln-footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--slate-200);
}

.ln-footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: min(100%, 280px);
}

.ln-footer-logo {
  margin-bottom: 0;
}

.ln-footer-tagline {
  margin: 0;
  max-width: 320px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--slate-500);
}

.ln-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ln-footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--slate-900);
  color: var(--white);
  transition: background var(--transition), transform 0.15s ease;
}

.ln-footer-social-btn:hover {
  background: var(--slate-700);
  color: var(--white);
}

.ln-footer-social-btn:active {
  transform: scale(0.97);
}

.ln-footer-social-w {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ln-footer-contact-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
  margin-left: auto;
}

.ln-footer-contact-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--slate-800);
  text-align: right;
  transition: color var(--transition);
}

.ln-footer-contact-line:hover {
  color: var(--blue-600);
}

.ln-footer-contact-line:hover .ln-footer-external {
  color: var(--blue-600);
}

.ln-footer-external {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--slate-400);
  transition: color var(--transition);
}

.ln-footer-contact-address {
  align-items: flex-start;
}

.ln-footer-address-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.45;
}

.ln-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 12px;
  color: var(--slate-400);
}

.ln-footer-bottom>p {
  margin: 0;
}

.ln-footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.ln-footer-legal a {
  font-size: 12px;
  font-weight: 400;
  color: var(--slate-400);
  transition: color var(--transition);
}

.ln-footer-legal a:hover {
  color: var(--blue-600);
}

.ln-footer-bottom a {
  color: var(--slate-500);
  transition: color var(--transition);
}

.ln-footer-bottom a:hover {
  color: var(--blue-600);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .container {
    padding-left: clamp(16px, 3vw, 24px);
    padding-right: clamp(16px, 3vw, 24px);
  }

  .ln-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ln-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ln-features-grid {
    grid-template-columns: 1fr;
  }

  .ln-features-grid .ln-feature-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .ln-feature-card {
    padding: clamp(20px, 3vw, 32px);
  }

  .ln-section {
    padding: clamp(64px, 8vw, 96px) clamp(16px, 3vw, 24px);
  }
}

@media (max-width: 768px) {
  .ln-nav {
    top: 8px;
    width: min(1320px, calc(100vw - 32px));
    padding: 0 16px;
    height: 64px;
  }

  .ln-logo-title {
    font-size: 18px;
  }

  .ln-nav-links {
    display: none !important;
  }

  .ln-menu-btn {
    display: flex !important;
  }

  /* Mobile nav open state */
  .ln-nav.nav-open .ln-nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    padding: 16px 24px 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.2s ease;
  }

  .ln-nav.nav-open .ln-nav-links a {
    padding: 10px 0;
    font-size: 16px;
  }

  .ln-nav.nav-open .ln-nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .ln-nav.nav-open .ln-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .ln-nav.nav-open .ln-menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .ln-nav.nav-open .ln-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .ln-hero {
    padding: 132px 20px 80px;
  }

  .ln-hero h1 {
    font-size: clamp(1.75rem, 7vw + 0.5rem, 3.5rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .ln-hero-sub {
    font-size: 16px;
  }

  .ln-tool-badge {
    top: 14px;
    right: 14px;
  }

  .ln-tool-icon {
    height: min(200px, 42vw);
  }

  .ln-scanner-form {
    flex-direction: column;
    padding: 8px;
  }

  .ln-scanner-form button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
  }

  .ln-ib-pipeline .ib-stage {
    padding: 10px 14px;
    gap: 10px;
  }

  .ln-ib-pipeline .ib-stage-name {
    font-size: 13px;
  }

  .ln-ib-pipeline .ib-stage-status {
    white-space: normal;
  }

  .ln-ib-result .ib-result-grid {
    grid-template-columns: 1fr;
  }

  .ln-ib-result .ib-score-card {
    max-width: 200px;
    margin: 0 auto;
  }

  .ln-ib-result .ib-sent {
    flex-direction: column;
    text-align: center;
  }

  .ln-ib-result .ib-inline-gate {
    flex-direction: column;
    padding: 20px 16px;
  }

  .ln-ib-result .ib-inline-gate-field {
    flex-direction: column;
    max-width: 100%;
  }

  .ln-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 28px 16px;
  }

  .ln-stat-item:not(:last-child) {
    border-right: none;
  }

  .ln-stat-item:nth-child(odd) {
    border-right: 1px solid var(--slate-200);
  }

  .ln-stat-num {
    font-size: clamp(2rem, 5.5vw, 3rem);
    line-height: 1.12;
  }

  .ln-section {
    padding: 64px 20px;
  }

  .ln-section-header {
    gap: 24px;
  }

  .ln-features-grid {
    grid-template-columns: 1fr;
  }

  .ln-features-grid .ln-feature-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .ln-steps-grid {
    grid-template-columns: 1fr;
  }

  .ln-step-card {
    padding: 20px;
  }

  .ln-steps-grid::before {
    display: none;
  }

  .ln-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ln-why-grid {
    grid-template-columns: 1fr;
  }

  .ln-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .ln-hero-ctas .btn-primary,
  .ln-hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .btn-primary-lg {
    padding: 16px 36px;
    font-size: 16px;
  }

  .ln-app-mock-split {
    grid-template-columns: 1fr;
  }

  .ln-mock-inbox {
    border-right: none;
    border-bottom: 1px solid var(--slate-200);
  }

  .ln-mock-inbox .ln-mock-email-row:nth-child(n+4) {
    display: none;
  }

  .ln-mock-reading {
    display: none;
  }

  .ln-hero-preview {
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }

  .ln-footer-main {
    flex-direction: column;
    align-items: stretch;
  }

  .ln-footer-contact-col {
    align-items: flex-start;
    margin-left: 0;
    text-align: left;
  }

  .ln-footer-contact-line {
    text-align: left;
  }

  .ln-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .ln-footer-legal {
    margin-left: 0;
  }

  .ln-cta-section {
    padding: 64px 20px;
  }
}

@media (max-width: 480px) {
  .ln-hero {
    padding: 122px 16px 72px;
  }

  .ln-hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .ln-hero-trust .sep {
    display: none;
  }

  .ln-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px 12px;
  }

  .ln-stat-num {
    font-size: clamp(1.75rem, 6vw, 2rem);
    line-height: 1.15;
  }

  .ln-hero-badge {
    font-size: 14px;
    padding: 8px 14px;
    gap: 6px;
  }

  .ln-nav {
    width: min(1320px, calc(100vw - 24px));
  }

  .ln-why-card {
    padding: 1.25rem;
  }

  .ln-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ln-tools-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   FEATURE BAR CHART (Market Signals)
   ══════════════════════════════════════ */
.ln-feature-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ln-feature-bar-row:last-child {
  margin-bottom: 0;
}

.ln-feature-bar-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-500);
  min-width: 80px;
}

.ln-feature-bar-track {
  flex: 1;
  height: 6px;
  background: var(--slate-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.ln-feature-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.ln-feature-bar-fill.blue {
  background: var(--blue-500);
}

.ln-feature-bar-fill.amber {
  background: var(--amber-500);
}

.ln-feature-bar-fill.green {
  background: var(--emerald-500);
}

/* ══════════════════════════════════════
   OPPORTUNITY TAGS (Golden Opportunities)
   ══════════════════════════════════════ */
.ln-opp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

.ln-opp-tag {
  padding: 5px 12px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--emerald-600);
  white-space: nowrap;
}

/* ══════════════════════════════════════
   THREAT ITEMS
   ══════════════════════════════════════ */
.ln-threat-dot.green {
  background: var(--emerald-500);
}

/* ══════════════════════════════════════
   SCORE LEGEND (enhanced)
   ══════════════════════════════════════ */
.ln-score-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--slate-500);
  width: 100%;
}

.ln-score-legend-item strong {
  margin-left: auto;
  font-size: 13px;
  font-weight: 800;
  color: var(--slate-800);
}

/* ══════════════════════════════════════
   TOOL CARD — Featured & +More
   ══════════════════════════════════════ */
.ln-tool-card.featured {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 1px var(--blue-100), var(--shadow-md);
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 40%);
}

.ln-tool-card.featured h3 {
  color: var(--blue-600);
}

.ln-tool-more {
  background: var(--slate-50);
  border-style: dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ln-tool-more-inner {
  padding: 12px 0;
}

.ln-tool-more-count {
  font-size: 32px;
  font-weight: 900;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: 8px;
}

.ln-tool-more h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.ln-tool-more p {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.5;
  margin-bottom: 12px;
}

.btn-inline {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-600);
  transition: all var(--transition);
}

.btn-inline:hover {
  color: var(--blue-700);
  text-decoration: underline;
}