:root {
  --lp-deep-navy: #0B1633;
  --lp-soft-violet: #7C6CE5;
  --lp-lavender-light: #EDE7FA;
  --lp-coral: #FF8866;
  --lp-light: #F7F6FB;
  --lp-white: #FFFFFF;
  --lp-green: #22C55E;
  --lp-orange: #FF950B;
  --lp-red: #EF4444;
  --lp-slate: #64748B;
  --lp-shadow-soft: 0 12px 40px rgba(11, 22, 51, 0.08);
  --lp-shadow-card: 0 8px 24px rgba(11, 22, 51, 0.06);
  --lp-shadow-deep: 0 24px 80px rgba(11, 22, 51, 0.18);
}

body {
  background: linear-gradient(180deg, #ffffff 0%, var(--lp-light) 100%) !important;
  color: var(--lp-deep-navy);
}

#navbar {
  border-bottom: 1px solid rgba(124, 108, 229, 0.12);
  box-shadow: 0 6px 24px rgba(11, 22, 51, 0.04);
}

html.lp-home-route #navbar {
  display: none !important;
}

#navbar a[href="/signup"],
#navbar a[href^="/signup?"] {
  display: none !important;
}

.regular-height:has(.lp-academy-home) {
  max-width: 1180px;
}

.lp-academy-home {
  padding: 24px 0 64px;
}

.lp-public-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  margin-bottom: 26px;
  padding: 10px 0;
}

.lp-public-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--lp-deep-navy);
  text-decoration: none;
}

.lp-public-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.lp-public-brand-mark span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lp-coral);
  box-shadow: 15px 0 0 var(--lp-coral);
  margin-right: 16px;
}

.lp-public-brand-text {
  display: grid;
  gap: 2px;
}

.lp-public-brand-text strong {
  color: var(--lp-deep-navy);
  font-size: 16px;
}

.lp-public-brand-text small {
  color: var(--lp-slate);
  font-size: 12px;
}

.lp-public-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-public-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 17px;
  color: var(--lp-white);
  background: var(--lp-soft-violet);
  font-weight: 700;
  text-decoration: none;
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  min-height: 530px;
}

.lp-eyebrow,
.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
}

.lp-eyebrow {
  padding: 8px 13px;
  color: var(--lp-soft-violet);
  background: rgba(124, 108, 229, 0.1);
  border: 1px solid rgba(124, 108, 229, 0.14);
  font-size: 14px;
}

.lp-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lp-coral);
  box-shadow: 14px 0 0 var(--lp-coral);
  margin-right: 14px;
}

.lp-hero h1 {
  margin: 22px 0 18px;
  max-width: 760px;
  color: var(--lp-deep-navy);
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.lp-lead {
  max-width: 720px;
  color: #344154;
  font-size: 19px;
  line-height: 1.65;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.lp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 700;
  text-decoration: none;
}

.lp-action-primary {
  color: var(--lp-white);
  background: var(--lp-soft-violet);
  box-shadow: 0 10px 24px rgba(124, 108, 229, 0.24);
}

.lp-action-secondary {
  color: var(--lp-deep-navy);
  background: var(--lp-white);
  border: 1px solid rgba(124, 108, 229, 0.24);
}

.lp-hero-note {
  margin-top: 22px;
  color: var(--lp-slate);
  font-size: 14px;
}

.lp-visual {
  position: relative;
  border-radius: 8px;
  padding: 26px;
  color: var(--lp-white);
  background: linear-gradient(135deg, #0B1633 0%, #182759 58%, #7C6CE5 100%);
  box-shadow: var(--lp-shadow-deep);
  overflow: hidden;
}

.lp-visual::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 230px;
  height: 230px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: rotate(12deg);
  opacity: 0.45;
}

.lp-visual-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.lp-visual-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 42px;
  font-weight: 800;
}

.lp-visual-mark span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lp-coral);
  box-shadow: 21px 0 0 var(--lp-coral);
  margin-right: 22px;
}

.lp-visual-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.lp-index-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.lp-index-score {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.lp-score-ring {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: conic-gradient(var(--lp-green) 0 72%, rgba(255, 255, 255, 0.18) 72% 100%);
}

.lp-score-ring strong {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--lp-deep-navy);
  font-size: 30px;
}

.lp-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lp-metric {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-metric b {
  display: block;
  margin-bottom: 4px;
}

.lp-metric span,
.lp-index-score span {
  color: rgba(255, 255, 255, 0.74);
}

.lp-section {
  margin-top: 42px;
}

.lp-section-header {
  max-width: 780px;
  margin-bottom: 22px;
}

.lp-section-header h2 {
  color: var(--lp-deep-navy);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
}

.lp-section-header p {
  color: var(--lp-slate);
  font-size: 17px;
  line-height: 1.65;
}

.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lp-card,
.lp-wide-card {
  background: var(--lp-white);
  border: 1px solid rgba(11, 22, 51, 0.08);
  border-radius: 8px;
  box-shadow: var(--lp-shadow-card);
}

.lp-card {
  padding: 22px;
}

.lp-card h3,
.lp-wide-card h3 {
  margin: 0 0 10px;
  color: var(--lp-deep-navy);
  font-size: 19px;
  font-weight: 800;
}

.lp-card p,
.lp-wide-card p {
  margin: 0;
  color: #526174;
  line-height: 1.58;
}

.lp-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--lp-soft-violet);
  background: var(--lp-lavender-light);
  font-weight: 800;
}

.lp-ecosystem {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.lp-wide-card {
  padding: 26px;
}

.lp-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.lp-pill {
  padding: 8px 13px;
  color: var(--lp-soft-violet);
  background: var(--lp-lavender-light);
  font-size: 14px;
}

.lp-steps {
  display: grid;
  gap: 12px;
}

.lp-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 8px;
  background: var(--lp-light);
}

.lp-step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--lp-white);
  background: var(--lp-coral);
  font-weight: 800;
}

.lp-footer-brand {
  color: var(--lp-deep-navy);
  font-weight: 700;
}

#footer.lp-footer {
  background: rgba(255, 255, 255, 0.82) !important;
}

#footer.lp-footer #footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border-top-color: rgba(124, 108, 229, 0.18);
}

@media (max-width: 991px) {
  .lp-hero,
  .lp-ecosystem {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    min-height: 0;
  }

  .lp-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  .lp-academy-home {
    padding-top: 18px;
  }

  .lp-public-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-public-nav,
  .lp-public-login {
    width: 100%;
  }

  .lp-card-grid,
  .lp-metric-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero h1 {
    font-size: 36px;
  }

  .lp-lead {
    font-size: 17px;
  }
}
