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

/* ─── RESET ─── */
*, *::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;
  background: #080c14;
  color: #c8d0e0;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── UTILITY ─── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  color: #f0f4fc;
  line-height: 1.15;
  font-weight: 700;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw + 0.5rem, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f0f4fc;
}
.section-heading {
  font-size: clamp(2rem, 3.5vw + 0.3rem, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.card-title {
  font-size: clamp(1.15rem, 1.5vw + 0.2rem, 1.4rem);
  font-weight: 700;
  color: #f0f4fc;
  margin-bottom: 0.5rem;
}
.lead-paragraph {
  font-size: clamp(1.05rem, 1.3vw + 0.1rem, 1.3rem);
  color: #8a96aa;
  line-height: 1.7;
}
.body-text {
  font-size: clamp(0.95rem, 1vw + 0.1rem, 1.08rem);
  color: #8a96aa;
  line-height: 1.75;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw + 0.1rem, 1.4rem);
  color: #7a8ba8;
  line-height: 1.6;
  max-width: 600px;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f5a623;
  margin-bottom: 0.75rem;
  display: inline-block;
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
}
.header-top a {
  color: #6b7a94;
  transition: color 0.2s;
}
.header-top a:hover {
  color: #f5a623;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #f0f4fc;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-icon {
  width: 34px;
  height: 34px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #8a96aa;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: #f0f4fc;
  background: rgba(255,255,255,0.05);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-ghost {
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #8a96aa;
  border-radius: 8px;
  transition: all 0.25s;
}
.btn-ghost:hover {
  color: #f0f4fc;
  background: rgba(255,255,255,0.05);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0a0e1a;
  background: linear-gradient(135deg, #f5a623 0%, #f59e0b 50%, #fbbf24 100%);
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(245,166,35,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(245,166,35,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f0f4fc;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #c8d0e0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.page-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.08) 0%, rgba(139,92,246,0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 820px;
  margin: 0 auto;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #f5a623 0%, #fbbf24 30%, #8b5cf6 70%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  margin: 1.5rem auto 2.5rem;
}
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  margin-top: 3.5rem;
  position: relative;
}
.hero-visual .image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 80px rgba(245,166,35,0.06);
}

/* ─── SECTIONS ─── */
.section-wrapper {
  padding: clamp(3.5rem, 7vw, 7rem) 0;
  position: relative;
}
.section-wrapper.alt-bg {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.section-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.section-inner .lead-paragraph {
  margin-top: 1rem;
}

/* ─── CARDS ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.card:hover::before {
  opacity: 1;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  background: rgba(245,166,35,0.1);
  color: #f5a623;
}
.card-icon.purple {
  background: rgba(139,92,246,0.1);
  color: #8b5cf6;
}
.card-icon.cyan {
  background: rgba(6,182,212,0.1);
  color: #06b6d4;
}
.card-title {
  margin-bottom: 0.65rem;
}
.card .body-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── IMAGE ─── */
.image {
  width: 100%;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  object-fit: cover;
}
.image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ─── STATS BAR ─── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #f5a623;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.88rem;
  color: #6b7a94;
  margin-top: 0.25rem;
}

/* ─── LOGOS ─── */
.logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  opacity: 0.4;
}
.logos-strip span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6b7a94;
  letter-spacing: 0.05em;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.01);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  margin-bottom: 1rem;
}
.footer-brand .body-text {
  font-size: 0.9rem;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7a94;
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: #7a8ba8;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #f5a623;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
  color: #4a5568;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  color: #4a5568;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #f5a623;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .header-top {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 12, 20, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 0.85rem 1rem;
    width: 100%;
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .header-actions .btn-ghost {
    display: none;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* 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}
