:root {
  /* Modern OKLCH color palette */
  --background: oklch(0.15 0.02 250);
  --foreground: oklch(0.98 0.01 250);
  --muted-foreground: oklch(0.7 0.02 250);
  --accent-glow: oklch(0.6 0.15 250 / 0.15);
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.5;
}

.hero-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* The radial gradient blur effect from the React code */
.glow-effect {
  pointer-events: none;
  position: absolute;
  top: -10%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}

.content-wrapper {
  z-index: 1;
  width: 70vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.text-group {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 2rem;
}

.label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  white-space: nowrap;
  margin-top: 0.5rem;
}

.description {
  width: 75%;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: oklch(0.98 0.01 250 / 0.8);
  font-weight: 400;
  text-align: left;
}

/* Wave Path Styling */
wave-path {
  display: block;
  width: 100%;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .content-wrapper {
    width: 90vw;
  }
  .text-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .description {
    width: 100%;
  }
}
