
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}


/* Keen-inspired accents */
.hero-gradient {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-gradient::before,
.hero-gradient::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  pointer-events: none;
  z-index: 0;
}

.hero-gradient::before {
  top: -35%;
  right: -15%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.45), transparent 60%);
}

.hero-gradient::after {
  bottom: -25%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.35), transparent 65%);
}

.hero-gradient > * {
  position: relative;
  z-index: 1;
}

.section-accent {
  position: relative;
  isolation: isolate;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(79, 70, 229, 0.05) 40%, transparent);
  z-index: -1;
}

.section-accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.35), rgba(56, 189, 248, 0.35), rgba(16, 185, 129, 0.35));
  z-index: -1;
}

.card-keen {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-keen:hover,
.card-keen:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .py-lg-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}

.letter-spacing-sm {
  letter-spacing: 0.08em;
}

.shadow-soft {
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
  transition: box-shadow 0.2s ease;
}

.shadow-soft:hover,
.shadow-soft:focus-within {
  box-shadow: 0 32px 72px rgba(15, 23, 42, 0.16);
}


.admin-navbar {
  background: #0b1120;

}

.admin-navbar .navbar-brand {
  color: #f8fafc;
}

.admin-navbar .nav-link {
  color: rgba(248, 250, 252, 0.8);
  transition: color 0.2s ease;
}

.admin-navbar .nav-link:hover,
.admin-navbar .nav-link:focus,
.admin-navbar .nav-link.active {
  color: #ffffff;
}

/* Ensure dropdown menus align directly beneath their toggles */
.admin-navbar .navbar-nav > li {
  position: relative;
}

.admin-navbar .navbar-nav .dropdown-menu {
  left: 0;
  right: auto;
  margin-top: 0.5rem;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Home page */
body {
  --bs-body-font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --hero-gradient: linear-gradient(140deg, #0b1120, #020617 65%, #00010a);
  --card-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
  color: #0f172a;
  background-color: #f8fafc;
}

body[data-page="home"] .navbar-brand {
  font-weight: 700;
  color: #fff;
}

body[data-page="home"] .hero {
  background: var(--hero-gradient);
  color: #f8fafc;
}

body[data-page="home"] .hero .btn-primary {
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

body[data-page="home"] .device-frame {
  position: relative;
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 25px 60px rgba(8, 11, 19, 0.45);
  padding: 1.75rem 1.5rem 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="home"] .device-frame::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

body[data-page="home"] .device-screen {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.65));
  border: 1px solid rgba(148, 163, 184, 0.15);
  padding: 1.5rem;
}

body[data-page="home"] .device-screen .card-tile {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1rem;
}

body[data-page="home"] .device-footer {
  margin-top: 1.75rem;
  background: #05070e;
  height: 14px;
}

body[data-page="home"] .hero .badge {
  letter-spacing: 0.02em;
}

body[data-page="home"] .hero h1 {
  line-height: 1.1;
}

body[data-page="home"] .hero .lead {
  max-width: 540px;
}

body[data-page="home"] .hero .cta-group {
  gap: 1rem;
}

body[data-page="home"] .badge-soft {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

body[data-page="home"] .logos img {
  max-height: 34px;
  opacity: 0.75;
}

body[data-page="home"] .stat-card,
body[data-page="home"] .info-card,
body[data-page="home"] .feature-card,
body[data-page="home"] .use-case-card,
body[data-page="home"] .testimonial-card,
body[data-page="home"] .faq-item,
body[data-page="home"] .cta-card {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

body[data-page="home"] .use-case-illustration {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(59, 130, 246, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

body[data-page="home"] .feature-icon {
  font-size: 1.75rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

body[data-page="home"] .testimonial-card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.86));
  color: rgba(241, 245, 249, 0.95);
  border: none;
}

body[data-page="home"] .testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.7;
}

body[data-page="home"] .plan-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.85);
  color: rgba(241, 245, 249, 0.95);
}

body[data-page="home"] .plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.4);
}

body[data-page="home"] .plan-card.highlight {
  border: 1px solid rgba(59, 130, 246, 0.5);
  box-shadow: 0 25px 55px rgba(37, 99, 235, 0.35);
}

