/* AniPick 디자인 시스템 */
:root {
  --anipick-teal: #50C8B8;
  --anipick-purple: #34344A;
  --primary-blue: var(--anipick-teal);
  --primary-blue-light: #6dd4c7;
  --text-primary: var(--anipick-purple);
  --text-secondary: #4a4a6a;
  --text-tertiary: #6b6b8a;
  --text-quaternary: #8b8baa;
  --background-white: #ffffff;
  --background-gray: #f9fafb;
  --background-deep: #0f1224;
  --border-light: #e5e8eb;
  --shadow-light: 0 2px 8px rgba(80, 200, 184, 0.1);
  --shadow-medium: 0 4px 16px rgba(80, 200, 184, 0.15);
  --shadow-heavy: 0 8px 32px rgba(80, 200, 184, 0.2);
  --border-radius: 12px;
  --border-radius-large: 20px;
  --transition: all 0.3s ease;
}

/* 기본 스타일 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans KR", "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background-white);
  overflow-x: hidden;
}

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

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

/* 부드러운 스크롤 */
html {
  scroll-behavior: smooth;
}

/* 헤더 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(80, 200, 184, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(80, 200, 184, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 18px;
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover .logo-image {
  transform: scale(1.1);
}

.logo-text {
  background: linear-gradient(135deg, var(--anipick-purple), var(--anipick-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  color: var(--anipick-purple);
}

/* 로고 애니메이션 */
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-2px);
  }
}

.logo-image {
  animation: logoFloat 3s ease-in-out infinite;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(92, 201, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  background: rgba(92, 201, 255, 0.1);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 201, 255, 0.2);
}

.nav-link.active {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: white;
  box-shadow: 0 4px 12px rgba(49, 130, 246, 0.3);
}

.nav-icon {
  font-size: 16px;
  transition: var(--transition);
}

.nav-link:hover .nav-icon {
  transform: scale(1.2) rotate(10deg);
}

.nav-text {
  transition: var(--transition);
}

.download-nav {
  background: linear-gradient(135deg, var(--anipick-teal), var(--anipick-purple));
  color: white !important;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(80, 200, 184, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 25px;
  padding: 10px 18px;
}

.download-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.download-nav:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(80, 200, 184, 0.6);
  color: var(--anipick-purple) !important;
  background: white !important;
  animation: badgeShine 1.5s ease-in-out infinite;
  border: 2px solid var(--anipick-teal);
}

.download-nav:hover::before {
  left: 100%;
}

/* 헤더 진행도 바 */
.header-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--anipick-teal), var(--anipick-purple));
  transition: width 0.3s ease;
  width: 0%;
}

/* 모바일 메뉴 토글 */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* 히어로 섹션 */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--background-deep) 0%, #1a1d29 50%, #2a1d3a 100%);
  overflow: hidden;
  padding-top: 60px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(92, 201, 255, 0.4) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(49, 130, 246, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
  animation: gradientShift 8s ease-in-out infinite;
}

/* 플로팅 셰이프 */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(92, 201, 255, 0.1), rgba(49, 130, 246, 0.1));
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-delay: 1s;
}

.shape-5 {
  width: 40px;
  height: 40px;
  top: 10%;
  right: 50%;
  animation-delay: 3s;
}

/* 파티클 컨테이너 */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(92, 201, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 10s linear infinite;
}

