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

/* Variables */
:root {
  --bg-main: #070a13;
  --bg-card: #0f1524;
  --bg-nav: rgba(7, 10, 19, 0.85);
  --primary: #00e5ff;
  --primary-glow: rgba(0, 229, 255, 0.3);
  --secondary: #00a8ff;
  --accent: #ff6e40;
  --accent-glow: rgba(255, 110, 64, 0.4);
  --text-main: #f0f4ff;
  --text-muted: #8899bb;
  --border-color: rgba(255, 255, 255, 0.08);
  --card-glow: rgba(0, 229, 255, 0.03);
  --gradient-primary: linear-gradient(135deg, #00a8ff 0%, #00e5ff 100%);
  --gradient-dark: linear-gradient(180deg, #0f1524 0%, #070a13 100%);
  --gradient-accent: linear-gradient(135deg, #ff6e40 0%, #ff8f6b 100%);
  --gradient-vibrant: linear-gradient(135deg, #ff6e40, #00e5ff, #ff6e40);
  --font-family: 'Outfit', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

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

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

/* === Animated Aurora Background === */
@keyframes aurora-shift {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 50% 100%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}

@keyframes blob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, -80px) scale(1.15); }
  66%       { transform: translate(-40px, 60px) scale(0.9); }
}
@keyframes blob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-70px, 50px) scale(1.1); }
  66%       { transform: translate(50px, -60px) scale(0.95); }
}
@keyframes blob3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, 40px) scale(1.2); }
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #070a13;
  z-index: -3;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(0, 140, 255, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 80% 70%, rgba(120, 0, 255, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 65% 15%, rgba(0, 229, 255, 0.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 110, 64, 0.10) 0%, transparent 65%);
  background-size: 200% 200%;
  animation: aurora-shift 18s ease infinite;
}

/* Floating aurora blobs */
.aurora-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
}
.aurora-blob-1 {
  width: 600px; height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.5), rgba(100, 0, 255, 0.2));
  top: -100px; left: -100px;
  animation: blob1 20s ease-in-out infinite;
}
.aurora-blob-2 {
  width: 500px; height: 600px;
  background: radial-gradient(circle, rgba(255, 50, 180, 0.35), rgba(0, 229, 255, 0.15));
  bottom: -150px; right: -100px;
  animation: blob2 25s ease-in-out infinite;
}
.aurora-blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(80, 0, 220, 0.3), transparent);
  top: 40%; left: 50%;
  transform: translateX(-50%);
  animation: blob3 15s ease-in-out infinite;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition-fast);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 8rem 0 4rem;
}

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

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.highlight-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

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

::-webkit-scrollbar-thumb {
  background: #1b253d;
  border-radius: 5px;
  border: 2px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.5);
  color: #000;
}

.btn-accent {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 110, 64, 0.6);
}

.btn-outline {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(0, 229, 255, 0.05);
  transform: translateY(-3px);
}

/* === Content Ticker Bar === */
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-bar {
  width: 100%;
  background: linear-gradient(90deg, rgba(0,229,255,0.08) 0%, rgba(120,0,255,0.08) 100%);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}

.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-bar::before {
  left: 0;
  background: linear-gradient(to right, #070a13, transparent);
}
.ticker-bar::after {
  right: 0;
  background: linear-gradient(to left, #070a13, transparent);
}

.ticker-label {
  flex-shrink: 0;
  background: var(--gradient-primary);
  color: #000;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.85rem;
  border-radius: 0 4px 4px 0;
  margin-right: 1.5rem;
  white-space: nowrap;
  z-index: 3;
  position: relative;
}

.ticker-track {
  display: flex;
  align-items: center;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.ticker-item .ti-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--primary);
}
.ticker-item .ti-dot.accent { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.ticker-item .ti-dot.purple { background: #a855f7; box-shadow: 0 0 6px #a855f7; }

.ticker-item strong {
  color: var(--text-main);
}

/* Header */
header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
}

.nav-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  transition: var(--transition-normal);
}

header.scrolled .nav-wrapper {
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-align: left;
}

.logo-text {
  background: linear-gradient(90deg, #00e5ff, #ff007f, #00e5ff);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: logo-shine 4s linear infinite;
  display: inline-block;
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

@keyframes logo-shine {
  to {
    background-position: 200% center;
  }
}

.logo-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #00e5ff, #ff007f);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 0, 127, 0.6), inset 0 0 20px rgba(0, 229, 255, 0.5);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.05) rotate(-5deg);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.8), inset 0 0 20px rgba(255, 0, 127, 0.6);
}

.logo-icon svg {
  width: 32px;
  height: 32px;
}

.logo-text span {
  font-weight: 800;
  color: #fff;
  margin-left: 0.5rem;
  font-size: 0.8em;
  background: none;
  -webkit-text-fill-color: initial;
  text-shadow: 0 0 10px #00e5ff;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 24px;
  justify-content: center;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.hero-bg-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 110, 64, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

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

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-media {
  position: relative;
  width: 100%;
}

/* Hero Visual Panel (replaces image) */
.hero-visual-panel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes bar-pulse {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(0.4); }
}
@keyframes tv-glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.9; transform: translate(-50%, -50%) scale(1.08); }
}

