/* Root variables for easy theming */
:root {
  --font-main: 'Inter', system-ui, sans-serif;
  --font-size: 18px;
  --max-width: 1000px;
  --color-bg: #0e0e11;
  --color-text: #eaeaea;
  --color-accent: #7a6ff0;
  --color-muted: #999;
  --section-padding: 100px 20px;
}

/* Base styles */
body {
  font-family: var(--font-main);
  font-size: var(--font-size);
  line-height: 1.6;
  background: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  background: radial-gradient(ellipse at center, #1a1a1d 0%, #0e0e11 100%);
  padding: var(--section-padding);
}

.hero {
  color: #eee; /* off-white */
  padding: 20vh 2rem;
  text-align: center;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 40ch;
  margin: 0 auto;
  opacity: 0;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.hero-subtitle {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.5s;
}
/* Pillars Grid */
.pillars {
  padding: var(--section-padding);
  background: #121214;
}

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

.pillar h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-subtitle {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 10vh 1.5rem;
  }
}


@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Vision Section */
.vision {
  background: #0c0c0f;
  padding: var(--section-padding);
  text-align: center;
}

.vision p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.vision-sub {
  color: var(--color-muted);
  font-style: italic;
}


.cta {
  background: #121214; /* subtly distinct from other sections */
  padding: var(--section-padding);
  text-align: center;
  position: relative; /* Required to contain absolute glow */
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122,111,240,0.25) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(80px);
  pointer-events: none;
}

.cta-headline {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-subtext {
  font-size: 1.15rem;
  max-width: 45ch;
  margin: 0 auto 1rem;
  color: var(--color-text);
}

.cta-subtext.italic {
  font-style: italic;
  color: var(--color-muted);
}


.refined-cta {
  position: relative; /* Required to contain absolute glow */
  overflow: hidden;
}
.email a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}
.wave-separator {
  position: relative;
  height: 100px;
  overflow: hidden;
  background: none;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* Footer */
footer {
  padding: 2rem 0;
  background: #0a0a0c;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted);
}

