/* ============================================================
   landing.css — SIWES Logbook Landing Page
   All styles self-contained, zero CDN dependency
   ============================================================ */

/* ── Reset (scoped to landing) ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg, #eef2f8);
  color: var(--text-primary, #0f172a);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Dark mode ───────────────────────────────────────────── */
[data-theme="dark"] body {
  background: #070d1a;
  color: #e8eeff;
}

/* ── Tokens (fallbacks if base.css not loaded) ───────────── */
:root {
  --clr-brand:        #e94560;
  --clr-brand-dark:   #c73652;
  --clr-brand-muted:  rgba(233,69,96,0.1);
  --clr-brand-ring:   rgba(233,69,96,0.25);
  --bg:               #eef2f8;
  --surface:          #ffffff;
  --border:           #d4dce9;
  --text-primary:     #0f172a;
  --text-secondary:   #475569;
  --text-tertiary:    #94a3b8;
  --radius-md:        8px;
  --radius-lg:        12px;
  --radius-xl:        16px;
  --radius-2xl:       24px;
  --radius-full:      9999px;
  --shadow-sm:        0 1px 3px rgba(15,23,42,0.08);
  --shadow-md:        0 4px 16px rgba(15,23,42,0.1);
  --shadow-lg:        0 10px 40px rgba(15,23,42,0.12);
  --shadow-xl:        0 20px 60px rgba(15,23,42,0.15);
  --shadow-brand:     0 4px 20px rgba(233,69,96,0.35);
}

[data-theme="dark"] {
  --bg:             #070d1a;
  --surface:        #111c35;
  --border:         rgba(255,255,255,0.09);
  --text-primary:   #e8eeff;
  --text-secondary: #8fa3c0;
  --text-tertiary:  #4a607c;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:      0 10px 40px rgba(0,0,0,0.5);
  --shadow-xl:      0 20px 60px rgba(0,0,0,0.6);
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
@keyframes prog-grow {
  from { width: 0; }
  to   { width: 73%; }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal].delay-1  { transition-delay: 80ms; }
[data-reveal].delay-2  { transition-delay: 160ms; }
[data-reveal].delay-3  { transition-delay: 240ms; }
[data-reveal].delay-4  { transition-delay: 320ms; }
[data-reveal].delay-5  { transition-delay: 400ms; }

/* ── Gradient text ───────────────────────────────────────── */
.grad-text {
  background: linear-gradient(125deg, #e94560 0%, #f97b5a 55%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glow blob ───────────────────────────────────────────── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.18;
}
[data-theme="dark"] .blob { opacity: 0.12; }

/* ── Dot grid ────────────────────────────────────────────── */
.dot-grid {
  background-image: radial-gradient(circle, #b8c4d6 1px, transparent 1px);
  background-size: 24px 24px;
}
[data-theme="dark"] .dot-grid {
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  background: rgba(238,242,248,0.88);
  border-bottom: 1px solid rgba(212,220,233,0.6);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
[data-theme="dark"] .lp-nav {
  background: rgba(7,13,26,0.88);
  border-bottom-color: rgba(255,255,255,0.05);
}
.lp-nav.scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.06);
}

.lp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 640px) { .lp-nav-inner { padding: 0 20px; } }

/* Logo */
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.lp-logo-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--clr-brand), var(--clr-brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 2px 10px rgba(233,69,96,0.4);
  transition: transform 0.2s ease;
}
.lp-logo:hover .lp-logo-mark { transform: scale(1.06); }
.lp-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.lp-logo-dot { color: var(--clr-brand); }

/* Desktop nav links */
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
@media (max-width: 768px) { .lp-nav-links { display: none; } }

.lp-nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.lp-nav-link:hover {
  color: var(--text-primary);
  background: rgba(15,23,42,0.05);
}
[data-theme="dark"] .lp-nav-link:hover { background: rgba(255,255,255,0.05); }

/* Nav actions */
.lp-nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

/* Theme toggle */
.lp-theme-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lp-theme-btn:hover { background: rgba(15,23,42,0.06); color: var(--text-primary); }
[data-theme="dark"] .lp-theme-btn:hover { background: rgba(255,255,255,0.06); }
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Sign in link */
.lp-signin {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: var(--radius-md);
  transition: color 0.15s, background 0.15s;
  display: none;
}
@media (min-width: 480px) { .lp-signin { display: inline-flex; align-items: center; } }
.lp-signin:hover { color: var(--text-primary); background: rgba(15,23,42,0.05); }
[data-theme="dark"] .lp-signin:hover { background: rgba(255,255,255,0.05); }

