
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Crimson+Pro:wght@400;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #00d9ff;
  --primary-dark: #0099cc;
  --secondary-color: #1a1a2e;
  --accent-color: #ff2e63;
  --accent-soft: #ff6b9d;
  --bg-dark: #0f0f1e;
  --bg-darker: #08080f;
  --bg-card: #16162e;
  --text-light: #e8e8f0;
  --text-muted: #9b9bb5;
  --shadow-color: rgba(0, 217, 255, 0.15);
  --shadow-hover: rgba(0, 217, 255, 0.3);
  --success-color: #00ff88;
  --danger-color: #ff2e63;
  --stripe-color: #635BFF;
  --grid-color: rgba(0, 217, 255, 0.05);
}

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

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  color: var(--text-light);
  background: var(--bg-darker);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, var(--grid-color) 2px, var(--grid-color) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, var(--grid-color) 2px, var(--grid-color) 4px);
  pointer-events: none;
  z-index: 0;
}

html {
  scroll-behavior: smooth;
}

/* ==================== NAVBAR ==================== */
.navbar {
  background: rgba(15, 15, 30, 0.8);
  backdrop-filter: blur(20px);
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-color) !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-brand::after {
  content: '_';
  animation: blink 1.2s infinite;
  color: var(--accent-color);
}

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

.navbar-brand:hover {
  color: var(--accent-soft) !important;
  text-shadow: 0 0 20px var(--primary-color);
}

