@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&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: clamp(0.938rem, 0.9rem + 0.2vw, 1.063rem);
  line-height: 1.7;
  color: #1a1a2e;
  background-color: #f8f9fb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1a2e;
}

.hero-title {
  font-size: clamp(2.75rem, 2rem + 3.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.35rem);
  font-weight: 600;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.45rem);
  line-height: 1.55;
  color: #4a4a6a;
  max-width: 60ch;
}

.lead-paragraph {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  line-height: 1.7;
  color: #4a4a6a;
  max-width: 65ch;
}

.body-text {
  line-height: 1.75;
  color: #3d3d5c;
}

a {
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: #06d6e0;
}

/* ─── Layout ─── */
.page-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3.5rem);
}

.section-wrapper {
  padding: clamp(4rem, 6vw, 8rem) 0;
}

.section-wrapper--narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 6vw, 8rem) clamp(1.25rem, 3vw, 3.5rem);
}

/* ─── Eyebrow / Label ─── */
.eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.25rem;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background: #7c3aed;
  border-radius: 1px;
}

.eyebrow--cyan {
  color: #06d6e0;
}

.eyebrow--cyan::before {
  background: #06d6e0;
}

/* ─── Buttons ─── */
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.35);
  color: #ffffff;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.primary-button:active {
  transform: translateY(0);
}

.primary-button--cyan {
  background: linear-gradient(135deg, #06d6e0, #0891b2);
}

.primary-button--cyan:hover {
  box-shadow: 0 8px 25px rgba(6, 214, 224, 0.35);
  background: linear-gradient(135deg, #22d3ee, #06d6e0);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  background: transparent;
  color: #1a1a2e;
  border: 2px solid #d1d5e0;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.secondary-button:hover {
  border-color: #7c3aed;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.04);
}

/* ─── Header / Nav ─── */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e8eaf0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-row--primary {
  padding: 0.9rem 0;
  border-bottom: 1px solid #f0f1f5;
}

.header-row--secondary {
  padding: 0.55rem 0;
  background: #fafbfd;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #1a1a2e;
}

.site-logo:hover {
  color: #1a1a2e;
}

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

.site-logo__text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-logo__text span {
  color: #7c3aed;
}

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

.main-nav__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3d3d5c;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.main-nav__link:hover {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.06);
}

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

.header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border: 1.5px solid #e2e5ec;
  border-radius: 7px;
  background: #ffffff;
  transition: border-color 0.2s ease;
  width: clamp(140px, 15vw, 220px);
}

.header-search:hover {
  border-color: #c5c9d6;
}

.header-search__icon {
  width: 16px;
  height: 16px;
  color: #8a8aa0;
  flex-shrink: 0;
}

.header-search__input {
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #1a1a2e;
  background: transparent;
  width: 100%;
}

.header-search__input::placeholder {
  color: #a0a0b8;
}

.header-cta {
  font-size: 0.825rem;
  padding: 0.55rem 1.35rem;
}

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

.mobile-toggle__bar {
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ─── Hero ─── */
.page-hero {
  padding: clamp(3.5rem, 6vw, 7rem) 0 clamp(3rem, 5vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.page-hero__content {
  max-width: 600px;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.page-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero__image {
  width: 100%;
  max-width: 580px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(26, 26, 46, 0.12);
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #06d6e0;
  background: rgba(6, 214, 224, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(6, 214, 224, 0.2);
  margin-bottom: 1.25rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e8eaf0;
}

.hero-stats__item {
  display: flex;
  flex-direction: column;
}

.hero-stats__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
}

.hero-stats__label {
  font-size: 0.8rem;
  color: #8a8aa0;
  margin-top: 0.2rem;
}

/* ─── Cards ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
}

.card {
  background: #ffffff;
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  padding: clamp(1.5rem, 2vw, 2rem);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(26, 26, 46, 0.08);
  border-color: #d1d5e0;
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

.card__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #06d6e0;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.1rem, 0.95rem + 0.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: #1a1a2e;
}

.card__text {
  font-size: 0.925rem;
  color: #5a5a78;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7c3aed;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.card__link:hover {
  gap: 0.6rem;
  color: #06d6e0;
}

.card__link-arrow {
  transition: transform 0.2s ease;
}

.card__link:hover .card__link-arrow {
  transform: translateX(3px);
}

/* ─── Image ─── */
.image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ─── Decorative elements ─── */
.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}

.grid-lines__v {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e2e5ec;
}

.grid-lines__h {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e5ec;
}

/* ─── Divider ─── */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1d5e0 20%, #d1d5e0 80%, transparent);
  margin: 0;
}

/* ─── Feature list ─── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.975rem;
  color: #3d3d5c;
  line-height: 1.6;
}

.feature-list__check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(6, 214, 224, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-list__check svg {
  width: 12px;
  height: 12px;
  color: #06d6e0;
}

/* ─── Pricing card accent ─── */
.card--featured {
  border-color: #7c3aed;
  border-width: 2px;
  position: relative;
}

.card--featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  right: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #7c3aed;
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}

/* ─── Footer ─── */
.site-footer {
  background: #1a1a2e;
  color: #c5c9d6;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

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

.footer-brand__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-brand__name span {
  color: #8b5cf6;
}

.footer-brand__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #8a8aa0;
  max-width: 30ch;
}

.footer-col__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

.footer-col__links a {
  font-size: 0.875rem;
  color: #8a8aa0;
  transition: color 0.2s ease;
}

.footer-col__links a:hover {
  color: #06d6e0;
}

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

.footer-bottom__copy {
  font-size: 0.8rem;
  color: #5a5a78;
}

.footer-bottom__socials {
  display: flex;
  gap: 0.75rem;
}

.footer-bottom__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #8a8aa0;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-bottom__socials a:hover {
  background: rgba(124, 58, 237, 0.2);
  color: #8b5cf6;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .page-hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .page-hero__content {
    max-width: 100%;
  }

  .page-hero__visual {
    order: -1;
  }

  .page-hero__image {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: flex-start;
  }

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

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-search {
    display: none;
  }

  .header-row--secondary {
    display: none;
  }

  .page-hero__actions {
    flex-direction: column;
  }

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

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

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

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

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

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

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ─── Utility ─── */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ─── Gradient text ─── */
.gradient-text {
  background: linear-gradient(135deg, #7c3aed, #06d6e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Background accent ─── */
.bg-accent {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.bg-dark {
  background: #1a1a2e;
  color: #c5c9d6;
}

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

.bg-dark .eyebrow {
  color: #06d6e0;
}

.bg-dark .eyebrow::before {
  background: #06d6e0;
}

.bg-dark .lead-paragraph {
  color: #8a8aa0;
}
/* 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}