/* 애니메이션 키프레임 */
@keyframes gradientShift {
  0%, 100% {
    background: radial-gradient(circle at 30% 20%, rgba(92, 201, 255, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(49, 130, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
  }
  50% {
    background: radial-gradient(circle at 70% 20%, rgba(92, 201, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(49, 130, 246, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-text h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text h1 {
  line-height: 1.4;
}

.hero-text h1 br {
  display: block;
  content: "";
  margin-top: 8px;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* 히어로 배지 */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 16px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  animation: heroBadgeFloat 3s ease-in-out infinite;
}

.badge-icon {
  font-size: 16px;
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

/* 히어로 하이라이트 */
.hero-highlights {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 0;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.highlight-number {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-blue-light);
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(92, 201, 255, 0.5);
}

.highlight-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* 히어로 배지 애니메이션 */
@keyframes heroBadgeFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}



.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;

}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 12px 20px;
  color: white;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.store-btn img {
  width: 20px;
  height: 20px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 240px;
  height: 480px;
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.phone-frame {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.phone-screen {
  position: absolute;
  top: 8%;
  left: 8%;
  width: 84%;
  height: 84%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
  object-fit: cover;
}

.phone-screen-complete {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
  object-fit: contain;
}

.phone-screen-hero {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 110%;
  height: 120%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease;
}

.app-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.phone-complete {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
}

/* 인트로 섹션 */
.intro-section {
  padding: 120px 20px;
  background: var(--background-white);
  text-align: center;
}

.intro-container {
  max-width: 800px;
  margin: 0 auto;
}

.intro-container h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* 기능 섹션 */
.feature-section {
  padding: 120px 20px;
  background: var(--background-white);
  position: relative;
  overflow: hidden;
}

.feature-section:nth-child(even) {
  background: var(--background-gray);
}

.feature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(92, 201, 255, 0.02) 50%, transparent 100%);
  pointer-events: none;
}

.feature-container {
  max-width: 1200px;
  margin: 0 auto;
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* 기능 배지 */
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(49, 130, 246, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.feature-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(49, 130, 246, 0.6);
  color: var(--primary-blue);
  background: white;
  animation: badgeShine 1.5s ease-in-out infinite;
}

.feature-badge:hover::before {
  left: 100%;
}

.feature-text h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.feature-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* 기능 통계 */
.feature-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(92, 201, 255, 0.08), rgba(49, 130, 246, 0.05));
  border: 1px solid rgba(92, 201, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(92, 201, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(92, 201, 255, 0.25);
  border-color: rgba(92, 201, 255, 0.3);
}

.stat:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* 배지 펄스 애니메이션 */
@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(49, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(49, 130, 246, 0.5);
  }
}

/* 배지 반짝임 애니메이션 */
@keyframes badgeShine {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(49, 130, 246, 0.6);
  }
  50% {
    box-shadow: 0 8px 25px rgba(49, 130, 246, 0.6), 0 0 20px rgba(92, 201, 255, 0.8);
  }
}

.feature-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  position: relative;
}

.feature-image .phone-mockup {
  width: 320px;
  height: 640px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
}

.feature-image .phone-mockup:hover {
  transform: translateY(-10px) scale(1.05);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.feature-image .phone-mockup.second {
  transform: translateY(40px) scale(0.9);
  opacity: 0.8;
}

.feature-image .phone-mockup.second:hover {
  transform: translateY(30px) scale(0.95);
  opacity: 0.9;
}

/* 폰 목업 3D 효과 */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, rgba(92, 201, 255, 0.1), rgba(49, 130, 246, 0.1));
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.phone-mockup:hover::before {
  opacity: 1;
  animation: phoneGlow 2s ease-in-out infinite;
}

@keyframes phoneGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(92, 201, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(92, 201, 255, 0.6);
  }
}

.feature-description {
  grid-column: 1 / -1;
  margin-top: 60px;
  text-align: center;
}

.feature-description h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* CTA 섹션 */
.cta-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

/* CTA 배경 효과 */
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: ctaGradientShift 8s ease-in-out infinite;
}

/* CTA 플로팅 셰이프 */
.cta-floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  animation: ctaFloat 8s ease-in-out infinite;
}

.cta-shape-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.cta-shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.cta-shape-3 {
  width: 40px;
  height: 40px;
  top: 80%;
  left: 25%;
  animation-delay: 4s;
}

.cta-shape-4 {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 35%;
  animation-delay: 1s;
}

.cta-shape-5 {
  width: 50px;
  height: 50px;
  top: 10%;
  right: 50%;
  animation-delay: 3s;
}

/* CTA 반짝이는 별들 */
.cta-stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  font-size: 20px;
  animation: starTwinkle 3s ease-in-out infinite;
  opacity: 0.7;
}

.star-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.star-2 {
  top: 25%;
  right: 15%;
  animation-delay: 0.5s;
}

.star-3 {
  top: 45%;
  left: 20%;
  animation-delay: 1s;
}

.star-4 {
  top: 55%;
  right: 25%;
  animation-delay: 1.5s;
}

.star-5 {
  top: 75%;
  left: 15%;
  animation-delay: 2s;
}

.star-6 {
  top: 85%;
  right: 20%;
  animation-delay: 2.5s;
}

.star-7 {
  top: 35%;
  left: 60%;
  animation-delay: 0.8s;
}

.star-8 {
  top: 65%;
  right: 60%;
  animation-delay: 1.3s;
}

/* CTA 파티클 */
.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: ctaParticleFloat 10s linear infinite;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-content h1 {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: titleGlow 2s ease-in-out infinite;
}

.cta-content h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  50% {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 30px rgba(255, 255, 255, 0.3);
  }
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  text-align: center;
}

.cta-button.primary {
  background: white;
  color: var(--primary-blue);
  box-shadow: var(--shadow-medium);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.store-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--border-radius);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.store-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.store-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.store-link:hover::before {
  left: 100%;
}

