/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* CDLens Brand Colors - inspired by the rainbow CD icon */
  --primary: #8b5cf6;
  --primary-dark: #7c3aed;
  --primary-light: #a78bfa;
  --secondary: #00d4ff;
  --secondary-dark: #06b6d4;
  --accent: #ec4899;
  --accent-dark: #db2777;
  --neon: #22d3ee;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.78);
  --text-light: rgba(255, 255, 255, 0.55);
  --text-dark: #1a1033;
  --background: #0a0420;
  --background-alt: #120a30;
  --background-card: rgba(255, 255, 255, 0.06);
  --background-card-hover: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.4);
  --shadow-hover: rgba(0, 0, 0, 0.55);

  /* Rainbow gradient - matches the CD icon */
  --gradient-rainbow: linear-gradient(
    135deg,
    #ff3d8e 0%,
    #ff6b35 18%,
    #ffd23f 35%,
    #4ade80 52%,
    #00d4ff 70%,
    #8b5cf6 88%,
    #ec4899 100%
  );

  --gradient-primary: linear-gradient(
    135deg,
    #8b5cf6 0%,
    #6366f1 50%,
    #ec4899 100%
  );

  --gradient-purple: linear-gradient(
    135deg,
    #7c3aed 0%,
    #8b5cf6 50%,
    #a78bfa 100%
  );

  --gradient-cool: linear-gradient(
    135deg,
    #00d4ff 0%,
    #8b5cf6 50%,
    #ec4899 100%
  );

  --gradient-glow: radial-gradient(
    circle at 50% 0%,
    rgba(139, 92, 246, 0.35) 0%,
    rgba(0, 212, 255, 0.15) 30%,
    rgba(236, 72, 153, 0.1) 60%,
    transparent 100%
  );

  /* Typography */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --transition-fast: all 0.15s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: #0a0420;
  background-image: radial-gradient(
      ellipse at 20% 0%,
      rgba(139, 92, 246, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 30%,
      rgba(0, 212, 255, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(236, 72, 153, 0.2) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #0a0420 0%, #15082f 50%, #0a0420 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-size-6xl);
  font-weight: 900;
}
h2 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 1.1rem 2.5rem;
  border: none;
  border-radius: 999px;
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  justify-content: center;
  letter-spacing: 0.02em;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-cool);
  background-size: 200% 200%;
  color: white;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5),
    0 4px 16px rgba(0, 212, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(0);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  animation: gradient-shift 6s ease infinite;
}

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

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.6),
    0 8px 24px rgba(236, 72, 153, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 4, 32, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 4, 32, 0.85);
  box-shadow: 0 4px 30px rgba(139, 92, 246, 0.2);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15);
}

.logo-text {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: var(--spacing-xs) 0;
  font-size: 0.95rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cool);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: white;
}

.nav-link:hover::after {
  width: 100%;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
}

.nav-link.download-btn {
  background: var(--gradient-cool);
  background-size: 200% 200%;
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
  font-weight: 600;
  animation: gradient-shift 6s ease infinite;
}

.nav-link.download-btn::after {
  display: none;
}

.nav-link.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 140px 0 var(--spacing-3xl);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float-orb 16s ease-in-out infinite;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  top: -120px;
  left: -100px;
}

.orb-2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  bottom: -80px;
  right: 5%;
  animation-delay: -5s;
}

.orb-3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  top: 30%;
  right: 30%;
  animation-delay: -10s;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.08);
  }
  66% {
    transform: translate(-30px, 25px) scale(0.95);
  }
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero-icon {
  margin-bottom: var(--spacing-lg);
  animation: float 6s ease-in-out infinite;
  display: inline-block;
}

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

.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(139, 92, 246, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.app-icon:hover {
  transform: scale(1.06) rotate(-5deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55),
    0 0 70px rgba(0, 212, 255, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--spacing-md);
  color: white;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: var(--gradient-rainbow);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s ease-in-out infinite;
  display: inline-block;
}

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

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
  font-weight: 400;
  max-width: 540px;
}

.hero-cta {
  margin-bottom: var(--spacing-xl);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
}

.meta-icon {
  font-size: 1.05rem;
}

.hero-screenshots {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 1s ease-out;
  position: relative;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.screenshot-main {
  position: relative;
}

.screenshot-main::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: var(--gradient-rainbow);
  filter: blur(60px);
  opacity: 0.3;
  z-index: -1;
  border-radius: 50%;
  animation: gradient-shift 8s ease infinite;
  background-size: 200% 200%;
}

