/* PulsePOS theme styles (ported from static pages) */

:root {
  --brand-primary: #012466;
  --brand-accent: #e70d11;
  --ink: #0b1220;
  --muted: #5b6477;
  --surface: #0b1220;
  --bg: #ffffff;
  --soft: #f6f8ff;
  --soft-2: #eef2ff;
  --ring: rgba(1, 36, 102, 0.25);
  --shadow: 0 18px 50px rgba(11, 18, 32, 0.12);
  --shadow-sm: 0 10px 28px rgba(11, 18, 32, 0.1);
  --radius-xl: 18px;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans",
    "Liberation Sans", sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-muted-2 {
  color: var(--muted) !important;
}

.bg-soft {
  background: radial-gradient(900px 280px at 80% 0%, rgba(231, 13, 17, 0.1), transparent 60%),
    radial-gradient(900px 280px at 10% 20%, rgba(1, 36, 102, 0.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.bg-soft-2 {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.navbar-glass {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(1, 36, 102, 0.1);
}

.brand-badge {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-primary), #173a96);
  box-shadow: 0 12px 26px rgba(1, 36, 102, 0.2);
}

.btn-brand {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-bg: #0b2f7a;
  --bs-btn-hover-border-color: #0b2f7a;
  --bs-btn-focus-shadow-rgb: 1, 36, 102;
  box-shadow: 0 12px 28px rgba(1, 36, 102, 0.22);
}

.btn-accent {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-accent);
  --bs-btn-border-color: var(--brand-accent);
  --bs-btn-hover-bg: #c80b0e;
  --bs-btn-hover-border-color: #c80b0e;
  --bs-btn-focus-shadow-rgb: 231, 13, 17;
  box-shadow: 0 12px 28px rgba(231, 13, 17, 0.22);
}

.btn-ghost {
  --bs-btn-color: var(--brand-primary);
  --bs-btn-bg: rgba(1, 36, 102, 0.08);
  --bs-btn-border-color: rgba(1, 36, 102, 0.12);
  --bs-btn-hover-bg: rgba(1, 36, 102, 0.12);
  --bs-btn-hover-border-color: rgba(1, 36, 102, 0.16);
  --bs-btn-focus-shadow-rgb: 1, 36, 102;
}

.hero-title {
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.lead-tight {
  font-size: 1.1rem;
  line-height: 1.65;
}

.card-modern {
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 0 rgba(11, 18, 32, 0.02);
}

.hover-lift {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(1, 36, 102, 0.18);
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(1, 36, 102, 0.08);
  border: 1px solid rgba(1, 36, 102, 0.12);
  color: var(--brand-primary);
}

.feature-shot {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(1, 36, 102, 0.1), rgba(231, 13, 17, 0.08));
  border: 1px dashed rgba(1, 36, 102, 0.22);
  min-height: 120px;
  display: grid;
  place-items: center;
  color: rgba(1, 36, 102, 0.78);
  font-weight: 600;
}

.counter {
  font-variant-numeric: tabular-nums;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-pad {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .section-pad {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

.pricing-pop {
  border: 1px solid rgba(231, 13, 17, 0.25);
  box-shadow: 0 24px 70px rgba(231, 13, 17, 0.1);
}

.footer-link {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}
.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .hover-lift,
  .reveal {
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

