/* Landing page — modern enterprise SaaS design system */
.landing-body {
  --lp-bg: #ffffff;
  --lp-bg-alt: #f8fafc;
  --lp-primary: #C8102E;
  --lp-primary-dark: #A50E26;
  --lp-primary-light: #fef2f2;
  --lp-text: #1C1C1C;
  --lp-muted: #6B7280;
  --lp-border: #E5E7EB;
  --lp-success: #198754;
  --lp-success-bg: #f0fdf4;
  --lp-success-border: #bbf7d0;
  --lp-error: #8B0000;
  --lp-error-bg: #fef2f2;
  --lp-error-border: #fecaca;
  --lp-warn: #F5A900;
  --lp-warn-bg: #fffbeb;
  --lp-station: #C8102E;
  --lp-station-dark: #A50E26;
  --lp-station-light: #fef2f2;
  --lp-accent: #FFC400;
  --lp-dark: #121212;
  --lp-radius: 12px;
  --lp-radius-sm: 10px;
  --lp-radius-lg: 16px;
  --lp-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  --lp-shadow-md: 0 8px 24px rgba(17, 24, 39, 0.06);
  --lp-shadow-lg: 0 16px 40px rgba(17, 24, 39, 0.08);
  --lp-nav-h: 64px;
  --lp-space-xs: 0.25rem;
  --lp-space-sm: 0.5rem;
  --lp-space-md: 1rem;
  --lp-space-lg: 1.5rem;
  --lp-space-xl: 2.5rem;
  --lp-btn-h: 44px;
  --lp-btn-h-lg: 48px;
  --lp-transition: 0.15s ease;
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--font-body);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.landing-body.lp-nav-open {
  overflow: hidden;
}

.lp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--lp-primary);
  color: #fff;
  border-radius: 0 0 var(--lp-radius-sm) 0;
  text-decoration: none;
  font-weight: 600;
}

.lp-skip:focus {
  left: 0;
}

.lp-container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ── Sticky nav ── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--lp-nav-h);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--lp-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--lp-transition);
}

.lp-nav.is-scrolled {
  box-shadow: var(--lp-shadow);
}

.lp-nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--lp-text);
  min-width: 0;
  flex-shrink: 0;
}

.lp-nav__logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--lp-border);
  background: var(--lp-bg-alt);
  color: var(--lp-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lp-nav__logo svg {
  width: 18px;
  height: 18px;
}

.lp-nav__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-nav__links a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  transition: color var(--lp-transition), background var(--lp-transition);
}

.lp-nav__links a:hover,
.lp-nav__links a:focus-visible {
  color: var(--lp-text);
  background: var(--lp-bg-alt);
  outline: none;
}

.lp-nav__links a.is-active {
  color: var(--lp-primary);
  font-weight: 600;
}

.lp-nav__links a.is-active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.7rem;
  right: 0.7rem;
  height: 2px;
  background: var(--lp-primary);
  border-radius: 2px;
}

.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}

.lp-nav__employee {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color var(--lp-transition), background var(--lp-transition), border-color var(--lp-transition);
}

.lp-nav__employee i {
  font-size: 0.75rem;
  opacity: 0.7;
}

.lp-nav__employee:hover,
.lp-nav__employee:focus-visible {
  color: var(--lp-text);
  background: var(--lp-bg-alt);
  outline: none;
}

.lp-nav__employee--station {
  border-color: var(--lp-border);
  background: #fff;
}

.lp-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #fff;
  color: var(--lp-text);
  cursor: pointer;
  flex-shrink: 0;
}

.lp-nav__toggle:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.lp-nav__toggle-bars {
  width: 18px;
  height: 12px;
  position: relative;
}

.lp-nav__toggle-bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.lp-nav__toggle-bars span:nth-child(1) { top: 0; }
.lp-nav__toggle-bars span:nth-child(2) { top: 5px; }
.lp-nav__toggle-bars span:nth-child(3) { top: 10px; }

.lp-nav.is-open .lp-nav__toggle-bars span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.lp-nav.is-open .lp-nav__toggle-bars span:nth-child(2) {
  opacity: 0;
}

