/* ═══════════════════════════════════════════
   DKStudio PRO — Landing Page
   Ultra Premium Void Theme
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Unbounded:wght@400;500;600;700;800;900&display=swap');

/* ── Silk Background Canvas ── */
#silk-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* ── CSS Variables (from DKStudio PRO) ── */
:root {
  --bg-deep: #000000;
  --bg-panel: #050505;
  --bg-card: #0A0A0A;
  --bg-hover: #141414;

  --primary: #ff5c00;
  --primary-light: #ff7a2e;
  --primary-glow: rgba(255, 92, 0, 0.3);
  --primary-subtle: rgba(255, 92, 0, 0.08);

  --text-main: #FFFFFF;
  --text-muted: #6B7280;
  --text-secondary: #9ca3af;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 1);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(255, 255, 255, 0.12);

  --section-padding: 120px 0;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

/* ── Section Base ── */
.section {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--primary-subtle);
  border: 1px solid rgba(255, 92, 0, 0.2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--primary);
}

/* ═══════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.logo .pro {
  color: var(--primary);
  font-size: 0.85em;
}

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

.nav-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
  font-weight: 600;
  font-family: 'Unbounded', sans-serif;
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-cta {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: white !important;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Unbounded', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 92, 0, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 92, 0, 0.4);
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Animated background orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.2), transparent 70%);
  top: -15%;
  right: -10%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent 70%);
  bottom: -10%;
  left: -5%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 70%);
  top: 40%;
  left: 30%;
  animation: orbFloat3 18s ease-in-out infinite;
}

/* Particle grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 0 0 40%;
  max-width: 480px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255, 92, 0, 0.1);
  border: 1px solid rgba(255, 92, 0, 0.2);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
  font-family: 'Unbounded', sans-serif;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Unbounded', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 30px rgba(255, 92, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg) translateX(-150%);
  transition: transform 0.6s;
}

.btn-primary:hover::after {
  transform: skewX(-20deg) translateX(150%);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 92, 0, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.stat-number {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: white;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Screenshot */
.hero-visual {
  flex: 1 1 60%;
  max-width: 760px;
  min-width: 0;
  position: relative;
}

.hero-screenshot {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(255, 92, 0, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.hero-screenshot:hover {
  transform: scale(1.02);
}

.hero-screenshot img {
  width: 100%;
  display: block;
}

/* Glow behind screenshot */
.hero-screenshot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 92, 0, 0.3), transparent 50%, rgba(236, 72, 153, 0.15));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.hero-screenshot:hover::before {
  opacity: 1;
}

/* Floating badge over screenshot */
.floating-badge {
  position: absolute;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  animation: floatBadge 4s ease-in-out infinite;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.floating-badge-1 {
  bottom: -20px;
  left: -30px;
  animation-delay: 0s;
}

.floating-badge-2 {
  top: -15px;
  right: -25px;
  animation-delay: 1.5s;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
/* ── Marquee Stats Conveyor ── */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 32px 0 0;
  position: relative;
  z-index: 2;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-item {
  white-space: nowrap;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.marquee-accent {
  color: var(--primary);
  font-weight: 800;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 92, 0, 0.4);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   PROBLEMS SECTION
   ═══════════════════════════════════════ */

.problems {
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(15, 5, 5, 1) 50%, var(--bg-deep) 100%);
}

.problems .container {
  text-align: center;
}

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

.problem-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.1);
  text-align: left;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.06);
}

.problem-card:nth-child(2):hover { border-color: rgba(251, 191, 36, 0.25); box-shadow: 0 8px 30px rgba(251, 191, 36, 0.06); }
.problem-card:nth-child(2)::before { background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent); }
.problem-card:nth-child(3):hover { border-color: rgba(34, 197, 94, 0.25); box-shadow: 0 8px 30px rgba(34, 197, 94, 0.06); }
.problem-card:nth-child(3)::before { background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent); }
.problem-card:nth-child(4):hover { border-color: rgba(139, 92, 246, 0.25); box-shadow: 0 8px 30px rgba(139, 92, 246, 0.06); }
.problem-card:nth-child(4)::before { background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent); }
.problem-card:nth-child(5):hover { border-color: rgba(59, 130, 246, 0.25); box-shadow: 0 8px 30px rgba(59, 130, 246, 0.06); }
.problem-card:nth-child(5)::before { background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent); }
.problem-card:nth-child(6):hover { border-color: rgba(236, 72, 153, 0.25); box-shadow: 0 8px 30px rgba(236, 72, 153, 0.06); }
.problem-card:nth-child(6)::before { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5), transparent); }
.problem-card:nth-child(7):hover { border-color: rgba(6, 182, 212, 0.25); box-shadow: 0 8px 30px rgba(6, 182, 212, 0.06); }
.problem-card:nth-child(7)::before { background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent); }
.problem-card:nth-child(8):hover { border-color: rgba(168, 85, 247, 0.25); box-shadow: 0 8px 30px rgba(168, 85, 247, 0.06); }
.problem-card:nth-child(8)::before { background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent); }

.problem-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fca5a5;
}

.problem-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Solution Arrow */
.solution-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 60px 0;
  color: var(--primary);
}

.solution-arrow .arrow-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(239, 68, 68, 0.5), var(--primary));
  border-radius: 1px;
}

.solution-arrow .arrow-text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
}

/* ═══════════════════════════════════════
   FEATURES BENTO GRID
   ═══════════════════════════════════════ */

.features {
  position: relative;
}

.features .container {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  text-align: left;
}