.tv-mock {
  position: relative;
  width: 100%;
  max-width: 480px;
  z-index: 2;
}

.tv-screen {
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
  border-radius: 20px;
  border: 2px solid rgba(0, 229, 255, 0.25);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.tv-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0,229,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(120,0,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.tv-screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  z-index: 1;
  position: relative;
}

.tv-channel-badge {
  background: linear-gradient(90deg, #ff3e3e, #ff6e40);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  animation: float 3s ease-in-out infinite;
}

.tv-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.tv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}

.z-index-top {
  z-index: 2;
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.tv-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.tv-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0,229,255,0.2) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
  animation: tv-glow-pulse 4s ease-in-out infinite;
}



.floating-card {
  position: absolute;
  background: rgba(15, 21, 36, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
  bottom: 10%;
  left: -10%;
  animation-delay: 0s;
}

.floating-card-2 {
  top: 15%;
  right: -5%;
  animation-delay: 3s;
}

.fc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.1);
  color: var(--primary);
  font-size: 1.25rem;
}

.fc-info {
  display: flex;
  flex-direction: column;
}

.fc-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.fc-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

/* Features Section */
.section-title-wrapper {
  margin-bottom: 4.5rem;
  text-align: center;
}

.section-subtitle {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(255,255,255,0.06), transparent 40%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 229, 255, 0.05);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.75rem;
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: 0 5px 15px var(--primary-glow);
  transform: scale(1.05);
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Category Showcase Section */
.categories-showcase {
  background: linear-gradient(180deg, var(--bg-main) 0%, rgba(15, 21, 36, 0.4) 50%, var(--bg-main) 100%);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-tab-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.category-tab-btn:hover {
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.category-tab-btn.active {
  background: var(--gradient-primary);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.category-content-wrapper {
  position: relative;
  min-height: 350px;
}

.category-pane {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  animation: fadeIn 0.5s ease forwards;
}

.category-pane.active {
  display: grid;
}

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

.category-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.category-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.category-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.category-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-top: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.highlight-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.preview-card {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-normal);
}

.preview-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 229, 255, 0.3);
}

.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.preview-card:hover img {
  transform: scale(1.1);
}

.preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0.9;
  transition: var(--transition-normal);
}

.preview-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--primary);
  color: #000;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.preview-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Pricing Section */
.pricing {
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.05) 0%, rgba(15, 21, 36, 1) 100%);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.08);
}

.pricing-card.popular:hover {
  box-shadow: 0 20px 45px rgba(0, 229, 255, 0.15);
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-primary);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.plan-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.plan-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.plan-price {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
}

.plan-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.plan-feature-item.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

.plan-feature-item.disabled svg {
  color: var(--text-muted);
}

.plan-feature-icon {
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.pricing-card.popular .plan-feature-icon {
  color: var(--primary);
}

/* Device Section */
.devices {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.device-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.device-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-normal);
  font-size: 2rem;
}

