:root {
  color-scheme: dark;
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --primary: #5bb1ff;
  --primary-strong: #60a5fa;
  --accent: #818cf8;
  --text-main: #f8fafc;
  --text-muted: #bfdbfe;
  --badge-bg: rgba(255, 255, 255, 0.1);
  --badge-border: rgba(255, 255, 255, 0.3);
}

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

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1f3272 0%, #090c1f 60%, #05060f 100%);
  color: var(--text-main);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) 1.5rem;
}

.hero__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: clamp(18rem, 40vw, 32rem);
  height: clamp(18rem, 40vw, 32rem);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: pulse 10s ease-in-out infinite;
}

.orb--primary {
  top: -10%;
  left: 20%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.6), rgba(59, 130, 246, 0.1));
}

.orb--secondary {
  bottom: -5%;
  right: 20%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.6), rgba(139, 92, 246, 0.05));
  animation-delay: 1.2s;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.8), rgba(15, 23, 42, 0.6));
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  width: 100%;
}

.hero__title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff 0%, #dbeafe 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--badge-border);
  background: var(--badge-bg);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f0f9ff;
}

.hero__screenshots {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex-wrap: wrap;
}

.screenshot {
  position: relative;
  width: min(260px, 30vw);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.screenshot img {
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(8, 15, 40, 0.6);
}

.screenshot__glow {
  position: absolute;
  inset: -18px;
  border-radius: 32px;
  filter: blur(35px);
  opacity: 0.8;
  z-index: -1;
}

.screenshot__glow--left {
  background: linear-gradient(135deg, rgba(238, 174, 202, 0.6), rgba(148, 187, 233, 0.3));
}

.screenshot__glow--center {
  background: linear-gradient(135deg, rgba(255, 192, 203, 0.7), rgba(147, 197, 253, 0.3));
}

.screenshot__glow--right {
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.7), rgba(59, 130, 246, 0.3));
}

.screenshot--highlight {
  transform: translateY(-10px) scale(1.03);
}

.screenshot:hover {
  transform: translateY(-12px) scale(1.04);
  filter: brightness(1.05);
}

@keyframes pulse {
  0%, 100% { transform: scale(0.95); }
  50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
  .screenshot,
  .screenshot--highlight {
    width: min(200px, 45vw);
    transform: none;
  }

  .screenshot:hover {
    transform: translateY(-6px) scale(1.02);
  }
}