.feature-card {
  grid-column: span 1;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.feature-card.span-1 {
  grid-column: span 1;
}

.feature-card.span-4 {
  grid-column: span 4;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

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

.feature-screenshot {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: white;
  position: relative;
  z-index: 1;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  position: relative;
  z-index: 1;
}

.feature-screenshot {
  margin-top: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.feature-screenshot:hover {
  transform: scale(1.02);
}

.feature-screenshot img {
  width: 100%;
  display: block;
}

/* Image loading shimmer */
.feature-screenshot img,
.hero-screenshot img {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: imgShimmer 1.5s ease-in-out infinite;
}

.feature-screenshot img[complete],
.hero-screenshot img[complete] {
  animation: none;
  background: none;
}

@keyframes imgShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Feature card color variants */
.feature-card[data-color="orange"]::after { background: radial-gradient(ellipse at 70% 20%, rgba(255, 92, 0, 0.08), transparent 60%); }
.feature-card[data-color="orange"] .feature-icon { background: rgba(255, 92, 0, 0.15); }

.feature-card[data-color="pink"]::after { background: radial-gradient(ellipse at 70% 20%, rgba(236, 72, 153, 0.08), transparent 60%); }
.feature-card[data-color="pink"] .feature-icon { background: rgba(236, 72, 153, 0.15); }

.feature-card[data-color="violet"]::after { background: radial-gradient(ellipse at 70% 20%, rgba(139, 92, 246, 0.08), transparent 60%); }
.feature-card[data-color="violet"] .feature-icon { background: rgba(139, 92, 246, 0.15); }

.feature-card[data-color="green"]::after { background: radial-gradient(ellipse at 70% 20%, rgba(34, 197, 94, 0.08), transparent 60%); }
.feature-card[data-color="green"] .feature-icon { background: rgba(34, 197, 94, 0.15); }

.feature-card[data-color="blue"]::after { background: radial-gradient(ellipse at 70% 20%, rgba(59, 130, 246, 0.08), transparent 60%); }
.feature-card[data-color="blue"] .feature-icon { background: rgba(59, 130, 246, 0.15); }

.feature-card[data-color="teal"]::after { background: radial-gradient(ellipse at 70% 20%, rgba(20, 184, 166, 0.08), transparent 60%); }
.feature-card[data-color="teal"] .feature-icon { background: rgba(20, 184, 166, 0.15); }

.feature-card[data-color="red"]::after { background: radial-gradient(ellipse at 70% 20%, rgba(239, 68, 68, 0.08), transparent 60%); }
.feature-card[data-color="red"] .feature-icon { background: rgba(239, 68, 68, 0.15); }

.feature-card[data-color="yellow"]::after { background: radial-gradient(ellipse at 70% 20%, rgba(234, 179, 8, 0.08), transparent 60%); }
.feature-card[data-color="yellow"] .feature-icon { background: rgba(234, 179, 8, 0.15); }

.feature-card[data-color="cyan"]::after { background: radial-gradient(ellipse at 70% 20%, rgba(6, 182, 212, 0.08), transparent 60%); }
.feature-card[data-color="cyan"] .feature-icon { background: rgba(6, 182, 212, 0.15); }

.feature-card[data-color="amber"]::after { background: radial-gradient(ellipse at 70% 20%, rgba(245, 158, 11, 0.08), transparent 60%); }
.feature-card[data-color="amber"] .feature-icon { background: rgba(245, 158, 11, 0.15); }

/* ═══════════════════════════════════════
   FEATURE ANIMATIONS (replacing screenshots)
   Ported from DKStudio PRO React components
   ═══════════════════════════════════════ */

.feature-anim {
  margin-top: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(0,0,0,0.3));
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 1. OBS Sync — Gear + Progress Bars ── */
.anim-obs-sync { gap: 20px; padding: 20px; }

.obs-gear {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(255,92,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  animation: obsGearSpin 4s linear infinite;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255,92,0,0.1);
}
.obs-params { display: flex; flex-direction: column; gap: 8px; flex: 1; max-width: 180px; }
.obs-param { display: flex; align-items: center; gap: 8px; }
.obs-param-label { font-size: 0.6rem; color: rgba(255,255,255,0.3); font-family: 'Unbounded', sans-serif; font-weight: 600; width: 55px; white-space: nowrap; }
.obs-param-bar { flex: 1; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.05); overflow: hidden; }
.obs-param-fill { height: 100%; border-radius: 3px; }
.obs-fill-1 { background: linear-gradient(90deg, #ff5c00, #f97316); animation: obsFill1 3s ease-in-out infinite; }
.obs-fill-2 { background: linear-gradient(90deg, #10b981, #34d399); animation: obsFill2 3.5s ease-in-out infinite; }
.obs-fill-3 { background: linear-gradient(90deg, #3b82f6, #60a5fa); animation: obsFill3 4s ease-in-out infinite; }

@keyframes obsGearSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes obsFill1 { 0%,100% { width: 30%; } 50% { width: 85%; } }
@keyframes obsFill2 { 0%,100% { width: 50%; } 50% { width: 70%; } }
@keyframes obsFill3 { 0%,100% { width: 20%; } 50% { width: 90%; } }

/* ── 2. Themes — Color Shimmer ── */
.anim-themes { flex-direction: column; gap: 10px; padding: 10px; justify-content: center; align-items: center; }
.themes-row { display: flex; gap: 8px; justify-content: center; }
.theme-swatch {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: themeSwatchPulse 3s ease-in-out infinite;
}
.theme-swatch:nth-child(1) { background: linear-gradient(135deg, #1e1b4b, #4f46e5); animation-delay: 0s; }
.theme-swatch:nth-child(2) { background: linear-gradient(135deg, #7c2d12, #ea580c); animation-delay: 0.2s; }
.theme-swatch:nth-child(3) { background: linear-gradient(135deg, #14532d, #16a34a); animation-delay: 0.4s; }
.theme-swatch:nth-child(4) { background: linear-gradient(135deg, #4a1d96, #a855f7); animation-delay: 0.6s; }
.themes-label { font-size: 0.55rem; color: rgba(255,255,255,0.2); font-family: 'Unbounded', sans-serif; text-align: center; }

@keyframes themeSwatchPulse { 0%,100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.1); opacity: 1; } }

/* ── 3. Modules — Icon Grid ── */
.anim-modules { flex-wrap: wrap; gap: 6px; padding: 16px; justify-content: center; align-content: center; }
.mod-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.06);
  animation: modIconPop 4s ease-in-out infinite;
}

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

/* ── 3.5. Control — OBS Hub ── */
.anim-control { padding: 10px; }
.control-hub {
  position: relative;
  width: 170px;
  height: 120px;
}
.control-core,
.control-node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
}
.control-core {
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,92,0,0.18), rgba(255,92,0,0.06));
  border: 1.5px solid rgba(255,92,0,0.3);
  color: rgba(255,179,125,0.95);
  font-size: 0.62rem;
  box-shadow: 0 0 30px rgba(255,92,0,0.12);
  animation: controlCorePulse 2.8s ease-in-out infinite;
}
.control-core::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 24px;
  border: 1px solid rgba(255,92,0,0.1);
  animation: controlRing 2.8s ease-out infinite;
}
.control-node {
  width: 68px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.62);
  font-size: 0.42rem;
  animation: controlNodeFloat 3.2s ease-in-out infinite;
}
.control-node::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,92,0,0.0), rgba(255,92,0,0.32), rgba(255,92,0,0.0));
  opacity: 0.7;
}
.control-node-1 { left: 0; top: 14px; }
.control-node-1::after { right: -18px; top: 50%; transform: rotate(18deg); }
.control-node-2 { right: 0; top: 14px; animation-delay: 0.5s; }
.control-node-2::after { left: -18px; top: 50%; transform: rotate(-18deg); }
.control-node-3 { left: 4px; bottom: 10px; animation-delay: 1s; }
.control-node-3::after { right: -14px; top: 10px; transform: rotate(-20deg); }
.control-node-4 { right: 4px; bottom: 10px; animation-delay: 1.5s; }
.control-node-4::after { left: -14px; top: 10px; transform: rotate(20deg); }

@keyframes controlCorePulse {
  0%,100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 20px rgba(255,92,0,0.1); }
  50% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 0 34px rgba(255,92,0,0.2); }
}
@keyframes controlRing {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0; }
}
@keyframes controlNodeFloat {
  0%,100% { transform: translateY(0); opacity: 0.65; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* ── 4. AI Oracle — Chat Bubbles ── */
.anim-oracle { flex-direction: column; gap: 8px; padding: 20px; align-items: flex-start; }
.oracle-msg {
  padding: 6px 14px; border-radius: 10px; font-size: 0.7rem;
  max-width: 80%; opacity: 0;
  animation: oracleSlide 6s ease-in-out infinite;
}
.oracle-msg.user { background: rgba(255,92,0,0.12); border: 1px solid rgba(255,92,0,0.15); color: #fb923c; align-self: flex-end; animation-delay: 0s; }
.oracle-msg.ai { background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.12); color: #a78bfa; align-self: flex-start; animation-delay: 1.5s; }
.oracle-msg.ai2 { animation-delay: 3s; }

@keyframes oracleSlide {
  0% { opacity: 0; transform: translateY(8px); }
  15% { opacity: 1; transform: translateY(0); }
  75% { opacity: 1; transform: translateY(0); }
  90% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; }
}

/* ── 5. Signal Music — Waveform ── */
.anim-signal { gap: 3px; padding: 20px; }
.signal-bar {
  width: 5px; border-radius: 3px;
  background: linear-gradient(to top, #14b8a6, #2dd4bf);
  animation: signalPulse 1.2s ease-in-out infinite;
  transform-origin: bottom;
}

@keyframes signalPulse { 0%,100% { height: 8px; opacity: 0.4; } 50% { height: 40px; opacity: 0.9; } }

/* ── 6. Mini-Games — Boss Raid ── */
.anim-minigames { flex-direction: column; gap: 8px; padding: 16px; }
.boss-skull { font-size: 1.8rem; animation: bossShake 2s ease-in-out infinite; filter: drop-shadow(0 0 6px rgba(239,68,68,0.4)); }
.boss-hp { width: 80%; height: 8px; border-radius: 4px; background: rgba(0,0,0,0.5); border: 1px solid rgba(239,68,68,0.25); overflow: hidden; }
.boss-hp-fill { height: 100%; border-radius: 3px; animation: bossHpDrain 5s ease-in-out infinite; box-shadow: 0 0 8px rgba(239,68,68,0.3); }
.boss-cmds { display: flex; gap: 6px; }
.boss-cmd {
  font-size: 0.55rem; font-family: 'JetBrains Mono', 'Fira Code', monospace;
  padding: 2px 8px; border-radius: 4px;
  animation: bossCmdPulse 2s ease-in-out infinite;
}
.boss-cmd-atk { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.boss-cmd-heal { background: rgba(16,185,129,0.15); color: #34d399; border: 1px solid rgba(16,185,129,0.2); animation-delay: 0.8s; }

@keyframes bossShake { 0%,100% { transform: translateX(0); } 15% { transform: translateX(-2px) rotate(-1deg); } 30% { transform: translateX(2px) rotate(1deg); } 45% { transform: translateX(-1px); } }
@keyframes bossHpDrain { 0%,100% { width: 85%; background: linear-gradient(90deg, #ef4444, #f97316); } 50% { width: 35%; background: linear-gradient(90deg, #ef4444, #ef4444); } }
@keyframes bossCmdPulse { 0%,100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* ── 6.5. Stream Chat — Flow To OBS ── */
.anim-stream-chat {
  flex-direction: column;
  gap: 10px;
  padding: 12px 16px;
}
.chat-lane {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.chat-lane-badge {
  min-width: 58px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.42rem;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
}
.chat-lane-twitch .chat-lane-badge {
  color: #d8b4fe;
  background: rgba(145,70,255,0.14);
  border: 1px solid rgba(145,70,255,0.28);
}
.chat-lane-youtube .chat-lane-badge {
  color: #fda4af;
  background: rgba(255,0,0,0.12);
  border: 1px solid rgba(255,0,0,0.24);
}
.chat-bubble {
  position: relative;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.46rem;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  animation: chatBubbleSlide 3s ease-in-out infinite;
}
.chat-bubble::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
}
.chat-bubble-2 { animation-delay: 1s; }
.chat-output {
  position: relative;
  width: 150px;
  height: 54px;
  margin-top: 2px;
}
.chat-output-screen,
.chat-output-desktop {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
}
.chat-output-screen {
  left: 0;
  top: 0;
  width: 88px;
  height: 50px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(59,130,246,0.04));
  border: 1px solid rgba(59,130,246,0.22);
  color: rgba(147,197,253,0.8);
  font-size: 0.5rem;
  animation: chatScreenPulse 2.8s ease-in-out infinite;
}
.chat-output-desktop {
  right: 0;
  bottom: 0;
  width: 76px;
  height: 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.62);
  font-size: 0.37rem;
  animation: chatDesktopFloat 2.8s ease-in-out infinite 0.8s;
}

@keyframes chatBubbleSlide {
  0%,100% { transform: translateX(0); opacity: 0.55; }
  50% { transform: translateX(8px); opacity: 1; }
}
@keyframes chatScreenPulse {
  0%,100% { box-shadow: 0 0 12px rgba(59,130,246,0.08); }
  50% { box-shadow: 0 0 24px rgba(59,130,246,0.18); }
}
@keyframes chatDesktopFloat {
  0%,100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(-3px); opacity: 1; }
}

/* ── 7. Uplink — PC ↔ Phone ── */
.anim-uplink { gap: 12px; padding: 16px; }
.uplink-pc {
  width: 80px; height: 56px; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
}
.uplink-pc-label { font-size: 0.4rem; color: rgba(255,255,255,0.2); font-family: 'Unbounded', sans-serif; }
.uplink-pc-btns { display: flex; gap: 2px; }
.uplink-pc-btn { width: 12px; height: 7px; border-radius: 2px; background: rgba(255,92,0,0.1); border: 1px solid rgba(255,92,0,0.06); }
.uplink-conn { display: flex; align-items: center; }
.uplink-dots { display: flex; gap: 3px; }
.uplink-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(34,197,94,0.4); animation: uplinkDotPulse 1.5s ease-in-out infinite; }
.uplink-dot:nth-child(2) { animation-delay: 0.3s; }
.uplink-dot:nth-child(3) { animation-delay: 0.6s; }
.uplink-phone {
  width: 42px; height: 72px; border-radius: 10px;
  border: 1.5px solid rgba(34,197,94,0.25);
  background: linear-gradient(180deg, rgba(34,197,94,0.04), rgba(34,197,94,0.01));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  animation: uplinkPhoneFloat 3s ease-in-out infinite;
}
.uplink-phone-emoji { font-size: 0.9rem; }
.uplink-phone-label { font-size: 0.3rem; color: rgba(34,197,94,0.5); font-family: 'Unbounded', sans-serif; font-weight: 600; }

@keyframes uplinkDotPulse { 0%,100% { opacity: 0.3; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes uplinkPhoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ── 8. VertiCore — Dual Frames ── */
.anim-verticore { padding: 12px; gap: 10px; }
.vc-horiz {
  width: 120px; height: 70px; border-radius: 8px;
  border: 1.5px solid rgba(255,92,0,0.2);
  background: linear-gradient(135deg, rgba(255,92,0,0.05), rgba(255,92,0,0.01));
  display: flex; align-items: center; justify-content: center; gap: 5px;
  animation: vcHorizPulse 3s ease-in-out infinite;
}
.vc-horiz-dot { width: 5px; height: 5px; border-radius: 50%; background: #ef4444; animation: vcDotBlink 2s ease-in-out infinite; }
.vc-horiz-label { font-size: 0.45rem; color: rgba(255,255,255,0.2); font-family: 'Unbounded', sans-serif; font-weight: 600; }
.vc-vert {
  width: 50px; height: 88px; border-radius: 10px;
  border: 1.5px solid rgba(168,85,247,0.3);
  background: linear-gradient(180deg, rgba(168,85,247,0.06), rgba(168,85,247,0.01));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  animation: vcVertSlide 3s ease-in-out infinite;
}
.vc-vert-dot { width: 4px; height: 4px; border-radius: 50%; background: #a855f7; animation: vcDotBlink 2s ease-in-out infinite 0.5s; }
.vc-vert-label { font-size: 0.35rem; color: rgba(168,85,247,0.4); font-family: 'Unbounded', sans-serif; font-weight: 600; }
.vc-platforms { position: absolute; bottom: 8px; display: flex; gap: 6px; }
.vc-plat {
  padding: 2px 8px; border-radius: 6px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.4rem; color: rgba(255,255,255,0.2); font-family: 'Unbounded', sans-serif;
  animation: vcLabelFloat 3s ease-in-out infinite;
}
.vc-plat:nth-child(2) { animation-delay: 0.4s; }
.vc-plat:nth-child(3) { animation-delay: 0.8s; }

@keyframes vcHorizPulse { 0%,100% { box-shadow: 0 0 15px rgba(255,92,0,0.04); } 50% { box-shadow: 0 0 25px rgba(255,92,0,0.1); } }
@keyframes vcVertSlide { 0%,100% { transform: translateX(0); opacity: 0.7; } 50% { transform: translateX(-4px); opacity: 1; } }
@keyframes vcDotBlink { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes vcLabelFloat { 0%,100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(-3px); opacity: 0.9; } }

/* ── 9. VoxLink — Voice Rings ── */
.anim-voxlink { padding: 16px; }
.voxlink-center {
  position: relative; width: 160px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.vox-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(59,130,246,0.2);
  animation: voxRing 2.5s ease-out infinite;
}
.vox-ring-1 { width: 60px; height: 60px; }
.vox-ring-2 { width: 90px; height: 90px; animation-delay: 0.4s; border-color: rgba(59,130,246,0.15); }
.vox-ring-3 { width: 120px; height: 120px; animation-delay: 0.8s; border-color: rgba(59,130,246,0.1); }
.vox-mic {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(99,102,241,0.08));
  border: 1.5px solid rgba(59,130,246,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; z-index: 2;
  animation: voxPulse 2s ease-in-out infinite;
}
.vox-cmds { position: absolute; }
.vox-cmd {
  position: absolute; padding: 3px 8px; border-radius: 6px;
  background: rgba(59,130,246,0.05); border: 1px solid rgba(59,130,246,0.1);
  font-size: 0.45rem; color: rgba(59,130,246,0.45); font-family: 'Unbounded', sans-serif; font-weight: 500;
  white-space: nowrap; animation: voxCmd 3s ease-in-out infinite;
}
.vox-cmd-1 { top: -5px; left: -40px; }
.vox-cmd-2 { top: 15px; right: -50px; animation-delay: 0.8s; }
.vox-cmd-3 { bottom: 0; left: -25px; animation-delay: 1.5s; }

@keyframes voxRing { 0% { transform: scale(0.8); opacity: 0.5; } 100% { transform: scale(1.3); opacity: 0; } }
@keyframes voxPulse { 0%,100% { box-shadow: 0 0 12px rgba(59,130,246,0.08); } 50% { box-shadow: 0 0 25px rgba(59,130,246,0.2); } }
@keyframes voxCmd { 0%,100% { opacity: 0.25; transform: translateY(0); } 50% { opacity: 0.9; transform: translateY(-4px); } }

/* ── 10. Donations — Floating Cards ── */
.anim-donations { flex-direction: column; padding: 12px 20px; gap: 8px; }
.don-stats { display: flex; gap: 20px; }
.don-stat { text-align: center; animation: donFloat 3s ease-in-out infinite; }
.don-stat:nth-child(2) { animation-delay: 0.5s; }
.don-stat-val { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.2); font-family: 'Unbounded', sans-serif; }
.don-stat-label { font-size: 0.4rem; color: rgba(255,255,255,0.1); }
.don-cards { display: flex; gap: 10px; }
.don-card {
  padding: 8px 10px; border-radius: 8px; text-align: center;
  animation: donFloat 3.5s ease-in-out infinite;
}
.don-card:nth-child(1) { background: rgba(234,179,8,0.06); border: 1px solid rgba(234,179,8,0.15); animation-delay: 0s; }
.don-card:nth-child(2) { background: rgba(168,85,247,0.06); border: 1px solid rgba(168,85,247,0.15); animation-delay: 0.7s; }
.don-card:nth-child(3) { background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.15); animation-delay: 1.3s; }
.don-card-amount { font-size: 0.55rem; font-weight: 700; font-family: 'Unbounded', sans-serif; }
.don-card:nth-child(1) .don-card-amount { color: rgba(234,179,8,0.6); }
.don-card:nth-child(2) .don-card-amount { color: rgba(168,85,247,0.6); }
.don-card:nth-child(3) .don-card-amount { color: rgba(59,130,246,0.6); }
.don-card-sub { font-size: 0.35rem; color: rgba(255,255,255,0.15); margin-top: 2px; }
.don-goal { width: 85%; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.04); overflow: hidden; }
.don-goal-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #f97316, #a855f7); animation: donProgress 4s ease-in-out infinite; box-shadow: 0 0 8px rgba(249,115,22,0.2); }

@keyframes donFloat { 0%,100% { transform: translateY(0); opacity: 0.6; } 50% { transform: translateY(-8px); opacity: 1; } }
@keyframes donProgress { 0% { width: 20%; } 50% { width: 75%; } 100% { width: 20%; } }

/* ── 11. Plugins OBS — Icons Grid ── */
.anim-plugins { flex-wrap: wrap; gap: 5px; padding: 14px; justify-content: center; align-content: center; }
.plug-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  border: 1px solid rgba(255,255,255,0.05);
  animation: plugPop 3s ease-in-out infinite;
}

@keyframes plugPop { 0%,100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.1); opacity: 0.85; } }

/* ── 12. Academy — Lesson Cards ── */
.anim-academy { padding: 10px; }
.acad-stack { position: relative; width: 160px; height: 110px; }
.acad-card {
  position: absolute; width: 140px; height: 80px; border-radius: 10px;
  border: 1px solid rgba(234,179,8,0.1); padding: 10px;
  animation: acadCard 3s ease-in-out infinite;
  box-sizing: border-box;
}
.acad-card-0 { left: 0; top: 0; background: linear-gradient(135deg, rgba(234,179,8,0.06), rgba(234,179,8,0.01)); z-index: 3; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.acad-card-1 { left: 10px; top: 10px; background: linear-gradient(135deg, rgba(234,179,8,0.04), rgba(234,179,8,0.008)); z-index: 2; animation-delay: 0.3s; }
.acad-card-2 { left: 20px; top: 20px; background: linear-gradient(135deg, rgba(234,179,8,0.025), rgba(234,179,8,0.005)); z-index: 1; animation-delay: 0.6s; }
.acad-card-header { display: flex; align-items: center; gap: 5px; margin-bottom: 6px; }
.acad-card-icon { width: 14px; height: 14px; border-radius: 4px; background: rgba(234,179,8,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.4rem; }
.acad-card-title { font-size: 0.4rem; font-weight: 700; color: rgba(255,255,255,0.25); font-family: 'Unbounded', sans-serif; }
.acad-lines { display: flex; flex-direction: column; gap: 3px; }
.acad-line { height: 3px; border-radius: 2px; background: rgba(255,255,255,0.03); }
.acad-quiz {
  position: absolute; bottom: 6px; right: 8px;
  padding: 2px 6px; border-radius: 4px;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.12);
  font-size: 0.35rem; color: rgba(34,197,94,0.4); font-family: 'Unbounded', sans-serif;
}
.acad-progress { position: absolute; bottom: 0; left: 0; right: 0; display: flex; gap: 3px; align-items: center; }
.acad-dot { flex: 1; height: 3px; border-radius: 2px; }
.acad-dot-on { background: rgba(234,179,8,0.25); }
.acad-dot-off { background: rgba(255,255,255,0.03); }
.acad-count { font-size: 0.35rem; color: rgba(255,255,255,0.12); font-family: 'Unbounded', sans-serif; margin-left: 3px; }

@keyframes acadCard { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-4px) rotate(0.3deg); } }

/* ── 13. Customization — Frame Builder ── */
.anim-custom { flex-direction: column; gap: 6px; padding: 14px; }
.custom-preview {
  width: 90px; height: 55px; border-radius: 6px;
  border: 2px solid rgba(59,130,246,0.2);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.custom-cam {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,92,0,0.2), rgba(255,92,0,0.08));
  border: 1px solid rgba(255,92,0,0.15);
  animation: customCamPulse 2.5s ease-in-out infinite;
}
.custom-frame {
  position: absolute; inset: 0;
  border: 2px solid rgba(236,72,153,0.2);
  border-radius: 6px;
  animation: customFrameShift 4s ease-in-out infinite;
}
.custom-controls { display: flex; gap: 4px; }
.custom-swatch {
  width: 14px; height: 14px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  animation: themeSwatchPulse 3s ease-in-out infinite;
}

@keyframes customCamPulse { 0%,100% { box-shadow: 0 0 8px rgba(255,92,0,0.1); } 50% { box-shadow: 0 0 16px rgba(255,92,0,0.25); } }
@keyframes customFrameShift {
  0%,100% { border-color: rgba(236,72,153,0.2); border-radius: 6px; }
  33% { border-color: rgba(59,130,246,0.2); border-radius: 10px; }
  66% { border-color: rgba(34,197,94,0.2); border-radius: 4px; }
}

/* ═══════════════════════════════════════
   SHOWCASE / SCREENSHOTS SECTION
   ═══════════════════════════════════════ */

.showcase {
  position: relative;
  overflow: hidden;
}

.showcase-bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.08), transparent 70%);
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.showcase .container {
  text-align: center;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.showcase-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
}

