@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --lp-primary: #4361EE;
  --lp-primary-light: #7B9BFF;
  --lp-primary-dark: #3347CC;
  --lp-bg: #FFFFFF;
  --lp-bg-alt: #F8F9FA;
  --lp-bg-dark: #0F172A;
  --lp-text: #111111;
  --lp-text-secondary: #6B7280;
  --lp-text-muted: #9CA3AF;
  --lp-border: #E5E7EB;
  --lp-shadow-sm: 0 1px 3px rgba(0,0,0,.04);
  --lp-shadow-md: 0 4px 24px rgba(0,0,0,.06);
  --lp-shadow-lg: 0 8px 48px rgba(0,0,0,.08);
  --lp-radius: 16px;
  --lp-radius-sm: 10px;
  --lp-font: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--lp-font);
  background: var(--lp-bg);
  color: var(--lp-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.lp-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Top Bar ──────────────────────────── */
.lp-topbar {
  background: var(--lp-text);
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
}

.lp-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-topbar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-topbar-left span {
  opacity: .75;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-topbar-right {
  display: flex;
  gap: 14px;
}

.lp-topbar-right a {
  opacity: .65;
  transition: opacity .2s;
  font-size: 14px;
}

.lp-topbar-right a:hover { opacity: 1; }

/* ── Nav ──────────────────────────────── */
.lp-nav {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--lp-border);
}

.lp-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--lp-text);
  letter-spacing: -.5px;
}

.lp-logo span { color: var(--lp-primary); }

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

.lp-nav-links a {
  color: var(--lp-text-secondary);
  font-weight: 500;
  font-size: 14px;
  transition: color .2s;
}

.lp-nav-links a:hover { color: var(--lp-primary); }

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: var(--lp-primary);
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--lp-font);
  border: none;
  cursor: pointer;
  transition: all .25s;
}

.lp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67,97,238,.3);
}

.lp-btn-outline {
  background: transparent;
  border: 2px solid var(--lp-primary);
  color: var(--lp-primary);
}

.lp-btn-outline:hover {
  background: var(--lp-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(67,97,238,.2);
}

.lp-btn-ghost {
  background: transparent;
  color: var(--lp-text-secondary);
  padding: 12px 20px;
}

.lp-btn-ghost:hover {
  color: var(--lp-primary);
  transform: none;
  box-shadow: none;
}

/* ── Hero ─────────────────────────────── */
.lp-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(67,97,238,.04) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.lp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EEF1FD;
  color: var(--lp-primary);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 13px;
}

.lp-hero h1 {
  font-size: 58px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--lp-text);
}

.lp-hero p {
  color: var(--lp-text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.lp-hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero candidate grid */
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}

.lp-candidate-card {
  position: relative;
  border-radius: var(--lp-radius);
  overflow: hidden;
  height: 220px;
  background: var(--lp-bg-alt);
  transition: all .35s;
  cursor: pointer;
}

.lp-candidate-card:hover {
  transform: scale(1.02);
  box-shadow: var(--lp-shadow-lg);
}

.lp-candidate-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.lp-candidate-card:hover img {
  transform: scale(1.05);
}

.lp-candidate-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
}

.lp-candidate-label .name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.2px;
}

.lp-candidate-label .party {
  font-size: 11px;
  opacity: .75;
}

