:root {
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-code: 'JetBrains Mono', monospace;

  /* Dark Theme Colors */
  --bg-main: #0a0a0a;
  --bg-card: rgba(26, 26, 26, 0.4);
  --bg-card-hover: rgba(30, 30, 30, 0.6);
  --text-main: #ffffff;
  --text-muted: #a3a3a3;
  --accent-green: #22c55e;
  --accent-green-light: #4ade80;
  --border-color: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(34, 197, 94, 0.15);

  /* Subtle Glows */
  --glow-subtle: 0 0 15px rgba(34, 197, 94, 0.08);
  --glow-button: 0 4px 12px rgba(34, 197, 94, 0.15);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent-green-light);
  width: 0%;
  z-index: 9999;
  box-shadow: 0 0 10px var(--accent-green);
  transition: width 0.1s ease-out;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

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

/* Typography */
.text-accent { color: var(--accent-green-light); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }

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

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent-green);
  color: #0a0a0a;
  box-shadow: var(--glow-button);
}

.btn-primary:hover {
  background-color: var(--accent-green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.25);
}

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

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255,255,255,0.02);
}

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(34, 197, 94, 0.6), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.glass-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(34, 197, 94, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: -1;
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-subtle);
  transition: transform 0.1s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover::before, .glass-card:hover::after {
  opacity: 1;
}

.glass-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.glass-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Header */
.header {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.4s ease;
  padding: 0 16px; /* Reduced from 24px to look better on mobile and desktop edge */
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 100px;
  background-color: rgba(20, 20, 20, 0.4); /* Always slightly visible */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.header.scrolled .header-inner {
  background-color: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo svg {
  color: var(--accent-green);
  width: 24px;
  height: 24px;
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 8px 32px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.03);
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: width 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
  opacity: 0;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .btn {
  padding: 10px 24px;
  font-size: 14px;
  box-shadow: none;
}

.header.scrolled .btn {
  box-shadow: var(--glow-button);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Hero Grid Background */
.hero-grid {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center 40%, black 20%, transparent 70%);
  z-index: -1;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { transform: translateY(0); }
  100% { transform: translateY(40px); }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-green-light);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
  animation: float-badge 4s ease-in-out infinite;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: pulse-dot 2s infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

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

@media (min-width: 992px) {
  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* Animated Text Gradient */
.text-gradient {
  background: linear-gradient(to right, #4ade80, #22c55e, #10b981, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine-text 4s linear infinite;
}

@keyframes shine-text {
  to { background-position: 200% center; }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero 3D Image */
.hero-image-container {
  perspective: 1200px;
  padding: 20px; /* space for the glow and tilt */
}

.hero-image-wrapper {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.hero-image-inner {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg-card);
  transform: translateZ(30px); /* Pop out towards user */
  position: relative;
}

.hero-image-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background: var(--accent-green);
  filter: blur(80px);
  opacity: 0.15;
  z-index: -1;
  transform: translateZ(-20px);
}

/* Subtle glow in background */
.bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.04) 0%, rgba(10, 10, 10, 0) 60%);
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
  animation: breathing 8s infinite ease-in-out;
}

.bg-glow-center {
  position: absolute;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.03) 0%, rgba(10, 10, 10, 0) 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  animation: breathing-center 10s infinite ease-in-out reverse;
}

@keyframes breathing {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
  50% { transform: translateY(-50%) scale(1.15); opacity: 1; }
}

@keyframes breathing-center {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}

.section-darker {
  background-color: rgba(5, 5, 5, 0.5);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Features icons */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(34, 197, 94, 0.08);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

/* Steps */
.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  color: var(--accent-green);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 160px 0;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 24px;
}

.cta-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  font-size: 1.125rem;
  padding: 16px 32px;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(10px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), 
              transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), 
              filter 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Stagger delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Footer */
.footer {
  background: #050505;
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--text-main);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