.showcase-item:hover {
  border-color: rgba(255, 92, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.showcase-item:hover img {
  transform: scale(1.03);
}

.showcase-gallery .showcase-item {
  max-height: 400px;
}

.showcase-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-label-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: rgba(255, 92, 0, 0.2);
}

.showcase-label-text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   TIERS SECTION
   ═══════════════════════════════════════ */

.pricing .container {
  text-align: center;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.tier-card {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--glass-border);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  background: rgba(255, 255, 255, 0.04);
}

.tier-card.featured {
  border-color: rgba(255, 92, 0, 0.35);
  background: linear-gradient(180deg, rgba(255, 92, 0, 0.06) 0%, rgba(255, 92, 0, 0.015) 100%);
  box-shadow: 0 0 40px rgba(255, 92, 0, 0.08);
}

.tier-card.featured:hover {
  border-color: rgba(255, 92, 0, 0.5);
  box-shadow: 0 0 60px rgba(255, 92, 0, 0.12);
}

.tier-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: skewX(-20deg) translateX(-150%);
  animation: shine-sweep 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.tier-popular {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--primary);
  font-size: 0.6rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  -webkit-text-fill-color: white;
  z-index: 2;
}

.tier-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tier-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.tier-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.tier-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1.3;
  padding: 4px 0;
}

