/*
 * Jerpix — landing page styles
 */

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

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000000;
  color: #e6f7ff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(140, 160, 175, 0.04), transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(140, 160, 175, 0.03), transparent 55%),
    radial-gradient(ellipse at 50% 50%, #07080a 0%, #030406 60%, #000000 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
  transform: translateY(-10vh);
}

.hero__mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(125, 249, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: #a7ffeb;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero__mark-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7df9ff;
  box-shadow: 0 0 12px #7df9ff, 0 0 24px rgba(125, 249, 255, 0.6);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero__title {
  font-family: "Helvetica Neue", "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #b8e9ff 55%, #7df9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 50px rgba(125, 249, 255, 0.18);
}

.hero__subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 500px;
  color: rgba(230, 247, 255, 0.82);
  letter-spacing: 0.005em;
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__mark-dot { animation: none; }
}
