:root {
  --g-font-display: 'Outfit', sans-serif;
  --g-font-body: 'Manrope', sans-serif;
  --g-primary: #8A2BE2;
  --g-primary-light: #D2B4DE;
  --g-secondary: #00D4FF;
  --g-bg: #F8F9FE;
  --g-surface: #FFFFFF;
  --g-text-main: #111111;
  --g-text-muted: #666666;
  --g-border: #E5E7EB;
  --g-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --g-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
  --g-radius-md: 12px;
  --g-radius-lg: 24px;
  --g-radius-pill: 999px;
  --g-max-width: 1280px;
}

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

body {
  font-family: var(--g-font-body);
  background-color: var(--g-bg);
  color: var(--g-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--g-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--g-text-main);
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--g-radius-lg);
}

/* --- Layout Engine --- */
.g-wrap {
  width: 100%;
  max-width: var(--g-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* --- Typography & Elements --- */
.g-eyebrow {
  display: inline-block;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--g-primary);
  margin-bottom: 1rem;
  background: rgba(138, 43, 226, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--g-radius-pill);
}

.g-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(135deg, var(--g-text-main) 0%, var(--g-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.g-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--g-text-muted);
  max-width: 600px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.g-text {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--g-text-muted);
  margin-bottom: 1.5rem;
}

.g-link {
  color: var(--g-primary);
  font-weight: 600;
  position: relative;
}
.g-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--g-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.g-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Buttons --- */
.g-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--g-radius-pill);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.g-btn--primary {
  background: linear-gradient(135deg, var(--g-primary) 0%, #6A1B9A 100%);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(106, 27, 154, 0.3);
}

.g-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(106, 27, 154, 0.4);
}

.g-btn--secondary {
  background: white;
  color: var(--g-primary);
  border: 2px solid var(--g-primary-light);
}

.g-btn--secondary:hover {
  background: #F3E5F5;
  transform: translateY(-2px);
}

/* --- Header & Nav --- */
.g-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g-border);
  padding: 1.25rem 0;
}

.g-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g-brand {
  font-family: var(--g-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--g-text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.g-brand span {
  color: var(--g-primary);
}

.g-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.g-nav__link {
  font-weight: 500;
  color: var(--g-text-muted);
  font-size: 0.95rem;
}

.g-nav__link:hover {
  color: var(--g-primary);
}

.g-nav__cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* --- Sections --- */
.g-section {
  width: 100%;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.g-section--hero {
  background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.15), transparent 40%),
              radial-gradient(circle at bottom left, rgba(0, 212, 255, 0.1), transparent 40%);
}

.g-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.g-hero-image {
  position: relative;
}
.g-hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--g-primary-light);
  border-radius: var(--g-radius-lg);
  z-index: -1;
}

/* --- Cards & Grid --- */
.g-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.g-card {
  background: var(--g-surface);
  border-radius: var(--g-radius-lg);
  padding: 2rem;
  border: 1px solid var(--g-border);
  transition: all 0.3s ease;
}

.g-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--g-shadow-lg);
  border-color: var(--g-primary-light);
}

.g-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(138, 43, 226, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g-primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.g-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.g-card__text {
  color: var(--g-text-muted);
  font-size: 1rem;
}

/* --- Stats --- */
.g-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: var(--g-radius-lg);
  border: 1px solid var(--g-border);
}
.g-stat-number {
  font-family: var(--g-font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--g-primary);
  display: block;
  margin-bottom: 0.5rem;
}

/* --- FAQ --- */
.g-faq-item {
  border-bottom: 1px solid var(--g-border);
  padding: 1.5rem 0;
}
.g-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
}
.g-faq-answer {
  margin-top: 1rem;
  color: var(--g-text-muted);
  display: none;
}
.g-faq-item.active .g-faq-answer {
  display: block;
}
.g-faq-item.active .g-faq-question svg {
  transform: rotate(180deg);
}

/* --- CTA Band --- */
.g-cta-band {
  background: linear-gradient(135deg, var(--g-primary) 0%, #4A148C 100%);
  border-radius: var(--g-radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  margin: clamp(4rem, 6vw, 8rem) 0;
}
.g-cta-band h2 {
  color: white;
  margin-bottom: 1rem;
}
.g-cta-band p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.g-cta-band .g-btn {
  background: white;
  color: var(--g-primary);
}

/* --- Footer --- */
.g-footer {
  background-color: #1A1A1A;
  color: #E0E0E0;
  padding: 5rem 0 2rem;
}
.g-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.g-footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.g-footer ul {
  list-style: none;
}
.g-footer li {
  margin-bottom: 0.75rem;
}
.g-footer a {
  color: #999;
  font-size: 0.95rem;
}
.g-footer a:hover {
  color: white;
}
.g-copyright {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .g-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .g-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .g-btn-group {
    justify-content: center;
  }
  .g-stats-row {
    grid-template-columns: 1fr;
  }
  .g-header__inner {
    flex-direction: column;
    gap: 1rem;
  }
  .g-nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .g-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .g-nav {
    flex-direction: column;
    width: 100%;
  }
  .g-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* --- Font Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Outfit:wght@700;800&display=swap'); img,svg,video{max-width:100%;height:auto} html{-webkit-text-size-adjust:100%} *{box-sizing:border-box} 