/*
Theme Name: Brov Theme
Theme URI: https://brov.ai
Author: Brov / IyzerLabs
Author URI: https://brov.ai
Description: Ultra-premium Dark Mode Agentic AI SaaS WordPress Theme with cinematic design, glassmorphism cards, and neon accents.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brov-theme
Tags: dark, saas, ai, modern, business, full-width-template, custom-menu, featured-images
*/

/* =============================================
   BROV THEME — CORE CSS
   Ultra-premium Dark Mode Agentic AI Platform
   ============================================= */

:root {
  --bg-void:       #030308;
  --bg-deep:       #07070f;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --neon-purple:   #8b5cf6;
  --neon-blue:     #3b82f6;
  --neon-cyan:     #06b6d4;
  --neon-glow:     rgba(139,92,246,0.5);
  --glow-blue:     rgba(59,130,246,0.4);
  --text-primary:  #f8fafc;
  --text-secondary:#94a3b8;
  --text-muted:    #475569;
  --border-glass:  rgba(255,255,255,0.08);
  --border-neon:   rgba(139,92,246,0.4);
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
  --radius-card:   16px;
  --radius-btn:    10px;
  --transition:    all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--neon-purple); border-radius: 2px; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Container ── */
.brov-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Spacing ── */
.brov-section { padding: 72px 0; }
.brov-section-sm { padding: 48px 0; }

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
#brov-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1160px;
  background: rgba(5,5,14,0.65);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  padding: 0 8px 0 24px;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 32px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.06) inset;
}
#brov-nav.nav-scrolled {
  background: rgba(4,4,12,0.92);
  border-color: rgba(139,92,246,0.25);
  box-shadow: 0 8px 48px rgba(0,0,0,0.65), 0 1px 0 rgba(255,255,255,0.07) inset;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  gap: 0;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo span { color: var(--neon-cyan); -webkit-text-fill-color: var(--neon-cyan); }

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  transition: var(--transition);
  box-shadow: 0 2px 20px var(--neon-glow);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 30px var(--neon-glow); }

/* Nav hamburger for mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--neon-purple);
  top: -100px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.orb-2 {
  width: 500px; height: 500px;
  background: var(--neon-blue);
  bottom: -100px; right: -100px;
  animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: var(--neon-cyan);
  top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbPulse 5s ease-in-out infinite;
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 40px) scale(1.1); }
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.08; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 0.18; transform: translate(-50%,-50%) scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-purple);
  margin-bottom: 28px;
  animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: dotBlink 1.5s infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0px rgba(139,92,246,0.3); }
  50% { box-shadow: 0 0 20px rgba(139,92,246,0.4); }
}
@keyframes dotBlink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 1s 0.3s cubic-bezier(0.23,1,0.32,1) forwards;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #c084fc, #818cf8, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: heroReveal 1s 0.55s cubic-bezier(0.23,1,0.32,1) forwards;
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroReveal 1s 0.75s cubic-bezier(0.23,1,0.32,1) forwards;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 30px var(--neon-glow);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px var(--neon-glow); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--border-neon);
  color: var(--text-primary);
  background: rgba(139,92,246,0.06);
}

/* ── Floating Devices ── */
.hero-devices {
  position: relative;
  margin-top: 70px;
  height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  animation: heroReveal 1.2s 1s cubic-bezier(0.23,1,0.32,1) forwards;
}

/* Mac Window Mockup */
.mac-window {
  width: 480px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 60px rgba(139,92,246,0.1);
  animation: floatMac 6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes floatMac {
  0%,100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(0.5deg); }
}

.mac-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mac-dot { width: 10px; height: 10px; border-radius: 50%; }
.mac-dot.red   { background: #ff5f57; }
.mac-dot.yellow{ background: #febc2e; }
.mac-dot.green { background: #28c840; }
.mac-title-text {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.mac-body { padding: 20px; }
.mac-code-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 10px;
  animation: codePulse 2s ease-in-out infinite;
}
.mac-code-line:nth-child(1) { width: 75%; }
.mac-code-line:nth-child(2) { width: 55%; animation-delay: 0.3s; background: rgba(139,92,246,0.3); }
.mac-code-line:nth-child(3) { width: 85%; animation-delay: 0.6s; }
.mac-code-line:nth-child(4) { width: 40%; animation-delay: 0.9s; background: rgba(6,182,212,0.3); }
.mac-code-line:nth-child(5) { width: 65%; animation-delay: 1.2s; }
@keyframes codePulse {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* iPhone Mockup */
.iphone-window {
  width: 140px;
  height: 280px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 40px rgba(59,130,246,0.1);
  animation: floatPhone 7s ease-in-out infinite;
  animation-delay: 1s;
  position: relative;
  flex-shrink: 0;
  align-self: center;
}
@keyframes floatPhone {
  0%,100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-22px) rotate(-1deg); }
}

.iphone-notch {
  width: 60px; height: 20px;
  background: var(--bg-void);
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}
.iphone-screen { padding: 12px; }
.iphone-ui-block {
  height: 28px;
  background: rgba(139,92,246,0.3);
  border-radius: 6px;
  margin-bottom: 8px;
}
.iphone-ui-block:nth-child(2) { background: rgba(6,182,212,0.2); height: 50px; }
.iphone-ui-block:nth-child(3) { width: 70%; background: rgba(255,255,255,0.08); height: 20px; }
.iphone-ui-block:nth-child(4) { width: 50%; background: rgba(255,255,255,0.05); height: 20px; }

/* ─────────────────────────────────────────────
   GLASS CARDS
───────────────────────────────────────────── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  backdrop-filter: blur(16px) saturate(150%);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(139,92,246,0.1);
}

/* ─────────────────────────────────────────────
   TOP TOOL — AUTO CONTENT GENERATOR
───────────────────────────────────────────── */
#top-tool { background: linear-gradient(180deg, transparent, rgba(139,92,246,0.04), transparent); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--neon-cyan);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
}

.tool-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tool-visual {
  position: relative;
  height: 380px;
}
.tool-card-bg {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(59,130,246,0.05));
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  animation: floatMac 7s ease-in-out infinite;
}
.tool-icon-large {
  font-size: 4rem;
  margin-bottom: 8px;
}
.tool-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tool-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tool-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

