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

/* CSS Variables */
:root {
  --bg-primary: #060913;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --accent-purple: #8b5cf6;
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --card-bg: rgba(13, 17, 30, 0.45);
  --card-border: rgba(255, 255, 255, 0.06);
  --glow-purple: rgba(139, 92, 246, 0.15);
  --glow-cyan: rgba(6, 182, 212, 0.15);
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --stripe-color: #635bff;
}

/* Reset and Core Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-primary);
  font-family: var(--font-body);
  color: var(--text-primary);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.6;
}

/* Cyber Ambient Backgrounds */
.bg-visuals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 85%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  mix-blend-mode: screen;
}

.orb-1 {
  top: -10%;
  left: 15%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  animation: floatOrb1 25s infinite alternate ease-in-out;
}

.orb-2 {
  bottom: -15%;
  right: 10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
  animation: floatOrb2 30s infinite alternate ease-in-out;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8%, 10%) scale(1.15); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(-10%, -8%) scale(0.9); }
}

/* Layout Container */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

/* Header Styles */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  max-width: 680px;
}

.logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 30%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--accent-cyan);
}

.badge {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #c084fc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
  animation: glowPulse 2s infinite alternate ease-in-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #c084fc;
  border-radius: 50%;
  box-shadow: 0 0 8px #c084fc;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.15); }
  100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.35); }
}

/* Hero / Glassmorphic Card */
.main-card {
  width: 100%;
  max-width: 680px;
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 4.5rem 3.5rem;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s ease;
  transform-style: preserve-3d;
}

.main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent-cyan), transparent);
  opacity: 0.8;
}

/* Card Content Styling */
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pre-heading {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.domain-display {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 10%, #dbeafe 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  position: relative;
  word-break: break-all;
}

.sub-heading {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.sub-heading strong {
  color: #fff;
  font-weight: 600;
}

/* Stripe Trust Badge */
.stripe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  background: rgba(99, 91, 255, 0.08);
  border: 1px solid rgba(99, 91, 255, 0.2);
  color: #a5b4fc;
  font-size: 0.9rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(99, 91, 255, 0.05);
}

.stripe-badge strong {
  color: #818cf8;
  font-weight: 600;
}

.stripe-icon {
  width: 16px;
  height: 16px;
  color: #818cf8;
}

/* Call to Actions (CTAs) */
.cta-group {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  border-radius: 14px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

/* Primary Button (WhatsApp) */
.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 15px 30px -5px rgba(16, 185, 129, 0.45),
    0 0 20px rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.btn-primary:active {
  transform: translateY(1px);
}

/* Secondary Button (Copy Domain) */
.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(1px);
}

/* Copy State Feedback / Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.15);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast svg {
  color: var(--accent-cyan);
}

/* Footer Section */
footer {
  width: 100%;
  text-align: center;
  padding: 2rem 0;
  color: #475569;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  margin-top: 4rem;
}

footer p {
  max-width: 600px;
  margin: 0 auto;
}

footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Responsive Media Queries */
@media (max-width: 768px) {
  .main-card {
    padding: 3rem 2rem;
    border-radius: 20px;
  }
  
  .domain-display {
    font-size: 3rem;
  }
  
  .cta-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  header {
    margin-bottom: 2.5rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .stripe-badge {
    margin-bottom: 2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .domain-display {
    font-size: 2.4rem;
  }
  
  .btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }
}