body[data-page="home"] .plan-card .price {
  font-size: 2.75rem;
  font-weight: 700;
}

body[data-page="home"] .plan-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.9);
}

body[data-page="home"] .plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body[data-page="home"] .plan-card ul li {
  padding: 0.65rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(226, 232, 240, 0.92);
}

body[data-page="home"] .plan-card ul li i {
  color: #4ade80;
}

body[data-page="home"] .plan-card .btn {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

body[data-page="home"] .plan-card .btn-outline-light {
  border-color: rgba(226, 232, 240, 0.4);
  color: rgba(226, 232, 240, 0.92);
}

body[data-page="home"] .plan-card .btn-outline-light:hover {
  background: rgba(241, 245, 249, 0.1);
}

body[data-page="home"] .plan-card .badge {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

body[data-page="home"] .bg-muted-dark {
  background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.15), transparent 45%),
    radial-gradient(circle at 100% 0%, rgba(79, 70, 229, 0.12), transparent 40%),
    #0f172a;
}

body[data-page="home"] .bg-muted-dark .stat-card {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: rgba(241, 245, 249, 0.95);
}

body[data-page="home"] .gradient-border {
  position: relative;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(59, 130, 246, 0.7), rgba(59, 130, 246, 0.05));
}

body[data-page="home"] .gradient-border > .inner {
  border-radius: 23px;
  background: rgba(15, 23, 42, 0.9);
  padding: 3rem;
}

body[data-page="home"] .bg-soft-primary {
  background: rgba(59, 130, 246, 0.08);
  color: #1d4ed8;
}

body[data-page="home"] .bg-soft-success {
  background: rgba(34, 197, 94, 0.08);
  color: #15803d;
}

body[data-page="home"] .bg-soft-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
}

body[data-page="home"] .bg-soft-info {
  background: rgba(14, 165, 233, 0.12);
  color: #0369a1;
}

body[data-page="home"] .cta-card {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: rgba(241, 245, 249, 0.95);
}

body[data-page="home"] .cta-card .btn-light {
  background: rgba(241, 245, 249, 0.95);
  color: #0f172a;
}

body[data-page="home"] .logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

body[data-page="home"] .logo-grid img {
  max-height: 28px;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

body[data-page="home"] .logo-grid img:hover {
  opacity: 1;
}

@media (max-width: 991.98px) {
  body[data-page="home"] .navbar-brand {
    color: #0f172a;
  }

  .admin-navbar {
    background: #0b1120;
  }
}

/* About page */
body[data-page="about"] {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
}

body[data-page="about"] .hero-about {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), #eef2ff);
}

body[data-page="about"] .hero-about .badge-soft {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  font-weight: 600;
}

body[data-page="about"] .hero-about h1 {
  line-height: 1.1;
}

body[data-page="about"] .section-card {
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 1.5rem 3rem rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

body[data-page="about"] .value-card {
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  padding: 1.75rem;
  height: 100%;
}

body[data-page="about"] .value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

body[data-page="about"] .cta-section {
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

body[data-page="about"] .cta-section .btn {
  box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.25);
}

/* Integrations page */
body[data-page="integrations"] {
  font-family: "Inter", sans-serif;
}

body[data-page="integrations"] .badge-soft {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
}

body[data-page="integrations"] .card-integration {
  border: 0;
  border-radius: 1.5rem;
  box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.08);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body[data-page="integrations"] .card-integration:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.75rem 3rem rgba(15, 23, 42, 0.12);
}

body[data-page="integrations"] .icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

body[data-page="integrations"] .timeline-step {
  position: relative;
  padding-left: 3.25rem;
}

body[data-page="integrations"] .timeline-step::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0.3rem;
  bottom: -0.3rem;
  width: 2px;
  background: rgba(148, 163, 184, 0.4);
}

body[data-page="integrations"] .timeline-step:last-child::before {
  bottom: auto;
  height: 1.5rem;
}

body[data-page="integrations"] .timeline-step .icon-circle {
  position: absolute;
  left: 0;
  top: 0;
}

