/* ==========================================================================
   WHEN2PAY - MODERN CYBERPUNK DESIGN SYSTEM
   Brand: Frogineer (frogineer.com)
   ========================================================================== */

:root {
  --bg-dark: #080a09;
  --bg-surface: #0f1411;
  --bg-card: #161d18;
  --bg-card-hover: #1c261f;
  
  --volt: #ccff00;
  --volt-glow: rgba(204, 255, 0, 0.35);
  --volt-subtle: rgba(204, 255, 0, 0.08);
  
  --cyan: #00ffa3;
  --cyan-glow: rgba(0, 255, 163, 0.3);
  
  --infrared: #ff2e63;
  
  --text-main: #ffffff;
  --text-secondary: #d1dad3;
  --text-muted: #809185;
  --border: #27362b;
  --border-highlight: #3a5240;

  --font-display: 'Anton', 'Impact', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Cyber Grid */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(to right, rgba(204, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(204, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }
.text-volt { color: var(--volt); }
.text-cyan { color: var(--cyan); }
.text-muted { color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--volt);
  color: #080a09;
  border: 1px solid var(--volt);
  box-shadow: 0 0 20px var(--volt-glow);
}

.btn-primary:hover {
  background: #d8ff33;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.6);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--volt);
  color: var(--volt);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 10, 9, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-tag {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
}

.logo-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  background: var(--volt-subtle);
  color: var(--volt);
  border: 1px solid rgba(204, 255, 0, 0.3);
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--volt);
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 163, 0.1);
  border: 1px solid rgba(0, 255, 163, 0.3);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 1.05;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-perks {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.hero-perk-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  border: 1px solid var(--border-highlight);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--volt-subtle);
  transition: transform 0.4s ease;
}

.hero-img:hover {
  transform: translateY(-6px) scale(1.01);
}

/* Feature Cards */
.features-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--volt);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--volt), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-block;
}

.card-title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Banner Promo Section */
.banner-section {
  padding: 60px 0 100px;
}

.promo-box {
  background: linear-gradient(135deg, #131a15 0%, #0c100e 100%);
  border: 1px solid var(--border-highlight);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 0 40px var(--volt-subtle);
}

.promo-media img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.faq-question {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--volt);
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Privacy Page Content Styles */
.policy-container {
  max-width: 860px;
  margin: 60px auto 100px;
  padding: 0 24px;
}

.policy-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.policy-title {
  font-family: var(--font-display);
  font-size: 48px;
  margin-bottom: 12px;
}

.policy-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.policy-body h2 {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--volt);
  margin: 36px 0 16px;
  letter-spacing: 0.5px;
}

.policy-body p, .policy-body ul {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.7;
}

.policy-body ul {
  padding-left: 24px;
}

.policy-body li {
  margin-bottom: 8px;
}

.policy-callout {
  background: var(--bg-card);
  border-left: 3px solid var(--volt);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
}

/* Footer */
.footer {
  background: #050706;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--volt);
}

.footer-bottom {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .promo-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions, .hero-perks {
    justify-content: center;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 48px;
  }
}