.tier-feat.on {
  color: var(--text-secondary);
}

.tier-feat.off {
  color: rgba(255, 255, 255, 0.15);
}

.tier-feat.highlight {
  color: var(--primary);
}

.feat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

.feat-dot.on {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.3);
}

.tier-feat.highlight .feat-dot.on {
  background: var(--primary);
  box-shadow: 0 0 8px rgba(255, 92, 0, 0.4);
}

.tier-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: white;
  font-weight: 600;
  font-size: 0.82rem;
  font-family: 'Unbounded', sans-serif;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  margin-top: auto;
}

.tier-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.tier-btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(255, 92, 0, 0.3);
}

.tier-btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 8px 30px rgba(255, 92, 0, 0.4);
}

.tiers-footnotes {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.tiers-footnotes span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.5;
}

.tiers-footnotes sup {
  color: rgba(255, 92, 0, 0.4);
  font-weight: 700;
  margin-right: 2px;
}

.tier-feat sup {
  color: rgba(255, 92, 0, 0.5);
  font-size: 0.65em;
  margin-left: 1px;
}

/* ═══════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════ */

.faq {
  position: relative;
}

.faq .container {
  max-width: 800px;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--glass-border-hover);
}

.faq-item.active {
  border-color: rgba(255, 92, 0, 0.2);
  background: rgba(255, 92, 0, 0.03);
}

