/* ============================================
   缔梦剧场 — 官网 & 落地页
   ============================================ */

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

:root {
  --primary: #F2994A;
  --primary-dark: #E07C24;
  --primary-light: #F5B97A;
  --accent: #EB5757;
  --gradient-1: linear-gradient(135deg, #F2994A 0%, #F2C94C 50%, #EB5757 100%);
  --gradient-2: linear-gradient(135deg, #1a1108 0%, #2d1e0e 50%, #1c1710 100%);
  --gradient-hero: linear-gradient(160deg, #1a1108 0%, #2d1a0a 40%, #1c1710 100%);
  --text: #2d2015;
  --text-secondary: #7a6b5d;
  --text-light: #a89888;
  --bg: #ffffff;
  --bg-soft: #fdf8f3;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(242, 153, 74, 0.1);
  --shadow-lg: 0 20px 60px rgba(242, 153, 74, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}



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

img {
  max-width: 100%;
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 8px 30px rgba(242, 153, 74, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(242, 153, 74, 0.55);
}

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

.btn-lg {
  padding: 18px 42px;
  font-size: 18px;
}

.btn-icon {
  flex-shrink: 0;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-1);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
}

.brand-text {
  color: #fff;
  transition: var(--transition);
}

.navbar.scrolled .brand-text {
  color: var(--text);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: #fff;
}

.navbar.scrolled .nav-links a {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-download-btn {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  padding: 10px 24px !important;
  border-radius: 50px !important;
  color: #fff !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.nav-download-btn:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.navbar.scrolled .nav-download-btn {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

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

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .mobile-menu-btn span {
  background: var(--text);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid #eee;
}

.mobile-menu a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .nav-download-btn {
  background: var(--gradient-1) !important;
  color: #fff !important;
  text-align: center;
  margin-top: 12px;
  border: none !important;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/bg-main.jpg?v=1777375695247') center/cover no-repeat;
  filter: blur(2px);
  z-index: 0;
  transform: scale(1.02);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 153, 74, 0.3), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(235, 87, 87, 0.2), transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

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

.phone-mockup {
  position: relative;
  animation: phone-float 6s ease-in-out infinite;
}

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

.phone-frame {
  width: 280px;
  height: 580px;
  background: #1c1710;
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

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

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2d1a0a 0%, #1c1710 100%);
  border-radius: 30px;
  overflow: hidden;
}

.screen-content {
  padding: 40px 16px 16px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.screen-logo {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.screen-search {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
}

.screen-banner {
  height: 120px;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.screen-banner svg {
  display: block;
  border-radius: 16px;
}

.banner-tag {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  margin-right: 8px;
}

.banner-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.screen-card {
  height: 130px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.screen-card:nth-child(1) { background: transparent; }
.screen-card:nth-child(2) { background: transparent; }
.screen-card:nth-child(3) { background: transparent; }
.screen-card:nth-child(4) { background: transparent; }

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(242, 153, 74, 0.35), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* --- Features --- */
.features {
  padding: 100px 0;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(242, 153, 74, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid #f0f0f5;
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(242, 153, 74, 0.1);
  color: var(--primary);
  border-radius: 20px;
  margin-bottom: 20px;
}

.feature-icon.icon-amber {
  background: rgba(242, 201, 76, 0.12);
  color: #d4a017;
}

.feature-icon.icon-red {
  background: rgba(235, 87, 87, 0.1);
  color: #EB5757;
}

.feature-icon.icon-brown {
  background: rgba(160, 100, 40, 0.1);
  color: #a06428;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

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

/* --- Showcase --- */
.showcase {
  padding: 100px 0;
  background: var(--bg-soft);
}

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

.showcase-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.showcase-thumb {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-thumb img,
.showcase-thumb svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.showcase-card:hover .showcase-thumb img,
.showcase-card:hover .showcase-thumb svg {
  transform: scale(1.08);
}

.poster-thumb {
  background: #1a1108;
}

.poster-card {
  background: transparent !important;
  opacity: 1 !important;
  overflow: hidden;
}

.poster-card svg {
  display: block;
  width: 100%;
  height: 100%;
}

.showcase-thumb .showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.showcase-play {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: var(--transition);
  opacity: 0;
}

.showcase-card:hover .showcase-play {
  opacity: 1;
  transform: scale(1.1);
}

.showcase-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
}

.showcase-rating {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #F2C94C;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.showcase-ep {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  font-size: 11px;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.45);
  padding: 2px 8px;
  border-radius: 4px;
}

.showcase-info {
  padding: 18px 20px;
}

.showcase-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.showcase-info p {
  font-size: 13px;
  color: var(--text-light);
}

/* --- Download CTA --- */
.download-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.download-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.download-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(242, 153, 74, 0.25), transparent 60%);
  border-radius: 50%;
}

.download-content {
  position: relative;
  z-index: 1;
}

.download-title {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.download-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.download-btn {
  font-size: 20px;
  padding: 20px 48px;
}

.download-meta {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Footer --- */
.footer {
  background: #1a1108;
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo .brand-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.footer-slogan {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

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

/* --- WeChat Overlay --- */
.wechat-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* 弯曲箭头 - 定位到右上角 */
.wechat-arrow-wrap {
  position: absolute;
  top: 8px;
  right: 5px;
  width: 140px;
  height: 180px;
  animation: arrow-float 1.8s ease-in-out infinite;
}
.wechat-curve-arrow {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

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

/* 提示卡片 - 屏幕中间偏上 */
.wechat-tip-card {
  margin-top: 240px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  width: 85%;
  max-width: 320px;
  animation: card-in 0.6s ease;
}
@keyframes card-in {
  0% { opacity: 0; transform: translateY(30px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.wechat-tip-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.wechat-tip-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.5;
}
.wechat-tip-title strong {
  color: #ff6b35;
  font-size: 24px;
}
.wechat-tip-subtitle {
  color: #ddd;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 0;
}
.wechat-tip-subtitle strong {
  color: #ff6b35;
}
.wechat-tip-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 107, 53, 0.5);
  margin: 18px auto;
  border-radius: 1px;
}
.wechat-tip-desc {
  color: #999;
  font-size: 13px;
  margin-bottom: 20px;
}
.wechat-tip-close {
  display: inline-block;
  padding: 10px 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
}
.wechat-tip-close:active {
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-title { font-size: 44px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { gap: 40px; }
}

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

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 0;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 28px;
  }

  .stat-num {
    font-size: 22px;
  }

  .phone-frame {
    width: 220px;
    height: 460px;
    border-radius: 32px;
  }

  .phone-notch {
    width: 100px;
    height: 22px;
  }

  .phone-screen {
    border-radius: 24px;
  }

  .screen-content { padding: 32px 12px 12px; }
  .screen-logo { font-size: 13px; }
  .screen-logo img { width: 13px !important; height: 13px !important; }
  .screen-search { font-size: 9px; padding: 4px 8px; }
  .screen-banner { height: 90px; }
  .screen-card { height: 90px; }

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

  .feature-card {
    padding: 24px 16px;
  }

  .section-title {
    font-size: 30px;
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .showcase-thumb {
    height: 170px;
  }

  .download-title {
    font-size: 30px;
  }

  .download-cta {
    padding: 80px 0;
  }

  .download-btn {
    font-size: 16px;
    padding: 16px 36px;
  }

  .footer-main {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 32px;
  }
}

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

  .hero-title { font-size: 30px; }
  .hero-desc { font-size: 15px; }

  .features { padding: 60px 0; }
  .showcase { padding: 60px 0; }

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

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

  .showcase-thumb { height: 200px; }

  .hero-stats {
    gap: 20px;
  }

  .stat-num { font-size: 20px; }

  .phone-frame {
    width: 200px;
    height: 410px;
    border-radius: 28px;
  }

  .screen-content { padding: 28px 10px 10px; }
  .screen-header { margin-bottom: 10px; }
  .screen-logo { font-size: 11px; white-space: nowrap; }
  .screen-logo img { width: 11px !important; height: 11px !important; }
  .screen-search { font-size: 8px; padding: 3px 6px; white-space: nowrap; }

  .download-title { font-size: 26px; }
  .download-desc { font-size: 15px; }

  .footer-links {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-col {
    min-width: calc(50% - 12px);
  }

  .btn-lg {
    padding: 16px 32px;
    font-size: 16px;
  }
}

/* --- Animations (scroll reveal) --- */
.feature-card,
.showcase-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.visible,
.showcase-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.feature-card:nth-child(2), .showcase-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3), .showcase-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4), .showcase-card:nth-child(4) { transition-delay: 0.3s; }
.showcase-card:nth-child(5) { transition-delay: 0.4s; }
.showcase-card:nth-child(6) { transition-delay: 0.5s; }

/* Particle dots */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(242, 153, 74, 0.7);
  border-radius: 50%;
  animation: particle-drift ease-out infinite;
  pointer-events: none;
}

@keyframes particle-drift {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 0.9; }
  50% { opacity: 0.6; transform: translateY(-40vh) translateX(calc(-20px + 40px * var(--rand, 0.5))) scale(0.8); }
  100% { transform: translateY(-90vh) translateX(calc(-30px + 60px * var(--rand, 0.5))) scale(0.2); opacity: 0; }
}
