/* ═══════════════════════════════════════════════════════════════
   TECH BROMO — Custom Stylesheet
   Bespoke animations, glassmorphism, and premium design tokens
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(255, 255, 255, 0.12);
}

/* ─── Base Resets & Smooth Scrolling ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(99, 102, 241, 0.35);
  color: #fff;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   NOISE TEXTURE OVERLAY
   ═══════════════════════════════════════════════════════════════ */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ═══════════════════════════════════════════════════════════════
   CURSOR GLOW
   ═══════════════════════════════════════════════════════════════ */
#cursor-glow {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.06) 0%,
    rgba(139, 92, 246, 0.03) 30%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: left, top;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav-blur-bg {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--ease-out-expo);
  opacity: 0;
}

#main-nav.scrolled .nav-blur-bg {
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
  letter-spacing: 0.02em;
}

.nav-cta-btn:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(139, 92, 246, 0.35));
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
}

/* ─── Hamburger ─── */
.hamburger-lines {
  width: 20px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.hamburger-lines span:nth-child(2) {
  width: 65%;
  margin-left: auto;
}

#mobile-toggle.active .hamburger-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

#mobile-toggle.active .hamburger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#mobile-toggle.active .hamburger-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ─── Mobile Menu ─── */
.mobile-menu-panel {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu-panel.open {
  opacity: 1;
  visibility: visible;
  z-index: 40;
}

.mobile-nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.4s var(--ease-out-expo);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu-panel.open .mobile-nav-link {
  transform: translateY(0);
  opacity: 1;
  transition-delay: calc(var(--index, 0) * 0.08s + 0.15s);
}

.mobile-nav-link:nth-child(1) { --index: 0; }
.mobile-nav-link:nth-child(2) { --index: 1; }
.mobile-nav-link:nth-child(3) { --index: 2; }
.mobile-nav-link:nth-child(4) { --index: 3; }

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: white;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

/* Grid Background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
}

/* Radial Glow */
.hero-radial-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse 50% 40% at 50% 45%,
    rgba(99, 102, 241, 0.08) 0%,
    rgba(139, 92, 246, 0.04) 30%,
    transparent 70%
  );
}

/* Floating Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 20s ease-in-out infinite;
  will-change: transform;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(99, 102, 241, 0.12);
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(168, 85, 247, 0.1);
  top: 60%;
  right: 10%;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(236, 72, 153, 0.07);
  bottom: 15%;
  left: 40%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* Hero Text Gradient */
.hero-gradient-text {
  background: linear-gradient(
    135deg,
    #818cf8 0%,
    #a78bfa 25%,
    #c084fc 50%,
    #e879f9 75%,
    #818cf8 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(15deg) scale(1.1); }
  75% { transform: rotate(-10deg) scale(0.95); }
}

/* Hero Reveal Animation */
.hero-reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s var(--ease-out-expo) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Buttons */
.hero-primary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.3),
    0 4px 16px rgba(99, 102, 241, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-primary-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-primary-btn:hover::before {
  opacity: 1;
}

.hero-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.5),
    0 8px 30px rgba(99, 102, 241, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s var(--ease-out-expo);
}

.hero-secondary-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  margin: 0 auto;
  position: relative;
}

.scroll-indicator-dot {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* Hero Particles */
.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleDrift linear infinite;
  will-change: transform, opacity;
}

@keyframes particleDrift {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100vh) translateX(var(--drift-x, 20px));
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION LABEL
   ═══════════════════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(129, 140, 248, 0.7);
  padding: 0.375rem 1rem;
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.05);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   STAT CARDS
   ═══════════════════════════════════════════════════════════════ */
.stat-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  text-align: center;
}

.stat-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stat-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover .stat-accent { opacity: 1; }

