/* ═══════════════════════════════════════════════════════════════════════
   Digital Money Express — Coming Soon
   Stylesheet: assets/css/style.css
   Fonts: Cinzel (headings) + Raleway (body)
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Reset & Root Variables ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:           #FFD700;
  --gold-bright:    #FFE55C;
  --gold-light:     #FFF5C0;
  --gold-mid:       #D4AF37;
  --gold-dark:      #B8860B;
  --gold-deep:      #7B5E00;
  --black:          #000000;
  --dark:           #04040E;
  --dark-navy:      #07071A;
  --dark-card:      rgba(7, 7, 26, 0.85);
  --glass:          rgba(255, 215, 0, 0.04);
  --glass-border:   rgba(255, 215, 0, 0.18);
  --glass-hover:    rgba(255, 215, 0, 0.08);
  --white:          #FFFFFF;
  --text-primary:   #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted:     rgba(255, 255, 255, 0.42);
  --glow-sm:        0 0 12px rgba(255, 215, 0, 0.35);
  --glow-md:        0 0 28px rgba(255, 215, 0, 0.45);
  --glow-lg:        0 0 55px rgba(255, 215, 0, 0.30);
  --glow-xl:        0 0 90px rgba(255, 215, 0, 0.22);
  --radius:         16px;
  --radius-lg:      24px;
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Base ────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ─── Scrollbar ───────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── Background Layers ───────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 10%,  rgba(184,134,11,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 85%,  rgba(255,215,0,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(184,134,11,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 0%,   rgba(255,215,0,0.08) 0%, transparent 45%),
    linear-gradient(170deg, #000000 0%, #03030D 40%, #07071A 70%, #0A0A25 100%);
}

/* ─── Particle Canvas ─────────────────────────────────────────────────── */
#particleCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}

/* ─── Layout ──────────────────────────────────────────────────────────── */
.wrapper {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 24px;
}

/* ─── Divider ─────────────────────────────────────────────────────────── */
.divider {
  height: 1px; width: 100%; margin: 56px 0;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  opacity: 0.4;
  position: relative;
}
.divider::after {
  content: '';
  position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: var(--glow-sm);
}

/* ─── Header / Logo ───────────────────────────────────────────────────── */
header {
  padding: 40px 24px 0;
  display: flex; justify-content: center; align-items: center;
  animation: fadeInDown 1s ease both;
}

.logo-block {
  display: flex; flex-direction: column; align-items: center;
}

.site-logo {
  width: auto;
  max-width: 300px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.45)) drop-shadow(0 0 48px rgba(255,215,0,0.22));
  animation: pulseLogo 3.5s ease-in-out infinite;
}

@keyframes pulseLogo {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.45)) drop-shadow(0 0 48px rgba(255,215,0,0.22));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255,215,0,0.70)) drop-shadow(0 0 70px rgba(255,215,0,0.38));
    transform: scale(1.03);
  }
}

/* ─── Hero Section ────────────────────────────────────────────────────── */
.hero {
  padding: 60px 24px 0;
  text-align: center;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px; padding: 8px 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  backdrop-filter: blur(12px);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: blink 1.5s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(26px, 5vw, 56px);
  line-height: 1.25;
  max-width: 820px; margin: 0 auto 24px;
  color: var(--text-primary);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 45%, var(--gold-bright) 55%, var(--gold) 75%, var(--gold-dark) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: shimmer 5s linear infinite;
}
.hero p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 680px; margin: 0 auto;
  font-weight: 400;
}

/* ─── Countdown Section ───────────────────────────────────────────────── */
.countdown-section {
  padding: 60px 24px 0;
  text-align: center;
  animation: fadeInUp 1s ease 0.4s both;
}

.countdown-label {
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px;
}
.countdown-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 2.5vw, 26px);
  color: var(--text-secondary); margin-bottom: 36px;
}

.countdown-grid {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}

.countdown-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 20px 22px;
  min-width: 100px; flex: 0 1 110px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: var(--transition);
}
.countdown-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.countdown-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(circle at 50% 0%, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.countdown-card:hover {
  border-color: rgba(255,215,0,0.4);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

.countdown-number {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 800; line-height: 1;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 8px;
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.4));
}
.countdown-unit {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted);
}

.countdown-sep {
  font-size: clamp(36px, 7vw, 52px);
  font-weight: 300; color: var(--gold-dark);
  align-self: center; padding-bottom: 22px;
  opacity: 0.6; animation: blink 1s step-start infinite;
}

.launch-message {
  display: none;
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-bright));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease both;
  padding: 24px 0;
}

.launch-date-info {
  margin-top: 20px;
  font-size: 13px; color: var(--text-muted); letter-spacing: 1px;
}
.launch-date-info strong { color: var(--gold-dark); font-weight: 600; }

/* ─── Features Section ────────────────────────────────────────────────── */
.features-section {
  padding: 60px 24px 0;
  animation: fadeInUp 1s ease 0.6s both;
}