.btn-activate {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 40px rgba(124,58,237,0.5), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.btn-activate::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: shineSlide 3s ease-in-out infinite;
}
@keyframes shineSlide {
  0% { left: -60%; }
  50%, 100% { left: 120%; }
}
.btn-activate:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 60px rgba(124,58,237,0.7), 0 0 0 1px rgba(255,255,255,0.15) inset;
}

.feature-list { list-style: none; margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.4);
  border-radius: 50%;
  color: var(--neon-purple);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   LOCKED TOOLS GRID
───────────────────────────────────────────── */
#locked-tools { background: linear-gradient(180deg, transparent, rgba(3,3,8,0.8), transparent); }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.tool-card {
  padding: 28px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.tool-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.tool-card-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}
.lock-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f87171;
}

.tool-card-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.tool-card-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.tool-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  pointer-events: none;
}

.tool-card.soon .tool-card-action {
  background: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.2);
  color: #fbbf24;
}

/* Overlay for locked effect */
.tool-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.tool-card:hover .tool-card-overlay { opacity: 1; }

/* ─────────────────────────────────────────────
   UPCOMING WORKFLOWS
───────────────────────────────────────────── */
#workflows { overflow: hidden; }

.workflows-header { text-align: center; margin-bottom: 64px; }

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

.workflow-card {
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.workflow-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.workflow-card:hover::after { transform: scaleX(1); }

.workflow-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-purple);
  margin-bottom: 16px;
}

.workflow-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.workflow-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.workflow-progress {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.workflow-progress-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
  animation: progressGlow 2s ease-in-out infinite alternate;
}
@keyframes progressGlow {
  from { box-shadow: none; }
  to   { box-shadow: 0 0 8px var(--neon-purple); }
}
.workflow-progress-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ─────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 100px;
}
.stat-item {
  padding: 40px 32px;
  background: var(--bg-deep);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#brov-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-secondary);
}
.social-btn:hover {
  background: rgba(139,92,246,0.1);
  border-color: var(--border-neon);
  color: var(--neon-purple);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-glass);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-brand-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand-badge span {
  font-family: var(--font-display);
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1), transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.reveal.in-view {
  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; }

/* ─────────────────────────────────────────────
   GRADIENT DIVIDERS
───────────────────────────────────────────── */
.gradient-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-neon), transparent);
  margin: 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tool-spotlight { grid-template-columns: 1fr; gap: 40px; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav pill on mobile */
  #brov-nav {
    top: 10px;
    width: calc(100% - 24px);
    padding: 0 6px 0 18px;
  }
  .nav-inner { height: 48px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  /* Layout */
  .brov-section { padding: 52px 0; }
  .brov-container { padding: 0 16px; }
  .hero-devices { height: 200px; }
  .mac-window { width: 280px; }
  .iphone-window { width: 90px; height: 180px; }
  .tool-spotlight { grid-template-columns: 1fr; gap: 36px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: 1fr; }

  /* Typography */
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  #brov-nav { top: 8px; width: calc(100% - 16px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-devices { display: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2rem; line-height: 1.1; }
  .section-title { font-size: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   WP CORE CLASSES
───────────────────────────────────────────── */
.wp-caption, .gallery { max-width: 100%; }
.aligncenter { display: block; margin: 0 auto; }
.alignright { float: right; margin-left: 1.5em; }
.alignleft  { float: left; margin-right: 1.5em; }
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Custom Alert Modal ── */
.brov-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.brov-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.brov-modal {
  background: #0e0e1a;
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 60px rgba(139,92,246,0.2);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.brov-modal-overlay.active .brov-modal { transform: scale(1); }
.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.modal-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; }
.modal-close {
  padding: 10px 28px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neon-purple);
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(139,92,246,0.25); }
