@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a2332;
  background: #fafbfc;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #0a1628;
}

p {
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: #0a1628;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #0a1628;
  background: rgba(45, 127, 249, 0.06);
}

.nav-links a.nav-cta {
  background: #0a1628;
  color: #ffffff;
  margin-left: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 9px;
  font-weight: 600;
}

.nav-links a.nav-cta:hover {
  background: #1a2d4a;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0a1628;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fafbfc;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(10, 22, 40, 0.08);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }

  .nav-links a.nav-cta {
    margin-left: 0;
    margin-top: 0.75rem;
    text-align: center;
    background: #0a1628;
    color: #fff;
  }
}

/* ===== HERO ===== */
.page-hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(45, 127, 249, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 232, 126, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2d7ff9;
  background: rgba(45, 127, 249, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-eyebrow .pulse-dot {
  width: 7px;
  height: 7px;
  background: #00e87e;
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 232, 126, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 232, 126, 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #0a1628;
  margin-bottom: 1.25rem;
}

.hero-title .accent {
  color: #2d7ff9;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #4a5568;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  background: #2d7ff9;
  color: #ffffff;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.primary-button:hover {
  background: #1a6de6;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 127, 249, 0.3);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  border-radius: 11px;
  border: 1.5px solid #d1d9e6;
  cursor: pointer;
  background: transparent;
  color: #0a1628;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.secondary-button:hover {
  border-color: #2d7ff9;
  color: #2d7ff9;
  background: rgba(45, 127, 249, 0.04);
}

/* ===== SECTIONS ===== */
.section-wrapper {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-wrapper.alt-bg {
  background: #ffffff;
  border-top: 1px solid rgba(10, 22, 40, 0.05);
  border-bottom: 1px solid rgba(10, 22, 40, 0.05);
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a1628;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.lead-paragraph {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #4a5568;
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 3rem;
}

.lead-paragraph.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2d7ff9;
  margin-bottom: 0.75rem;
}

.body-text {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  width: 100%;
}

.card-grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

/* ===== CARDS ===== */
.card {
  background: #ffffff;
  border: 1px solid rgba(10, 22, 40, 0.07);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(45, 127, 249, 0.2);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.card-icon.blue {
  background: rgba(45, 127, 249, 0.1);
  color: #2d7ff9;
}

.card-icon.green {
  background: rgba(0, 232, 126, 0.12);
  color: #00b860;
}

.card-icon.navy {
  background: rgba(10, 22, 40, 0.07);
  color: #0a1628;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.card .body-text {
  font-size: 0.93rem;
  margin-bottom: 0;
}

/* ===== STATUS BAR ===== */
.status-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #00b860;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00e87e;
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== CODE BLOCK ===== */
.code-block {
  background: #0a1628;
  border-radius: 14px;
  padding: 1.75rem 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  color: #c9d1d9;
  overflow-x: auto;
  line-height: 1.75;
  margin: 1.5rem 0;
}

.code-block .comment { color: #6b7a90; }
.code-block .keyword { color: #c792ea; }
.code-block .string { color: #00e87e; }
.code-block .property { color: #2d7ff9; }

/* ===== METRICS ROW ===== */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.metric-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(10, 22, 40, 0.06);
}

.metric-value {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0a1628;
  letter-spacing: -0.03em;
}

.metric-value .green { color: #00b860; }

.metric-label {
  font-size: 0.85rem;
  color: #6b7a90;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ===== TWO-COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* ===== IMAGE CONTAINER ===== */
.image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.08);
  background: #ffffff;
}

.image-wrapper img {
  width: 100%;
  display: block;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7a90;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 16px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #0a1628;
  border-radius: 24px;
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 127, 249, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section .section-heading {
  color: #ffffff;
  position: relative;
}

.cta-section .lead-paragraph {
  color: #8896ab;
  position: relative;
}

.cta-section .hero-actions {
  position: relative;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a1628;
  color: #8896ab;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #6b7a90;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c9d1d9;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: #6b7a90;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #4a5568;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #4a5568;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #8896ab;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2d7ff9, #00e87e);
  border-radius: 3px;
  margin: 1.5rem 0;
}

.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ===== TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  text-align: left;
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: #0a1628;
  border-bottom: 2px solid #e2e8f0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4a5568;
}

.data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f0f4f8;
  color: #1a2332;
}

.data-table tr:hover td {
  background: rgba(45, 127, 249, 0.02);
}

/* ===== CHECK LIST ===== */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #1a2332;
  line-height: 1.55;
}

.check-list .check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(0, 232, 126, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b860;
  font-size: 0.7rem;
  margin-top: 2px;
}

/* ===== PRICING CARD ===== */
.pricing-card {
  background: #ffffff;
  border: 1.5px solid rgba(10, 22, 40, 0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: #2d7ff9;
  box-shadow: 0 12px 40px rgba(45, 127, 249, 0.12);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2d7ff9;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
}

.pricing-card .card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0a1628;
  letter-spacing: -0.04em;
  margin: 1rem 0 0.25rem;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7a90;
}

.pricing-desc {
  font-size: 0.88rem;
  color: #6b7a90;
  margin-bottom: 1.75rem;
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: #ffffff;
  border: 1px solid rgba(10, 22, 40, 0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.blog-card:hover {
  border-color: rgba(45, 127, 249, 0.2);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
  transform: translateY(-3px);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e8edf3 0%, #d1d9e6 100%);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: #6b7a90;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.blog-card-body .card-title {
  margin-bottom: 0.6rem;
}

/* ===== INTEGRATION LOGO GRID ===== */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.integration-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(10, 22, 40, 0.06);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2332;
  transition: all 0.2s ease;
}

.integration-item:hover {
  border-color: rgba(45, 127, 249, 0.2);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.05);
}

.integration-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