.faq-question {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
}

.faq-question h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  flex: 1;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-size: 1rem;
  color: var(--text-muted);
}

.faq-item.active .faq-toggle {
  background: var(--primary-subtle);
  color: var(--primary);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   CTA FOOTER SECTION
   ═══════════════════════════════════════ */

.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.15), transparent 70%);
  filter: blur(80px);
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: ctaPulse 4s ease-in-out infinite;
}

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

.cta-section .section-title {
  font-size: 3.5rem;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-boosty {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 44px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  font-family: 'Unbounded', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(255, 92, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-boosty::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg) translateX(-150%);
  transition: transform 0.6s;
}

.cta-boosty:hover::after {
  transform: skewX(-20deg) translateX(150%);
}

.cta-boosty:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 92, 0, 0.5);
}

.cta-telegram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 44px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: 'Unbounded', sans-serif;
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
}

.cta-telegram:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

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

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all 0.2s;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

/* Footer Legal Links */
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* Legal Modal */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 24px;
}

.legal-modal.active {
  opacity: 1;
  pointer-events: all;
}

.legal-modal-content {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s;
}

.legal-modal.active .legal-modal-content {
  transform: scale(1) translateY(0);
}

.legal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.legal-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.legal-modal-content h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: white;
}

.legal-modal-content h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 20px 0 8px;
  color: var(--text-secondary);
}

