/* ===================================================================
   00ops.ai — Styles
   Bond-inspired dark premium theme with gold accents
   =================================================================== */

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

:root {
  /* Colors */
  --navy-deep: #0a0a14;
  --navy: #0f0f1e;
  --navy-light: #161628;
  --navy-lighter: #1e1e35;
  --gold: #d4af37;
  --gold-bright: #e8c547;
  --gold-dim: #b8962e;
  --gold-muted: rgba(212, 175, 55, 0.15);
  --gold-glow: rgba(212, 175, 55, 0.25);
  --text-primary: #f0ead6;
  --text-secondary: rgba(240, 234, 214, 0.65);
  --text-muted: rgba(240, 234, 214, 0.4);
  --border: rgba(212, 175, 55, 0.12);
  --border-hover: rgba(212, 175, 55, 0.3);
  --card-bg: rgba(22, 22, 40, 0.6);
  --card-bg-hover: rgba(30, 30, 53, 0.8);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-padding: 7rem 0;
  --container-max: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--navy-deep);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- Keyframes --- */
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- Bond Zero Typography --- */
.bond-zero, .bond-zero-sm, .bond-zero-price, .bond-zero-btn {
  position: relative;
  display: inline-block;
  font-family: 'Times New Roman', Georgia, serif;
  font-weight: 900;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-ligatures: none;
  -webkit-font-feature-settings: "liga" 0;
  font-feature-settings: "liga" 0;
}
.bond-zero::after, .bond-zero-sm::after, .bond-zero-price::after, .bond-zero-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 8%;
  width: 84%;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}
.bond-zero { font-size: 1.6em; }
.bond-zero-sm { font-size: 1em; }
.bond-zero-price { font-size: 1em; }
.bond-zero-btn { font-size: 1em; }

.logo-ops {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.logo-dot, .brand-dot-sm {
  font-family: var(--font-mono);
  font-weight: 400;
  font-style: normal;
  color: var(--gold-dim);
  font-size: 0.75em;
}
.brand-inline {
  font-weight: inherit;
  white-space: nowrap;
}

/* --- Gold Text --- */
.gold-text {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-image-container {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(1) saturate(3) hue-rotate(10deg) brightness(0.8) contrast(1.2);
}
.logo-text {
  display: flex;
  align-items: baseline;
  font-size: 1.5rem;
  gap: 0;
  user-select: none;
}
.logo-text-sm { font-size: 1.1rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.sign-in-link { text-transform: none; letter-spacing: 0; }

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 2rem;
  gap: 1rem;
  background: var(--navy);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-muted);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-arrow { transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--gold-muted);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 2rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseGold 2s ease-in-out infinite;
}
.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.trust-badges {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-icon { color: var(--gold-dim); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}
.hero-visual { position: relative; }
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.05);
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
  pointer-events: none;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Features Section --- */
.features-section {
  padding: var(--section-padding);
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.05);
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Dashboard Preview --- */
.dashboard-preview {
  padding: 0 0 5rem;
}
.preview-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.preview-label {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.preview-caption {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}
.preview-image-wrapper {
  position: relative;
  overflow: hidden;
}
/* --- Pricing Section --- */
.pricing-section {
  padding: var(--section-padding);
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.pricing-card-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--card-bg) 40%);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}
.pricing-card-featured:hover {
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.15), 0 12px 40px rgba(0, 0, 0, 0.3);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-deep);
  white-space: nowrap;
}
.pricing-badge-enterprise {
  background: var(--navy-lighter);
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}
.pricing-header { margin-bottom: 1.5rem; }
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}
.pricing-codename {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.pricing-price {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
}
.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.pricing-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.metric-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.metric-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.pricing-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23d4af37'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* --- Integrations Section --- */
.integrations-section {
  padding: var(--section-padding);
}
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: all 0.3s ease;
}
.integration-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.08);
}
.integration-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent, #fff);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.integration-name {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
}

/* --- Section Divider --- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* --- Final CTA --- */
.final-cta-section {
  padding: 5rem 0 6rem;
}
.final-cta {
  text-align: center;
  padding: 5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, transparent 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.final-cta .section-title { margin-bottom: 1rem; }
.final-cta .section-subtitle { margin-bottom: 2.5rem; }

/* --- Footer --- */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-link:hover { color: var(--gold); }
.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .trust-badges { justify-content: center; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 5rem 0; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { min-height: auto; padding-top: 7rem; padding-bottom: 3rem; }
  .hero-title { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card:last-child { max-width: 100%; }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
}


/* --- Hero Dashboard Mock --- */
.hero-dashboard-mock {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  animation: float 6s ease-in-out infinite;
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--navy-light);
  border-bottom: 1px solid var(--border);
}
.mock-dots {
  display: flex;
  gap: 6px;
}
.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #febc2e; }
.mock-dots span:nth-child(3) { background: #28c840; }
.mock-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}
.mock-body {
  display: flex;
  min-height: 280px;
}
.mock-sidebar {
  width: 48px;
  background: var(--navy-lighter);
  border-right: 1px solid var(--border);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mock-nav-item {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}
.mock-nav-item.active {
  background: var(--gold-muted);
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.mock-content {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mock-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.mock-stat {
  background: var(--navy-lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mock-stat-num {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}
.mock-stat-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mock-chart {
  flex: 1;
  background: var(--navy-lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 120px;
  position: relative;
  overflow: hidden;
}
.mock-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.08));
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* Animated mini chart bars inside hero mock */
.mock-chart {
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  gap: 4px;
}
.mock-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--gold), var(--gold-dim));
  border-radius: 2px 2px 0 0;
  opacity: 0.5;
  animation: barPulse 3s ease-in-out infinite;
}
.mock-chart-bar:nth-child(odd) { animation-delay: 0.5s; }
.mock-chart-bar:nth-child(3n) { animation-delay: 1s; }
@keyframes barPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* --- Preview Dashboard Mock --- */
.preview-dashboard-mock {
  background: var(--navy);
  width: 100%;
}
.preview-mock-body {
  display: flex;
  min-height: 400px;
}
.preview-mock-sidebar {
  width: 200px;
  background: var(--navy-lighter);
  border-right: 1px solid var(--border);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.preview-mock-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.preview-mock-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.preview-mock-nav .mock-nav-item {
  height: 10px;
  border-radius: 5px;
}
.preview-mock-main {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.preview-mock-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-search {
  width: 200px;
  height: 32px;
  border-radius: 6px;
  background: var(--navy-lighter);
  border: 1px solid var(--border);
}
.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.preview-mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.preview-stat-card {
  background: var(--navy-lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stat-val {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}
.stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.stat-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}
.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.preview-mock-chart {
  flex: 1;
  background: var(--navy-lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  min-height: 160px;
}
.chart-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--gold), var(--gold-dim));
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.chart-bar:hover { opacity: 1; }

/* --- Responsive additions for mocks --- */
@media (max-width: 768px) {
  .mock-stat-row { grid-template-columns: repeat(2, 1fr); }
  .preview-mock-sidebar { display: none; }
  .preview-mock-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .mock-stat-row { grid-template-columns: 1fr 1fr; }
  .preview-mock-stats { grid-template-columns: 1fr 1fr; }
}
