/* Landing pages — shared with site brand tokens (see style.css :root) */

body.landing-page {
  padding-top: 0;
  background: var(--csp-navy);
  color: #c5d0dc;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 24, 37, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0;
}

.lp-header .navbar-brand img {
  height: 40px;
  width: auto;
}

.lp-header .lp-nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}

.lp-header .lp-nav-link:hover {
  color: #fff;
}

.lp-hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(4, 107, 210, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 40%, rgba(238, 124, 27, 0.14) 0%, transparent 45%),
    linear-gradient(160deg, #0b1825 0%, #102033 45%, #0b1825 100%);
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--csp-accent-alt);
  margin-bottom: 1rem;
}

.lp-hero h1 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.lp-hero-sub {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--csp-accent);
  margin-bottom: 1.25rem;
}

.lp-hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #a8b6c6;
  max-width: 36rem;
  margin-bottom: 0;
}

.lp-form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(238, 124, 27, 0.28);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 5.5rem;
}

.lp-form-card h2 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.lp-form-card .lp-form-lead {
  color: #a8b6c6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.lp-form-card .form-label {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
}

.lp-form-card .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 0.9rem;
}

.lp-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lp-form-card .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--csp-accent-alt);
  box-shadow: 0 0 0 3px rgba(238, 124, 27, 0.18);
  color: #fff;
}

.lp-form-card .form-control.is-invalid {
  border-color: #ff6b6b;
}

.lp-form-card .invalid-feedback {
  color: #ff8a8a;
  font-size: 0.8rem;
}

.lp-form-card .btn-csp-accent {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 0.5rem;
}

.lp-section {
  padding: 4.5rem 0;
}

.lp-section-title {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 2.75rem;
  line-height: 1.25;
}

.lp-problem {
  background: #102033;
}

.lp-problem-item {
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--csp-accent-alt);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.75rem;
  height: 100%;
  transition: background 0.25s, transform 0.25s;
}

.lp-problem-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.lp-problem-item h3 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--csp-accent);
  margin-bottom: 0.75rem;
}

.lp-problem-item p {
  color: #a8b6c6;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.lp-timeline {
  background:
    linear-gradient(160deg, #0b1825 0%, #132a42 50%, #0b1825 100%);
}

.lp-timeline-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(4, 107, 210, 0.2);
  border-radius: 0.875rem;
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
}

.lp-timeline-year {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--csp-accent-alt);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.lp-timeline-days {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.lp-timeline-item p {
  color: #a8b6c6;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.lp-solution {
  background: #102033;
}

.lp-solution-lead {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.5rem;
  color: #a8b6c6;
  font-size: 1.05rem;
  line-height: 1.75;
}

.lp-feature {
  background: rgba(4, 107, 210, 0.12);
  border-top: 3px solid var(--csp-primary);
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 1.5rem;
  height: 100%;
}

.lp-feature h4 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}

.lp-feature p {
  color: #a8b6c6;
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.lp-authority {
  background: rgba(255, 255, 255, 0.03);
  padding: 3.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-authority p {
  color: #a8b6c6;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.lp-authority-cite {
  color: #fff !important;
  font-style: italic;
  font-size: 0.925rem;
}

.lp-authority a {
  color: var(--csp-accent-alt);
  font-weight: 600;
  text-decoration: none;
}

.lp-authority a:hover {
  color: var(--csp-accent);
  text-decoration: underline;
}

.lp-footer {
  background: #08121c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0;
  color: #7a8a9a;
  font-size: 0.875rem;
}

.lp-footer a {
  color: #a8b6c6;
  text-decoration: none;
}

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

.lp-footer .lp-brand {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 991.98px) {
  .lp-form-card {
    position: static;
    margin-top: 2rem;
  }

  .lp-hero {
    padding: 3rem 0 3.5rem;
  }

  .lp-hero-text {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .lp-form-card {
    padding: 1.5rem;
  }

  .lp-section {
    padding: 3rem 0;
  }
}
