/* --- DesiYoddha Landing - Premium dark gaming UI --- */
:root {
  --bg: #0a0a0b;
  --bg-card: #121214;
  --border: rgba(255, 212, 100, 0.15);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --accent: #facc15;
  --accent-dim: #eab308;
  --gradient: linear-gradient(135deg, #facc15 0%, #f59e0b 50%, #ea580c 100%);
  --glow: rgba(250, 204, 21, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.noise {
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-name {
  margin-left: 12px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

/* Phone mockup */
.hero-phone {
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 220px;
  height: 420px;
  background: var(--bg-card);
  border: 3px solid var(--border);
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.phone-header {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.6;
}

.phone-app-preview {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text);
}

.preview-card i {
  color: var(--accent);
  font-size: 1.1rem;
}

.preview-card-accent {
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.25);
}

/* Floating badges */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.hero-float i {
  color: var(--accent);
}

.hero-float-1 {
  top: 15%;
  right: 5%;
  animation: float 4s ease-in-out infinite;
}

.hero-float-2 {
  bottom: 20%;
  left: 0;
  animation: float 4s ease-in-out infinite 1.5s;
}

.hero-float-3 {
  top: 50%;
  left: -5%;
  animation: float 4s ease-in-out infinite 0.8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero background grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 204, 21, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 204, 21, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient);
  color: #0a0a0b;
  box-shadow: 0 4px 24px var(--glow);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px var(--glow);
}

.btn-hero {
  font-size: 1.1rem;
  padding: 18px 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-web {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-web:hover {
  background: rgba(250, 204, 21, 0.15);
  box-shadow: none;
}

/* Hero glow */
.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: 20%;
  right: -10%;
}

.glow-2 {
  width: 300px;
  height: 300px;
  background: #f59e0b;
  bottom: 10%;
  left: -5%;
}

/* Info */
.info {
  padding: 100px 0;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.info-card:hover {
  border-color: rgba(250, 204, 21, 0.35);
  transform: translateY(-4px);
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* How it works */
.how {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.step:hover {
  border-color: rgba(250, 204, 21, 0.35);
  transform: translateY(-2px);
}

.step-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: #0a0a0b;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Stats */
.stats {
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Features grid */
.features {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-weight: 500;
  transition: border-color 0.2s;
}

.feature-item i {
  color: var(--accent);
  font-size: 1.25rem;
}

.feature-item:hover {
  border-color: rgba(250, 204, 21, 0.35);
}

/* FAQ */
.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin: 0 20px 14px;
}

/* CTA strip */
.cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.06) 0%, transparent 100%);
}

.cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Download */
.download {
  padding: 80px 0 100px;
}

.download-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 32px 40px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.download-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.download-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.download-icons .download-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.download-box h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.download-box p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.btn-download {
  background: var(--gradient);
  color: #0a0a0b;
  font-size: 1.1rem;
  padding: 18px 36px;
  box-shadow: 0 4px 24px var(--glow);
}

.btn-web.btn-download {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: none;
}

.btn-web.btn-download:hover {
  background: rgba(250, 204, 21, 0.15);
}

.btn-download:hover {
  box-shadow: 0 8px 32px var(--glow);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.download-actions .btn {
  min-width: 168px;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
}

.download-note {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.download-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.download-note i {
  color: var(--accent);
  opacity: 0.9;
  font-size: 0.9rem;
}

/* About & Contact sections */
.section-block {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.section-block .section-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-block p {
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.contact-list li {
  margin-bottom: 0.5rem;
}
.contact-list a {
  color: var(--accent);
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.footer-links {
  text-align: center;
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-links .sep {
  color: var(--text-muted);
  margin: 0 8px;
  font-size: 0.85rem;
}

.footer p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .header {
    padding: 14px 0 12px;
  }
  .header-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .logo {
    justify-content: center;
  }
  .nav {
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav a {
    font-size: 0.9rem;
  }
  .hero {
    padding-top: 168px;
  }
}

@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-right {
    min-height: 320px;
  }
  .hero-float {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 148px 0 60px;
  }
  .phone-screen {
    width: 180px;
    height: 360px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    gap: 32px;
  }
  .stat-value {
    font-size: 1.75rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .download-box {
    padding: 40px 20px 32px;
  }
  .download-actions {
    flex-direction: column;
  }
  .download-actions .btn {
    width: 100%;
    min-width: 0;
  }
}
