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

:root {
  --bg-root: #070809;
  --bg-elevated: #111318;
  --bg-surface: #1A1D24;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.15);
  
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-tertiary: #6B7280;

  --brand-primary: #0055FF;
  --brand-glow: rgba(0, 85, 255, 0.4);
  --brand-secondary: #00C2FF;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  background-color: var(--bg-root);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Layout Utilities */
.g-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.g-section {
  padding: var(--space-xl) 0;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.g-section:last-of-type {
  border-bottom: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.g-h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: var(--space-sm); }
.g-h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--space-md); }
.g-h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: var(--space-xs); }
.g-p { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--text-secondary); max-width: 65ch; }
.g-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand-primary); font-weight: 600; margin-bottom: var(--space-xs); display: block; }

/* Navigation */
.g-header {
  border-bottom: 1px solid var(--border-highlight);
  background: rgba(7, 8, 9, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

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

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

.g-logo span { color: var(--brand-primary); }

.g-menu {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.g-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

/* Buttons */
.g-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
}

.g-btn--primary {
  background-color: var(--brand-primary);
  color: #fff;
  box-shadow: 0 0 20px -5px var(--brand-glow);
}

.g-btn--primary:hover {
  background-color: #0044CC;
  box-shadow: 0 0 30px -5px var(--brand-glow);
  transform: translateY(-1px);
}

.g-btn--outline {
  background: transparent;
  border-color: var(--border-highlight);
  color: var(--text-primary);
}

.g-btn--outline:hover {
  border-color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.g-btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero Component */
.g-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding-top: var(--space-lg);
}

@media (min-width: 900px) {
  .g-hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.g-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-highlight);
  background: var(--bg-surface);
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Cards Grid */
.g-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.g-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.g-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
}

.g-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 85, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: var(--space-sm);
}

/* Stats */
.g-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.g-stat-item {
  flex: 1;
  min-width: 120px;
}

.g-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  background: linear-gradient(180deg, #fff, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.g-stat-label {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

/* FAQ */
.g-faq {
  max-width: 800px;
  margin: 0 auto;
}

.g-faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-sm) 0;
}

.g-faq-q {
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.g-faq-a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Footer */
.g-footer {
  background: var(--bg-elevated);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid var(--border-subtle);
  margin-top: var(--space-xl);
}

.g-footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .g-footer-grid { grid-template-columns: 1fr; }
  .g-menu { display: none; } /* Simplified mobile handling */
}

.g-footer-col { display: flex; flex-direction: column; gap: 1rem; }
.g-footer-links { display: flex; flex-wrap: wrap; gap: 2rem; }
.g-col-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.g-col-link { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.g-col-link:hover { color: var(--text-primary); }

/* CTA Band */
.g-cta-box {
  background: linear-gradient(135deg, var(--bg-surface), #1A1F35);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.g-cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, var(--brand-glow), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
img,svg,video{max-width:100%;height:auto}
*{box-sizing:border-box}