body[data-page="integrations"] .category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  font-weight: 500;
  color: #0f172a;
}

body[data-page="integrations"] .partner-logos {
  gap: 1.5rem;
}

body[data-page="integrations"] .partner-logo {
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.04);
  font-weight: 600;
  color: #1f2937;
}

/* Blog index */
body[data-page="blog"] {
  --bs-body-font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
}

body[data-page="blog"] .badge-soft {
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

body[data-page="blog"] [data-article] .card {
  border-radius: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.08);
}

body[data-page="blog"] [data-article] .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.12);
}

body[data-page="blog"] .badge.text-bg-dark-subtle {
  background-color: rgba(15, 23, 42, 0.08) !important;
  color: #0f172a !important;
}

body[data-page="blog"] .card.shadow-sm {
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

body[data-page="blog"] .card.shadow-sm .card-body {
  border-radius: inherit;
}

body[data-page="blog"] .card a.stretched-link {
  color: inherit;
}

body[data-page="blog"] .card a.stretched-link:hover {
  color: #2563eb;
}

/* Performance page */
body[data-page="performance"] {
  --ink: #0f172a;
  --muted: #475569;
  --accent: #2563eb;
  --surface: #ffffff;
  --soft-surface: #f8fafc;
  --shadow-lg: 0 32px 70px rgba(15, 23, 42, 0.18);
  background-color: var(--soft-surface);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
}

body[data-page="performance"] .hero {
  background: radial-gradient(circle at top left, rgba(14, 116, 244, 0.25), transparent 55%),
    linear-gradient(135deg, #0f172a, #111827 60%, #1e293b);
  color: #e2e8f0;
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}

body[data-page="performance"] .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.35), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

body[data-page="performance"] .hero-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.45);
  padding: 2.5rem;
}

body[data-page="performance"] .eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.95);
}

body[data-page="performance"] .btn-gradient {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  border: 0;
  color: #0f172a;
  font-weight: 600;
  box-shadow: 0 20px 45px rgba(59, 130, 246, 0.4);
}

body[data-page="performance"] .btn-outline-light {
  border-width: 2px;
  color: #cbd5f5;
  border-color: rgba(148, 163, 184, 0.5);
}

body[data-page="performance"] .metric-card,
body[data-page="performance"] .story-card,
body[data-page="performance"] .faq-card,
body[data-page="performance"] .how-card,
body[data-page="performance"] .insight-card,
body[data-page="performance"] .cta-card {
  background: var(--surface);
  border-radius: 28px;
  padding: 2.25rem;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body[data-page="performance"] .metric-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.12);
  color: var(--accent);
}

body[data-page="performance"] .section-heading {
  max-width: 680px;
}

body[data-page="performance"] .gradient-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35), transparent);
  margin: 3rem 0;
}

body[data-page="performance"] .badge-soft {
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 500;
  background: rgba(37, 99, 235, 0.12);
  color: var(--accent);
}

body[data-page="performance"] .cta-card {
  background: linear-gradient(130deg, #1d4ed8, #2563eb 50%, #60a5fa);
  color: #f8fafc;
  border: none;
  box-shadow: var(--shadow-lg);
}

body[data-page="performance"] .cta-card .btn-light {
  font-weight: 600;
  color: #0f172a;
}

body[data-page="performance"] .faq-card button {
  font-weight: 600;
}

@media (max-width: 991.98px) {
  body[data-page="performance"] .hero {
    text-align: center;
  }

  body[data-page="performance"] .hero-card {
    margin-top: 3rem;
  }
}

/* Runbooks page */
body[data-page="runbooks"] {
  font-family: "Inter", sans-serif;
}

body[data-page="runbooks"] .hero-runbooks {
  background: linear-gradient(135deg, #101322 0%, #11172b 50%, #060816 100%);
}

body[data-page="runbooks"] .hero-trust-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

body[data-page="runbooks"] .card-feature.theme-dark {
  background: #0f1426;
  color: #f8fafc;
}

body[data-page="runbooks"] .timeline-step {
  border-left: 2px solid rgba(99, 102, 241, 0.25);
  padding-left: 1.5rem;
  position: relative;
}

body[data-page="runbooks"] .timeline-step::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  box-shadow: 0 0.75rem 1.5rem rgba(79, 70, 229, 0.35);
}

body[data-page="runbooks"] .plan-table th,
body[data-page="runbooks"] .plan-table td {
  vertical-align: middle;
  text-align: center;
}

body[data-page="runbooks"] .use-case-card {
  border: 0;
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.08);
  height: 100%;
}

