/* 
 * ZeroStack.pro - Master Ultra-Wide Reflect.app Dark SaaS Design System
 * 1500px+ Container Width, Rich Visual Storytelling & Multi-Section Polish
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Color System */
  --bg-dark: #03050c;
  --bg-card: rgba(13, 17, 33, 0.65);
  --bg-card-hover: rgba(18, 24, 46, 0.85);
  --bg-glass: rgba(10, 14, 28, 0.7);
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.16);
  --border-purple: rgba(139, 92, 246, 0.28);
  --border-purple-glow: rgba(167, 139, 250, 0.65);
  
  /* Brand Accents */
  --violet-primary: #8b5cf6;
  --violet-light: #a78bfa;
  --blue-glow: #3b82f6;
  --cyan-accent: #00f3ff;
  --emerald-accent: #10b981;
  
  /* Text Tokens */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Fonts */
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Geometry & Physics */
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow-purple: 0 0 45px rgba(139, 92, 246, 0.28);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Atmospheric Background Canvas & Glow Halos */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  opacity: 0.25;
}

.glow-atmosphere-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1600px;
  height: 750px;
  background: radial-gradient(ellipse 85% 55% at 50% -10%, rgba(120, 80, 255, 0.24), rgba(59, 130, 246, 0.09), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.glow-atmosphere-middle {
  position: absolute;
  top: 1400px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1600px;
  height: 700px;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(139, 92, 246, 0.12), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

a {
  color: var(--violet-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--text-primary);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--text-primary);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 40%, var(--violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, var(--violet-light) 0%, #c084fc 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Reflect.app Inspired Floating Glass Header (Ultra-Wide 1520px) */
.site-header {
  position: sticky;
  top: 1rem;
  z-index: 1000;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-container {
  background: rgba(8, 11, 24, 0.78);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.header-container:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(59, 130, 246, 0.25));
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
  font-size: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.logo-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  transition: transform 0.3s ease;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-name span.ext {
  color: var(--violet-light);
}

.nav-wrapper {
  display: flex;
  align-items: center;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--emerald-accent);
  font-weight: 600;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-accent);
  box-shadow: 0 0 8px var(--emerald-accent);
}

.nav-admin-link {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-admin-link:hover {
  color: var(--violet-light);
}

/* Modern Glowing Pill Buttons */
.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-secondary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary-glow:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-highlight);
  color: #ffffff;
}

/* Hero Section Layout (Ultra-Wide 1450px) */
.hero-section {
  padding: 6rem 1.5rem 4.5rem;
  text-align: center;
  max-width: 1450px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-pill);
  color: var(--violet-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.hero-best-tools-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-pill);
  color: var(--emerald-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  margin-left: 0.5rem;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.hero-slider-wrapper {
  margin-top: 3.5rem;
  background: rgba(13, 17, 33, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.2rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.slider-badge {
  font-weight: 700;
  color: var(--violet-light);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

.hero-slider-track-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-slider-track-container::before,
.hero-slider-track-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 3;
  pointer-events: none;
}

.hero-slider-track-container::before {
  left: 0;
  background: linear-gradient(90deg, #070a16, transparent);
}

.hero-slider-track-container::after {
  right: 0;
  background: linear-gradient(-90deg, #070a16, transparent);
}

.hero-slider-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: heroMarquee 35s linear infinite;
}

.hero-slider-track:hover {
  animation-play-state: paused;
}

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

.hero-slider-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.2rem 0.5rem 0.5rem;
  min-width: 280px;
  text-decoration: none;
  transition: var(--transition);
}

.hero-slider-item:hover {
  background: rgba(139, 92, 246, 0.14);
  border-color: var(--border-purple);
  transform: translateY(-2px);
}

.slider-item-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.slider-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  text-align: left;
}

.slider-item-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.slider-item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-item-price {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--emerald-accent);
}

.slider-arrow {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: var(--transition);
}

.hero-slider-item:hover .slider-arrow {
  color: var(--violet-light);
  transform: translateX(3px);
}

.badge-sparkle {
  color: var(--violet-light);
}

.hero-title {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 820px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 4.5rem;
  flex-wrap: wrap;
}

.hero-cta {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* Reflect.app Central Hero Showcase Frame & Horizon Aura */
.hero-showcase-container {
  position: relative;
  max-width: 1350px;
  margin: 0 auto 4rem;
}

.showcase-glow-beam {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 70px;
  background: radial-gradient(ellipse at 50% 0%, rgba(167, 139, 250, 0.55), rgba(99, 102, 241, 0.25), transparent 70%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 1;
}

.showcase-card-frame {
  background: var(--bg-card);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border-light);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(139, 92, 246, 0.15);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.showcase-card-frame:hover {
  border-color: var(--border-purple);
  box-shadow: var(--shadow-card), var(--shadow-glow-purple);
}

.console-top-bar {
  background: rgba(0, 0, 0, 0.45);
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.console-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.console-dots {
  display: flex;
  gap: 0.45rem;
}

.console-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.console-dots .red { background: #ef4444; }
.console-dots .yellow { background: #f59e0b; }
.console-dots .green { background: #10b981; }

.console-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--emerald-accent);
  font-weight: 600;
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-accent);
  box-shadow: 0 0 10px var(--emerald-accent);
}

.console-body {
  padding: 3rem 2.5rem;
}

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

.console-stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: var(--transition);
}

.console-stat-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-highlight);
}

.console-stat-box .stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.console-stat-box .stat-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* 8-Column Feature Highlights Pill Bar Grid */
.hero-features-bar-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
  max-width: 1350px;
  margin: 0 auto;
}

.feature-pill-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.feature-pill-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-highlight);
  color: #ffffff;
}

