/* ================================
   INTIMITY – Dark Purple Glow Design
   ================================ */

:root {
  /* Dark Purple/Black Gradient Colors */
  --bg-dark-1: #0b0310;
  --bg-dark-2: #14001f;
  --bg-dark-3: #240033;

  /* Glow Accent Colors */
  --glow-pink: #ff3d9a;
  --glow-magenta: #d946ef;
  --glow-violet: #8b5cf6;
  --glow-gold: #f59e0b;
  --glow-rose: #fb7185;
  --glow-amber: #fbbf24;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.5);

  /* Glass Morphism */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 20px;

  /* Shadows & Glows */
  --shadow-glow-purple: 0 0 60px rgba(139, 92, 246, 0.3);
  --shadow-glow-pink: 0 0 60px rgba(255, 61, 154, 0.3);
  --shadow-glow-gold: 0 0 60px rgba(245, 158, 11, 0.3);

  /* Layout */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container-width: 1200px;
}

/* ================================
   RESET & BASE STYLES
   ================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: var(--text-primary);
  background: linear-gradient(
    180deg,
    var(--bg-dark-1) 0%,
    var(--bg-dark-2) 50%,
    var(--bg-dark-3) 100%
  );
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .phone-mockup {
    transform: none !important;
  }
}

/* ================================
   ANIMATED BACKGROUND GLOW BLOBS
   ================================ */

/* Aurora Overlay Layers */
.aurora-layer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  mix-blend-mode: screen;
}

.aurora-layer-1 {
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(139, 92, 246, 0.4),
    transparent 50%
  );
  animation: auroraShift1 15s ease-in-out infinite;
}

.aurora-layer-2 {
  background: radial-gradient(
    ellipse 60% 40% at 0% 100%,
    rgba(255, 61, 154, 0.35),
    transparent 50%
  );
  animation: auroraShift2 20s ease-in-out infinite;
}

.aurora-layer-3 {
  background: radial-gradient(
    ellipse 70% 50% at 100% 50%,
    rgba(245, 158, 11, 0.3),
    transparent 50%
  );
  animation: auroraShift3 18s ease-in-out infinite;
}

@keyframes auroraShift1 {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.08;
  }
  50% {
    transform: translateY(-30px) scale(1.05);
    opacity: 0.12;
  }
}

@keyframes auroraShift2 {
  0%,
  100% {
    transform: translateX(0) scale(1);
    opacity: 0.08;
  }
  50% {
    transform: translateX(40px) scale(1.08);
    opacity: 0.15;
  }
}

@keyframes auroraShift3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.08;
  }
  50% {
    transform: translate(-50px, 20px) scale(1.1);
    opacity: 0.13;
  }
}

.glow-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.glow-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--glow-violet);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.glow-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--glow-pink);
  bottom: -100px;
  left: -150px;
  animation: float 15s ease-in-out infinite reverse;
}