.main-screenshot {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: var(--radius-3xl);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.main-screenshot:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(139, 92, 246, 0.35);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
  color: white;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-header p {
  font-size: var(--font-size-lg);
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
}

/* Features Section */
.features {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--spacing-xl);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-rainbow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% -20%,
    rgba(139, 92, 246, 0.2) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(139, 92, 246, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2),
    rgba(0, 212, 255, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-5deg);
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.3),
    rgba(139, 92, 246, 0.25)
  );
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  color: white;
  font-size: 1.25rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Screenshots Section */
.screenshots {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.screenshots::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: var(--gradient-rainbow);
  filter: blur(150px);
  opacity: 0.12;
  pointer-events: none;
  border-radius: 50%;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  position: relative;
  z-index: 2;
}

.screenshot {
  text-align: center;
  transition: var(--transition);
}

.screenshot img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-2xl);
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.screenshot:hover img {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(139, 92, 246, 0.3);
}

.screenshot h4 {
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: white;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.screenshot p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* Download Section */
.download {
  padding: var(--spacing-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: var(--gradient-rainbow);
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
  border-radius: 50%;
  animation: gradient-shift 12s ease infinite;
  background-size: 200% 200%;
}

.download .container {
  position: relative;
  z-index: 2;
}

.download h2 {
  color: white;
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-5xl);
  font-weight: 800;
  background: var(--gradient-rainbow);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s ease-in-out infinite;
}

.download p {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
  font-weight: 400;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.download-btn {
  transition: var(--transition);
  text-decoration: none;
}

.download-btn:hover {
  transform: translateY(-4px);
  text-decoration: none;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  min-width: 190px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.store-button:hover {
  background: #0a0a0a;
  color: #fff;
  text-decoration: none;
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.35),
    0 0 0 1px rgba(139, 92, 246, 0.3);
}

.store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.store-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  max-width: 32px;
  max-height: 32px;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.store-label {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.store-name {
  font-size: 17px;
  font-weight: 600;
  margin-top: 2px;
  color: #fff;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-rainbow);
  opacity: 0.3;
}

.footer-content {
  text-align: center;
}

.footer-tagline {
  margin-bottom: var(--spacing-md);
}

.footer-tagline p {
  font-size: var(--font-size-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-rainbow);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s ease-in-out infinite;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-links span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
}

.footer-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--font-size-sm);
}

/* Privacy / Terms Page */
.privacy-content {
  padding: 130px 0 var(--spacing-2xl);
  min-height: 100vh;
  position: relative;
}

.privacy-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link {
  display: inline-block;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  transition: var(--transition);
  font-size: 0.95rem;
}

.back-link:hover {
  color: var(--primary-light);
  transform: translateX(-4px);
}

.privacy-header h1 {
  margin-bottom: var(--spacing-sm);
  color: white;
  font-size: var(--font-size-5xl);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.last-updated {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--font-size-sm);
}

.privacy-body {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.privacy-body h2 {
  color: white;
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  position: relative;
  padding-left: var(--spacing-sm);
}

.privacy-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  bottom: 0.4em;
  width: 3px;
  background: var(--gradient-rainbow);
  border-radius: 3px;
}

.privacy-body h2:first-child {
  margin-top: 0;
}

.privacy-body h3 {
  color: white;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.privacy-body p {
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.78);
}

.privacy-body ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.privacy-body li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.privacy-body li::marker {
  color: var(--secondary);
}

.privacy-body a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.privacy-body a:hover {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
}

.privacy-body strong {
  color: white;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    gap: var(--spacing-2xl);
  }

  .hero-title {
    font-size: 3.25rem;
  }

  .main-screenshot {
    max-width: 320px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2.25rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    text-align: center;
    padding: 110px 0 var(--spacing-2xl);
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .hero-content {
    order: 2;
    margin: 0 auto;
  }

  .hero-screenshots {
    order: 1;
  }

  .hero-icon {
    display: block;
    text-align: center;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
    margin: 0 auto var(--spacing-lg);
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .download h2 {
    font-size: 2.25rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }

  .store-button {
    min-width: 220px;
    padding: 14px 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .separator {
    display: none;
  }

  .privacy-body {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }

  .main-screenshot {
    max-width: 280px;
  }

  .app-icon {
    width: 80px;
    height: 80px;
  }

  .privacy-header h1 {
    font-size: 2rem;
  }
}

/* Mobile menu */
.nav-menu.active {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 4, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  padding: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  gap: var(--spacing-md);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.7s ease-out both;
}

/* Image loading */
img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img.loaded {
  opacity: 1;
}

/* Focus */
a:focus,
button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-link.active {
  color: white !important;
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--gradient-cool);
  border-radius: 10px;
  border: 2px solid #0a0420;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-rainbow);
}

/* Selection */
::selection {
  background: rgba(139, 92, 246, 0.4);
  color: white;
}