/* Hamburger */
.lp-ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--text-secondary);
  transition: background 0.15s;
}
@media (min-width: 769px) { .lp-ham { display: none; } }
.lp-ham:hover { background: rgba(15,23,42,0.05); }
.lp-ham span {
  display: block; width: 20px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.lp-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.lp-ham.open span:nth-child(2) { opacity: 0; }
.lp-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.lp-mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 20px 16px;
  flex-direction: column;
  gap: 2px;
}
.lp-mobile-menu.open { display: flex; }

.lp-mobile-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.lp-mobile-link:hover { color: var(--clr-brand); background: var(--clr-brand-muted); }

.lp-mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(135deg, var(--clr-brand), var(--clr-brand-dark));
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-radius: 14px;
  box-shadow: var(--shadow-brand);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,69,96,0.45);
}
.lp-btn-primary:active { transform: translateY(0); }

/* Smaller variant for navbar */
.lp-btn-primary.sm {
  padding: 8px 18px;
  font-size: 13.5px;
  border-radius: 11px;
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border: 1.5px solid rgba(233,69,96,0.3);
  color: var(--clr-brand);
  background: rgba(233,69,96,0.04);
  font-weight: 600;
  font-size: 15px;
  border-radius: 14px;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.lp-btn-ghost:hover {
  background: rgba(233,69,96,0.08);
  border-color: rgba(233,69,96,0.5);
  transform: translateY(-2px);
}
[data-theme="dark"] .lp-btn-ghost {
  color: #f97b5a;
  border-color: rgba(249,123,90,0.3);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--bg) 0%, #ffffff 60%, #fef2f2 100%);
}
[data-theme="dark"] .lp-hero-bg {
  background: linear-gradient(160deg, #070d1a 0%, #0c1628 60%, #12091a 100%);
}

.lp-hero-grid {
  position: absolute;
  inset: 0;
}

.lp-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  width: 100%;
}
@media (max-width: 640px) { .lp-hero-inner { padding: 60px 20px 80px; } }

/* Eyebrow pill */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid rgba(233,69,96,0.2);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 6px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .lp-eyebrow { background: rgba(255,255,255,0.04); }
.lp-eyebrow-badge {
  background: var(--clr-brand);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.lp-eyebrow-text {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
}
.lp-eyebrow-arrow {
  width: 12px; height: 12px;
  color: var(--clr-brand);
}

/* Headline */
.lp-hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 720px;
}

/* Subheadline */
.lp-hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}

/* CTA row */
.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

/* Social proof */
.lp-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.lp-proof-avatars {
  display: flex;
  align-items: center;
}
.lp-proof-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  flex-shrink: 0;
}
.lp-proof-avatar:first-child { margin-left: 0; }
.lp-proof-text {
  font-size: 13px;
  color: var(--text-tertiary);
}
.lp-proof-sep {
  width: 1px; height: 18px;
  background: var(--border);
}
.lp-proof-stars { display: flex; gap: 2px; align-items: center; }
.lp-star { color: #fbbf24; width: 14px; height: 14px; }
.lp-proof-rating { font-size: 13px; color: var(--text-tertiary); margin-left: 6px; }

/* Floating cards */
.lp-float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}
.lp-float-card:nth-child(2) { animation-delay: 2s; }

.lp-float-card-inner { padding: 16px 18px; }

.lp-fc-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.lp-fc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.lp-fc-label { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.lp-fc-sub   { font-size: 11px; color: var(--text-tertiary); }
.lp-fc-prog-track {
  height: 6px;
  background: rgba(15,23,42,0.07);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 10px;
}
[data-theme="dark"] .lp-fc-prog-track { background: rgba(255,255,255,0.06); }
.lp-fc-prog-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--clr-brand), #f97b5a);
  border-radius: var(--radius-full);
}
.lp-fc-prog-row {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.lp-fc-prog-label { font-size: 10px; color: var(--text-tertiary); }
.lp-fc-prog-pct   { font-size: 10px; font-weight: 700; color: var(--clr-brand); }

.lp-grade-badge {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 18px;
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
  flex-shrink: 0;
}

/* Position the floating cards */
.lp-float-1 {
  top: 140px;
  right: 40px;
  width: 210px;
}
.lp-float-2 {
  bottom: 100px;
  right: 80px;
}
@media (max-width: 1024px) {
  .lp-float-card { display: none; }
}

.lp-hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--surface), transparent);
  pointer-events: none;
}
[data-theme="dark"] .lp-hero-fade {
  background: linear-gradient(to top, #0c1628, transparent);
}

/* ══════════════════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════════════════ */
.lp-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
@media (max-width: 640px) { .lp-section { padding: 64px 0; } }

.lp-section-alt { background: var(--bg); }
.lp-section-white { background: var(--surface); }
[data-theme="dark"] .lp-section-white { background: #0c1228; }

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .lp-container { padding: 0 20px; } }

/* Section header */
.lp-section-header { text-align: center; margin-bottom: 64px; }
.lp-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-brand);
  margin-bottom: 12px;
}
.lp-section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.lp-section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   FEATURES GRID
══════════════════════════════════════════════════════════ */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1024px) { .lp-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .lp-features-grid { grid-template-columns: 1fr; } }