.legal-modal-content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-modal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-modal-content li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 40px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(255, 92, 0, 0); }
}

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

@keyframes shine-sweep {
  0% { transform: skewX(-20deg) translateX(-150%); }
  20% { transform: skewX(-20deg) translateX(150%); }
  100% { transform: skewX(-20deg) translateX(150%); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* ═══════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  cursor: zoom-out;
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════
   MOBILE STICKY CTA
   ═══════════════════════════════════════ */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 92, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-cta a {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: white;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(255, 92, 0, 0.35);
}

/* ═══════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 1002;
  width: 0%;
  box-shadow: 0 0 12px rgba(255, 92, 0, 0.5);
  pointer-events: none;
}

/* ═══════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════ */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: rgba(255, 92, 0, 0.15);
  border-color: rgba(255, 92, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 92, 0, 0.15);
}

/* ═══════════════════════════════════════
   ACTIVE NAV LINK
   ═══════════════════════════════════════ */

.nav-links a.active {
  color: var(--primary);
}

/* ═══════════════════════════════════════
   FOOTNOTE TOOLTIP
   ═══════════════════════════════════════ */

.footnote-tooltip {
  position: fixed;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 92, 0, 0.2);
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 300px;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footnote-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   ENHANCED CARD INTERACTIONS (DESKTOP)
   ═══════════════════════════════════════ */

.feature-card[data-color="orange"]:hover { box-shadow: 0 20px 60px rgba(255, 92, 0, 0.1); }
.feature-card[data-color="pink"]:hover { box-shadow: 0 20px 60px rgba(236, 72, 153, 0.1); }
.feature-card[data-color="violet"]:hover { box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1); }
.feature-card[data-color="green"]:hover { box-shadow: 0 20px 60px rgba(34, 197, 94, 0.1); }
.feature-card[data-color="blue"]:hover { box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1); }
.feature-card[data-color="teal"]:hover { box-shadow: 0 20px 60px rgba(20, 184, 166, 0.1); }
.feature-card[data-color="red"]:hover { box-shadow: 0 20px 60px rgba(239, 68, 68, 0.1); }
.feature-card[data-color="yellow"]:hover { box-shadow: 0 20px 60px rgba(234, 179, 8, 0.1); }