.feature-pill-item.highlight-purple {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--border-purple);
  color: var(--violet-light);
}

.feature-pill-item.highlight-emerald {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--emerald-accent);
}

/* Reflect.app Section 1: Conical Beam + AI & Automation Core */
.automation-section {
  padding: 6rem 1.5rem 7rem;
  border-top: 1px solid var(--border-light);
  position: relative;
}

.automation-container {
  max-width: 1450px;
  margin: 0 auto;
  text-align: center;
}

.automation-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.automation-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
}

/* Conical Inverted Pyramid Glowing Light Beam (Iconic Reflect graphic) */
.conical-beam-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding-top: 1rem;
}

.conical-light-beam {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 220px;
  background: conic-gradient(from 180deg at 50% 0%, rgba(167, 139, 250, 0.6), rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0), rgba(167, 139, 250, 0.6));
  clip-path: polygon(0 0, 100% 0, 60% 100%, 40% 100%);
  filter: blur(12px);
  opacity: 0.7;
  pointer-events: none;
}

.ai-prompt-card {
  position: relative;
  z-index: 2;
  background: rgba(13, 17, 33, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-purple);
  border-top: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  text-align: left;
  box-shadow: var(--shadow-card), 0 0 50px rgba(139, 92, 246, 0.2);
}

.ai-prompt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.ai-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--violet-light);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ai-click-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.ai-prompt-text {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.5;
}

.prompt-icon {
  color: var(--violet-light);
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* 5 Feature Cards Grid inspired by Reflect AI */
.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  text-align: left;
}

.ai-feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition);
}

.ai-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-purple);
  box-shadow: var(--shadow-card), var(--shadow-glow-purple);
}

.ai-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--border-purple);
  color: var(--violet-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.ai-card-icon.purple {
  background: rgba(192, 132, 252, 0.15);
  color: #c084fc;
}

.ai-card-icon.emerald {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--emerald-accent);
}

.ai-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.ai-feature-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Reflect.app Section 2: 8 Superpower Cards Grid */
.superpowers-section {
  padding: 6rem 1.5rem 7rem;
  border-top: 1px solid var(--border-light);
  position: relative;
}

.superpowers-container {
  max-width: 1450px;
  margin: 0 auto;
  text-align: center;
}

.section-tag-center {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--violet-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.superpowers-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.superpowers-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.superpowers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  text-align: left;
}

.superpower-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  transition: var(--transition);
}

.superpower-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-purple);
  box-shadow: var(--shadow-card), var(--shadow-glow-purple);
}