/* --- Advanced Effects --- */

/* Aurora Background */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  background: var(--bg-main);
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  filter: blur(120px);
  opacity: 0.5;
  border-radius: 50%;
  animation: aurora-float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
  top: -10%; left: -10%;
  width: 50vw; height: 50vw;
  background: rgba(34, 197, 94, 0.12);
  animation-duration: 25s;
}

.blob-2 {
  top: 40%; right: -20%;
  width: 60vw; height: 60vw;
  background: rgba(16, 185, 129, 0.08);
  animation-duration: 30s;
  animation-delay: -5s;
}

.blob-3 {
  bottom: -20%; left: 20%;
  width: 45vw; height: 45vw;
  background: rgba(74, 222, 128, 0.09);
  animation-duration: 28s;
  animation-delay: -10s;
}

@keyframes aurora-float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10%, 15%) scale(1.1); }
  66% { transform: translate(-5%, 5%) scale(0.9); }
  100% { transform: translate(15%, -10%) scale(1.2); }
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  opacity: 0;
  mix-blend-mode: screen;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 767px) {
  .hero {
    padding: 160px 0 60px;
    text-align: center;
  }
  
  .hero-content {
    gap: 32px;
  }
  
  .hero h1 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  .hero h1 br {
    display: none;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 20px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cta-section {
    padding: 100px 0;
  }
  
  .cta-title {
    font-size: 2.25rem;
  }
  .header {
    padding: 0 16px;
  }
  
  .header-inner {
    padding: 12px 16px;
  }
  
  .header.scrolled .header-inner {
    padding: 10px 16px;
  }
  
  .logo {
    font-size: 18px;
  }
  
  .logo svg {
    width: 20px;
    height: 20px;
  }
  
  .header .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer-grid {
    gap: 32px;
  }
  
  .footer-col h4 {
    margin-bottom: 16px;
  }
  
  .footer-col .logo {
    justify-content: center;
    margin: 0 auto 16px;
  }
}

/* Hide cursor glow on touch devices */
@media (pointer: coarse) {
  .cursor-glow {
    display: none !important;
  }
}

/* Premium Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  padding: 0;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  color: var(--accent-green-light);
  background: rgba(10, 10, 10, 0.8);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg); /* Start from top */
}

.progress-ring__circle {
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  transition: stroke-dashoffset 0.1s linear;
}

.arrow-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.back-to-top:hover .arrow-icon {
  transform: translateY(-2px);
}

.arrow-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 24px;
    right: 24px;
  }
}

/* --- App Download Section --- */
.section-app {
  border-top: 1px solid var(--border-color);
  padding: 120px 0;
  overflow: hidden;
}

.app-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .app-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.app-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.app-content h2 {
  font-size: 2.75rem;
  line-height: 1.2;
}

.app-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-feature-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent-green-light);
  flex-shrink: 0;
}

.app-feature-item span {
  font-size: 1rem;
  color: var(--text-main);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  min-width: 170px;
}

.store-btn:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--glow-subtle);
}

.store-icon {
  width: 28px;
  height: 28px;
  fill: var(--text-main);
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-sub {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.store-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

/* App Preview Image / 3D Phone Mockup */
.app-preview {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-wrapper {
  position: relative;
  width: 280px;
  transform-style: preserve-3d;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.phone-inner {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,255,255,0.05);
  border: 4px solid rgba(255,255,255,0.08);
  background: #000;
  transform: translateZ(40px);
  position: relative;
  aspect-ratio: 9 / 19.5;
}

.phone-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background: var(--accent-green);
  filter: blur(80px);
  opacity: 0.2;
  z-index: -1;
  transform: translateZ(-30px);
}

@media (max-width: 767px) {
  .section-app {
    padding: 80px 0;
  }
  .app-content h2 {
    font-size: 2rem;
  }
  .phone-mockup-wrapper {
    width: 240px;
  }
}