/* Tier card hover glow by tier */
.tier-card[data-tier="standard"]:hover { box-shadow: 0 10px 40px rgba(255, 255, 255, 0.03); }
.tier-card[data-tier="premium"]:hover { box-shadow: 0 10px 40px rgba(236, 72, 153, 0.06); }
.tier-card[data-tier="elite"]:hover { box-shadow: 0 10px 40px rgba(139, 92, 246, 0.06); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 3rem;
  }

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

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

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

  .hero-visual {
    max-width: 500px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.span-4 {
    grid-column: span 2;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2.4rem;
  }

  .cta-section .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 80px 32px 32px;
    gap: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .floating-badge {
    display: none;
  }

  /* ── COMPACT Problems ── */
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 36px;
  }

  .problem-card {
    padding: 16px;
  }

  .problem-emoji {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .problem-title {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .problem-text {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .solution-arrow {
    margin: 36px 0;
  }

  .solution-arrow .arrow-line {
    height: 40px;
  }

  .solution-arrow .arrow-text {
    font-size: 1.1rem;
  }

  /* ── COMPACT Features ── */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card.span-1,
  .feature-card.span-4 {
    grid-column: span 1;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .feature-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .feature-desc {
    font-size: 0.85rem;
  }

  .feature-screenshot {
    margin-top: 16px;
  }

  /* ── TIER DROPDOWN ACCORDION ── */
  .tiers-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .accordion-init .tier-card {
    padding: 0;
  }

  .accordion-init .tier-header {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    padding-bottom: 16px;
    border-bottom: none;
  }

  .accordion-init .tier-name {
    margin-bottom: 0;
  }

  .accordion-init .tier-popular {
    position: static;
    display: block;
    margin: 3px 0 0 0;
    width: fit-content;
    font-size: 0.45rem;
    padding: 2px 7px;
    border-radius: 4px;
  }

  .accordion-init .tier-tagline {
    font-size: 0.72rem;
  }

  .accordion-init .tier-header::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: auto;
  }

  .accordion-init .tier-card.tier-open .tier-header::after {
    transform: rotate(-135deg);
  }

  .accordion-init .tier-card.tier-open .tier-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .accordion-init .tier-features {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
    padding: 0 20px;
    margin-bottom: 0;
  }

  .accordion-init .tier-card.tier-open .tier-features {
    max-height: 500px;
    padding: 12px 20px;
  }

  .accordion-init .tier-btn {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    margin: 0 20px;
    width: auto;
    transition: all 0.3s;
  }

  .accordion-init .tier-card.tier-open .tier-btn {
    max-height: 60px;
    opacity: 1;
    padding: 12px;
    margin: 0 20px 16px;
    width: auto;
  }

  .accordion-init .tier-card.featured {
    border-color: rgba(255, 92, 0, 0.35);
  }

  .accordion-init .tier-card.featured .tier-header::after {
    border-color: var(--primary);
  }

  /* ── Rest ── */
  .section-title {
    font-size: 2rem;
  }

  .cta-section .section-title {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    align-items: center;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-question h3 {
    font-size: 0.8rem;
  }

  .faq-answer-inner {
    padding: 0 16px 12px;
    font-size: 0.82rem;
  }

  .legal-modal-content {
    padding: 24px;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .footer {
    padding-bottom: 70px;
  }

  /* Mobile Nav CTA — centered button */
  .nav-cta {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 16px 20px !important;
    margin-top: 16px;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    border-radius: var(--radius-sm) !important;
    box-shadow: 0 4px 20px rgba(255, 92, 0, 0.3) !important;
  }

  .back-to-top {
    bottom: 80px;
    right: 16px;
  }

  .tiers-footnotes {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-section .section-title {
    font-size: 1.8rem;
  }

  .btn-primary, .btn-secondary {
    padding: 16px 28px;
    font-size: 0.9rem;
  }

  .problem-card {
    padding: 12px;
  }

  .problem-emoji {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .problem-title {
    font-size: 0.78rem;
  }

  .problem-text {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .section-label {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .cta-boosty, .cta-telegram {
    padding: 16px 28px;
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════
   PROBLEM CARD UPGRADES
   ═══════════════════════════════════════ */
.problem-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(239,68,68,0.06), transparent 70%);
  pointer-events: none; opacity: 0; transition: opacity 0.4s;
}
.problem-card:hover .problem-glow { opacity: 1; }
.problem-card:nth-child(2) .problem-glow { background: radial-gradient(ellipse at 50% 0%, rgba(251,191,36,0.06), transparent 70%); }
.problem-card:nth-child(3) .problem-glow { background: radial-gradient(ellipse at 50% 0%, rgba(34,197,94,0.06), transparent 70%); }
.problem-card:nth-child(4) .problem-glow { background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.06), transparent 70%); }
.problem-card:nth-child(5) .problem-glow { background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.06), transparent 70%); }
.problem-card:nth-child(6) .problem-glow { background: radial-gradient(ellipse at 50% 0%, rgba(236,72,153,0.06), transparent 70%); }
.problem-card:nth-child(7) .problem-glow { background: radial-gradient(ellipse at 50% 0%, rgba(6,182,212,0.06), transparent 70%); }
.problem-card:nth-child(8) .problem-glow { background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.06), transparent 70%); }

.problem-number {
  font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 2.5rem;
  color: rgba(255,255,255,0.03); position: absolute; top: 12px; right: 16px;
  line-height: 1; pointer-events: none;
}
.problem-card:hover .problem-number { color: rgba(255,92,0,0.06); }

.problem-stat {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.75rem; color: var(--text-muted);
}
.problem-stat-num {
  font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 0.85rem;
  color: #fca5a5; margin-right: 4px;
}
.problem-card:nth-child(2) .problem-stat-num { color: #fde047; }
.problem-card:nth-child(3) .problem-stat-num { color: #86efac; }
.problem-card:nth-child(4) .problem-stat-num { color: #c4b5fd; }
.problem-card:nth-child(5) .problem-stat-num { color: #93c5fd; }
.problem-card:nth-child(6) .problem-stat-num { color: #f9a8d4; }
.problem-card:nth-child(7) .problem-stat-num { color: #67e8f9; }
.problem-card:nth-child(8) .problem-stat-num { color: #c4b5fd; }

/* ═══════════════════════════════════════
   FEATURE CLICK HINT
   ═══════════════════════════════════════ */
.feature-click-hint {
  margin-top: auto; padding-top: 12px;
  font-size: 0.7rem; font-family: 'Unbounded', sans-serif; font-weight: 500;
  color: rgba(255,255,255,0.12); transition: all 0.3s;
  position: relative; z-index: 1;
}
.feature-card:hover .feature-click-hint { color: var(--primary); transform: translateX(4px); }
.feature-card[data-feature] { cursor: pointer; }

/* ═══════════════════════════════════════
   IMPROVED THEME ANIMATION (mini theme cards)
   ═══════════════════════════════════════ */
.themes-preview { display: flex; gap: 6px; justify-content: center; padding: 0 8px; }
.theme-card-mini {
  width: 42px; height: 58px; border-radius: 8px; position: relative;
  border: 1.5px solid color-mix(in sRGB, var(--tc) 30%, transparent);
  background: linear-gradient(180deg, color-mix(in sRGB, var(--tc) 8%, transparent), rgba(0,0,0,0.2));
  animation: tcmFloat 3s ease-in-out infinite; overflow: hidden;
  transition: all 0.3s;
}
.theme-card-mini:nth-child(1) { animation-delay: 0s; }
.theme-card-mini:nth-child(2) { animation-delay: 0.4s; }
.theme-card-mini:nth-child(3) { animation-delay: 0.8s; }
.theme-card-mini:nth-child(4) { animation-delay: 1.2s; }
.theme-card-mini.active { border-color: color-mix(in sRGB, var(--tc) 60%, transparent); transform: scale(1.08); }
.tcm-bar { width: 70%; height: 3px; border-radius: 2px; background: var(--tc); opacity: 0.25; margin: 8px auto 6px; }
.tcm-circles { display: flex; gap: 3px; padding: 0 5px; }
.tcm-circle { width: 10px; height: 10px; border-radius: 50%; background: var(--tc); opacity: 0.12; }
.tcm-circle.sm { width: 7px; height: 7px; }
.tcm-check {
  position: absolute; bottom: 3px; right: 3px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--tc); display: flex; align-items: center; justify-content: center;
  font-size: 0.45rem; color: white; font-weight: 700;
}
@keyframes tcmFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.theme-card-mini.active { animation-name: tcmFloatActive; }
@keyframes tcmFloatActive { 0%,100% { transform: translateY(0) scale(1.08); } 50% { transform: translateY(-4px) scale(1.08); } }

/* ═══════════════════════════════════════
   IMPROVED CUSTOMIZATION ANIMATION (scene builder)
   ═══════════════════════════════════════ */
.custom-scene {
  width: 160px; height: 100px; border-radius: 8px; position: relative;
  border: 1px solid rgba(255,255,255,0.06); background: rgba(0,0,0,0.4);
  overflow: hidden;
}
.cs-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(59,130,246,0.04), rgba(236,72,153,0.04)); animation: csBgShift 6s ease-in-out infinite; }
@keyframes csBgShift { 0%,100% { background: linear-gradient(135deg, rgba(59,130,246,0.04), rgba(236,72,153,0.04)); } 50% { background: linear-gradient(135deg, rgba(34,197,94,0.04), rgba(245,158,11,0.04)); } }
.cs-cam {
  position: absolute; bottom: 8px; left: 8px;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(255,92,0,0.3);
  background: rgba(255,92,0,0.06);
  animation: csCamPulse 2.5s ease-in-out infinite;
}
.cs-cam-dot { width: 4px; height: 4px; border-radius: 50%; background: #ef4444; margin: 5px auto; animation: vcDotBlink 1.5s ease-in-out infinite; }
@keyframes csCamPulse { 0%,100% { box-shadow: 0 0 6px rgba(255,92,0,0.1); } 50% { box-shadow: 0 0 14px rgba(255,92,0,0.2); } }
.cs-chat {
  position: absolute; top: 6px; right: 6px;
  width: 40px; display: flex; flex-direction: column; gap: 2px;
}
.cs-chat-line { height: 3px; border-radius: 2px; background: rgba(168,85,247,0.15); animation: csChatSlide 3s ease-in-out infinite; }
.cs-chat-line.short { width: 60%; }
.cs-chat-line:nth-child(2) { animation-delay: 0.5s; }
.cs-chat-line:nth-child(3) { animation-delay: 1s; }
@keyframes csChatSlide { 0% { opacity: 0; transform: translateX(6px); } 30% { opacity: 1; transform: translateX(0); } 70% { opacity: 1; } 100% { opacity: 0; } }
.cs-alert {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 1.2rem; opacity: 0; animation: csAlertPop 4s ease-in-out infinite;
}
@keyframes csAlertPop { 0%,70%,100% { opacity: 0; transform: translate(-50%,-50%) scale(0.5); } 30%,50% { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
.cs-widget {
  position: absolute; bottom: 6px; right: 6px;
  width: 35px; height: 8px; border-radius: 3px;
  background: rgba(255,255,255,0.04); overflow: hidden;
}
.cs-widget-bar { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #3b82f6, #8b5cf6); opacity: 0.4; animation: donProgress 5s ease-in-out infinite; }

/* ═══════════════════════════════════════
   IMPROVED MODULES ANIMATION (named grid)
   ═══════════════════════════════════════ */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; width: 100%; padding: 0 6px; }
.mod-tile {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 5px 2px; border-radius: 6px;
  background: rgba(var(--mc), 0.05); border: 1px solid rgba(var(--mc), 0.1);
  animation: modTilePulse 3s ease-in-out infinite;
}
.mod-tile:nth-child(2) { animation-delay: 0.3s; }
.mod-tile:nth-child(3) { animation-delay: 0.6s; }
.mod-tile:nth-child(4) { animation-delay: 0.9s; }
.mod-tile:nth-child(5) { animation-delay: 1.2s; }
.mod-tile:nth-child(6) { animation-delay: 1.5s; }
.mod-tile:nth-child(7) { animation-delay: 1.8s; }
.mod-tile:nth-child(8) { animation-delay: 2.1s; }
.mod-tile:nth-child(9) { animation-delay: 2.4s; }
.mod-tile span { font-size: 0.7rem; }
.mod-tile small { font-size: 0.35rem; color: rgba(255,255,255,0.25); font-family: 'Unbounded', sans-serif; font-weight: 600; }
.mod-more {
  text-align: center; margin-top: 4px;
  font-size: 0.45rem; color: rgba(255,255,255,0.15); font-family: 'Unbounded', sans-serif; font-weight: 600;
}
@keyframes modTilePulse { 0%,100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* ═══════════════════════════════════════
   FEATURE DETAIL MODAL
   ═══════════════════════════════════════ */
.feature-modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center; justify-content: center; padding: 24px;
}
.feature-modal.active { display: flex; animation: fmFadeIn 0.3s ease; }
@keyframes fmFadeIn { from { opacity: 0; } to { opacity: 1; } }

.feature-modal-content {
  max-width: 640px; width: 100%;
  background: var(--bg-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(255,92,0,0.04);
  max-height: 85vh; overflow-y: auto; position: relative;
  animation: fmSlideUp 0.3s ease;
}
@keyframes fmSlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.feature-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted); font-size: 1.3rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.feature-modal-close:hover { background: rgba(255,255,255,0.1); color: white; }

.feature-modal-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.feature-modal-icon { font-size: 2rem; }
.feature-modal-title { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 1.5rem; }

.feature-modal-desc { color: var(--text-secondary); line-height: 1.7; font-size: 1rem; margin-bottom: 24px; }

.feature-modal-screenshots {
  display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px;
}
.feature-modal-screenshots img {
  width: 100%; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.feature-modal-screenshots:empty { display: none; }

.feature-modal-features { display: flex; flex-direction: column; gap: 8px; }
.fm-feat {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem; color: var(--text-secondary);
}
.fm-feat-icon { font-size: 1rem; flex-shrink: 0; }

/* Screenshot figures in modal */
.fm-screenshot {
  margin: 0; border-radius: var(--radius-md); overflow: hidden;
  background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s;
}
.fm-screenshot:hover { border-color: rgba(255,92,0,0.15); }
.fm-screenshot img {
  width: 100%; display: block;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fm-screenshot figcaption {
  padding: 10px 14px; font-size: 0.8rem; line-height: 1.5;
  color: var(--text-muted); font-family: 'Inter', sans-serif;
}