.store-link img {
  width: 18px;
  height: 18px;
}

.cta-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mascot {
  max-width: 300px;
  height: auto;
  animation: mascotFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(80, 200, 184, 0.3));
  transition: all 0.3s ease;
  border-radius: 50%;
  padding: 20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(80, 200, 184, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(80, 200, 184, 0.2);
  position: relative;
}

.mascot::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--anipick-teal), var(--anipick-purple));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.1;
  animation: mascotGlow 4s ease-in-out infinite;
}

.mascot:hover {
  transform: scale(1.05) translateY(-10px) rotate(5deg);
  filter: drop-shadow(0 30px 60px rgba(80, 200, 184, 0.5));
  border-color: rgba(80, 200, 184, 0.4);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(80, 200, 184, 0.1) 100%);
}

.mascot:hover::before {
  opacity: 0.2;
  animation: mascotGlow 2s ease-in-out infinite;
}

/* 마스코트 플로팅 애니메이션 */
@keyframes mascotFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* 마스코트 글로우 애니메이션 */
@keyframes mascotGlow {
  0%, 100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.1);
  }
}

/* CTA 이미지 배경 효과 */
.cta-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(92, 201, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: backgroundPulse 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes backgroundPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* 푸터 */
.footer {
  background: var(--text-primary);
  color: var(--text-quaternary);
  padding: 60px 20px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 20px;
  color: white;
}

.footer-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--anipick-teal);
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--text-quaternary);
  font-weight: 600;
  transition: var(--transition);
}

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

.footer-separator {
  opacity: 0.4;
}

.footer-info {
  font-size: 14px;
  line-height: 1.6;
}

.footer-info p {
  margin-bottom: 4px;
}

/* 애니메이션 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA 애니메이션 키프레임 */
@keyframes ctaGradientShift {
  0%, 100% {
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  }
  50% {
    background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  }
}

@keyframes ctaFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
  }
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
}

@keyframes ctaParticleFloat {
  0% {
    transform: translateY(100vh) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* 반응형 디자인 */
@media (max-width: 768px) {
  .header-container {
    padding: 0 16px;
  }
  
  .navbar {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 16px;
  }
  
  .logo-image {
    width: 28px;
    height: 28px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 16px;
  }
  
  .hero-text h1 {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .store-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .store-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .phone-mockup {
    width: 160px;
    height: 320px;
  }
  
  .phone-screen-hero {
    top: -8%;
    left: -4%;
    width: 108%;
    height: 116%;
  }
  
  .hero-highlights {
    gap: 24px;
    margin-top: 32px;
    padding: 20px 0;
  }
  
  .highlight-number {
    font-size: 20px;
  }
  
  .highlight-label {
    font-size: 11px;
  }
  
  .feature-section {
    padding: 80px 16px;
  }
  
  .feature-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .feature-text h1 {
    font-size: 24px;
  }
  
  .feature-text h2 {
    font-size: clamp(24px, 5vw, 32px);
    line-height: 1.3;
  }
  
  .feature-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .feature-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .stat {
    width: 100%;
    max-width: 200px;
  }
  
  .feature-image {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .feature-image .phone-mockup {
    width: 240px;
    height: 480px;
  }
  

  
  .feature-image .phone-mockup.second {
    transform: translateY(0) scale(0.9);
    opacity: 0.8;
  }
  
  .feature-description {
    margin-top: 40px;
  }
  
  .feature-description h3 {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .cta-section {
    padding: 80px 16px;
  }
  
  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .cta-content h1 {
    font-size: clamp(24px, 5vw, 32px);
    line-height: 1.2;
  }
  
  .cta-content h2 {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .cta-actions {
    gap: 20px;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .store-links {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  
  .store-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .mascot {
    max-width: 200px;
  }
  
  .footer {
    padding: 40px 16px 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-separator {
    display: none;
  }
  
  .download-nav {
    background: linear-gradient(135deg, var(--anipick-teal), var(--anipick-purple)) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 10px 18px !important;
    box-shadow: 0 6px 20px rgba(80, 200, 184, 0.4) !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 60px;
  }
  
  .hero-container {
    padding: 0 16px;
  }
  
  .phone-mockup {
    width: 180px;
    height: 360px;
  }
  
  .phone-screen-hero {
    top: -5%;
    left: -3%;
    width: 106%;
    height: 110%;
  }
  
  .feature-section {
    padding: 80px 16px;
  }
  
  .cta-section {
    padding: 80px 16px;
  }
  
  .footer {
    padding: 40px 16px 30px;
  }
  
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .store-links {
    flex-direction: column;
    align-items: center;
  }
}