.lp-nav.is-open .lp-nav__toggle-bars span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: var(--lp-btn-h);
  padding: 0.65rem 1.15rem;
  border-radius: var(--lp-radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background var(--lp-transition), border-color var(--lp-transition), color var(--lp-transition), transform var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-btn:active {
  transform: scale(0.98);
}

.lp-btn:focus-visible {
  outline: 2px solid rgba(200, 16, 46, 0.45);
  outline-offset: 2px;
}

.lp-btn--primary {
  background: var(--lp-primary);
  border-color: var(--lp-primary);
  color: #fff;
}

.lp-btn--primary:hover {
  background: var(--lp-primary-dark);
  border-color: var(--lp-primary-dark);
  color: #fff;
}

.lp-btn--secondary {
  background: #fff;
  border-color: var(--lp-border);
  color: var(--lp-text);
}

.lp-btn--secondary:hover {
  background: var(--lp-bg-alt);
  border-color: #d1d5db;
  color: var(--lp-text);
}

.lp-btn--ghost {
  background: transparent;
  border-color: var(--lp-border);
  color: var(--lp-muted);
}

.lp-btn--ghost:hover {
  background: var(--lp-bg-alt);
  color: var(--lp-text);
  border-color: #d1d5db;
}

.lp-btn--sm {
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
}

.lp-btn--lg {
  min-height: var(--lp-btn-h-lg);
  padding: 0.75rem 1.35rem;
}

/* ── Sections ── */
.lp-section {
  padding: 4.5rem 0;
}

.lp-section--alt {
  background: var(--lp-bg-alt);
}

.lp-section--compact {
  padding: 3.5rem 0;
}

.lp-section__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-primary);
}

.lp-section__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--lp-text);
  letter-spacing: -0.02em;
}

.lp-section__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

.lp-section__header {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.lp-section__header--center {
  margin-inline: auto;
  text-align: center;
}

.lp-section__header--center .lp-section__lead {
  margin-inline: auto;
}

.lp-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .lp-reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .lp-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Alerts ── */
.lp-alert-banner {
  padding-top: 1rem;
}

.lp-alert {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--lp-error-border);
  border-radius: var(--lp-radius-sm);
  background: var(--lp-error-bg);
  color: var(--lp-error);
  font-size: 0.875rem;
  line-height: 1.5;
}

.lp-alert--success {
  border-color: var(--lp-success-border);
  background: var(--lp-success-bg);
  color: var(--lp-success);
}

.lp-alert__icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1rem;
}

.lp-alert__body {
  flex: 1;
  min-width: 0;
}

.lp-alert__body strong {
  display: block;
  margin-bottom: 0.25rem;
}

.lp-alert ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.lp-alert ul li + li {
  margin-top: 0.15rem;
}

/* ── Hero ── */
.lp-hero {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(180deg, var(--lp-bg-alt) 0%, var(--lp-bg) 100%);
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  background: #fff;
  color: var(--lp-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-badge i {
  font-size: 0.625rem;
}

.lp-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--lp-text);
}

.lp-hero__text {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

/* ── Dashboard preview ── */
.lp-preview {
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  background: #fff;
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
}

.lp-preview--dashboard {
  border-color: #dbeafe;
}

.lp-preview__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-bg-alt);
}

.lp-preview__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}

