/* Dragon Shorts — Landing site styles */

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

:root {
  --bg: #0A0A0A;
  --bg-elevated: #151515;
  --bg-card: #1A1A1A;
  --border: #2A2A2A;
  --text: #FFFFFF;
  --text-secondary: #B8B8B8;
  --text-muted: #7A7A7A;
  --primary: #FF2E63;
  --primary-dark: #D11A4A;
  --primary-light: #FF5A8C;
  --gold: #FFD700;
  --success: #2ED573;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cairo', 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

[dir="ltr"] body { font-family: 'Inter', 'Cairo', sans-serif; }

a { color: inherit; text-decoration: none; }

/* ─── NAV ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 900;
}
.logo span { background: linear-gradient(135deg, var(--primary), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }
.lang-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
}
.lang-toggle:hover { border-color: var(--primary); }

/* ─── HERO ─────────────────────────────────────── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 24px;
}
.hero-accent { font-size: 80px; }
.hero-gradient {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 8px 24px rgba(255, 46, 99, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 46, 99, 0.5); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-card); border-color: var(--primary); }

.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-num {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ─── PHONE MOCKUP ─────────────────────────────── */
.hero-phone { display: flex; justify-content: center; }
.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 26px;
  overflow: hidden;
  padding-top: 50px;
}
.phone-content {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.phone-card {
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  animation: floatCard 3s ease-in-out infinite;
}
.phone-card:nth-child(2) { animation-delay: .2s; background: linear-gradient(135deg, #FF6348, var(--primary)); }
.phone-card:nth-child(3) { animation-delay: .4s; background: linear-gradient(135deg, var(--gold), #FFA502); }
.phone-card:nth-child(4) { animation-delay: .6s; background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.phone-card:nth-child(5) { animation-delay: .8s; background: linear-gradient(135deg, #FF4757, var(--primary-dark)); }
.phone-card:nth-child(6) { animation-delay: 1s; background: linear-gradient(135deg, var(--success), #FFB627); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ─── FEATURES ─────────────────────────────────── */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.features h2 {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.feature-icon { font-size: 40px; margin-bottom: 12px; }
.feature-card h3 { font-size: 20px; font-weight: 900; margin-bottom: 8px; }
.feature-card p { color: var(--text-secondary); font-size: 14px; }

/* ─── DOWNLOAD ─────────────────────────────────── */
.download {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
}
.download h2 { font-size: 42px; font-weight: 900; margin-bottom: 12px; }
.download-sub { color: var(--text-secondary); margin-bottom: 32px; }
.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 12px;
  min-width: 200px;
  transition: transform .15s, border-color .15s;
}
.store-btn:hover { transform: translateY(-2px); border-color: var(--primary); }
.store-btn-disabled { opacity: .5; cursor: not-allowed; }
.store-icon { font-size: 28px; }
.store-text { text-align: right; }
.store-text small { display: block; font-size: 11px; color: var(--text-muted); }
.store-text strong { font-size: 18px; font-weight: 900; }

/* ─── FOOTER ───────────────────────────────────── */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 8px; }
.footer-logo { font-size: 20px; font-weight: 900; }
.footer-col h4 { font-size: 14px; font-weight: 900; margin-bottom: 12px; color: var(--primary); }
.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ─── LEGAL PAGES ──────────────────────────────── */
.legal {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 24px;
}
.legal h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.legal .updated { color: var(--text-muted); font-size: 13px; margin-bottom: 32px; }
.legal h2 {
  font-size: 22px;
  font-weight: 900;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--primary-light);
}
.legal p, .legal li {
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.8;
}
.legal ul { padding-right: 24px; }
.legal a { color: var(--primary); border-bottom: 1px solid transparent; transition: border-color .15s; }
.legal a:hover { border-color: var(--primary); }
.legal .contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-top: 32px;
}

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; padding: 48px 24px; }
  .hero-content h1 { font-size: 44px; }
  .hero-sub { margin: 0 auto 24px; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-phone { display: none; }
  .features h2 { font-size: 32px; }
  .download h2 { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 36px; }
}