body[data-page="runbooks"] .faq-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(79, 70, 229, 0.08);
  color: #1f2937;
}

body[data-page="runbooks"] .cta-band {
  background: linear-gradient(135deg, #4f46e5 0%, #22d3ee 100%);
}

/* Shared feature card styles */
body[data-page="features"] .card-feature,
body[data-page="runbooks"] .card-feature {
  border: 0;
  border-radius: 1.5rem;
  box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

body[data-page="features"] .card-feature:hover,
body[data-page="runbooks"] .card-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.75rem 3rem rgba(15, 23, 42, 0.12);
}

/* Features overview page */
body[data-page="features"] {
  font-family: "Inter", sans-serif;
}

body[data-page="features"] .badge-soft {
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-weight: 500;
  font-size: 0.85rem;
}

/* Uptime monitoring feature page */
body[data-page="features-uptime-monitoring"] {
  --bs-body-font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --accent: #2563eb;
  --ink: #0f172a;
  --muted: #64748b;
  --surface: #ffffff;
  --soft-surface: #f8fafc;
  --radius-xl: 28px;
  --card-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  background-color: var(--soft-surface);
  color: var(--ink);
}

body[data-page="features-uptime-monitoring"] .py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

body[data-page="features-uptime-monitoring"] .py-7 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

body[data-page="features-uptime-monitoring"] h1,
body[data-page="features-uptime-monitoring"] h2,
body[data-page="features-uptime-monitoring"] h3,
body[data-page="features-uptime-monitoring"] h4,
body[data-page="features-uptime-monitoring"] h5,
body[data-page="features-uptime-monitoring"] h6 {
  font-weight: 600;
}

body[data-page="features-uptime-monitoring"] .btn-primary {
  background: linear-gradient(120deg, #2563eb, #4f46e5);
  border: none;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
}

body[data-page="features-uptime-monitoring"] .btn-outline-primary {
  border-width: 2px;
  color: var(--ink);
  border-color: rgba(37, 99, 235, 0.4);
  background-color: rgba(37, 99, 235, 0.08);
}

body[data-page="features-uptime-monitoring"] .btn-outline-primary:hover {
  border-color: #2563eb;
  background-color: rgba(37, 99, 235, 0.16);
  color: var(--ink);
}

body[data-page="features-uptime-monitoring"] .feature-card,
body[data-page="features-uptime-monitoring"] .faq-item,
body[data-page="features-uptime-monitoring"] .process-step,
body[data-page="features-uptime-monitoring"] .cta-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

body[data-page="features-uptime-monitoring"] .section-heading {
  max-width: 720px;
}

body[data-page="features-uptime-monitoring"] .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.85rem;
}

body[data-page="features-uptime-monitoring"] .gradient-bg {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.12), transparent 55%);
}

body[data-page="features-uptime-monitoring"] .hero {
  background: linear-gradient(145deg, #0b1120, #111827);
  color: #e2e8f0;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  overflow: hidden;
  position: relative;
}

body[data-page="features-uptime-monitoring"] .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.3), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

body[data-page="features-uptime-monitoring"] .hero .card-preview {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.7);
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 80px rgba(2, 6, 23, 0.45);
}

body[data-page="features-uptime-monitoring"] .hero ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

body[data-page="features-uptime-monitoring"] .hero ul li i {
  color: #38bdf8;
  font-size: 1.1rem;
}

body[data-page="features-uptime-monitoring"] .problem-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
}

body[data-page="features-uptime-monitoring"] .process-step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.15);
  color: var(--accent);
  font-size: 1.1rem;
}

body[data-page="features-uptime-monitoring"] .faq-item button {
  font-weight: 600;
  color: var(--ink);
}

