:root {
  /* Colors */
  --bg-primary: #030712;
  /* Very dark blue/black */
  --bg-secondary: #0f172a;
  /* Slate 900 */
  --bg-tertiary: #1e293b;
  /* Slate 800 */

  --text-primary: #f8fafc;
  /* Slate 50 */
  --text-secondary: #94a3b8;
  /* Slate 400 */
  --text-tertiary: #64748b;
  /* Slate 500 */

  --accent-primary: #3b82f6;
  /* Blue 500 */
  --accent-glow: rgba(59, 130, 246, 0.5);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.15);

  /* Spacing */
  --container-width: 1200px;
  --section-spacing: 120px;

  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

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

/* Typography */
h1,
h2,
h3,
h4 {
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-primary);
}

/* Layout */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--section-spacing) 0;
}



/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  /* Override generic section padding */
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.05), transparent 25%);
  z-index: 1;
  pointer-events: none;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 9999px;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--accent-primary);
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  margin-right: 0.75rem;
  box-shadow: 0 0 10px var(--accent-primary);
}

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

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: var(--border-highlight);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Why Section */
.why-section {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.statement {
  font-size: 1.5rem;
  color: var(--text-primary);
  max-width: 800px;
  margin-bottom: 3rem;
  border-left: 2px solid var(--accent-primary);
  padding-left: 2rem;
}

/* How It Works */
.step-list {
  display: grid;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
}

.step-number {
  font-family: var(--font-mono);
  color: var(--accent-primary);
  opacity: 0.5;
  margin-right: 1.5rem;
  font-size: 1.2rem;
}

/* Footer */
footer {
  padding: 4rem 2rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.contact-link {
  display: inline-block;
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 1.5rem;
  margin-top: 1rem;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
}

/* Utilities */
.highlight {
  color: var(--accent-primary);
}

/* Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    min-height: auto;
    padding: 160px 0;
  }

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