/* ========================================
   CYRICS SUPPORT SITE — DESIGN SYSTEM
   ======================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Brand Colors — extracted from app icon neon pink palette */
  --pink-50: #fef0f7;
  --pink-100: #fde4f0;
  --pink-200: #fcc9e2;
  --pink-300: #faa0cc;
  --pink-400: #f76cac;
  --pink-500: #f04090;
  --pink-600: #e01f6e;
  --pink-700: #c21156;
  --pink-800: #a01248;
  --pink-900: #85143f;

  /* Neon / glow pinks (the hero colors) */
  --neon-pink: #ff69b4;
  --neon-magenta: #f04090;
  --neon-hot: #ff1493;

  /* Surfaces — deep dark with subtle warm tint */
  --bg-primary: #08060a;
  --bg-secondary: #0e0b12;
  --bg-tertiary: #151119;
  --bg-card: rgba(22, 18, 30, 0.65);
  --bg-card-hover: rgba(30, 24, 42, 0.75);

  /* Text */
  --text-primary: #f5f0fa;
  --text-secondary: rgba(245, 240, 250, 0.65);
  --text-tertiary: rgba(245, 240, 250, 0.4);

  /* Borders */
  --border-subtle: rgba(255, 105, 180, 0.08);
  --border-glow: rgba(255, 105, 180, 0.2);

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #ff69b4 0%, #f04090 40%, #c21156 100%);
  --gradient-text: linear-gradient(135deg, #ff9cd2 0%, #ff69b4 30%, #f04090 70%, #e01f6e 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(240, 64, 144, 0.15) 0%, transparent 70%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(255, 105, 180, 0.15);
  --shadow-glow-strong: 0 0 80px rgba(255, 105, 180, 0.25);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 300ms var(--ease-out);
  --transition-slow: 500ms var(--ease-out);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* --- Utility --- */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(8, 6, 10, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.nav.scrolled {
  background: rgba(8, 6, 10, 0.9);
  border-bottom-color: var(--border-glow);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  transition: opacity var(--transition-fast);
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

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

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(8, 6, 10, 0.95);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.mobile-link:hover {
  color: var(--neon-pink);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + var(--space-4xl)) var(--space-xl) var(--space-4xl);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(240, 64, 144, 0.12) 0%, rgba(255, 105, 180, 0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

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

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  width: 100%;
}

.hero-text {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 105, 180, 0.08);
  border: 1px solid rgba(255, 105, 180, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pink-300);
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-pink);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.4);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(255, 105, 180, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-platforms {
  display: flex;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--ease-out) 1s forwards;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.platform-badge svg {
  color: var(--pink-400);
}

.platform-badge-icon {
  border-radius: 4px;
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s var(--ease-out) 0.5s forwards;
}

.hero-phone-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 105, 180, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  animation: phoneGlow 6s ease-in-out infinite;
}

@keyframes phoneGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.6;
  }
}

.hero-phone {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 0 60px rgba(255, 105, 180, 0.2));
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s var(--ease-out);
}

.hero-phone:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 1.4s forwards;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon-pink), transparent);
  border-radius: var(--radius-full);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(12px);
    opacity: 0.3;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: 0 4px 24px rgba(240, 64, 144, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240, 64, 144, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* ========================================
   SECTIONS — Shared
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-lg);
  background: rgba(255, 105, 180, 0.08);
  border: 1px solid rgba(255, 105, 180, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  padding: var(--space-5xl) 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

/* Feature Cards */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

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

/* Wide feature card (lock screen) */
.feature-card-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: var(--space-2xl);
}

.feature-card-content {
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.feature-icon-container {
  margin-bottom: var(--space-xl);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.15);
  border-radius: var(--radius-md);
  color: var(--neon-pink);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: rgba(255, 105, 180, 0.15);
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.15);
}

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

.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.feature-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-card-image img:not(.platform-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.feature-card:hover .feature-card-image img {
  transform: scale(1.03);
}

.feature-card-image-bottom {
  height: 280px;
}

.feature-card-image-bottom img {
  object-position: top;
}

/* Feature Grid (2 column) */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

/* Platforms Showcase */
.platforms-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  background: rgba(0, 0, 0, 0.3);
}

.platform-logos {
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
}

.platform-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.platform-logo-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.platform-logo {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.feature-card:hover .platform-logo {
  transform: scale(1.08);
}

/* ========================================
   JOURNEY SECTION
   ======================================== */
.journey {
  padding: var(--space-5xl) 0;
  position: relative;
}

.journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.journey-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.journey-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-slow);
}

.journey-image:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.journey-image img {
  width: 100%;
  transition: transform var(--transition-slow);
}

.journey-image:hover img {
  transform: scale(1.03);
}

.journey-content .section-tag {
  margin-bottom: var(--space-lg);
}

.journey-content .section-title {
  text-align: left;
}

.journey-content .section-subtitle {
  text-align: left;
  margin: 0 0 var(--space-2xl) 0;
  max-width: none;
}

.journey-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.journey-features li {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.journey-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 105, 180, 0.08);
  border: 1px solid rgba(255, 105, 180, 0.12);
  border-radius: var(--radius-sm);
  color: var(--neon-pink);
}

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

.journey-features li strong {
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.journey-features li p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ========================================
   SUPPORT SECTION
   ======================================== */
.support {
  padding: var(--space-5xl) 0;
  position: relative;
}

.support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.support-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.support-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.support-card:hover::before {
  opacity: 1;
}

.support-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid rgba(255, 105, 180, 0.15);
  border-radius: var(--radius-md);
  color: var(--neon-pink);
  margin-bottom: var(--space-xl);
  transition: all var(--transition-base);
}

.support-card:hover .support-card-icon {
  background: rgba(255, 105, 180, 0.15);
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.15);
}

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

.support-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.support-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  flex: 1;
  position: relative;
  z-index: 1;
}

.support-card-action {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pink-400);
  transition: color var(--transition-fast);
  position: relative;
  z-index: 1;
}

.support-card:hover .support-card-action {
  color: var(--neon-pink);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: var(--space-4xl) 0 var(--space-2xl);
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-4xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-tertiary);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.footer-link-group h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: var(--space-lg);
}

.footer-link-group a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer-link-group a:hover {
  color: var(--neon-pink);
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

/* ========================================
   LEGAL PAGES (Privacy / Terms)
   ======================================== */
.legal-page {
  padding: calc(var(--nav-height) + var(--space-4xl)) var(--space-xl) var(--space-4xl);
  min-height: 100vh;
}

.legal-container {
  max-width: 780px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.legal-header .legal-date {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.legal-content ul,
.legal-content ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-content a {
  color: var(--pink-400);
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--neon-pink);
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Scroll-triggered animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Floating particles */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--neon-pink);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  10% {
    opacity: 0.6;
    transform: translateY(-10px) scale(1);
  }

  90% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(0.5);
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-3xl);
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-phone {
    max-width: 340px;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
  }

  .feature-card-image {
    height: 300px;
  }

  .journey-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .journey-content .section-title,
  .journey-content .section-subtitle {
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .hero {
    min-height: auto;
    padding-bottom: var(--space-3xl);
  }

  .hero-scroll-indicator {
    display: none;
  }

  .feature-card-content {
    padding: var(--space-2xl);
  }
}

@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-badge {
    font-size: 0.78rem;
  }

  .btn {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.88rem;
  }

  .platform-logos {
    gap: var(--space-xl);
  }

  .platform-logo {
    width: 60px;
    height: 60px;
  }
}