body[data-page="features-uptime-monitoring"] .faq-item .accordion-button:not(.collapsed) {
  background: rgba(37, 99, 235, 0.08);
  color: var(--ink);
  box-shadow: none;
}

body[data-page="features-uptime-monitoring"] .faq-item .accordion-button:focus {
  box-shadow: none;
}

body[data-page="features-uptime-monitoring"] .cta-card {
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.95), rgba(15, 23, 42, 0.95));
  color: #f8fafc;
  padding: 3rem;
  border: none;
}

body[data-page="features-uptime-monitoring"] .cta-card .btn-outline-light {
  border-width: 2px;
}

body[data-page="features-uptime-monitoring"] .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

body[data-page="features-uptime-monitoring"] .link-arrow:hover {
  color: #1d4ed8;
}

/* Blog: Uptime Monitoring Checklist */
body.blog-post-uptime-monitoring-checklist {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
  line-height: 1.7;
}

body.blog-post-uptime-monitoring-checklist main {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  background-color: #ffffff;
}

body.blog-post-uptime-monitoring-checklist h1,
body.blog-post-uptime-monitoring-checklist h2,
body.blog-post-uptime-monitoring-checklist h3,
body.blog-post-uptime-monitoring-checklist h4 {
  color: #0f172a;
}

body.blog-post-uptime-monitoring-checklist h1 {
  font-size: 2.75rem;
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: 700;
  line-height: 1.2;
}

body.blog-post-uptime-monitoring-checklist h2 {
  font-size: 1.9rem;
  margin-top: 48px;
  margin-bottom: 20px;
  font-weight: 600;
}

body.blog-post-uptime-monitoring-checklist h3 {
  font-size: 1.4rem;
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}

body.blog-post-uptime-monitoring-checklist p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

body.blog-post-uptime-monitoring-checklist ul,
body.blog-post-uptime-monitoring-checklist ol {
  margin: 0 0 20px 24px;
}

body.blog-post-uptime-monitoring-checklist li {
  margin-bottom: 12px;
}

body.blog-post-uptime-monitoring-checklist blockquote {
  margin: 32px 0;
  padding: 16px 24px;
  background-color: #eef2ff;
  border-left: 4px solid #6366f1;
  font-style: italic;
}

body.blog-post-uptime-monitoring-checklist .cta-block {
  margin: 48px 0;
  padding: 32px;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  text-align: center;
}

body.blog-post-uptime-monitoring-checklist .cta-block h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.8rem;
}

body.blog-post-uptime-monitoring-checklist .cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

body.blog-post-uptime-monitoring-checklist .cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-color: #1d4ed8;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

body.blog-post-uptime-monitoring-checklist .cta-primary:hover,
body.blog-post-uptime-monitoring-checklist .cta-primary:focus {
  background-color: #1e40af;
  transform: translateY(-1px);
}

body.blog-post-uptime-monitoring-checklist .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 500;
}

body.blog-post-uptime-monitoring-checklist a {
  color: #1d4ed8;
  text-decoration: none;
}

body.blog-post-uptime-monitoring-checklist a:hover {
  text-decoration: underline;
}

body.blog-post-uptime-monitoring-checklist .checklist-table {
  border-collapse: collapse;
  width: 100%;
  margin: 32px 0;
  background-color: #f1f5f9;
}

body.blog-post-uptime-monitoring-checklist .checklist-table th,
body.blog-post-uptime-monitoring-checklist .checklist-table td {
  border: 1px solid #e2e8f0;
  padding: 16px;
  text-align: left;
}

body.blog-post-uptime-monitoring-checklist .checklist-table th {
  background-color: #e2e8f0;
  font-weight: 600;
}

body.blog-post-uptime-monitoring-checklist .printable-note {
  margin-top: 48px;
  padding: 24px;
  background-color: #fef3c7;
  border-radius: 12px;
  border: 1px solid #f59e0b;
}

body.blog-post-uptime-monitoring-checklist footer {
  margin-top: 80px;
}

.card.whirl:hover {
    transform: translateY(-2px);
    box-shadow: var(--bs-box-shadow-lg);
    transition: transform .15s ease, box-shadow .15s ease;
}