.lp-preview__dot--red { background: #f87171; }
.lp-preview__dot--yellow { background: #fbbf24; }
.lp-preview__dot--green { background: #34d399; }

.lp-preview__label {
  margin-left: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-preview__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-preview__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: lp-pulse 2s ease infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.lp-preview__body {
  padding: 1.25rem;
}

.lp-preview__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.lp-preview__stat {
  padding: 0.85rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: var(--lp-bg-alt);
  transition: border-color var(--lp-transition);
}

.lp-preview__stat--warn {
  border-color: #fde68a;
  background: var(--lp-warn-bg);
}

.lp-preview__stat--mini {
  padding: 0.65rem 0.75rem;
}

.lp-preview__stat-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.lp-preview__stat-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.lp-preview__stat-icon--blue { background: #fef2f2; color: var(--lp-primary); }
.lp-preview__stat-icon--green { background: #d1fae5; color: #059669; }
.lp-preview__stat-icon--amber { background: #fef3c7; color: #d97706; }
.lp-preview__stat-icon--purple { background: #fef9c3; color: var(--gold, #F5A900); }

.lp-preview__stat-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--lp-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lp-preview__stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1.2;
}

.lp-preview__stat-value--sm {
  font-size: 0.875rem;
  line-height: 1.3;
}

.lp-preview__stat-badge {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: #fef3c7;
  color: var(--lp-warn);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lp-text--warn { color: var(--lp-warn); }
.lp-text--danger { color: #dc2626; }

.lp-preview__scan {
  border: 1px dashed #bfdbfe;
  border-radius: var(--lp-radius-sm);
  background: var(--lp-primary-light);
  overflow: hidden;
}

.lp-preview__scan--featured {
  border-style: solid;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.lp-preview__scan-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
}

.lp-preview__qr {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #bfdbfe;
  color: var(--lp-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.lp-preview__qr svg {
  width: 28px;
  height: 28px;
}

.lp-preview__scan-text {
  flex: 1;
  min-width: 0;
}

.lp-preview__scan-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--lp-text);
}

.lp-preview__scan-text span {
  font-size: 0.75rem;
  color: var(--lp-muted);
}

.lp-preview__scan-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: #d1fae5;
  color: #059669;
  font-size: 0.6875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.lp-preview__scan-status i {
  font-size: 0.4rem;
}

.lp-preview__scan-bar {
  height: 3px;
  background: rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.lp-preview__scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: var(--lp-primary);
  opacity: 0.6;
  animation: lp-scan 2.5s ease-in-out infinite;
}

@keyframes lp-scan {
  0% { left: -40%; }
  100% { left: 100%; }
}

.lp-preview__note {
  margin: 0.85rem 0 0;
  font-size: 0.6875rem;
  color: var(--lp-muted);
  text-align: center;
}

/* ── Quick access cards ── */
.lp-access {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lp-access__card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: #fff;
  box-shadow: var(--lp-shadow);
  transition: transform var(--lp-transition), box-shadow var(--lp-transition), border-color var(--lp-transition);
}

.lp-access__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-md);
  border-color: #d1d5db;
}

.lp-access__card--featured {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #fff 0%, var(--lp-primary-light) 100%);
}

.lp-access__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.lp-access__icon--primary { background: var(--lp-primary-light); color: var(--lp-primary); }
.lp-access__icon--employee { background: #fef2f2; color: var(--lp-primary); }
.lp-access__icon--station { background: #ccfbf1; color: var(--lp-station); }

.lp-access__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.lp-access__desc {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--lp-muted);
  flex: 1;
}

.lp-access__list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.lp-access__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--lp-text);
}

.lp-access__list i {
  color: var(--lp-primary);
  font-size: 0.7rem;
  width: 14px;
  text-align: center;
}

.lp-access__card .lp-btn {
  width: 100%;
  margin-top: auto;
}

/* ── Feature cards ── */
.lp-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.lp-feature {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: #fff;
  box-shadow: var(--lp-shadow);
  height: 100%;
  transition: transform var(--lp-transition), box-shadow var(--lp-transition), border-color var(--lp-transition);
}

.lp-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-md);
  border-color: #d1d5db;
}

.lp-feature:hover .lp-feature__icon {
  background: var(--lp-primary-light);
  border-color: #bfdbfe;
}

.lp-feature--compact {
  padding: 1.15rem;
}

.lp-feature__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  background: var(--lp-bg-alt);
  color: var(--lp-primary);
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: background var(--lp-transition), border-color var(--lp-transition);
}

.lp-feature__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.lp-feature__text {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--lp-muted);
  flex: 1;
}

/* ── How it works / timeline ── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.lp-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-primary) 0%, var(--lp-accent) 100%);
  opacity: 0.4;
}

.lp-step {
  position: relative;
  text-align: center;
  padding-top: 0.25rem;
}

.lp-step__marker {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  z-index: 1;
}

.lp-step__num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lp-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  z-index: 2;
}

.lp-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--lp-border);
  background: #fff;
  color: var(--lp-primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: border-color var(--lp-transition), background var(--lp-transition);
}

.lp-step:hover .lp-step__icon {
  border-color: #bfdbfe;
  background: var(--lp-primary-light);
}

.lp-step__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.lp-step__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-muted);
}

/* ── Benefits ── */
.lp-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.lp-benefit {
  padding: 1.35rem 1.15rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: #fff;
  text-align: center;
  transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-benefit:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-md);
}

.lp-benefit__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.85rem;
  border-radius: 10px;
  background: var(--lp-primary-light);
  color: var(--lp-primary);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.lp-benefit__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.lp-benefit__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--lp-muted);
}

/* ── About ── */
.lp-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.lp-about__card {
  padding: 1.5rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: #fff;
  box-shadow: var(--lp-shadow);
}

