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

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a2d4a;
  background-color: #f7f8fb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

/* ── Top Accent Bar ── */
.top-accent-bar {
  background: #0a1628;
  border-bottom: 1px solid rgba(0, 212, 126, 0.15);
  padding: 10px 0;
  text-align: center;
  position: relative;
}

.top-accent-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.top-accent-bar__text {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  color: #8899aa;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-accent-bar__text span {
  color: #00d47e;
}

.top-accent-bar__cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.7rem, 0.75vw, 0.8rem);
  color: #00d47e;
  border: 1px solid rgba(0, 212, 126, 0.3);
  padding: 6px 18px;
  border-radius: 4px;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-accent-bar__cta:hover {
  background: rgba(0, 212, 126, 0.1);
  border-color: #00d47e;
  color: #00ff9f;
}

/* ── Header / Navigation ── */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-logo__icon {
  width: 36px;
  height: 36px;
}

.site-logo__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #0a1628;
  letter-spacing: -0.02em;
}

.site-logo__text em {
  font-style: normal;
  color: #00d47e;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.main-nav__link:hover {
  color: #0a1628;
  background: #f0f4f8;
}

.main-nav__link--active {
  color: #0a1628;
  background: #f0f4f8;
}

.nav-cta-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: #00d47e;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  margin-left: 8px;
}

.nav-cta-btn:hover {
  background: #00c072;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 212, 126, 0.3);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0a1628;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── Hero Section ── */
.page-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) 24px clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.7rem, 0.8vw, 0.85rem);
  color: #00d47e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(0, 212, 126, 0.25);
  border-radius: 100px;
  background: rgba(0, 212, 126, 0.04);
}

.hero-eyebrow__dot {
  width: 6px;
  height: 6px;
  background: #00d47e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #0a1628;
  max-width: 800px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #00d47e 0%, #00b88a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: #5a6a7e;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.primary-button {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  background: #00d47e;
  border: 2px solid #00d47e;
  padding: 14px 36px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.primary-button:hover {
  background: #00c072;
  border-color: #00c072;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 126, 0.3);
}

.secondary-button {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a1628;
  background: transparent;
  border: 2px solid #d1d9e6;
  padding: 14px 36px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.secondary-button:hover {
  border-color: #0a1628;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.08);
}

.hero-image {
  max-width: 900px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08), 0 1px 3px rgba(10, 22, 40, 0.04);
  overflow: hidden;
  background: #0a1628;
}

/* ── Section Wrapper ── */
.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) 24px;
}

.section-wrapper--alt {
  background: #ffffff;
  border-top: 1px solid #e8ecf2;
  border-bottom: 1px solid #e8ecf2;
}

.section-wrapper--dark {
  background: #0a1628;
  color: #ffffff;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0a1628;
  margin-bottom: 16px;
}

.section-wrapper--dark .section-heading {
  color: #ffffff;
}

.lead-paragraph {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: #5a6a7e;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.section-wrapper--dark .lead-paragraph {
  color: #8899aa;
}

.eyebrow-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  color: #00d47e;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.body-text {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  max-width: 680px;
}

.body-text + .body-text {
  margin-top: 16px;
}

/* ── Card Grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid #e8ecf2;
  border-radius: 14px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.07);
  border-color: #d1d9e6;
}

.card-grid--dark .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.card-grid--dark .card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 212, 126, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 212, 126, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #00d47e;
}

.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #0a1628;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card-grid--dark .card-title {
  color: #ffffff;
}

.card-text {
  font-size: 0.92rem;
  color: #5a6a7e;
  line-height: 1.7;
  flex-grow: 1;
}

.card-grid--dark .card-text {
  color: #8899aa;
}

/* ── Stat Bar ── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid #e8ecf2;
  border-bottom: 1px solid #e8ecf2;
  margin: 48px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #0a1628;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: #5a6a7e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Code Block ── */
.code-block {
  background: #0a1628;
  border-radius: 12px;
  padding: 28px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.75rem, 0.9vw, 0.88rem);
  color: #c8d6e5;
  line-height: 1.8;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin: 32px 0;
}

.code-block .comment { color: #4a5568; }
.code-block .keyword { color: #c792ea; }
.code-block .string { color: #00d47e; }
.code-block .property { color: #82aaff; }
.code-block .number { color: #f78c6c; }

/* ── Footer ── */
.site-footer {
  background: #0a1628;
  color: #8899aa;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 32px;
}

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

.footer-brand__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footer-brand__name em {
  font-style: normal;
  color: #00d47e;
}

.footer-brand__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #6b7d91;
  max-width: 280px;
}

.footer-col__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-col__link {
  display: block;
  font-size: 0.88rem;
  color: #6b7d91;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-col__link:hover {
  color: #00d47e;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom__text {
  font-size: 0.8rem;
  color: #4a5568;
}

.footer-bottom__links {
  display: flex;
  gap: 24px;
}

.footer-bottom__link {
  font-size: 0.8rem;
  color: #4a5568;
  transition: color 0.2s ease;
}

.footer-bottom__link:hover {
  color: #00d47e;
}

/* ── Utility ── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .main-nav--open {
    display: flex;
  }

  .main-nav__link {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
  }

  .nav-cta-btn {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .top-accent-bar__inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .header-inner {
    height: 64px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .primary-button, .secondary-button {
    justify-content: center;
    width: 100%;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .stat-bar {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .stat-bar {
    grid-template-columns: 1fr;
  }
}
/* 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}
