:root {
  --lp-bg: #e3edf7;
  --lp-bg-accent: #cfd9e7;
  --lp-card-bg: #ffffff;
  --lp-border-soft: #d3dde9;
  --lp-text-main: #1f2933;
  --lp-text-muted: #6b7280;
  --lp-accent: #3367c1;
  --lp-accent-soft: #e5efff;
  --lp-accent-strong: #0057b7;
  --lp-radius-lg: 22px;
  --lp-radius-md: 14px;
  --lp-shadow-soft: 0 22px 55px rgba(15, 23, 42, 0.14);
  --lp-services-bg: #f7f8fc;
}

html, body {
  margin: 0;
  padding: 0;
}

body.landing-page {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #f8fbff 0, var(--lp-bg) 40%, var(--lp-bg-accent) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-text-main);
}

.lp-shell { width: 100%; padding: 32px 18px; }

.lp-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--lp-card-bg);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border-soft);
  box-shadow: var(--lp-shadow-soft);
  padding: 28px 40px 24px;
}

.lp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.lp-logo-link img {
  max-height: 32px;
  display: block;
}

.lp-top-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e0ecff;
  font-size: 0.8rem;
  color: #1e40af;
  font-weight: 500;
}

.lp-top-pill-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 3px #bbf7d0;
}

.lp-main-row {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(260px, 1.2fr);
  gap: 32px;
}

.lp-left,
.lp-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.lp-title {
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--lp-accent);
  margin: 0 0 6px;
}

.lp-subtitle {
  font-size: 0.98rem;
  color: var(--lp-text-muted);
  margin: 0;
}

.lp-domain {
  font-weight: 600;
  color: var(--lp-accent-strong);
  word-break: break-all;
}

.lp-body {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #374151;
  margin-top: 14px;
}

.lp-body p { margin: 0 0 14px; }
.lp-body p:last-child { margin-bottom: 0; }

.lp-meta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--lp-text-muted);
}

.lp-meta-label { font-weight: 500; }

.lp-services-card {
  background: var(--lp-services-bg);
  border-radius: var(--lp-radius-md);
  border: 1px solid #dde3f0;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.lp-services-title {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7b8598;
  margin: 0 0 12px;
}

.lp-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--lp-accent-strong);
  text-decoration: none;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.lp-service-link i { font-size: 1rem; }

.lp-service-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.lp-service-link:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
  border-radius: 6px;
}

.lp-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  text-align: right;
  font-size: 0.8rem;
  color: var(--lp-text-muted);
}

@media (max-width: 960px) {
  .lp-main-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .lp-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lp-title { font-size: 1.9rem; }
  .lp-body { font-size: 0.96rem; }
  .lp-meta-row { font-size: 0.86rem; }
  .lp-footer { text-align: left; }
}

@media (max-width: 540px) {
  .lp-shell { padding: 20px 10px; }
  .lp-card { padding: 22px 16px 18px; }
  .lp-title { font-size: 1.6rem; }
  .lp-subtitle,
  .lp-body { font-size: 0.9rem; }
}
