/* ============================================
   EBENEZER DREAM STUDIO — Unique App Landing Page CSS
   Futuristic, Sleek, High-Conversion Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Futuristic Dark Theme Palette */
  --app-bg: #030014;
  --app-text: #f4f4f7;
  --app-text-muted: #8f90a6;
  --app-accent: #6366f1; /* Indigo */
  --app-accent-hover: #4f46e5;
  --app-accent-glow: rgba(99, 102, 241, 0.35);
  
  --purple: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.35);
  --cyan: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.35);

  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --card-border-hover: rgba(99, 102, 241, 0.3);

  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  --app-radius: 16px;
  --app-radius-lg: 24px;
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--app-bg);
  color: var(--app-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Gradient Background Blobs --- */
.bg-glows {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 800px;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow-1 {
  position: absolute;
  top: -200px;
  left: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--app-accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  animation: floatGlow 10s infinite alternate;
}

.glow-2 {
  position: absolute;
  top: -100px;
  right: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  filter: blur(80px);
  animation: floatGlow 12s infinite alternate-reverse;
}

@keyframes floatGlow {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.1); }
}

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

/* --- Navigation --- */
.app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.app-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.app-nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--app-accent) 0%, var(--purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px var(--app-accent-glow);
}

.app-nav-links {
  display: flex;
  gap: 32px;
}

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

.app-nav-links a:hover {
  color: #fff;
}

/* --- Hero Section --- */
.app-hero {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.app-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--app-accent);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 40%, var(--app-text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-hero-title span {
  background: linear-gradient(135deg, var(--app-accent) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-hero-desc {
  font-size: 17px;
  color: var(--app-text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* --- App Store & Google Play Styled Buttons --- */
.app-dl-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.app-btn-store {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0d0e12;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
}

.app-btn-store:hover {
  background: #14161d;
  border-color: var(--app-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.app-btn-store i {
  font-size: 24px;
  color: #fff;
}

.app-btn-store .btn-text-small {
  font-size: 10px;
  color: var(--app-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  line-height: 1.2;
}

.app-btn-store .btn-text-large {
  font-size: 16px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
  margin-top: 2px;
}

/* --- Mockup Gallery / Frame --- */
.app-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.app-mockup-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: var(--app-radius-lg);
  border: 8px solid #1c1d24;
  background: #0d0e12;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px var(--app-accent-glow);
  overflow: hidden;
  aspect-ratio: 9/19;
}

.app-mockup-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Features Grid --- */
.app-features-section {
  padding: 100px 0;
  border-top: 1px solid var(--card-border);
}

.app-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.app-section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.app-section-desc {
  color: var(--app-text-muted);
  font-size: 15px;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.app-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 32px;
  border-radius: var(--app-radius);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-feature-card:hover {
  border-color: var(--card-border-hover);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.app-feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--app-accent);
  margin-bottom: 24px;
}

.app-feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

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

/* --- Legal / Footer Layout --- */
.app-legal-links {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 24px 0;
  text-align: center;
}

.app-legal-links-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.app-legal-links a {
  color: var(--app-text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.app-legal-links a:hover {
  color: #fff;
}

.app-footer {
  padding: 48px 0;
  text-align: center;
}

.app-footer-copyright {
  font-size: 13px;
  color: var(--app-text-muted);
}

.app-footer-credit {
  font-size: 12px;
  color: var(--app-text-muted);
  margin-top: 8px;
}

.app-footer-credit a {
  color: var(--app-accent);
  text-decoration: none;
}

.app-footer-credit a:hover {
  text-decoration: underline;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 968px) {
  .app-hero {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 40px 0;
  }
  
  .app-hero-tagline {
    justify-content: center;
  }
  
  .app-dl-buttons {
    justify-content: center;
  }
  
  .app-features-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Support Form --- */
.app-support-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px;
  border-radius: var(--app-radius);
  max-width: 600px;
  margin: 0 auto;
}

.app-form-group {
  margin-bottom: 20px;
  text-align: left;
}

.app-form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--app-text);
}

.app-form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  color: #fff;
  font-size: 14px;
  transition: all 0.2s ease;
}

.app-form-control:focus {
  outline: none;
  border-color: var(--app-accent);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
}

.app-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--app-accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  justify-content: center;
}

.app-btn-submit:hover {
  background: var(--app-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--app-accent-glow);
}

