/* General landing palette */
:root {
  --lp-bg: #f4f5fb;
  --lp-surface: rgba(255, 255, 255, 0.92);
  --lp-panel: rgba(255, 255, 255, 0.95);
  --lp-border: rgba(15, 23, 42, 0.08);
  --lp-shadow: 0 30px 65px rgba(15, 23, 42, 0.16);
  --lp-accent: #1d4ed8;
  --lp-accent-strong: #7c3aed;
  --lp-text: #0f172a;
  --lp-subtext: #475467;
}

body.lp-public-page {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(1100px 720px at 10% -10%, rgba(79, 70, 229, 0.18), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(251, 208, 232, 0.2), transparent 65%),
    var(--lp-bg);
  color: var(--lp-text);
  letter-spacing: 0.01em;
}

.lp-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px 72px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.lp-hero-section {
  --hero-base: #0f172a;
  --hero-accent-light: rgba(59, 130, 246, 0.25);
  --hero-glow: rgba(59, 130, 246, 0.35);
  --hero-visual-secondary: rgba(59, 130, 246, 0.35);
  --hero-visual-inner: rgba(14, 165, 233, 0.15);
  background: radial-gradient(circle at 20% -10%, var(--hero-accent-light), transparent 45%), var(--hero-base);
  border-radius: 48px;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 56px;
  color: #f9fafb;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.lp-hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.4));
  pointer-events: none;
  mix-blend-mode: screen;
}

.lp-hero-section--product {
  --hero-base: #0b1f3e;
  --hero-accent-light: rgba(147, 197, 253, 0.5);
  --hero-glow: rgba(147, 197, 253, 0.55);
  --hero-visual-secondary: rgba(56, 189, 248, 0.35);
  --hero-visual-inner: rgba(15, 118, 184, 0.22);
}

.lp-hero-section--solutions {
  --hero-base: #0f1f20;
  --hero-accent-light: rgba(187, 247, 208, 0.45);
  --hero-glow: rgba(110, 231, 183, 0.45);
  --hero-visual-secondary: rgba(129, 199, 132, 0.25);
  --hero-visual-inner: rgba(7, 89, 69, 0.28);
}

.lp-hero-section--resources {
  --hero-base: #191226;
  --hero-accent-light: rgba(251, 207, 232, 0.45);
  --hero-glow: rgba(251, 207, 232, 0.5);
  --hero-visual-secondary: rgba(249, 168, 212, 0.4);
  --hero-visual-inner: rgba(48, 21, 45, 0.28);
}

.lp-hero-card {
  position: relative;
  z-index: 1;
  background: transparent;
  border-radius: 40px;
  padding: 0;
  border: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.lp-hero-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.lp-hero-card__visual {
  position: relative;
  border-radius: 32px;
  background: radial-gradient(circle at top right, var(--hero-glow, rgba(249, 115, 22, 0.35)), var(--hero-visual-secondary, rgba(59, 130, 246, 0.35)), var(--hero-visual-inner, rgba(14, 165, 233, 0.15)));
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.lp-hero-card__glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 10% 20%, var(--hero-glow, rgba(59, 130, 246, 0.35)), transparent 55%);
  filter: blur(30px);
  opacity: 0.7;
  z-index: 0;
  overflow: hidden;
}

.lp-hero-card__glow::before {
  content: '';
  position: absolute;
  inset: 10%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23f5f3ff'/%3E%3Cstop offset='1' stop-color='%23d8b4fe'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='400' height='200' fill='url(%23g)' opacity='0.6'/%3E%3Ccircle cx='120' cy='110' r='46' fill='%23fcd34d' opacity='0.65'/%3E%3Ccircle cx='280' cy='80' r='36' fill='%23a5b4fc' opacity='0.5'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  mix-blend-mode: screen;
  filter: blur(6px);
  pointer-events: none;
}

.lp-hero-card__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.lp-hero-card__tagline {
  position: relative;
  z-index: 1;
  background: rgba(15, 23, 42, 0.45);
  border-radius: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 12px;
}

.lp-hero-card__tagline p {
  margin: 0;
  color: #e0e7ff;
  font-size: 1rem;
  line-height: 1.6;
}

.lp-hero__badge {
  align-self: flex-start;
  padding: 4px 18px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
  border: 1px solid rgba(59, 130, 246, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
}

.lp-hero-card h1 {
  margin: 0;
  font-size: clamp(2.8rem, 3vw + 1.1rem, 3.9rem);
  line-height: 1.2;
  font-weight: 800;
}

.lp-hero__lead {
  margin: 0;
  color: rgba(241, 245, 249, 0.9);
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 60ch;
}

.lp-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 180ms ease;
}

.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-btn--fill {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-strong));
  color: #fff;
  box-shadow: 0 22px 40px rgba(29, 78, 216, 0.3);
}

.lp-btn--ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--lp-text);
  border-color: var(--lp-border);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.lp-hero__highlight {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-hero__highlight strong {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f7d24b;
}

.lp-hero__highlight span {
  color: rgba(234, 239, 255, 0.8);
  font-size: 0.95rem;
}

.lp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #c7d2fe;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-stat-card {
  border-radius: 26px;
  background: var(--lp-panel);
  border: 1px solid var(--lp-border);
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.lp-stat-card__value {
  font-size: 2rem;
  font-weight: 700;
}

.lp-stat-card__label {
  margin-top: 8px;
  color: var(--lp-subtext);
  font-size: 0.95rem;
}

.lp-hero-card__visual .lp-stat-card {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.lp-hero-card__visual .lp-stat-card__value {
  color: #fff;
}

.lp-hero-card__visual .lp-stat-card__label {
  color: rgba(239, 246, 255, 0.7);
}

.lp-subpages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.lp-card {
  border-radius: 24px;
  border: 1px solid var(--lp-border);
  background: var(--lp-panel);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: border-color 150ms ease, transform 150ms ease;
}

.lp-card.is-active {
  border-color: var(--lp-accent);
  transform: translateY(-2px);
}

.lp-card__label {
  font-weight: 700;
  font-size: 1.1rem;
}

.lp-card__description {
  margin: 0;
  color: var(--lp-subtext);
  font-size: 0.95rem;
  line-height: 1.5;
}

.lp-card__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--lp-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-section--seo {
  border-radius: 32px;
  background: var(--lp-panel);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-section--seo h2 {
  margin: 0;
  font-size: clamp(2.2rem, 2.5vw + 0.5rem, 2.8rem);
}

.lp-section--seo h3 {
  margin: 0;
  font-size: clamp(1.4rem, 1.5vw + 0.4rem, 1.8rem);
}

.lp-section--seo p {
  margin: 0;
  color: var(--lp-subtext);
  line-height: 1.75;
  font-size: 1rem;
  max-width: 74ch;
}

.lp-hero-card__glow .lp-illustration {
  position: absolute;
  inset: 12px;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.lp-hero-card__glow .lp-illustration figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.lp-hero-card__glow .lp-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 20px 50px rgba(15, 23, 42, 0.45));
}

@media (max-width: 720px) {
  .lp-shell {
    padding: 64px 16px 48px;
  }

  .lp-hero-card {
    padding: 20px;
    grid-template-columns: 1fr;
  }
}
