@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-body: #030712;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(31, 41, 55, 0.8);
  
  --primary: #00f2ff;
  --primary-glow: rgba(0, 242, 255, 0.5);
  --secondary: #7000ff;
  --secondary-glow: rgba(112, 0, 255, 0.5);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(0, 242, 255, 0.3);
  
  --glass: blur(12px);
  --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-body);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(112, 0, 255, 0.15), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(0, 242, 255, 0.15), transparent 25%);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  padding: 20px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 20px;
  z-index: 100;
  margin-bottom: 40px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(to right, var(--primary), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
}

.nav-cta:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 20px var(--primary-glow);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 80px 0;
  margin-bottom: 60px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-visual {
  position: relative;
  height: 400px;
  background: radial-gradient(circle at center, var(--secondary-glow), transparent 70%);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=1000&auto=format&fit=crop') center/cover;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #000;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Space Grotesk', sans-serif;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--primary-glow);
}

/* Sections */
.section {
  margin: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 16px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-glow);
}

/* Cards (Features, Steps, Testimonials) */
.features, .process-steps, .testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card-base {
  background: var(--bg-card);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.card-base:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px -10px rgba(0, 242, 255, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  border: 1px solid var(--border);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  font-size: 1.1rem;
  color: #e2e8f0;
}

.testimonial-author {
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary);
}

/* Tickets */
.tickets {
  list-style: none;
  display: grid;
  gap: 20px;
}

.tickets li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.tickets li:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

.tickets h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.tickets .price {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  margin-top: 10px;
}

/* FAQ */
details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

details:hover {
  border-color: var(--text-muted);
}

details[open] {
  border-color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
}

summary {
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

summary::after {
  content: '+';
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  top: -2px;
}

details[open] summary::after {
  content: '-';
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content p {
    margin: 0 auto 32px;
  }
  
  .nav-inner {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .tickets li {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* Form Styles */
input[type='text'], 
input[type='email'], 
input[type='tel'],
input[type='number'], 
select, 
textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

input::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.9rem;
}