.lp-about__card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

.lp-about__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.lp-about__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--lp-text);
  line-height: 1.45;
}

.lp-about__list i {
  margin-top: 0.15rem;
  color: var(--lp-primary);
}

/* ── Employee portal ── */
.lp-employee {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.lp-employee__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.lp-preview--employee {
  border-color: #ddd6fe;
}

.lp-employee__today {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: var(--lp-bg-alt);
}

.lp-employee__today-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lp-employee__today-label {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-status {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lp-status--present {
  background: #d1fae5;
  color: #059669;
}

.lp-employee__today-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.lp-employee__today-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

.lp-employee__today-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lp-muted);
}

.lp-employee__today-list span i {
  width: 14px;
  text-align: center;
  font-size: 0.7rem;
  opacity: 0.7;
}

.lp-employee__today-list strong {
  font-weight: 600;
  color: var(--lp-text);
  text-align: right;
}

.lp-employee__time-in {
  color: #059669;
}

.lp-employee__summary-label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-employee__month {
  margin-bottom: 0;
}

.lp-employee__cta {
  margin-top: 1rem;
}

.lp-employee__cta .lp-btn {
  width: 100%;
}

/* ── QR Station ── */
.lp-station {
  background: linear-gradient(180deg, var(--lp-station-light) 0%, var(--lp-bg) 100%);
}

.lp-station__flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.lp-station__flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  min-width: 80px;
}

.lp-station__flow-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #99f6e4;
  color: var(--lp-station);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.lp-station__flow-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--lp-muted);
  max-width: 90px;
  line-height: 1.3;
}

.lp-station__flow-arrow {
  color: #99f6e4;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.lp-station__security {
  padding: 1rem;
  border: 1px solid #99f6e4;
  border-radius: var(--lp-radius-sm);
  background: rgba(255, 255, 255, 0.7);
}

.lp-station__security-title {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-station);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-station__panel {
  border-color: #99f6e4;
  box-shadow: 0 12px 32px rgba(var(--primary-rgb), 0.08);
}

.lp-station__panel-header {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.lp-station__panel-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ccfbf1;
  color: var(--lp-station);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lp-station__panel-header .lp-login__panel-title {
  margin-bottom: 0.2rem;
}

.lp-station__panel-header .lp-login__panel-sub {
  margin-bottom: 0;
}

/* ── Login section ── */
.lp-section,
.lp-hero,
.lp-login {
  scroll-margin-top: calc(var(--lp-nav-h) + 0.75rem);
}

.lp-login__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.lp-login__copy .lp-section__title {
  margin-bottom: 0.75rem;
}

.lp-login__checks {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.lp-login__checks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--lp-text);
}

.lp-login__checks i {
  color: var(--lp-primary);
  width: 1rem;
  text-align: center;
}

.lp-login__panel {
  padding: 1.5rem;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--lp-shadow-md);
}

.lp-login__panel-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.lp-login__panel-sub {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--lp-muted);
}

.lp-login__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lp-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lp-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 0.75rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: #fff;
  transition: border-color var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-control:focus-within {
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.lp-control--invalid {
  border-color: #dc2626;
}

.lp-control--invalid:focus-within {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.lp-control__icon {
  color: #9ca3af;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.lp-input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 0;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--lp-text);
  padding: 0;
}

.lp-input::placeholder {
  color: #9ca3af;
}

.lp-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: -0.25rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--lp-muted);
  cursor: pointer;
  flex-shrink: 0;
}

.lp-toggle:hover,
.lp-toggle:focus-visible {
  color: var(--lp-primary);
  background: var(--lp-primary-light);
  outline: none;
}

.lp-error {
  margin: 0;
  font-size: 0.8125rem;
  color: #dc2626;
}

.lp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lp-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--lp-text);
  cursor: pointer;
  user-select: none;
}

.lp-remember input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--lp-primary);
  cursor: pointer;
}

.lp-forgot {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lp-primary);
  text-decoration: none;
}

.lp-forgot:hover {
  color: var(--lp-primary-dark);
  text-decoration: underline;
}

.lp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 0.15rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--lp-primary);
  border-radius: var(--lp-radius-sm);
  background: var(--lp-primary);
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--lp-transition), border-color var(--lp-transition), opacity var(--lp-transition);
}

.lp-submit:hover {
  background: var(--lp-primary-dark);
  border-color: var(--lp-primary-dark);
}

