/* ============================================
   Picmori Landing Page — "Candy Glass"
   Purple → Pink gradient, airy, juicy, modern
   ============================================ */

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

:root {
  /* Brand */
  --purple: #A855F7;
  --purple-light: #C084FC;
  --purple-dark: #7E22CE;
  --pink: #EC4899;
  --pink-light: #F472B6;
  --gold: #FFC857;
  --green: #86EFAC;
  --danger: #FF5D73;

  /* Surfaces */
  --bg: #FDF4FA;
  --bg-deep: #F5EAFC;
  --surface: #FFFFFF;
  --surface-glass: rgba(255, 255, 255, 0.55);
  --surface-glass-border: rgba(168, 85, 247, 0.12);

  /* Text */
  --text-primary: #111418;
  --text-secondary: #667085;
  --text-muted: #98A2B3;

  /* Blobs */
  --blob-lavender: #DDD6FE;
  --blob-rose: #FBCFE8;
  --blob-mint: #A7F3D0;
  --blob-peach: #FED7AA;
  --blob-sky: #BAE6FD;

  /* Spacing */
  --container: 1200px;
  --gap: 16px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* --- Background Blobs --- */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  will-change: transform;
}

.blob-1 {
  width: 600px; height: 600px;
  background: var(--blob-lavender);
  top: -10%; left: -5%;
  animation: blobFloat1 25s ease-in-out infinite;
}
.blob-2 {
  width: 500px; height: 500px;
  background: var(--blob-rose);
  top: 20%; right: -10%;
  animation: blobFloat2 30s ease-in-out infinite;
}
.blob-3 {
  width: 400px; height: 400px;
  background: var(--blob-mint);
  bottom: 30%; left: 10%;
  animation: blobFloat3 22s ease-in-out infinite;
}
.blob-4 {
  width: 350px; height: 350px;
  background: var(--blob-peach);
  bottom: -5%; right: 20%;
  animation: blobFloat1 28s ease-in-out infinite reverse;
}
.blob-5 {
  width: 300px; height: 300px;
  background: var(--blob-sky);
  top: 50%; left: 40%;
  animation: blobFloat2 20s ease-in-out infinite reverse;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -60px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 30px) scale(1.08); }
  66% { transform: translate(30px, -50px) scale(0.92); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -30px) scale(1.1); }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  padding: 10px 24px;
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--surface-glass-border);
  box-shadow: 0 4px 30px rgba(168, 85, 247, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
  transition: transform 0.3s var(--ease-spring);
}

.nav-logo:hover .logo-icon {
  transform: scale(1.05) rotate(-3deg);
}

.logo-text {
  font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.nav-btn {
  font-weight: 700;
  font-size: 14px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.nav-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
}

/* Language toggle */
.lang-toggle {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--purple);
  background: rgba(168, 85, 247, 0.08);
  border: 1.5px solid rgba(168, 85, 247, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  letter-spacing: 0.5px;
}

.lang-toggle:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
  transform: scale(1.05);
}

.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  max-width: var(--container);
  margin: 16px auto 0;
  padding: 16px;
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-glass-border);
}

.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.mobile-link:hover, .mobile-link:active {
  background: rgba(168, 85, 247, 0.08);
  color: var(--purple);
}

.mobile-link.cta {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  text-align: center;
  margin-top: 4px;
}

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--purple);
  background: rgba(168, 85, 247, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* --- Hero --- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 60px;
}

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

.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  background: rgba(168, 85, 247, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-spring);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-dark), var(--pink));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.45);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary svg, .btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 16px 8px;
  transition: all 0.3s;
}

.btn-ghost:hover {
  color: var(--purple);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.btn-ghost svg {
  transition: transform 0.3s var(--ease-spring);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: left; }

.stat-number {
  font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(168, 85, 247, 0.15);
}

/* Hero Phone */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: phoneGlow 4s ease-in-out infinite;
}