.glow-blob-3 {
  width: 350px;
  height: 350px;
  background: var(--glow-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 10s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -80px) scale(1.1);
  }
  66% {
    transform: translate(-40px, 60px) scale(0.9);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1,
h2,
h3,
h4 {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
}

h3 {
  font-size: clamp(20px, 3vw, 32px);
}

p {
  margin: 0;
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ================================
   CONTAINER
   ================================ */

.container {
  width: min(var(--container-width), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ================================
   HEADER / NAVIGATION
   ================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 3, 16, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(11, 3, 16, 0.95);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
  border-bottom-color: rgba(139, 92, 246, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 16px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: var(--text-primary);
}

.nav-cta {
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav-cta {
    display: inline-block;
  }
}

/* ================================
   BUTTONS
   ================================ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.button:hover::before {
  left: 100%;
}

.button-primary {
  background: linear-gradient(135deg, var(--glow-violet), var(--glow-pink));
  color: white;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.button-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.button-primary:hover::before {
  width: 300px;
  height: 300px;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 48px rgba(139, 92, 246, 0.6),
    0 0 80px rgba(255, 61, 154, 0.3);
}

.button-primary:active {
  transform: translateY(0);
}

.button-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ================================
   BADGES & CHIPS
   ================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}

.badge-dev {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--glow-gold);
}

.chip {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--glow-violet);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--glow-violet),
    var(--glow-pink)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 16px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 55ch;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

/* Phone Mockup */
.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-link {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  border: 0;
  background: transparent;
}

.hero-phone-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 10px;
  border-radius: 52px;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(255, 61, 154, 0.1)
  );
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 20px 80px rgba(139, 92, 246, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: phoneFloat 6s ease-in-out infinite;
  transition:
    transform 0.2s ease-out,
    box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}

/* 3D Tilt auf Hover */
.phone-mockup:hover {
  box-shadow:
    0 30px 100px rgba(139, 92, 246, 0.6),
    0 0 80px rgba(255, 61, 154, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Light Sweep Overlay */
.phone-mockup::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: lightSweep 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0;
}

.phone-mockup.in-view::before {
  animation: lightSweep 3s ease-in-out 0.5s 1;
}

@keyframes lightSweep {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a0b2e 0%, #0b0310 100%);
  border-radius: 38px;
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-content {
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 38px;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 38px;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Video Styling */
.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 38px;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  position: relative;
  /* Perfekte Masking für Display */
  clip-path: inset(0 0 0 0 round 38px);
  -webkit-clip-path: inset(0 0 0 0 round 38px);
}

.phone-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 38px;
  z-index: 4;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
}

.phone-video-fallback.hidden {
  opacity: 0;
}

@media (max-width: 768px) {
  .phone-video,
  .phone-video-fallback {
    object-fit: contain;
    background: #120020;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .phone-video-fallback {
    opacity: 1;
  }
}

.mockup-glow {
  width: 200px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.3),
    rgba(255, 61, 154, 0.2),
    transparent
  );
  border-radius: 50%;
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-phone {
    order: -1;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

/* ================================
   SECTION TITLES
   ================================ */

.section-title {
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary), var(--glow-violet));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 48px;
}

/* ================================
   FEATURES SECTION
   ================================ */

.features {
  padding: 100px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.features.revealed {
  opacity: 1;
  transform: translateY(0);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(var(--glass-blur));
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glow-violet),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-card[data-color="purple"]:hover {
  box-shadow:
    var(--shadow-glow-purple),
    0 0 100px rgba(139, 92, 246, 0.15);
}

.feature-card[data-color="pink"]:hover {
  box-shadow:
    var(--shadow-glow-pink),
    0 0 100px rgba(255, 61, 154, 0.15);
}

.feature-card[data-color="gold"]:hover {
  box-shadow:
    var(--shadow-glow-gold),
    0 0 100px rgba(245, 158, 11, 0.15);
}

.feature-card[data-color="violet"]:hover {
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.4);
}

.feature-card[data-color="rose"]:hover {
  box-shadow: 0 0 60px rgba(251, 113, 133, 0.4);
}

.feature-card[data-color="amber"]:hover {
  box-shadow: 0 0 60px rgba(251, 191, 36, 0.4);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   HOW IT WORKS SECTION
   ================================ */

.how-it-works {
  padding: 100px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.how-it-works.revealed {
  opacity: 1;
  transform: translateY(0);
}

.steps {
  display: grid;
  gap: 40px;
  margin-top: 60px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur));
  transition: all 0.3s ease;
}

.step:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--glow-violet), var(--glow-pink));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 2px solid var(--glass-border);
  border-radius: 50%;
}

.step-content h3 {
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.step-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .step {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* ================================
   SCREENSHOTS SECTION
   ================================ */

.screenshots {
  padding: 100px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.screenshots.revealed {
  opacity: 1;
  transform: translateY(0);
}

.screenshots-header {
  margin-bottom: 60px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.screenshot-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
}

.screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.screenshot-image {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.screenshot-info {
  padding: 24px;
}

.screenshot-info h3 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.screenshot-info p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.screenshot-placeholder {
  aspect-ratio: 9 / 16;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
  border-radius: 50%;
  filter: blur(60px);
  animation: glowMove 8s ease-in-out infinite;
}

@keyframes glowMove {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(50%, 50%);
  }
}

.screenshot-placeholder span {
  position: relative;
  z-index: 1;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   DOWNLOAD SECTION
   ================================ */

.download {
  padding: 100px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.download.revealed {
  opacity: 1;
  transform: translateY(0);
}

.download-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.store-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 48px 0 32px;
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(var(--glass-blur));
  cursor: not-allowed;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.store-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(139, 92, 246, 0.15),
    transparent 70%
  );
  opacity: 0;
  animation: storePulse 4s ease-in-out infinite;
}

@keyframes storePulse {
  0%,
  80%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
  90% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.store-button-disabled {
  opacity: 0.5;
}

.store-icon {
  width: 32px;
  height: 32px;
  color: var(--text-primary);
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.store-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.store-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--glow-violet);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--glow-pink);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .store-buttons {
    flex-direction: column;
    width: 100%;
  }

  .store-button {
    width: 100%;
  }
}

/* ================================
   FAQ SECTION
   ================================ */

.faq {
  padding: 100px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.faq.revealed {
  opacity: 1;
  transform: translateY(0);
}

.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(var(--glass-blur));
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item[open] {
  border-color: var(--glow-violet);
}

.faq-item summary {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--glow-violet);
}

.faq-item summary svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.7;
  animation: fadeInDown 0.4s ease;
  transform-origin: top;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer a {
  color: var(--glow-violet);
  text-decoration: underline;
}

/* ================================
   FOOTER
   ================================ */

.footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 40px;
  margin-top: 100px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 32px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* ================================
   SCROLL REVEAL ANIMATION
   ================================ */

section,
.legal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

section.revealed,
.legal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

section:first-of-type {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   LEGAL PAGES STYLING
   ================================ */

.legal-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(var(--glass-blur));
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-section h3 {
  font-size: 24px;
  color: var(--text-primary);
  margin: 0;
}

.legal-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--text-secondary);
  line-height: 1.8;
  list-style-type: disc;
}

.legal-section li {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--glow-violet);
  text-decoration: underline;
}

.legal-section a:hover {
  color: var(--glow-pink);
}

@media (max-width: 640px) {
  .legal-content {
    padding: 32px 24px;
  }
}
