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

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #0a0e17;
  background-color: #fafbf c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a0e17;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #00c9a7;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #00a88a;
}

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

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

/* ── Top Bar ── */
.top-bar {
  background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
  color: #9ca3af;
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  padding: clamp(0.4rem, 1vw, 0.65rem) 0;
  border-bottom: 1px solid rgba(0, 201, 167, 0.15);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar__contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar__contact a {
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar__contact a:hover {
  color: #00c9a7;
}

.top-bar__socials {
  display: flex;
  gap: 1rem;
}

.top-bar__socials a {
  color: #6b7280;
  transition: color 0.25s ease;
}

.top-bar__socials a:hover {
  color: #00f0ff;
}

/* ── Header / Navigation ── */
.site-header {
  background: rgba(250, 251, 252, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 14, 23, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(10, 14, 23, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.6rem, 1.5vw, 1rem) 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

.logo__text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: #0a0e17;
  letter-spacing: -0.03em;
}

.logo__text span {
  color: #00c9a7;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.75rem);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(0.25rem, 1vw, 0.1rem);
  flex-wrap: wrap;
}

.nav-links a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0a0e17;
  background: rgba(0, 201, 167, 0.08);
}

.nav-links a.active {
  color: #00c9a7;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  color: #fff;
  background: linear-gradient(135deg, #00c9a7 0%, #00a88a 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 201, 167, 0.3);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 201, 167, 0.4);
  color: #fff;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

/* ── Page Hero ── */
.page-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  background: linear-gradient(170deg, #fafbfc 0%, #f0fdf9 40%, #f0f0ff 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 100%;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0a0e17;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-title .accent {
  background: linear-gradient(135deg, #00c9a7 0%, #00e6b8 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 520px;
}

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

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(10, 14, 23, 0.1), 0 0 0 1px rgba(0, 201, 167, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image__placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 50%, #0a0e17 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c9a7;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.hero-image__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 201, 167, 0.03) 2px, rgba(0, 201, 167, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 201, 167, 0.03) 2px, rgba(0, 201, 167, 0.03) 4px);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.7rem, 1.2vw, 0.9rem) clamp(1.5rem, 2.5vw, 2rem);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #fff;
  background: linear-gradient(135deg, #00c9a7 0%, #00a88a 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 201, 167, 0.3);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 201, 167, 0.4);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.7rem, 1.2vw, 0.9rem) clamp(1.5rem, 2.5vw, 2rem);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #0a0e17;
  background: transparent;
  border: 2px solid rgba(10, 14, 23, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: #00c9a7;
  color: #00c9a7;
  background: rgba(0, 201, 167, 0.04);
}

/* ── Section Wrapper ── */
.section-wrapper {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section-wrapper--alt {
  background: #f5f7fa;
  border-top: 1px solid rgba(10, 14, 23, 0.04);
  border-bottom: 1px solid rgba(10, 14, 23, 0.04);
}

.section-wrapper--dark {
  background: linear-gradient(170deg, #0a0e17 0%, #1a1f2e 100%);
  color: #e5e7eb;
}

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

.section-wrapper--dark .lead-paragraph {
  color: #9ca3af;
}

.section-wrapper--dark .body-text {
  color: #9ca3af;
}

.section-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00c9a7;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: rgba(0, 201, 167, 0.08);
  border-radius: 6px;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #0a0e17;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.lead-paragraph {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #6b7280;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.body-text {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  color: #4b5563;
  line-height: 1.75;
}

/* ── Eyebrow / Label ── */
.eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00c9a7;
  margin-bottom: 0.5rem;
}

/* ── Card Grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(260px, 25vw, 340px), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

/* ── Card ── */
.card {
  background: #fff;
  border: 1px solid rgba(10, 14, 23, 0.06);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00c9a7, #7c3aed);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 14, 23, 0.08);
  border-color: rgba(0, 201, 167, 0.15);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 201, 167, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 600;
  color: #0a0e17;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.card .body-text {
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1f2e, #0a0e17);
  margin-bottom: 1.25rem;
  overflow: hidden;
}

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #00c9a7;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  color: #6b7280;
  font-weight: 500;
}

/* ── Feature List ── */
.feature-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  color: #374151;
  line-height: 1.6;
}

.feature-list li::before {
  content: '✦';
  color: #00c9a7;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 60%, #1e1040 100%);
  border-radius: 24px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 201, 167, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .section-heading {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner .lead-paragraph {
  color: #9ca3af;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* ── Footer ── */
.site-footer {
  background: #0a0e17;
  color: #9ca3af;
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: #6b7280;
  line-height: 1.7;
  max-width: 300px;
  margin-top: 1rem;
}

.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5e7eb;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #6b7280;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #00c9a7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 2rem) 0;
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: #4b5563;
}

.footer-bottom a {
  color: #6b7280;
}

.footer-bottom a:hover {
  color: #00c9a7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    max-width: 560px;
    margin: 0 auto;
  }

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

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 251, 252, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(10, 14, 23, 0.06);
    gap: 0;
  }

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

  .nav-links a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }

  .nav-cta {
    display: none;
  }

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

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

  .top-bar__contact {
    justify-content: center;
    width: 100%;
  }

  .top-bar__socials {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

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

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ── Selection ── */
::selection {
  background: rgba(0, 201, 167, 0.2);
  color: #0a0e17;
}
/* 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}