@keyframes phoneGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0.9; }
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  background: #0E1116;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(168, 85, 247, 0.15);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 32px;
  background: #0E1116;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #171B22 0%, #1E2330 100%);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

/* Mock review screen inside phone */
.mock-review {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 48px 16px 20px;
}

.mock-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.mock-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.mock-progress-fill {
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple-light), var(--pink-light));
  border-radius: 4px;
  animation: progressPulse 3s ease-in-out infinite;
}

@keyframes progressPulse {
  0%, 100% { width: 48%; }
  50% { width: 52%; }
}

.mock-counter {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.mock-card-stack {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
}

.mock-card-back {
  width: 200px;
  height: 270px;
  background: rgba(255, 255, 255, 0.05);
  transform: scale(0.92) translateY(8px);
}

.mock-card-front {
  width: 216px;
  height: 290px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cardFloat 4s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-4px) rotate(0.5deg); }
  75% { transform: translateY(2px) rotate(-0.5deg); }
}

.mock-photo-placeholder {
  opacity: 0.6;
}

.mock-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 16px 0;
}

.mock-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}

.mock-delete {
  background: rgba(255, 93, 115, 0.15);
  color: var(--danger);
  border: 1.5px solid rgba(255, 93, 115, 0.3);
}

.mock-skip {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
}

.mock-keep {
  background: rgba(134, 239, 172, 0.15);
  color: var(--green);
  border: 1.5px solid rgba(134, 239, 172, 0.3);
}

.mock-encourage {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
}

/* Floating cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--surface-glass-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.floating-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delete-icon { background: rgba(255, 93, 115, 0.12); }
.keep-icon { background: rgba(134, 239, 172, 0.15); }

.floating-card-1 {
  top: 25%;
  left: -60px;
  animation: floatCard1 5s ease-in-out infinite;
}

.floating-card-2 {
  bottom: 25%;
  right: -60px;
  animation: floatCard2 5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

/* Scroll hint */
.hero-scroll-hint {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--purple);
  border-radius: 4px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* --- Features --- */
.features {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.2);
}

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

.feature-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(168, 85, 247, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-title {
  font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  background: rgba(168, 85, 247, 0.08);
  padding: 4px 12px;
  border-radius: 50px;
}

/* Feature visual — swipe demo */
.feature-visual {
  display: flex;
  justify-content: center;
}

.feature-phone-mini {
  width: 220px;
  height: 420px;
  background: #0E1116;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mini-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #171B22, #1E2330);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swipe-demo {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.swipe-card-demo {
  width: 160px;
  height: 220px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: swipeDemoAnim 4s ease-in-out infinite;
  position: relative;
}

.demo-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3));
}

@keyframes swipeDemoAnim {
  0%, 15%, 100% { transform: translateX(0) rotate(0deg); opacity: 1; }
  20% { transform: translateX(60px) rotate(8deg); opacity: 0.8; }
  25% { transform: translateX(100px) rotate(12deg); opacity: 0; }
  30% { transform: translateX(0) rotate(0deg); opacity: 0; }
  35% { transform: translateX(0) rotate(0deg); opacity: 1; }
  55%, 65% { transform: translateX(0) rotate(0deg); opacity: 1; }
  70% { transform: translateX(-60px) rotate(-8deg); opacity: 0.8; }
  75% { transform: translateX(-100px) rotate(-12deg); opacity: 0; }
  80% { transform: translateX(0) rotate(0deg); opacity: 0; }
  85% { transform: translateX(0) rotate(0deg); opacity: 1; }
}

.swipe-labels {
  display: flex;
  justify-content: space-between;
  width: 160px;
}