.stat-accent-indigo { background: linear-gradient(90deg, transparent, #6366f1, transparent); }
.stat-accent-purple { background: linear-gradient(90deg, transparent, #a855f7, transparent); }
.stat-accent-amber { background: linear-gradient(90deg, transparent, #f59e0b, transparent); }
.stat-accent-emerald { background: linear-gradient(90deg, transparent, #10b981, transparent); }

/* ═══════════════════════════════════════════════════════════════
   PRINCIPLE CARDS
   ═══════════════════════════════════════════════════════════════ */
.principle-card {
  padding: 2rem 1.75rem;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-out-expo);
}

.principle-card:hover {
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.principle-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.4s var(--ease-spring);
}

.principle-card:hover .principle-icon {
  transform: scale(1.1) rotate(-3deg);
}

.principle-icon-1 {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: #818cf8;
}

.principle-icon-2 {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.principle-icon-3 {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #34d399;
}

/* ═══════════════════════════════════════════════════════════════
   APP CARDS — Core Structure (dynamic styling via JS)
   ═══════════════════════════════════════════════════════════════ */
.app-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.app-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
}

.app-card-gradient-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.app-card:hover .app-card-gradient-bg {
  opacity: 1;
}

.app-card-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem;
}

@media (min-width: 640px) {
  .app-card-content {
    padding: 2.5rem 2.25rem;
  }
}

/* App Icon */
.app-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: transform 0.5s var(--ease-spring);
  flex-shrink: 0;
}

.app-card:hover .app-icon-wrapper {
  transform: scale(1.08) rotate(-2deg);
}

.app-icon-wrapper svg {
  width: 30px;
  height: 30px;
}

/* App Category Tag */
.app-category {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

/* App Title */
.app-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .app-title {
    font-size: 1.75rem;
  }
}

.app-tagline {
  font-size: 0.8125rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}

/* App Description */
.app-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.75rem;
}

/* App Feature Chips */
.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.app-feature-chip {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.app-card:hover .app-feature-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

/* App Buttons */
.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.app-btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.app-btn-playstore::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app-btn-playstore:hover {
  transform: translateY(-2px);
}

.app-btn-playstore:hover::before {
  opacity: 1;
}

.app-btn-playstore span,
.app-btn-playstore svg {
  position: relative;
  z-index: 1;
}

.app-btn-privacy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
}

.app-btn-privacy:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Card shimmer line at top */
.app-card-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.app-card:hover .app-card-shimmer {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════════ */
.marquee-container {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  padding: 0.5rem 1.5rem;
  transition: color 0.3s ease;
}

.marquee-item:hover {
  color: rgba(255, 255, 255, 0.5);
}

.marquee-dot {
  color: rgba(99, 102, 241, 0.2);
  font-size: 0.5rem;
  padding: 0 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-card {
  max-width: 540px;
  margin: 0 auto;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1), rgba(255, 255, 255, 0.05));
}

.contact-card-inner {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 1.5rem;
}

.contact-email-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 14px;
  transition: background 0.3s ease;
}

.contact-email-link:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE FINE-TUNING
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 639px) {
  .app-card-content {
    padding: 1.5rem 1.25rem;
  }

  .app-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

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

  .app-title {
    font-size: 1.25rem;
  }

  .app-buttons {
    flex-direction: column;
  }

  .app-btn-playstore,
  .app-btn-privacy {
    justify-content: center;
    width: 100%;
  }

  .stat-card {
    padding: 1.25rem 1rem;
  }

  .contact-card-inner {
    padding: 1rem;
  }
}

@media (min-width: 1536px) {
  .hero-orb-1 { width: 600px; height: 600px; }
  .hero-orb-2 { width: 500px; height: 500px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRIVACY POLICY PAGE STYLES (shared with template)
   ═══════════════════════════════════════════════════════════════ */
.pp-container {
  max-width: 780px;
  margin: 0 auto;
}

.pp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s var(--ease-out-expo);
}

.pp-back-btn:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-4px);
}

.pp-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.pp-content .pp-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.pp-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: -0.01em;
}

.pp-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.pp-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.pp-content ul,
.pp-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.pp-content li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.375rem;
}

.pp-content ul li {
  list-style-type: none;
  position: relative;
  padding-left: 0.75rem;
}

.pp-content ul li::before {
  content: '›';
  position: absolute;
  left: -0.5rem;
  color: rgba(99, 102, 241, 0.5);
  font-weight: 700;
}

.pp-content a {
  color: #818cf8;
  text-decoration: underline;
  text-decoration-color: rgba(129, 140, 248, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}

.pp-content a:hover {
  text-decoration-color: #818cf8;
}

.pp-content strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.pp-content em {
  color: rgba(255, 255, 255, 0.5);
}

.pp-content blockquote {
  border-left: 3px solid rgba(99, 102, 241, 0.3);
  padding: 0.75rem 1.25rem;
  margin: 1.25rem 0;
  background: rgba(99, 102, 241, 0.03);
  border-radius: 0 10px 10px 0;
}

.pp-content blockquote p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}
