/* GMod Panel - Landing page */
:root {
  --lp-bg: #0a0e17;
  --lp-bg-2: #0e1320;
  --lp-card: #131826;
  --lp-card-2: #1a2032;
  --lp-border: #1f2840;
  --lp-text: #eaecf3;
  --lp-text-muted: #8a93a6;
  --lp-text-dim: #5c6478;
  --lp-accent: #00e5ff;
  --lp-accent-2: #6c7eff;
  --lp-success: #22c55e;
  --lp-danger: #ef4444;
}

body.landing {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.lp-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-container--narrow { max-width: 800px; }

/* === Nav === */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-border);
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lp-text);
}
.lp-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #000;
  font-weight: 800;
  font-size: 13px;
  border-radius: 8px;
  letter-spacing: -0.5px;
}
.lp-brand-name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
}
.lp-nav-links {
  display: flex;
  gap: 32px;
}
.lp-nav-links a {
  color: var(--lp-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.lp-nav-links a:hover { color: var(--lp-text); }
.lp-nav-cta { display: flex; gap: 8px; }

/* Reset btn pour la landing (le btn global est en couleurs differentes) */
.landing .btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}
.landing .btn-sm { padding: 8px 14px; font-size: 13px; }
.landing .btn-lg { padding: 14px 28px; font-size: 15px; }
.landing .btn-block { display: block; width: 100%; text-align: center; }
.landing .btn-primary {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #000;
}
.landing .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0, 229, 255, 0.25); }
.landing .btn-outline {
  background: transparent;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}
.landing .btn-outline:hover { background: var(--lp-card); border-color: var(--lp-accent); }

/* === Hero === */
.lp-hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0, 229, 255, 0.08), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(108, 126, 255, 0.06), transparent 60%);
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.lp-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 100px;
  color: var(--lp-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.lp-hero-title {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin: 0 0 24px;
}
.lp-accent {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-hero-subtitle {
  font-size: 18px;
  color: var(--lp-text-muted);
  margin: 0 0 32px;
  line-height: 1.6;
  max-width: 540px;
}
.lp-hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.lp-hero-trust {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--lp-text-dim);
  font-size: 13px;
  flex-wrap: wrap;
}
.lp-trust-dot { color: var(--lp-text-dim); }

/* Mock window */
.lp-hero-visual { display: flex; justify-content: center; }
.lp-mock-window {
  width: 100%;
  max-width: 480px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 229, 255, 0.08), 0 10px 40px rgba(0, 0, 0, 0.5);
}
.lp-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--lp-card-2);
  border-bottom: 1px solid var(--lp-border);
}
.lp-mock-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.lp-mock-dot--red { background: #ff5f57; }
.lp-mock-dot--yellow { background: #febc2e; }
.lp-mock-dot--green { background: #28c840; }
.lp-mock-url {
  margin-left: 12px;
  font-size: 11px;
  color: var(--lp-text-dim);
  font-family: 'SF Mono', Menlo, monospace;
}
.lp-mock-content { padding: 24px; }
.lp-mock-card {
  background: var(--lp-card-2);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}
.lp-mock-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-mock-row:last-child { border-bottom: none; }
.lp-mock-label { color: var(--lp-text-muted); }
.lp-mock-val { color: var(--lp-text); font-weight: 500; font-family: 'SF Mono', Menlo, monospace; font-size: 12px; }
.lp-mock-pill {
  background: rgba(34, 197, 94, 0.15);
  color: var(--lp-success);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.lp-mock-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: default;
}

/* === Stats === */
.lp-stats {
  padding: 60px 0;
  background: var(--lp-bg-2);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.lp-stat { text-align: center; }
.lp-stat-value {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}
.lp-stat-label {
  font-size: 13px;
  color: var(--lp-text-muted);
}

/* === Sections === */
.lp-features, .lp-how, .lp-pricing, .lp-faq { padding: 100px 0; }
.lp-section-head { text-align: center; margin-bottom: 56px; }
.lp-section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 0 0 12px;
}
.lp-section-subtitle {
  font-size: 17px;
  color: var(--lp-text-muted);
  margin: 0;
}

/* === Features grid === */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-feature {
  position: relative;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.15s, border-color 0.15s;
}
.lp-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.3);
}
.lp-feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.lp-feature h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}
.lp-feature p {
  font-size: 14px;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.6;
}
.lp-feature--premium { border-color: rgba(108, 126, 255, 0.3); }
.lp-feature-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* === How it works === */
.lp-how { background: var(--lp-bg-2); }
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lp-step {
  text-align: center;
  padding: 32px 24px;
}
.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--lp-card);
  border: 2px solid var(--lp-accent);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  color: var(--lp-accent);
  margin: 0 auto 20px;
}
.lp-step h3 {
  font-size: 19px;
  margin: 0 0 12px;
  font-weight: 700;
}
.lp-step p {
  color: var(--lp-text-muted);
  font-size: 14px;
  margin: 0;
}