.swipe-label {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.label-delete {
  color: var(--danger);
  background: rgba(255, 93, 115, 0.15);
}

.label-keep {
  color: var(--green);
  background: rgba(134, 239, 172, 0.15);
}

/* --- How It Works --- */
.how-it-works {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  position: relative;
}

.step-connector {
  width: 100px;
  margin-top: 140px;
  flex-shrink: 0;
}

.step-number {
  font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  margin-bottom: 16px;
}

.step-phone {
  width: 180px;
  height: 320px;
  background: #0E1116;
  border-radius: 28px;
  padding: 8px;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #171B22, #1E2330);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-step {
  padding: 20px 14px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mock-step-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 16px;
}

.mock-session-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-session {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.mock-session.active {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
  border-color: rgba(168, 85, 247, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.mock-session-icon { font-size: 14px; }

/* Step 2 — swipe mock */
.mock-step-swipe {
  align-items: center;
}

.mock-swipe-card {
  width: 120px;
  height: 160px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-swipe-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3));
}

.mock-swipe-arrows {
  display: flex;
  justify-content: space-between;
  width: 120px;
}

.arrow-left, .arrow-right {
  font-size: 10px;
  font-weight: 700;
}

.arrow-left { color: var(--danger); }
.arrow-right { color: var(--green); }

/* Step 3 — completion mock */
.mock-step-done {
  align-items: center;
  text-align: center;
}

.mock-celebration {
  font-size: 40px;
  margin-bottom: 12px;
  animation: celebrate 2s ease-in-out infinite;
}

@keyframes celebrate {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-5deg); }
  75% { transform: scale(1.1) rotate(5deg); }
}

.mock-done-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.mock-done-stats {
  display: flex;
  gap: 20px;
}

.mock-done-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.done-num {
  font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.done-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-title {
  font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

/* --- Reviews --- */
.reviews {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.reviews-carousel {
  overflow: hidden;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s var(--ease-out);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.08);
}

.review-stars {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--hue, 270) 80% 70%), hsl(calc(var(--hue, 270) + 40) 80% 65%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: white;
}

.review-source {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- Download CTA --- */
.download {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  text-align: center;
}

.download-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.download-content {
  position: relative;
}

.download-title {
  font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
}

.download-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: var(--text-primary);
  color: white;
  border-radius: 14px;
  transition: all 0.35s var(--ease-spring);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.store-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.store-text {
  text-align: left;
  line-height: 1.3;
}

.store-text small {
  font-size: 10px;
  opacity: 0.7;
  display: block;
  font-weight: 500;
}

.store-text strong {
  font-size: 17px;
  font-weight: 700;
}

.download-note {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(168, 85, 247, 0.08);
}

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

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 260px;
}

.footer-links-group h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links-group a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(168, 85, 247, 0.06);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Scroll Animations --- */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text { max-width: 100%; margin: 0 auto; }

  .hero-subtitle { margin: 0 auto 32px; }

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

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

  .feature-large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .step-connector {
    margin-top: 0;
    transform: rotate(90deg);
    width: 60px;
  }

  .floating-card-1 { left: -20px; top: 15%; }
  .floating-card-2 { right: -20px; bottom: 20%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right-mobile { display: flex; }
  .mobile-menu-btn { display: flex; }

  .hero { padding: 100px 16px 40px; min-height: auto; }

  .hero-title { letter-spacing: -0.5px; }

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

  .feature-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .review-track {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand { grid-column: span 2; }

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

  .stat-divider { display: none; }

  .floating-card { display: none; }

  .phone-frame {
    width: 240px;
    height: 490px;
  }

  .mock-card-front { width: 180px; height: 250px; }
  .mock-card-back { width: 170px; height: 240px; }
}

@media (max-width: 480px) {
  .section-header { margin-bottom: 40px; }

  .hero-cta { flex-direction: column; align-items: center; }

  .download-buttons { flex-direction: column; align-items: center; }

  .store-btn { width: 100%; max-width: 280px; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* --- Selection color --- */
::selection {
  background: rgba(168, 85, 247, 0.2);
  color: var(--text-primary);
}

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

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 85, 247, 0.35);
}
