/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 2rem 1rem;
  background: radial-gradient(ellipse at center top, rgba(9, 10, 25, 0.8) 0%, var(--bg-darker) 70%);
}
.hero h1 {
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: clamp(42px, 8vw, 100px);
  margin: 0 0 0.4em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 40%, var(--accent-3) 80%, var(--accent-4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(83, 243, 255, 0.5);
  line-height: 1.1;
  text-transform: uppercase;
}
.hero p {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--muted);
  font-size: clamp(18px, 2.5vw, 24px);
  max-width: 70ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero__layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  background-image: linear-gradient(rgba(83, 243, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(83, 243, 255, 0.08) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size), var(--grid-size) var(--grid-size);
  mask-image: radial-gradient(1200px 500px at 50% -10%, #000 40%, transparent 70%);
  opacity: 0.25;
}

.hero__glow {
  background: radial-gradient(1000px 500px at 15% -5%, rgba(83, 243, 255, 0.25), transparent 65%), radial-gradient(1100px 600px at 85% 115%, rgba(155, 123, 255, 0.2), transparent 65%), radial-gradient(800px 400px at 50% 50%, rgba(255, 71, 163, 0.15), transparent 70%);
  opacity: 0.9;
}

.hero__stars {
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 100%), radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.6) 0%, transparent 100%), radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 100%), radial-gradient(1px 1px at 80% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 100%), radial-gradient(2px 2px at 30% 80%, rgba(255, 255, 255, 0.6) 0%, transparent 100%), radial-gradient(1px 1px at 70% 10%, rgba(255, 255, 255, 0.7) 0%, transparent 100%);
  background-size: 400px 400px, 500px 500px, 600px 600px, 700px 700px, 800px 800px, 900px 900px;
  animation: twinkle 20s infinite linear;
}

.hero__content {
  text-align: center;
  padding: clamp(24px, 5vw, 64px);
  max-width: 900px;
  z-index: 10;
}

.hero__subtitle {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Universe Section */
.universe {
  padding: 100px clamp(16px, 4vw, 40px);
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}
.universe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 20px var(--accent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.universe__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.universe-card {
  background: linear-gradient(135deg, rgba(15, 16, 30, 0.7) 0%, rgba(9, 10, 25, 0.9) 100%);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.universe-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
}
.universe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(83, 243, 255, 0.15);
  border-color: rgba(83, 243, 255, 0.3);
}

.universe-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--bg-dark);
}

.universe-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.universe-card__desc {
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
}

/* Features Section */
.features {
  padding: 100px clamp(16px, 4vw, 40px);
  background: var(--bg);
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature__icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(83, 243, 255, 0.4);
}

.feature__content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--accent);
}

.feature__content p {
  color: var(--muted);
  line-height: 1.6;
}

/* Lore Section */
.lore {
  padding: 100px clamp(16px, 4vw, 40px);
  background: var(--bg-dark);
  position: relative;
}

.lore__content {
  max-width: 1000px;
  margin: 0 auto;
}

.lore__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2rem;
}
.lore__text:last-child {
  margin-bottom: 0;
}

.lore__highlight {
  color: var(--accent);
  font-weight: 600;
}

/* CTA Section */
.cta {
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.cta-section {
  padding: 120px clamp(16px, 4vw, 40px);
  text-align: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  box-shadow: 0 0 20px var(--accent-2);
}
.cta-section h2 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-section p {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.grid {
  display: grid;
}

/*# sourceMappingURL=index.css.map */