.lp-hero-badge {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 80px;
  height: 80px;
  background: var(--lp-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 24px rgba(67,97,238,.35);
  line-height: 1.1;
  font-size: 18px;
}

.lp-hero-badge small {
  font-size: 9px;
  font-weight: 500;
  opacity: .85;
}

/* ── Marquee / Sources Bar ────────────── */
.lp-sources {
  background: var(--lp-bg-alt);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-sources-track {
  display: flex;
  gap: 60px;
  animation: lp-scroll 30s linear infinite;
  white-space: nowrap;
}

.lp-sources-track span {
  color: var(--lp-text-muted);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-sources-track span::before {
  content: '◆';
  color: var(--lp-primary);
  font-size: 6px;
  opacity: .5;
}

@keyframes lp-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section common ───────────────────── */
.lp-section {
  padding: 90px 0;
}

.lp-section-alt {
  background: var(--lp-bg-alt);
}

.lp-section-dark {
  background: var(--lp-bg-dark);
  color: #fff;
}

.lp-section-tag {
  display: inline-block;
  color: var(--lp-primary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.lp-section-title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.lp-section-dark .lp-section-title { color: #fff; }

.lp-section-sub {
  color: var(--lp-text-secondary);
  font-size: 17px;
  max-width: 600px;
  line-height: 1.7;
}

.lp-section-dark .lp-section-sub { color: #94A3B8; }

/* ── About ────────────────────────────── */
.lp-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-about-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-about-images img {
  border-radius: var(--lp-radius);
  height: 240px;
  object-fit: cover;
  box-shadow: var(--lp-shadow-md);
}

.lp-about-text p {
  color: var(--lp-text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.lp-progress-item {
  margin-bottom: 22px;
}

.lp-progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

.lp-progress-bar {
  width: 100%;
  height: 6px;
  background: #E5E7EB;
  border-radius: 50px;
  overflow: hidden;
}

.lp-progress-fill {
  height: 100%;
  background: var(--lp-primary);
  border-radius: 50px;
  transition: width 1s ease;
}

/* ── Stats ────────────────────────────── */
.lp-stats {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lp-stat-box {
  background: var(--lp-bg);
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--lp-shadow-sm);
  border: 1px solid var(--lp-border);
  transition: all .25s;
}

.lp-stat-box:hover {
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-2px);
}

.lp-stat-box h3 {
  font-size: 42px;
  color: var(--lp-primary);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.lp-stat-box p {
  color: var(--lp-text-secondary);
  font-size: 14px;
  font-weight: 500;
}

/* ── Live News Feed ───────────────────── */
.lp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-news-card {
  background: var(--lp-bg);
  border-radius: var(--lp-radius);
  padding: 24px;
  box-shadow: var(--lp-shadow-sm);
  border: 1px solid var(--lp-border);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}

.lp-news-card:hover {
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-2px);
}

.lp-news-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 20px;
  background: #EEF1FD;
  color: var(--lp-primary);
  margin-bottom: 12px;
  align-self: flex-start;
}

.lp-news-content {
  font-size: 14px;
  color: var(--lp-text);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.lp-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--lp-text-muted);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--lp-border);
}

.lp-sentiment-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.lp-sentiment-positive { background: #22C55E; }
.lp-sentiment-negative { background: #EF4444; }
.lp-sentiment-neutral { background: #9CA3AF; }

.lp-news-link {
  color: var(--lp-primary);
  font-weight: 600;
  font-size: 12px;
}

.lp-news-link:hover { text-decoration: underline; }

.lp-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--lp-text-muted);
  font-size: 15px;
}

.lp-empty-icon { font-size: 40px; margin-bottom: 12px; }

/* ── Features ─────────────────────────── */
.lp-features-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  transition: all .3s;
}

.lp-feature-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(67,97,238,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.lp-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.lp-feature-card p {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.7;
}

/* ── Reports ──────────────────────────── */
.lp-reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-report-card {
  background: var(--lp-bg);
  border-radius: var(--lp-radius);
  padding: 24px;
  box-shadow: var(--lp-shadow-sm);
  border: 1px solid var(--lp-border);
  transition: all .25s;
}

.lp-report-card:hover {
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-2px);
}

.lp-report-type {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 20px;
  background: #EEF1FD;
  color: var(--lp-primary);
  margin-bottom: 10px;
}

.lp-report-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.lp-report-date {
  font-size: 12px;
  color: var(--lp-text-muted);
  margin-bottom: 4px;
}

.lp-report-candidate {
  font-size: 12px;
  color: var(--lp-text-secondary);
  margin-bottom: 16px;
}

.lp-report-actions {
  display: flex;
  gap: 10px;
}

.lp-report-actions a {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  transition: all .2s;
}

.lp-report-view {
  background: var(--lp-primary);
  color: #fff;
}

.lp-report-view:hover {
  box-shadow: 0 4px 16px rgba(67,97,238,.3);
}

.lp-report-dl {
  background: var(--lp-bg-alt);
  color: var(--lp-text-secondary);
  border: 1px solid var(--lp-border);
}

.lp-report-dl:hover {
  border-color: var(--lp-primary);
  color: var(--lp-primary);
}

/* ── Testimonials ─────────────────────── */
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-testimonial-card {
  background: var(--lp-bg);
  border-radius: var(--lp-radius);
  padding: 36px 28px;
  box-shadow: var(--lp-shadow-sm);
  border: 1px solid var(--lp-border);
  text-align: center;
  transition: all .25s;
}

.lp-testimonial-card:hover {
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-2px);
}

.lp-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  background: var(--lp-bg-alt);
}

.lp-testimonial-quote {
  font-size: 15px;
  color: var(--lp-text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.lp-testimonial-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

.lp-testimonial-role {
  font-size: 12px;
  color: var(--lp-text-muted);
}

/* ── About Company ────────────────────── */
.lp-company-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-company-info p {
  color: var(--lp-text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.lp-company-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-company-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--lp-text-secondary);
}

.lp-company-contact-item strong {
  color: var(--lp-text);
  min-width: 80px;
}

.lp-company-image img {
  border-radius: var(--lp-radius);
  height: 320px;
  object-fit: cover;
  box-shadow: var(--lp-shadow-md);
  width: 100%;
}

/* ── Footer ───────────────────────────── */
.lp-footer {
  background: var(--lp-text);
  color: #fff;
  padding: 48px 0 32px;
}

.lp-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.lp-footer-brand .lp-logo {
  color: #fff;
  margin-bottom: 12px;
  display: inline-block;
}

.lp-footer-brand p {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.7;
}

.lp-footer h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
  color: #fff;
}

.lp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer-links a {
  color: #94A3B8;
  font-size: 14px;
  transition: color .2s;
}

.lp-footer-links a:hover { color: #fff; }

.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #64748B;
}

.lp-footer-bottom img {
  height: 20px;
  opacity: .5;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* ── Scroll reveal ────────────────────── */
.lp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease;
}

.lp-reveal.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────── */
@media (max-width: 1024px) {
  .lp-hero h1 { font-size: 48px; }
  .lp-section-title { font-size: 36px; }
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-news-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-reports-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .lp-hero-inner,
  .lp-about-inner,
  .lp-company-inner {
    grid-template-columns: 1fr;
  }
  .lp-hero-inner { gap: 40px; }
  .lp-hero h1 { font-size: 42px; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-testimonials { grid-template-columns: 1fr; }
  .lp-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lp-nav-links { display: none; }
  .lp-hero h1 { font-size: 36px; }
  .lp-section { padding: 60px 0; }
  .lp-section-title { font-size: 30px; }
  .lp-hero-grid { grid-template-columns: 1fr 1fr; }
  .lp-candidate-card { height: 180px; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-news-grid { grid-template-columns: 1fr; }
  .lp-reports-grid { grid-template-columns: 1fr; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-stat-box h3 { font-size: 32px; }
  .lp-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .lp-topbar-inner { flex-direction: column; gap: 4px; }
  .lp-topbar-left { justify-content: center; gap: 16px; font-size: 12px; }
}

@media (max-width: 480px) {
  .lp-hero h1 { font-size: 30px; }
  .lp-section-title { font-size: 26px; }
  .lp-hero-grid { gap: 10px; }
  .lp-candidate-card { height: 150px; }
  .lp-stats { grid-template-columns: 1fr; }
  .lp-stat-box h3 { font-size: 28px; }
  .lp-hero-badge { width: 60px; height: 60px; font-size: 14px; right: -5px; bottom: -5px; }
}
