:root {
  --ss-bg: #020617;
  --ss-bg-soft: rgba(15, 23, 42, 0.92);
  --ss-bg-card: radial-gradient(circle at top, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.98));
  --ss-border: rgba(148, 163, 184, 0.35);
  --ss-text: #e5edf9;
  --ss-text-soft: #cbd5e1;
  --ss-muted: #94a3b8;
  --ss-blue: #2563eb;
  --ss-blue-2: #1d4ed8;
  --ss-radius: 18px;
  --ss-radius-xl: 24px;
  --ss-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --ss-max: 1120px;
}

html,
body {
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #01040f 100%);
  color: var(--ss-text);
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--ss-max);
  margin: 0 auto;
  padding: 0 18px;
}

.top-bar {
  background: rgba(15, 23, 42, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
}

.brand a {
  color: #fff;
  text-decoration: none;
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: radial-gradient(circle at 30% 20%, #60a5fa, #2563eb 45%, #1e3a8a 100%);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.35);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.96rem;
  transition: color .2s ease, opacity .2s ease;
}

.top-nav a:hover,
.top-nav a.is-active {
  color: #60a5fa;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-pill,
.top-call {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.84rem;
}

.top-pill {
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 9px 14px;
  color: #dbe7ff;
  background: rgba(2, 6, 23, 0.55);
}

.top-call {
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(96, 165, 250, 0.45);
  background: rgba(37, 99, 235, 0.15);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: #fff;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 1.35rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 18px 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.96);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  color: #e2e8f0;
  text-decoration: none;
}

.mobile-menu-call {
  font-weight: 600;
}

.blog-hero {
  padding: 36px 0 20px;
}

.blog-hero-card {
  border-radius: var(--ss-radius-xl);
  border: 1px solid var(--ss-border);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.94)),
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.22), rgba(15, 23, 42, 0.96));
  box-shadow: var(--ss-shadow);
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dbe7ff;
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.blog-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.blog-subtitle {
  max-width: 760px;
  margin: 0;
  color: var(--ss-text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.blog-hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--ss-blue), var(--ss-blue-2));
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #e2e8f0;
  background: rgba(2, 6, 23, 0.38);
}

.blog-listing-section {
  padding: 16px 0 30px;
}

.blog-section-heading {
  margin-bottom: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.section-subtitle {
  color: var(--ss-text-soft);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.45);
  color: #dbe7ff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  border-radius: var(--ss-radius);
  border: 1px solid var(--ss-border);
  background: var(--ss-bg-card);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  border-color: rgba(96, 165, 250, 0.42);
}

.blog-card-title {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.blog-card-title a {
  color: #f8fbff;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: #93c5fd;
}

.blog-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ss-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.blog-desc {
  margin: 0;
  color: var(--ss-text-soft);
  line-height: 1.7;
  font-size: 1rem;
}

.contact-cta-section {
  padding: 12px 0 40px;
}

.section-inner {
  border-radius: var(--ss-radius-xl);
  border: 1px solid var(--ss-border);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.96));
  box-shadow: var(--ss-shadow);
  padding: 28px;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.final-cta p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ss-text-soft);
  line-height: 1.7;
}

footer {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 22px 0 30px;
}

.footer-inner {
  max-width: var(--ss-max);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ss-muted);
}

.footer-inner a {
  color: #dbe7ff;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .top-nav {
    gap: 16px;
  }

  .top-nav a {
    font-size: 0.9rem;
  }
}

@media (max-width: 980px) {
  .top-nav,
  .top-bar-right {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .top-bar-inner {
    padding: 14px 0;
  }

  .brand-text {
    font-size: 1.15rem;
  }

  .blog-hero {
    padding-top: 24px;
  }

  .blog-hero-card,
  .section-inner,
  .blog-card {
    padding: 20px;
  }

  .blog-card-title {
    font-size: 1.2rem;
  }

  .blog-subtitle,
  .blog-desc,
  .final-cta p {
    font-size: 0.97rem;
  }
}