.nav-link {
  font-family: 'Space Mono', monospace;
  color: var(--text-muted) !important;
  font-weight: 400;
  font-size: 0.9rem;
  margin-left: 2rem;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.nav-link::before {
  content: '>';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.nav-link:hover::before {
  opacity: 1;
  left: -20px;
}

.navbar-toggler {
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid var(--primary-color);
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* ==================== HERO SECTION ==================== */
.hero {
  background: 
    radial-gradient(ellipse at top, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(255, 46, 99, 0.1) 0%, transparent 50%),
    var(--bg-dark);
  color: var(--text-light);
  padding: 140px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero h1 {
  font-family: 'Crimson Pro', serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
  font-family: 'Space Mono', monospace;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 16px 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  color: var(--bg-darker);
  border-color: var(--primary-color);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 60px;
  font-size: 1rem;
}

/* ==================== BEC WARNING SECTION ==================== */
.bec-section {
  background: var(--bg-darker);
  padding: 100px 0;
  position: relative;
}

.bec-content {
  background: var(--bg-card);
  padding: 60px;
  border-radius: 0;
  border: 1px solid rgba(255, 46, 99, 0.3);
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.bec-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-soft) 100%);
}

.bec-content h2 {
  font-family: 'Crimson Pro', serif;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.bec-content h5 {
  font-family: 'Space Mono', monospace;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bec-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.bec-content ul li {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 15px;
}

.bec-content .text-danger {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: 'Space Mono', monospace;
}

.bec-highlight {
  background: rgba(255, 46, 99, 0.05);
  padding: 30px;
  border-radius: 0;
  margin: 30px 0;
  border-left: 3px solid var(--accent-color);
  border-right: 1px solid rgba(255, 46, 99, 0.2);
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

.how-it-works h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 80px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.how-it-works h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.how-it-works h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.how-it-works p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.how-it-works .image-container {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.how-it-works img {
  border-radius: 0;
  border: 1px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  width: 100%;
  display: block;
}

.how-it-works .image-container:hover img {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 217, 255, 0.3);
  border-color: var(--primary-color);
}

.how-it-works .image-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 217, 255, 0.9);
  color: var(--bg-darker);
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none !important;
  font-family: 'Space Mono', monospace;
  z-index: 10;
}

.how-it-works .image-container:hover .image-overlay {
  opacity: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 0;
  font-weight: 700;
  font-size: 1.3rem;
  margin-right: 20px;
  font-family: 'Space Mono', monospace;
  flex-shrink: 0;
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.how-it-works h3:hover .step-number::before {
  opacity: 0.1;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
  padding: 100px 0;
  background: var(--bg-darker);
}

.about-section h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 30px;
}

.about-section > p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.9;
}

/* ==================== CARDS ==================== */
.card {
  border: 1px solid rgba(0, 217, 255, 0.1);
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  height: 100%;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
  border-color: var(--primary-color);
}

.card h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.card p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1.05rem;
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.pricing-section h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 80px;
  position: relative;
  display: inline-block;
}

.pricing-section h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.stripe-info {
  background: rgba(99, 91, 255, 0.05);
  padding: 40px;
  border-radius: 0;
  border: 1px solid rgba(99, 91, 255, 0.3);
  border-left: 4px solid var(--stripe-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}

.stripe-info h5 {
  font-family: 'Space Mono', monospace;
  color: var(--stripe-color);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stripe-info p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: 0;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 217, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.pricing-card:hover::after {
  opacity: 0.1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 217, 255, 0.3);
  border-color: var(--primary-color);
}

.pricing-card h3 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.pricing-card .display-4 {
  font-family: 'Crimson Pro', serif;
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.pricing-card ul li {
  font-size: 1.05rem;
  padding: 10px 0;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.pricing-card .text-success {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--success-color);
  font-family: 'Space Mono', monospace;
}

.pricing-card .btn-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.pricing-card .btn-primary:hover {
  background: var(--primary-color);
  color: var(--bg-darker);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
  font-family: 'Space Mono', monospace;
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--text-muted);
  padding: 16px 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(155, 155, 181, 0.1);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--text-muted);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover {
  color: var(--bg-darker);
  border-color: var(--text-muted);
  box-shadow: 0 0 40px rgba(155, 155, 181, 0.3);
  transform: translateY(-2px);
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--bg-darker);
  color: var(--text-muted);
  padding: 50px 0;
  text-align: center;
  margin-top: 0;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
}

footer p {
  font-family: 'Space Mono', monospace;
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out;
}

/* ==================== FORM STYLES ==================== */
.form-label {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  color: var(--text-light);
  border-radius: 0;
  padding: 12px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 0 0 0.25rem rgba(0, 217, 255, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

textarea.form-control {
  resize: vertical;
}

.form-check-label {
  color: var(--text-light) !important;
  font-size: 0.95rem;
}

.form-check-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 217, 255, 0.15);
}

/* ==================== TABLE STYLES ==================== */
.table {
  color: var(--text-light);
  background-color: transparent;
}

.table thead th {
  color: var(--primary-color);
  background-color: rgba(0, 217, 255, 0.05);
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.table tbody td {
  color: var(--text-light);
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  vertical-align: middle;
}

.table tbody tr:hover {
  background-color: rgba(0, 217, 255, 0.05);
}

.table a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.table a:hover {
  color: var(--accent-soft);
  text-decoration: underline;
}

/* ==================== MODAL STYLES ==================== */
.modal-content {
  background: var(--bg-card);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 0;
}

.modal-header {
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  background: var(--bg-darker);
}

.modal-title {
  color: var(--text-light);
  font-family: 'Space Mono', monospace;
  font-weight: 600;
}

.modal-body {
  background: var(--bg-card);
}

.modal-body .form-label,
.modal-body label {
  color: var(--text-light) !important;
}

.modal-body p {
  color: var(--text-muted);
}

.modal-footer {
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  background: var(--bg-card);
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
  text-align: center;
}

.text-start {
  text-align: left;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-danger {
  color: var(--danger-color) !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-3 { margin-top: 1rem !important; }
.mt-5 { margin-top: 3rem !important; }

.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .bec-content {
    padding: 40px 30px;
  }

  .how-it-works h2,
  .about-section h2,
  .pricing-section h2 {
    font-size: 2.2rem;
  }

  .pricing-card {
    padding: 40px 30px;
  }

  .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .how-it-works h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 14px 35px;
    font-size: 0.9rem;
  }

  .bec-content h2 {
    font-size: 2rem;
  }

  .how-it-works h2,
  .about-section h2,
  .pricing-section h2 {
    font-size: 1.9rem;
  }
}

/* ==================== SECURITY BADGES ==================== */
.security-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 0;
  padding: 10px 20px;
  margin: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================== ACTION CARDS ==================== */
.action-card .btn {
  width: 100%;
  min-width: 120px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Space Mono', monospace;
}
