@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@400;500&display=swap');

:root {
  --bg-color: #05010f;
  --bg-gradient: radial-gradient(circle at top right, #1f0846, #05010f 100%);
  --accent-purple: #9d4edd;
  --accent-blue: #00f5ff;
  --text-main: #ffffff;
  --text-muted: #a3a0b5;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-glow: 0 8px 32px 0 rgba(157, 78, 221, 0.15);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 30px 0;
  text-align: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 40px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.hero-bullets li::before {
  content: '✓';
  color: var(--accent-blue);
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2rem;
  text-shadow: 0 0 10px var(--accent-blue);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--accent-purple);
  filter: blur(120px);
  opacity: 0.4;
  z-index: -1;
  animation: pulse-glow 4s infinite alternate;
}

.product-mockup {
  max-width: 100%;
  width: 450px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  animation: float 6s ease-in-out infinite;
}

/* Optin Form / Glass Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--glass-glow);
}

.optin-box {
  margin-top: 20px;
  text-align: center;
}

.optin-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.optin-box p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

.btn-primary {
  display: inline-block;
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 245, 255, 0.4);
}

/* Thank You Page specific */
.ty-header {
  text-align: center;
  margin: 40px 0 60px;
}

.ty-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.ty-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.delivery-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.main-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid rgba(157, 78, 221, 0.4);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
}

.main-product-card .btn-primary {
  width: auto;
  min-width: 250px;
  margin-top: 30px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.bonus-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent-blue);
}

.bonus-card .btn-outline {
  margin-top: 25px;
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  border: 2px solid var(--accent-purple);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.bonus-card .btn-outline:hover {
  background: rgba(157, 78, 221, 0.2);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.4);
}

footer {
  margin-top: auto;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--accent-blue);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
  0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 30px 0;
  }
  
  .hero-bullets li {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}