.superpower-icon-halo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--border-purple);
  color: var(--violet-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.superpower-icon-halo.purple {
  background: rgba(192, 132, 252, 0.15);
  color: #c084fc;
}

.superpower-icon-halo.emerald {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--emerald-accent);
}

.superpower-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.superpower-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Catalog & Filter Section (Ultra-Wide 1550px Container) */
.catalog-section {
  max-width: 1550px;
  margin: 4rem auto 7rem;
  padding: 0 1.5rem;
}

.catalog-header {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--violet-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

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

.catalog-controls {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.search-box-lg {
  position: relative;
  flex: 1;
  min-width: 320px;
}

.search-icon {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.15rem;
}

.search-input {
  width: 100%;
  padding: 0.9rem 3.5rem 0.9rem 3.2rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--violet-light);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.25);
}

.search-kbd {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 0.18rem 0.5rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.select-saas {
  padding: 0.9rem 1.4rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.select-saas:focus {
  border-color: var(--violet-light);
}

/* Category Filter Tabs */
.niche-tabs-wrapper {
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
  scrollbar-width: none;
}

.niche-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.niche-tabs {
  display: flex;
  gap: 0.8rem;
  white-space: nowrap;
}

.niche-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.niche-tab:hover, .niche-tab.active {
  background: rgba(139, 92, 246, 0.16);
  border-color: var(--border-purple-glow);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.25);
}

/* Premium Ultra-Wide SaaS Project Cards Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.2rem;
}

.saas-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-light);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.saas-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-purple);
  box-shadow: var(--shadow-card), var(--shadow-glow-purple);
}

.card-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}

.card-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.saas-card:hover .card-media-wrapper img {
  transform: scale(1.05);
}

.card-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 20, 0.95), transparent 70%);
}

/* Badges */
.badge-niche {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.badge-cyan { background: rgba(0, 243, 255, 0.15); color: #00f3ff; border: 1px solid rgba(0, 243, 255, 0.3); }
.badge-purple { background: rgba(139, 92, 246, 0.18); color: var(--violet-light); border: 1px solid var(--border-purple); }
.badge-emerald { background: rgba(16, 185, 129, 0.15); color: var(--emerald-accent); border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-magenta { background: rgba(236, 72, 153, 0.15); color: #ec4899; border: 1px solid rgba(236, 72, 153, 0.3); }
.badge-amber { background: rgba(245, 158, 11, 0.15); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); }

.card-sale-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: linear-gradient(135deg, #ec4899, #ef4444);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

.card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.card-heading a {
  color: var(--text-primary);
}

.card-heading a:hover {
  color: var(--violet-light);
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  line-height: 1.5;
}

.tech-pills-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.tech-pill {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-old {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--emerald-accent);
}

.price-val-large {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--emerald-accent);
}

.card-btn-group {
  display: flex;
  gap: 0.6rem;
}

.btn-card-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-card-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-highlight);
  color: #ffffff;
}

.btn-card-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  transition: var(--transition);
}

.btn-card-primary:hover {
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  color: #ffffff;
}

/* Empty State Card */
.empty-state-card {
  grid-column: 1 / -1;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 5rem 2rem;
  text-align: center;
}

.empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border-purple);
  color: var(--violet-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

/* High-Impact Bottom CTA Banner Section */
.bottom-cta-section {
  max-width: 1450px;
  margin: 4rem auto 6rem;
  padding: 0 1.5rem;
}

.bottom-cta-card {
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.25), rgba(13, 17, 33, 0.9) 70%);
  border: 1px solid var(--border-purple);
  border-top: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: var(--radius-xl);
  padding: 4.5rem 2rem;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(139, 92, 246, 0.2);
}

.cta-glow-beam {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet-light), transparent);
}