.lp-submit:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.lp-submit.is-loading,
.lp-submit:disabled {
  opacity: 0.85;
  cursor: wait;
  pointer-events: none;
}

.lp-submit-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.lp-submit.is-loading .lp-submit-idle {
  display: none;
}

.lp-submit.is-loading .lp-submit-loading {
  display: inline-flex;
}

.lp-submit--station {
  background: var(--lp-station);
  border-color: var(--lp-station);
}

.lp-submit--station:hover {
  background: var(--lp-station-dark);
  border-color: var(--lp-station-dark);
}

.lp-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lp-spin 0.7s linear infinite;
}

@keyframes lp-spin {
  to { transform: rotate(360deg); }
}

.lp-employee-link {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--lp-border);
  font-size: 0.875rem;
  color: var(--lp-muted);
  text-align: center;
}

.lp-employee-link a {
  color: var(--lp-primary);
  font-weight: 500;
  text-decoration: none;
}

.lp-employee-link a:hover {
  color: var(--lp-primary-dark);
  text-decoration: underline;
}

/* ── Footer ── */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  background: #fff;
  padding: 2.5rem 0 1.75rem;
}

.lp-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.lp-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--lp-text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
}

.lp-footer__brand svg {
  width: 18px;
  height: 18px;
  color: var(--lp-primary);
}

.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-footer__links a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--lp-transition);
}

.lp-footer__links a:hover,
.lp-footer__links a:focus-visible {
  color: var(--lp-text);
  outline: none;
}

.lp-footer__copy {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lp-border);
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .lp-features,
  .lp-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-access {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .lp-employee {
    grid-template-columns: 1fr;
  }

  .lp-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .lp-steps::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .lp-hero__grid,
  .lp-about,
  .lp-login__grid {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    padding-top: 2rem;
  }

  .lp-nav__desktop {
    display: none;
  }

  .lp-nav__toggle {
    display: inline-flex;
  }

  .lp-nav__panel {
    display: none;
    position: fixed;
    top: var(--lp-nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-bottom: 1px solid var(--lp-border);
    padding: 1rem;
    box-shadow: var(--lp-shadow-md);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lp-nav.is-open .lp-nav__panel {
    display: block;
  }

  .lp-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .lp-nav__links a {
    min-height: 48px;
    font-size: 1rem;
    padding: 0.65rem 0.85rem;
  }

  .lp-nav__links a.is-active::after {
    display: none;
  }

  .lp-nav__links a.is-active {
    background: var(--lp-primary-light);
  }

  .lp-nav__panel-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--lp-border);
  }

  .lp-nav__panel-actions .lp-btn,
  .lp-nav__panel-actions .lp-nav__employee {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .lp-station__flow {
    justify-content: center;
  }

  .lp-station__flow-arrow {
    display: none;
  }

  .lp-station__flow-step {
    flex: 1 1 40%;
  }
}

@media (min-width: 901px) {
  .lp-nav__panel {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    position: static;
    border: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
    flex: 1;
    justify-content: flex-end;
  }

  .lp-nav__desktop {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .lp-nav__panel-actions {
    display: none;
  }
}

@media (max-width: 640px) {
  .lp-section {
    padding: 3.25rem 0;
  }

  .lp-section--compact {
    padding: 2.5rem 0;
  }

  .lp-features,
  .lp-benefits,
  .lp-steps,
  .lp-employee__features {
    grid-template-columns: 1fr;
  }

  .lp-hero__actions {
    flex-direction: column;
  }

  .lp-hero__actions .lp-btn {
    width: 100%;
  }

  .lp-login__panel {
    padding: 1.25rem 1.1rem;
  }

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

  .lp-preview__stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 375px) {
  .lp-container {
    width: calc(100% - 1.5rem);
  }

  .lp-nav__name {
    max-width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-spinner,
  .lp-preview__live-dot,
  .lp-preview__scan-line {
    animation: none;
  }

  .lp-btn,
  .lp-control,
  .lp-submit,
  .lp-nav__links a,
  .lp-feature,
  .lp-access__card,
  .lp-benefit {
    transition: none;
  }

  .lp-btn:active,
  .lp-feature:hover,
  .lp-access__card:hover,
  .lp-benefit:hover {
    transform: none;
  }

  .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html,
  .landing-body {
    scroll-behavior: auto;
  }
}