.device-card:hover .device-icon-box {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(0, 229, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
  transform: translateY(-5px);
}

.device-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.device-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-header {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 1rem;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.faq-item:hover .faq-question {
  color: var(--primary);
}

.faq-toggle-icon {
  color: var(--text-muted);
  transition: var(--transition-normal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

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

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

.faq-item.active .faq-content {
  padding-bottom: 1.5rem;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* CTA Footer Ribbon */
.cta-ribbon {
  background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.12), transparent 60%),
              radial-gradient(circle at bottom left, rgba(255, 110, 64, 0.08), transparent 60%),
              var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-ribbon-title {
  font-size: 2.5rem;
  font-weight: 800;
  max-width: 700px;
  line-height: 1.2;
}

.cta-ribbon-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin-top: -1rem;
}

.cta-ribbon-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Footer */
footer {
  background: #04060b;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col-title {
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.legal-link:hover {
  color: var(--text-main);
}

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

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

  .hero-badge {
    align-self: center;
  }

  .hero-desc {
    margin: 0 auto 1rem;
  }

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

  .hero-stats {
    justify-content: center;
    width: 100%;
  }

  .hero-media {
    max-width: 600px;
    margin: 0 auto;
  }

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

  .pricing-card.popular {
    order: -1;
  }

  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .section {
    padding: 6rem 0 3rem;
  }

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

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

  /* Navigation Mobile */
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #090e1b;
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition-normal);
    z-index: 99;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .btn {
    width: calc(100% - 4rem);
    margin: 0 2rem;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Category Pane Responsive */
  .category-pane.active {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .category-preview-grid {
    order: -1;
  }

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

  .pricing-card.popular {
    grid-column: span 1;
  }

  .ticker-bar {
    display: none;
  }

  header {
    top: 0;
  }

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

  .cta-ribbon-title {
    font-size: 1.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* Space Stars Background & Floating Posters */
body {
  background-image: 
    radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 40px 70px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 90px 40px, rgba(255,255,255,0.8), rgba(0,0,0,0)),
    radial-gradient(2px 2px at 160px 120px, rgba(0,229,255,0.8), rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 250px 80px, rgba(255,0,127,0.8), rgba(0,0,0,0)),
    radial-gradient(1px 1px at 300px 220px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 350px 150px, #ffffff, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 400px 400px;
  animation: starlight 100s linear infinite;
}

@keyframes starlight {
  from { background-position: 0 0; }
  to { background-position: -400px 400px; }
}

.floating-posters-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.floating-poster {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,229,255,0.15), 0 0 20px rgba(255,0,127,0.15);
  opacity: 0.8;
  filter: blur(1px) brightness(0.9) contrast(1.1);
  animation: floatPoster 20s ease-in-out infinite alternate;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.p1 { top: 5%; left: 2%; width: 140px; height: 200px; animation-delay: 0s; animation-duration: 25s; }
.p2 { top: 55%; left: 8%; width: 160px; height: 240px; animation-delay: -5s; animation-duration: 30s; filter: blur(2px) brightness(0.8); opacity: 0.6; }
.p3 { top: 15%; right: 5%; width: 150px; height: 220px; animation-delay: -10s; animation-duration: 22s; }
.p4 { top: 65%; right: 10%; width: 130px; height: 190px; animation-delay: -2s; animation-duration: 28s; }
.p5 { top: 35%; left: 45%; width: 200px; height: 300px; animation-delay: -15s; animation-duration: 35s; opacity: 0.4; filter: blur(3px); }
.p6 { top: 80%; left: 30%; width: 120px; height: 180px; animation-delay: -7s; animation-duration: 26s; opacity: 0.7; filter: blur(1.5px); }

@keyframes floatPoster {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-40px) rotate(8deg) scale(1.05); }
  100% { transform: translateY(20px) rotate(-5deg) scale(0.95); }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-wa 2s infinite;
}

.floating-whatsapp svg {
  width: 35px;
  height: 35px;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

.fw-tooltip {
  position: absolute;
  right: 75px;
  background: #25d366;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateX(10px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.floating-whatsapp:hover .fw-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

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

.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; }

/* Enhanced Button Animations */
.btn-primary::before, .btn-accent::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: btnShine 4s infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes btnShine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Enhanced Hover on Cards */
.pricing-card, .feature-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0, 229, 255, 0.2);
  border-color: rgba(0, 229, 255, 0.5);
}

.pricing-card.popular:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255, 110, 64, 0.3);
  border-color: rgba(255, 110, 64, 0.7);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
}