/* === Pricing === */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.lp-price-card {
  position: relative;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 36px 32px;
}
.lp-price-card--featured {
  border-color: var(--lp-accent);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.04), var(--lp-card));
  transform: scale(1.02);
}
.lp-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #000;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lp-price-tier {
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lp-price-amount {
  font-size: 56px;
  font-weight: 800;
  margin: 12px 0 0;
  letter-spacing: -2px;
  line-height: 1;
}
.lp-price-currency {
  font-size: 24px;
  vertical-align: top;
  margin-left: 4px;
}
.lp-price-note {
  font-size: 13px;
  color: var(--lp-text-dim);
  margin: 8px 0 24px;
}
.lp-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.lp-price-features li {
  padding: 10px 0 10px 28px;
  font-size: 14px;
  color: var(--lp-text);
  border-bottom: 1px solid var(--lp-border);
  position: relative;
}
.lp-price-features li:last-child { border-bottom: none; }
.lp-price-features li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  color: var(--lp-accent);
  font-weight: 700;
}
.lp-pricing-footnote {
  text-align: center;
  margin-top: 32px;
  color: var(--lp-text-dim);
  font-size: 13px;
}

/* === FAQ === */
.lp-faq-item {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}
.lp-faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--lp-text);
  list-style: none;
  position: relative;
  transition: background 0.15s;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  font-size: 22px;
  font-weight: 300;
  color: var(--lp-text-muted);
  transition: transform 0.2s;
}
.lp-faq-item[open] summary::after { transform: rotate(45deg); }
.lp-faq-item summary:hover { background: var(--lp-card-2); }
.lp-faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  color: var(--lp-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* === Final CTA === */
.lp-cta-final {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 229, 255, 0.1), transparent 60%),
    var(--lp-bg-2);
  border-top: 1px solid var(--lp-border);
}
.lp-cta-final h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
}
.lp-cta-final p {
  font-size: 17px;
  color: var(--lp-text-muted);
  margin: 0 0 32px;
}

/* === Footer === */
.lp-footer {
  padding: 60px 0 40px;
  background: var(--lp-bg);
  border-top: 1px solid var(--lp-border);
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.lp-footer-tagline {
  color: var(--lp-text-muted);
  font-size: 13px;
  max-width: 280px;
  margin: 16px 0 0;
}
.lp-brand--footer .lp-brand-name { font-size: 14px; }
.lp-footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lp-text-muted);
  margin: 0 0 16px;
  font-weight: 600;
}
.lp-footer-col a {
  display: block;
  color: var(--lp-text);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.15s;
}
.lp-footer-col a:hover { color: var(--lp-accent); }
.lp-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--lp-border);
  text-align: center;
  color: var(--lp-text-dim);
  font-size: 12px;
}

/* === Responsive === */
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-visual { order: -1; }
  .lp-hero-title { font-size: 40px; }
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-price-card--featured { transform: none; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-nav-links { display: none; }
}
@media (max-width: 600px) {
  .lp-hero-title { font-size: 32px; }
  .lp-section-title { font-size: 30px; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-cta-final h2 { font-size: 30px; }
}
