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

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Page / Body ── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(0.9375rem, 0.9rem + 0.25vw, 1.0625rem);
  line-height: 1.7;
  color: #1A1D2E;
  background-color: #FAFBFD;
  overflow-x: hidden;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.container--narrow {
  max-width: 960px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #1A1D2E;
}

.section-heading {
  font-size: clamp(2rem, 2.5vw + 0.75rem, 3.25rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-heading--accent {
  color: #2D3561;
}

.lead-paragraph {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.3125rem);
  line-height: 1.65;
  color: #4A5072;
  max-width: 640px;
}

.body-text {
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.75;
  color: #4A5072;
  max-width: 680px;
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00E076;
  margin-bottom: 0.75rem;
  display: block;
}

.link {
  color: #2D3561;
  font-weight: 500;
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(45, 53, 97, 0.2);
  padding-bottom: 1px;
}

.link:hover {
  color: #00E076;
  border-bottom-color: #00E076;
}

/* ── Buttons ── */
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.8125rem 1.875rem;
  background: #2D3561;
  color: #FFFFFF;
  border: 2px solid #2D3561;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.primary-button:hover {
  background: #1E2347;
  border-color: #1E2347;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 53, 97, 0.3);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.8125rem 1.875rem;
  background: transparent;
  color: #2D3561;
  border: 2px solid #2D3561;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.secondary-button:hover {
  background: #2D3561;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 251, 253, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 53, 97, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3125rem;
  font-weight: 800;
  color: #1A1D2E;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

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

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

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A5072;
  padding: 0.375rem 0.875rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #1A1D2E;
  background: rgba(45, 53, 97, 0.06);
}

.nav-link--active {
  color: #2D3561;
  background: rgba(45, 53, 97, 0.08);
}

.nav-cta {
  margin-left: 0.75rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

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

/* Mobile nav */
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: rgba(250, 251, 253, 0.97);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

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

  .nav-link {
    font-size: 1.0625rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.75rem;
    width: 100%;
  }

  .nav-cta .primary-button {
    width: 100%;
    justify-content: center;
  }
}

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

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

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 53, 97, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00E076;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.hero-tagline::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #00E076;
  border-radius: 1px;
}

.hero-title {
  font-size: clamp(2.75rem, 5vw + 0.5rem, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #1A1D2E;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: #2D3561;
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: rgba(0, 224, 118, 0.25);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.3125rem);
  line-height: 1.65;
  color: #4A5072;
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(45, 53, 97, 0.08);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.meta-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D3561;
}

.meta-label {
  font-size: 0.8125rem;
  color: #6B7280;
  font-weight: 500;
}

/* ── Sections ── */
.section-wrapper {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.section-wrapper--alt {
  background: #FFFFFF;
  border-top: 1px solid rgba(45, 53, 97, 0.06);
  border-bottom: 1px solid rgba(45, 53, 97, 0.06);
}

.section-wrapper--dark {
  background: #1A1D2E;
  color: #FFFFFF;
}

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

.section-wrapper--dark .lead-paragraph {
  color: rgba(255, 255, 255, 0.65);
}

.section-wrapper--dark .body-text {
  color: rgba(255, 255, 255, 0.6);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-label__number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00E076;
  background: rgba(0, 224, 118, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.section-label__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B7280;
}

.section-header {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

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

.section-header--center .lead-paragraph {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

/* ── Cards ── */
.card {
  background: #FFFFFF;
  border: 1px solid rgba(45, 53, 97, 0.08);
  border-radius: 12px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: rgba(45, 53, 97, 0.15);
  box-shadow: 0 8px 32px rgba(45, 53, 97, 0.08);
  transform: translateY(-2px);
}

.card--dark {
  background: #242740;
  border-color: rgba(255, 255, 255, 0.06);
}

.card--dark:hover {
  border-color: rgba(0, 224, 118, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 53, 97, 0.06);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card--dark .card-icon {
  background: rgba(0, 224, 118, 0.1);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.card--dark .card-title {
  color: #FFFFFF;
}

.card-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4A5072;
  flex: 1;
}

.card--dark .card-body {
  color: rgba(255, 255, 255, 0.55);
}

.card-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 53, 97, 0.06);
}

.card--dark .card-footer {
  border-top-color: rgba(255, 255, 255, 0.06);
}

/* ── Image ── */
.image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Feature Row ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ── Pricing Cards ── */
.pricing-card {
  background: #FFFFFF;
  border: 1px solid rgba(45, 53, 97, 0.08);
  border-radius: 16px;
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--featured {
  border-color: #2D3561;
  box-shadow: 0 12px 48px rgba(45, 53, 97, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #00E076;
  padding: 0.3125rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1D2E;
  margin-bottom: 0.375rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2D3561;
  margin-bottom: 0.25rem;
}

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

.pricing-period {
  font-size: 0.8125rem;
  color: #6B7280;
  margin-bottom: 1.75rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  font-size: 0.9375rem;
  color: #4A5072;
  padding: 0.375rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.pricing-features li::before {
  content: '✓';
  color: #00E076;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Footer ── */
.site-footer {
  background: #1A1D2E;
  color: rgba(255, 255, 255, 0.5);
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  margin-top: auto;
}

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

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

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

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

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

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

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

/* ── Divider ── */
.divider {
  height: 1px;
  background: rgba(45, 53, 97, 0.08);
  border: none;
}

/* ── Utility ── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.gap-buttons { display: flex; flex-wrap: wrap; gap: 0.875rem; }
/* 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}