.cta-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--violet-light);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Single Product Detail Page Layout (Ultra-Wide 1500px) */
.detail-breadcrumb-bar {
  max-width: 1500px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.back-link {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.back-link:hover {
  color: var(--violet-light);
}

.breadcrumb-separator {
  color: var(--text-muted);
}

.breadcrumb-niche {
  color: var(--violet-light);
  font-weight: 500;
}

.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 600;
}

.project-detail-container {
  max-width: 1500px;
  margin: 2.5rem auto 7rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.media-viewer-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-responsive iframe,
.video-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.main-image-wrapper {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.main-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.2rem;
}

.thumb-item {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumb-item:hover, .thumb-item.active {
  border-color: var(--violet-light);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-content-card {
  padding: 3rem;
}

.detail-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.detail-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.architecture-pills-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.arch-pill {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border-purple);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--violet-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.arch-pill.highlight-purple {
  background: rgba(192, 132, 252, 0.12);
  color: #c084fc;
}

.arch-pill.highlight-emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--emerald-accent);
}

/* Description Content Tabs */
.desc-tabs-container {
  display: flex;
  gap: 0.8rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2.2rem;
  padding-bottom: 0.5rem;
  flex-wrap: wrap;
}

.desc-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.desc-tab-btn:hover, .desc-tab-btn.active {
  background: rgba(139, 92, 246, 0.16);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}

.desc-tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.desc-tab-content.active {
  display: block;
}

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

.formatted-desc-body {
  line-height: 1.85;
  font-size: 1rem;
  color: #cbd5e1;
}

.desc-heading-accent {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 2.2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.desc-heading-accent i {
  color: var(--violet-light);
}

.desc-list-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.7rem 0;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.desc-callout-box {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--violet-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.8rem;
  margin: 1.2rem 0;
}

.callout-heading {
  color: var(--violet-light);
  margin-bottom: 0.8rem;
}

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

.feature-item-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.4rem;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  font-weight: 500;
}

.feature-item-card i {
  color: var(--emerald-accent);
  font-size: 1.3rem;
}

.specs-checklist {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.specs-checklist i {
  color: var(--emerald-accent);
  margin-right: 0.4rem;
}

/* Detail Page Sidebar Sticky Buy Panel */
.sticky-buy-panel {
  position: sticky;
  top: 90px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

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

.buy-header-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.price-display-row {
  margin: 0.5rem 0;
}

.buy-submit-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1.05rem;
}

.buy-analytics-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.9rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.buy-guarantee-box {
  background: rgba(16, 185, 129, 0.05);
  border: 1px dashed var(--emerald-accent);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.buy-guarantee-box i {
  color: var(--emerald-accent);
  font-size: 1.8rem;
}

.buy-guarantee-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.buy-perks-list {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.buy-perks-list i {
  color: var(--violet-light);
  margin-right: 0.4rem;
}

/* Lightbox Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 12, 0.94);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-img-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-purple);
  box-shadow: 0 0 70px rgba(139, 92, 246, 0.4);
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
}

/* Minimal Footer Layout (Ultra-Wide 1500px) */
.site-footer {
  border-top: 1px solid var(--border-light);
  background: rgba(3, 5, 12, 0.96);
  padding: 4.5rem 0 0;
  margin-top: 7rem;
  position: relative;
}

.footer-glow-line {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-light), transparent);
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: grid;
  grid-template-columns: 2.5fr 1.2fr 1.4fr;
  gap: 3.5rem;
}

.footer-brand-col .brand-logo {
  margin-bottom: 1.4rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 1.8rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--emerald-accent);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-accent);
  box-shadow: 0 0 10px var(--emerald-accent);
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.4rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav-list a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-nav-list a:hover {
  color: #ffffff;
}

.footer-support-col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
}

.social-icon-row {
  display: flex;
  gap: 0.9rem;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--border-purple);
  color: var(--violet-light);
  transform: translateY(-2px);
}

.social-icon-btn.highlight-emerald:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--emerald-accent);
}

.social-icon-btn.highlight-purple:hover {
  background: rgba(192, 132, 252, 0.15);
  border-color: rgba(192, 132, 252, 0.4);
  color: #c084fc;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 1.8rem 0;
  text-align: center;
}

.footer-bottom-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .site-header {
    top: 0.5rem;
    padding: 0 1rem;
  }
  .header-container {
    padding: 0.6rem 1.2rem;
  }
  .header-status-pill {
    display: none;
  }
  .console-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-detail-container {
    grid-template-columns: 1fr;
  }
  .sticky-buy-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero-section {
    padding-top: 4.5rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions a {
    width: 100%;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
