/* ═══════════════════════════════════════════════════════ */
/* AuraicPulse Media - Pink/Purple Warm Theme             */
/* ═══════════════════════════════════════════════════════ */

:root {
  --primary: #ec4899;
  --accent: #a855f7;
  --neon-pink: #d946ef;
  --neon-blue: #f472b6;
  --ring: #ec4899;
  --border: rgba(236, 72, 153, 0.1);
  --input: rgba(236, 72, 153, 0.08);
  --glow-rgb: 236, 72, 153;
  --scanline-color: rgba(236, 72, 153, 0.008);
}

/* Override glow blobs for warm pink/purple */
.glow-blob-1 {
  background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, rgba(168,85,247,0.05) 30%, transparent 70%) !important;
}

.glow-blob-2 {
  background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, rgba(236,72,153,0.03) 40%, transparent 70%) !important;
}

.glow-blob-3 {
  background: radial-gradient(circle, rgba(244,114,182,0.04) 0%, transparent 70%) !important;
}

/* Override grid pattern */
.grid-pattern {
  background-image:
    linear-gradient(rgba(236, 72, 153, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 72, 153, 0.03) 1px, transparent 1px) !important;
}

/* Override hardcoded blue in hover states */
.stat:hover {
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(236, 72, 153, 0.05);
}

.platform-card:hover {
  border-color: rgba(236, 72, 153, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(236, 72, 153, 0.08);
}

.platform-card::after {
  background: radial-gradient(
    800px circle at var(--mouse-x) var(--mouse-y),
    rgba(236, 72, 153, 0.04),
    transparent 40%
  );
}

/* Primary button is pink gradient */
.btn-primary {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.35);
}

.btn-submit {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: #fff;
}

.btn-submit:hover {
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.tech-chip:hover {
  border-color: rgba(236, 72, 153, 0.2);
}

.service-highlight-item:hover {
  border-color: rgba(236, 72, 153, 0.3);
}

.cta::before {
  background: radial-gradient(ellipse, rgba(236, 72, 153, 0.05), transparent 70%);
}

/* Hero badge pink tint */
.hero-badge {
  border-color: rgba(236, 72, 153, 0.2);
  background: rgba(236, 72, 153, 0.05);
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ec4899, #a855f7);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f472b6, #c084fc);
}

/* Selection */
::selection {
  background: rgba(236, 72, 153, 0.3);
}

/* Logo icon glow */
.logo-icon {
  box-shadow:
    0 0 20px rgba(236, 72, 153, 0.15),
    0 0 40px rgba(236, 72, 153, 0.05);
}

.logo:hover .logo-icon {
  box-shadow:
    0 0 25px rgba(236, 72, 153, 0.25),
    0 0 50px rgba(236, 72, 153, 0.1);
}

.logo-icon::before {
  background: linear-gradient(135deg, transparent 30%, rgba(236, 72, 153, 0.2) 50%, transparent 70%);
}

.logo-icon::after {
  background: conic-gradient(from 0deg, transparent, rgba(236, 72, 153, 0.15), transparent, rgba(168, 85, 247, 0.15), transparent);
}

/* Why Choose Us section (media-specific) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.why-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 36px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover::before { opacity: 0.8; }

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 72, 153, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(236, 72, 153, 0.06);
}

.why-card .why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(236, 72, 153, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.why-card .why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-card {
    padding: 24px;
  }
}

/* Platform showcase section (dashboard mock) */
.platform-showcase {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(236, 72, 153, 0.15);
  background: #060a10;
  padding: 0;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(236, 72, 153, 0.05);
}

.platform-showcase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ec4899, #a855f7, #ec4899);
  background-size: 200% 100%;
  animation: gradientSlide 3s linear infinite;
  z-index: 2;
}

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

/* Dashboard mock layout */
.dashboard-mock .mock-header {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 19, 24, 0.9);
  border-bottom: 1px solid rgba(236, 72, 153, 0.08);
}

.mock-live-badge {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.dashboard-mock .mock-body {
  display: flex;
  min-height: 380px;
}

.mock-sidebar {
  width: 52px;
  background: rgba(10, 14, 20, 0.8);
  border-right: 1px solid rgba(236, 72, 153, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 4px;
}

.mock-sidebar-logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  opacity: 0.6;
}

.mock-sidebar-logo img {
  width: 24px;
  height: 24px;
}

.mock-sidebar-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.mock-sidebar-item.active {
  background: rgba(236, 72, 153, 0.12);
  color: #ec4899;
}

.mock-main {
  flex: 1;
  padding: 20px;
  overflow: hidden;
}

.mock-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mock-greeting {
  font-size: 13px;
  color: var(--muted-foreground);
}

.mock-date {
  font-size: 11px;
  color: var(--muted-foreground);
  opacity: 0.6;
}

.dashboard-mock .mock-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.dashboard-mock .mock-stat-card {
  background: rgba(15, 19, 24, 0.6);
  border: 1px solid rgba(236, 72, 153, 0.06);
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-panels {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.dashboard-mock .mock-chart {
  background: rgba(15, 19, 24, 0.6);
  border: 1px solid rgba(236, 72, 153, 0.06);
  border-radius: 10px;
  padding: 16px;
}

.dashboard-mock .mock-activity {
  background: rgba(15, 19, 24, 0.6);
  border: 1px solid rgba(236, 72, 153, 0.06);
  border-radius: 10px;
  padding: 16px;
}

@media (max-width: 768px) {
  .dashboard-mock .mock-sidebar { display: none; }
  .dashboard-mock .mock-stats-row { grid-template-columns: repeat(2, 1fr); }
  .mock-panels { grid-template-columns: 1fr; }
  .mock-topbar { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* Activity dot colors */
.mock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-dot.pink { background: #ec4899; box-shadow: 0 0 6px rgba(236, 72, 153, 0.4); }
.mock-dot.violet { background: #a855f7; box-shadow: 0 0 6px rgba(168, 85, 247, 0.4); }

/* Chart bar day labels */
.mock-chart-bars .mock-bar span {
  display: block;
  font-size: 8px;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 4px;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.mock-chart-bars .mock-bar {
  position: relative;
}

/* Why section centering */
.why-section {
  padding: 80px 0;
}

.why-section .section-title {
  text-align: center;
}

.why-section .why-grid {
  max-width: 960px;
  margin: 0 auto;
}

/* Bottom Line Section (replaces text reflow on media page) */
.bottom-line-section {
  padding: 100px 0;
}

.bottom-line-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.bottom-line-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(10, 14, 20, 0.6);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.bottom-line-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.bottom-line-card:hover::before { opacity: 0.8; }

.bottom-line-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 72, 153, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(236, 72, 153, 0.06);
}

.bl-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.bottom-line-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--foreground);
}

.bottom-line-card p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .bottom-line-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bottom-line-card {
    padding: 28px 20px;
  }
}