.lp-feat-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-2xl);
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
[data-theme="dark"] .lp-feat-card {
  background: rgba(17,28,53,0.8);
  border-color: rgba(255,255,255,0.06);
}
.lp-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px -12px rgba(233,69,96,0.18), 0 8px 16px -4px rgba(0,0,0,0.08);
  border-color: rgba(233,69,96,0.3);
}
[data-theme="dark"] .lp-feat-card:hover { border-color: rgba(233,69,96,0.25); }

.lp-feat-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border: 1px solid;
  flex-shrink: 0;
}
.lp-feat-icon svg { width: 20px; height: 20px; }

.lp-feat-icon-brand  { background: rgba(233,69,96,0.08);  border-color: rgba(233,69,96,0.15);  color: var(--clr-brand); }
.lp-feat-icon-green  { background: rgba(34,197,94,0.08);  border-color: rgba(34,197,94,0.15);  color: #16a34a; }
.lp-feat-icon-violet { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.15); color: #7c3aed; }
.lp-feat-icon-sky    { background: rgba(14,165,233,0.08); border-color: rgba(14,165,233,0.15); color: #0284c7; }
.lp-feat-icon-amber  { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.15); color: #d97706; }
.lp-feat-icon-teal   { background: rgba(20,184,166,0.08); border-color: rgba(20,184,166,0.15); color: #0f766e; }

[data-theme="dark"] .lp-feat-icon-green  { color: #4ade80; }
[data-theme="dark"] .lp-feat-icon-violet { color: #a78bfa; }
[data-theme="dark"] .lp-feat-icon-sky    { color: #38bdf8; }
[data-theme="dark"] .lp-feat-icon-amber  { color: #fbbf24; }
[data-theme="dark"] .lp-feat-icon-teal   { color: #2dd4bf; }

.lp-feat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.lp-feat-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════ */
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 1024px) { .lp-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .lp-steps-grid { grid-template-columns: 1fr; } }

.lp-step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
[data-theme="dark"] .lp-step-card { background: #111827; border-color: rgba(255,255,255,0.05); }

.lp-step-num {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 15px;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.lp-step-num-1 { background: linear-gradient(135deg, #e94560, #c73652); }
.lp-step-num-2 { background: linear-gradient(135deg, #6d28d9, #5b21b6); }
.lp-step-num-3 { background: linear-gradient(135deg, #059669, #047857); }
.lp-step-num-4 { background: linear-gradient(135deg, #d97706, #b45309); }

.lp-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.lp-step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Connector line (desktop) */
.lp-step-card::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -12px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(233,69,96,0.4), transparent);
  display: none;
}
@media (min-width: 1024px) {
  .lp-step-card:not(:last-child)::after { display: block; }
}

/* Progress demo card */
.lp-demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}
[data-theme="dark"] .lp-demo-card { background: #111827; border-color: rgba(255,255,255,0.05); }

.lp-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.lp-demo-name  { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.lp-demo-meta  { font-size: 11px; color: var(--text-tertiary); margin-top: 2px; }
.lp-demo-pct   { font-size: 24px; font-weight: 900; color: var(--clr-brand); letter-spacing: -0.03em; }

.lp-demo-track {
  height: 10px;
  background: rgba(15,23,42,0.07);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 10px;
}
[data-theme="dark"] .lp-demo-track { background: rgba(255,255,255,0.06); }
.lp-demo-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-brand), #f97b5a, #fbbf24);
  border-radius: var(--radius-full);
  animation: prog-grow 1.4s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}

.lp-demo-dates {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.lp-demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lp-demo-stat {
  background: rgba(15,23,42,0.04);
  border-radius: var(--radius-lg);
  padding: 12px;
  text-align: center;
}
[data-theme="dark"] .lp-demo-stat { background: rgba(255,255,255,0.03); }
.lp-demo-stat-val { font-size: 20px; font-weight: 900; color: var(--text-primary); display: block; }
.lp-demo-stat-lbl { font-size: 10px; color: var(--text-tertiary); margin-top: 3px; display: block; }

.lp-demo-stat-brand .lp-demo-stat-val { color: var(--clr-brand); }
.lp-demo-stat-brand {
  background: rgba(233,69,96,0.05);
  border: 1px solid rgba(233,69,96,0.12);
}

/* ══════════════════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════════════════ */
.lp-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .lp-benefits-grid { grid-template-columns: 1fr; gap: 48px; } }

.lp-benefits-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clr-brand); margin-bottom: 12px; }
.lp-benefits-title { font-size: clamp(30px, 4vw, 44px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; color: var(--text-primary); margin-bottom: 16px; }
.lp-benefits-desc  { font-size: 17px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 40px; }

.lp-benefit-items { display: flex; flex-direction: column; gap: 24px; }
.lp-benefit-item  { display: flex; align-items: flex-start; gap: 16px; }
.lp-benefit-check {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: rgba(233,69,96,0.08);
  border: 1px solid rgba(233,69,96,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--clr-brand);
}
.lp-benefit-check svg { width: 16px; height: 16px; }
.lp-benefit-text-title { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.lp-benefit-text-desc  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Role cards */
.lp-role-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .lp-role-cards { grid-template-columns: 1fr; } }
.lp-role-card-wide { grid-column: span 2; }
@media (max-width: 480px) { .lp-role-card-wide { grid-column: span 1; } }

.lp-role-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-2xl);
  padding: 24px;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
[data-theme="dark"] .lp-role-card { background: rgba(17,28,53,0.8); border-color: rgba(255,255,255,0.06); }
.lp-role-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(233,69,96,0.2); }

.lp-role-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  border: 1px solid;
}
.lp-role-icon svg { width: 20px; height: 20px; }
.lp-role-icon-blue   { background: rgba(59,130,246,0.08);  border-color: rgba(59,130,246,0.15);  color: #1d4ed8; }
.lp-role-icon-green  { background: rgba(34,197,94,0.08);   border-color: rgba(34,197,94,0.15);   color: #16a34a; }
.lp-role-icon-violet { background: rgba(139,92,246,0.08);  border-color: rgba(139,92,246,0.15);  color: #7c3aed; }
[data-theme="dark"] .lp-role-icon-blue   { color: #60a5fa; }
[data-theme="dark"] .lp-role-icon-green  { color: #4ade80; }
[data-theme="dark"] .lp-role-icon-violet { color: #a78bfa; }

.lp-role-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.lp-role-desc  { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.lp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px)  { .lp-testi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .lp-testi-grid { grid-template-columns: 1fr; } }

.lp-testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
[data-theme="dark"] .lp-testi-card { background: #111827; border-color: rgba(255,255,255,0.05); }
.lp-testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.lp-testi-stars  { display: flex; gap: 2px; margin-bottom: 16px; }
.lp-testi-star   { color: #fbbf24; width: 14px; height: 14px; }
.lp-testi-quote  { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.lp-testi-author { display: flex; align-items: center; gap: 12px; }
.lp-testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 12px;
  flex-shrink: 0;
}
.lp-testi-name   { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.lp-testi-role   { font-size: 11px; color: var(--text-tertiary); margin-top: 1px; }

/* ══════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════ */
.lp-cta {
  background: linear-gradient(130deg, #e94560 0%, #c73652 40%, #9f1239 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 640px) { .lp-cta { padding: 64px 0; } }

.lp-cta-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(80px);
  pointer-events: none;
}

.lp-cta-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.lp-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.lp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.lp-cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: white;
  color: var(--clr-brand);
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.lp-cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.3); }
.lp-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  backdrop-filter: blur(4px);
}
.lp-cta-btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.lp-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 64px 0 40px;
}
[data-theme="dark"] .lp-footer { background: #040810; }

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px)  { .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px)  { .lp-footer-grid { grid-template-columns: 1fr; } }

.lp-footer-brand { grid-column: 1; }
@media (max-width: 900px)  { .lp-footer-brand { grid-column: span 2; } }
@media (max-width: 480px)  { .lp-footer-brand { grid-column: 1; } }

.lp-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.lp-footer-logo-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--clr-brand), var(--clr-brand-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 13px;
}
.lp-footer-logo-text { font-size: 15px; font-weight: 700; color: white; letter-spacing: -0.02em; }

.lp-footer-tagline { font-size: 13px; line-height: 1.65; max-width: 200px; margin-bottom: 20px; }
.lp-footer-socials { display: flex; gap: 8px; }
.lp-footer-social {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.lp-footer-social:hover { background: rgba(255,255,255,0.1); color: white; }
.lp-footer-social svg { width: 14px; height: 14px; }

.lp-footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 16px;
}
.lp-footer-links { display: flex; flex-direction: column; gap: 10px; }
.lp-footer-link {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s;
}
.lp-footer-link:hover { color: white; }

.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lp-footer-copy { font-size: 12px; }
.lp-footer-status { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.lp-footer-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}