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

:root {
  --orange: #dd4814;
  --orange-light: #ff6b35;
  --purple: #5e2750;
  --purple-dark: #3a1830;
  --purple-light: #7d3768;
  --white: #ffffff;
  --gray: #aea79f;
  --gray-light: #d4cfc8;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: var(--white);
  height: 100vh;
  overflow: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

/* ===== BACKGROUND LAYERS ===== */

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(94, 39, 80, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(221, 72, 20, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(58, 24, 48, 0.4) 0%, transparent 70%);
  z-index: 0;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* Animated glow orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

.glow-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--purple);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--orange);
  bottom: -10%;
  right: -10%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ===== PARTICLES ===== */

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  animation: particle-rise 15s linear infinite;
  box-shadow: 0 0 10px var(--orange);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 60%; animation-delay: 1s; }
.particle:nth-child(6) { left: 70%; animation-delay: 3s; }
.particle:nth-child(7) { left: 80%; animation-delay: 5s; }
.particle:nth-child(8) { left: 90%; animation-delay: 7s; }

@keyframes particle-rise {
  0% {
    bottom: -10%;
    opacity: 0;
    transform: translateX(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(50px);
  }
}

/* ===== MAIN CONTENT ===== */

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  position: relative;
  z-index: 10;
}

.content {
  text-align: center;
  max-width: 700px;
  animation: fade-in 1s ease-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== LOGO ===== */

.logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  animation: logo-entrance 1.5s ease-out;
}

@keyframes logo-entrance {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  60% {
    transform: scale(1.1) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.logo {
  width: 140px;
  height: 140px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(221, 72, 20, 0.5));
  transition: transform 0.3s ease;
}

.logo-container:hover .logo {
  transform: scale(1.05) rotate(5deg);
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(30px);
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.1); }
}

/* ===== TITLE ===== */

.title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -3px;
  line-height: 1;
}

.title-line {
  display: block;
  overflow: hidden;
}

.gradient-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--orange-light) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== TAGLINE ===== */

.tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.125rem;
  color: var(--gray-light);
  margin-bottom: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tagline-word {
  display: inline-block;
  opacity: 0;
  animation: word-appear 0.6s ease-out forwards;
}

.tagline-word:nth-child(1) { animation-delay: 0.3s; }
.tagline-word:nth-child(2) { animation-delay: 0.5s; }
.tagline-word:nth-child(3) { animation-delay: 0.7s; }

@keyframes word-appear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FEATURES ===== */

.features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  animation: pill-appear 0.6s ease-out forwards;
}

.feature-pill:nth-child(1) { animation-delay: 0.9s; }
.feature-pill:nth-child(2) { animation-delay: 1.1s; }
.feature-pill:nth-child(3) { animation-delay: 1.3s; }

@keyframes pill-appear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.feature-pill:hover {
  background: rgba(221, 72, 20, 0.1);
  border-color: rgba(221, 72, 20, 0.3);
  color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(221, 72, 20, 0.2);
}

.feature-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

/* ===== BUTTON ===== */

.btn-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: btn-appear 0.6s ease-out 1.5s forwards;
}

@keyframes btn-appear {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  padding: 1.25rem 3rem;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.875rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(221, 72, 20, 0.3);
}

.btn:hover {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(221, 72, 20, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.btn-text {
  position: relative;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0;
  filter: blur(40px);
  z-index: 1;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.btn-wrapper:hover .btn-glow {
  opacity: 0.5;
}

/* ===== STATUS ===== */

.status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  animation: status-appear 0.6s ease-out 1.7s forwards;
}

@keyframes status-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .logo {
    width: 100px;
    height: 100px;
  }
  
  .logo-glow {
    width: 140px;
    height: 140px;
  }

  .title {
    font-size: 3rem;
    letter-spacing: -2px;
  }
  
  .tagline {
    font-size: 0.875rem;
    gap: 0.75rem;
  }

  .features {
    gap: 1rem;
  }
  
  .feature-pill {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
  }
  
  .feature-icon {
    width: 16px;
    height: 16px;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 0.8125rem;
    width: 100%;
    justify-content: center;
  }
  
  .glow-orb-1,
  .glow-orb-2 {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .main {
    padding: 1.5rem;
  }
  
  .title {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 0.75rem;
  }
  
  .features {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .feature-pill {
    width: 100%;
    justify-content: center;
  }
}