.section-header {
  text-align: center; margin-bottom: 48px;
}
.section-overline {
  font-size: 11px; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 3.5vw, 36px); font-weight: 700;
  line-height: 1.35;
}
.section-title .gold-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-bright) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(16px);
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.07) 0%, transparent 70%);
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255,215,0,0.35);
  transform: translateY(-6px);
  box-shadow: var(--glow-sm), 0 20px 40px rgba(0,0,0,0.4);
}
.feature-card:hover::before { transform: scale(1.5); opacity: 1; }

.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,215,0,0.04));
  border: 1px solid rgba(255,215,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(255,215,0,0.22), rgba(255,215,0,0.08));
  border-color: rgba(255,215,0,0.45);
  box-shadow: var(--glow-sm);
}

.feature-title {
  font-weight: 700; font-size: 15px; margin-bottom: 8px;
  color: var(--text-primary);
}
.feature-desc {
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
}

/* ─── Subscription Section ────────────────────────────────────────────── */
.subscription-section {
  padding: 60px 24px 0;
  text-align: center;
  animation: fadeInUp 1s ease 0.8s both;
}

.subscription-box {
  max-width: 560px; margin: 0 auto;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  backdrop-filter: blur(24px);
  position: relative; overflow: hidden;
}
.subscription-box::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.subscription-box::after {
  content: '';
  position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sub-icon {
  font-size: 42px; margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(255,215,0,0.5));
}
.subscription-box h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 2.5vw, 26px); font-weight: 700;
  margin-bottom: 10px;
}
.subscription-box p {
  font-size: 14px; color: var(--text-secondary);
  margin-bottom: 28px; line-height: 1.6;
}

.sub-form {
  display: flex; gap: 10px;
  flex-wrap: wrap;
}
.sub-form input[type="email"] {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px; color: var(--white);
  outline: none;
  transition: var(--transition);
}
.sub-form input[type="email"]::placeholder { color: var(--text-muted); }
.sub-form input[type="email"]:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
  background: rgba(255,215,0,0.04);
}

.btn-notify {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  background-size: 200% 100%;
  border: none; border-radius: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--black); cursor: pointer;
  letter-spacing: 1px; text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-notify:hover {
  background-position: right center;
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}
.btn-notify:active { transform: translateY(0); }

.sub-error {
  margin-top: 10px; font-size: 13px; color: #FF6B6B;
  display: none;
}
.sub-success {
  margin-top: 16px;
  display: none; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px; border-radius: 10px;
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.25);
}
.sub-success .success-icon { font-size: 30px; }
.sub-success .success-text { font-weight: 700; font-size: 15px; color: var(--gold); }
.sub-success .success-sub  { font-size: 13px; color: var(--text-secondary); }
.sub-success.visible { display: flex; animation: fadeInUp 0.5s ease both; }

/* ─── Contact Section ─────────────────────────────────────────────────── */
.contact-section {
  padding: 60px 24px 0;
  animation: fadeInUp 1s ease 1s both;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; max-width: 860px; margin: 0 auto;
}

.contact-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  backdrop-filter: blur(16px);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(255,215,0,0.35);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
  background: var(--glass-hover);
}

.contact-icon-wrap {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,215,0,0.04));
  border: 1px solid rgba(255,215,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-info-block .label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px;
}
.contact-info-block a {
  color: var(--text-primary); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color 0.2s;
  word-break: break-all;
}
.contact-info-block a:hover { color: var(--gold); }
.contact-info-block p { color: var(--text-primary); font-size: 14px; font-weight: 500; }

/* ─── Footer ──────────────────────────────────────────────────────────── */
footer {
  padding: 48px 24px 32px;
  text-align: center;
  margin-top: auto;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 14px; color: var(--gold-dark);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px;
}

.footer-links {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-bottom: 24px;
}
.footer-links a {
  font-size: 12px; color: var(--text-muted); text-decoration: none;
  letter-spacing: 1px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-copy strong { color: var(--gold-dark); }

/* ─── Keyframe Animations ─────────────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.2; }
}
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(255,215,0,0.0); }
  50%       { text-shadow: 0 0 20px rgba(255,215,0,0.4); }
}

.glow-pulse { animation: glowPulse 3s ease-in-out infinite; }

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-logo          { max-width: 240px; }
  .countdown-card     { min-width: 80px; flex: 0 1 90px; padding: 22px 14px 18px; }
  .countdown-number   { font-size: 38px; }
  .countdown-sep      { font-size: 36px; }
  .subscription-box   { padding: 32px 22px; }
  .hero               { padding-top: 44px; }
}
@media (max-width: 480px) {
  .site-logo          { max-width: 200px; }
  .countdown-grid     { gap: 8px; }
  .countdown-card     { min-width: 70px; flex: 0 1 76px; padding: 18px 10px 14px; }
  .countdown-number   { font-size: 30px; }
  .countdown-sep      { font-size: 28px; padding-bottom: 16px; }
  .sub-form           { flex-direction: column; }
  .btn-notify         { width: 100%; }
  .features-grid      { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
}
