/* ===== SynapsArt — VSCode Dark Theme ===== */

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

:root {
  /* VSCode Dark+ palette */
  --vsc-bg: #1e1e1e;
  --vsc-bg-sidebar: #252526;
  --vsc-bg-tabs: #2d2d30;
  --vsc-bg-input: #3c3c3c;
  --vsc-bg-hover: #2a2d2e;
  --vsc-bg-selection: #264f78;
  --vsc-accent: #007acc;
  --vsc-accent-bright: #0098ff;

  /* Syntax colors */
  --syn-blue: #569cd6;
  --syn-green: #4ec9b0;
  --syn-yellow: #dcdcaa;
  --syn-orange: #ce9178;
  --syn-purple: #c586c0;
  --syn-cyan: #9cdcfe;
  --syn-red: #f44747;
  --syn-comment: #6a9955;

  /* Brand colors (from logo) */
  --brand-orange: #FFA726;
  --brand-cyan: #00BCD4;
  --brand-yellow: #FFC107;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-cyan) 100%);
  --gradient-vsc: linear-gradient(135deg, var(--vsc-accent) 0%, var(--syn-green) 100%);
  --gradient-glow: linear-gradient(135deg, rgba(0,122,204,0.15) 0%, rgba(78,201,176,0.1) 100%);

  /* Semantic */
  --bg-primary: #1b2026;
  --bg-secondary: #1e1e1e;
  --bg-card: #252526;
  --bg-card-hover: #2d2d30;
  --text-primary: #d4d4d4;
  --text-secondary: #808080;
  --text-bright: #e8e8e8;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 122, 204, 0.4);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 122, 204, 0.2);

  --radius: 6px;
  --radius-lg: 10px;
}

/* ===== Reset & Base ===== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--vsc-accent-bright);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--syn-cyan);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.accent {
  color: var(--syn-green);
}

.gradient-text {
  background: var(--gradient-vsc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Code font utility */
.mono {
  font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}

/* ===== Animated background grid ===== */

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0,122,204,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,122,204,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'JetBrains Mono', monospace;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  gap: 0.5rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.05) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--vsc-accent);
  color: var(--text-bright);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--vsc-accent-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  color: var(--text-bright);
}

.btn-secondary {
  background: transparent;
  color: var(--syn-green);
  border: 1px solid var(--syn-green);
}

.btn-secondary:hover {
  background: rgba(78, 201, 176, 0.1);
  color: var(--text-bright);
  transform: translateY(-2px);
  border-color: var(--syn-green);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  border-radius: var(--radius);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ===== Header — VSCode Title Bar style ===== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 30, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--vsc-accent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  gap: 2rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-bright);
  flex-shrink: 0;
}

.header-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
}

.header-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
}

/* VSCode-style tab indicator on header logo */
.header-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
}

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

.nav a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  position: relative;
}

.nav a:hover {
  color: var(--text-bright);
  background: rgba(255,255,255,0.04);
}

.nav a::before {
  content: '>';
  opacity: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--vsc-accent);
  margin-right: 0.25rem;
  transition: opacity 0.2s;
}

.nav a:hover::before {
  opacity: 1;
}

.header-actions {
  flex-shrink: 0;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all 0.3s;
}

.burger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */

.hero {
  padding: 100px 0 80px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glows */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 122, 204, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 201, 176, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-bright);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

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

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  text-align: center;
  transition: border-color 0.3s;
  position: relative;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-vsc);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat:hover::before {
  opacity: 1;
}

.stat:hover {
  border-color: var(--border-hover);
}

.stat-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--syn-yellow);
  margin-bottom: 0.25rem;
  font-family: 'JetBrains Mono', monospace;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Logo showcase — blending with bg */
.logo-showcase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 2rem;
}

.showcase-logo {
  max-width: 520px;
  border-radius: 0;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(0, 122, 204, 0.25));
}

/* Glow ring around logo */
.logo-showcase::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,204,0.12) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite alternate;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}

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

@keyframes pulse-glow {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* ===== Sections ===== */

.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-bright);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--vsc-accent);
}


/* ===== About ===== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text .lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-bright);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Chat demo — styled like VSCode Output panel */
.chat-demo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
}

.chat-bubble {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  line-height: 1.5;
  max-width: 90%;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: relative;
}

.chat-bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-bubble.user {
  background: rgba(0, 122, 204, 0.15);
  color: var(--syn-cyan);
  align-self: flex-end;
  border-left: 3px solid var(--vsc-accent);
  font-style: normal;
  transition-delay: 0s;
}

.chat-bubble.user::before {
  content: '> ';
  color: var(--vsc-accent);
  font-weight: 700;
}

.chat-bubble.ai {
  background: var(--bg-card);
  color: var(--text-primary);
  border-left: 3px solid var(--syn-green);
  align-self: flex-start;
  transition-delay: 0.4s;
}

.chat-bubble.ai::before {
  content: '< ';
  color: var(--syn-green);
  font-weight: 700;
}

.chat-bubble.status {
  background: rgba(78, 201, 176, 0.08);
  color: var(--syn-green);
  border: 1px solid rgba(78, 201, 176, 0.2);
  text-align: center;
  align-self: center;
  font-weight: 500;
  transition-delay: 0.8s;
}

.chat-bubble.status::before {
  content: '// ';
  color: var(--syn-comment);
}

/* ===== Steps — like breadcrumbs / pipeline ===== */

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
  flex: 0 0 auto;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--vsc-bg-tabs);
  border: 2px solid var(--vsc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vsc-accent-bright);
  margin-bottom: 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  transition: all 0.3s;
}

.step:hover .step-number {
  background: var(--vsc-accent);
  color: var(--text-bright);
  box-shadow: var(--shadow-glow);
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step-arrow {
  width: 40px;
  height: 2px;
  background: var(--vsc-bg-tabs);
  margin-top: 24px;
  position: relative;
  flex-shrink: 0;
}

.step-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--vsc-accent);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* ===== Cards Grid ===== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.feature-card,
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* VSCode-like left border accent on hover */
.feature-card::before,
.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--vsc-accent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.feature-card:hover,
.case-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  background: var(--bg-card-hover);
}

.feature-icon,
.case-icon {
  margin-bottom: 0.875rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  color: var(--vsc-accent);
}

.feature-icon svg,
.case-icon svg {
  width: 40px;
  height: 40px;
}

.feature-card h3,
.case-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.625rem;
}

.feature-card p,
.case-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== Interactive particles canvas ===== */

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== CTA Section ===== */

.cta-section {
  background: var(--bg-primary);
}

.cta-block {
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 122, 204, 0.04);
  border: 1px solid rgba(0, 122, 204, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-vsc);
}

.cta-block h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 1rem;
}

.cta-block p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Command Palette (interactive element) ===== */

/* Command palette trigger — prominent under logo */
.command-palette-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: rgba(0, 122, 204, 0.08);
  border: 1px solid rgba(0, 122, 204, 0.3);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.command-palette-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(0,122,204,0.15), rgba(78,201,176,0.1));
  opacity: 0;
  transition: opacity 0.3s;
}

.command-palette-trigger:hover {
  border-color: var(--vsc-accent);
  color: var(--text-bright);
  box-shadow: 0 0 20px rgba(0, 122, 204, 0.2), 0 0 40px rgba(0, 122, 204, 0.1);
  transform: translateY(-2px);
}

.command-palette-trigger:hover::before {
  opacity: 1;
}

.command-palette-trigger svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.command-palette-trigger span {
  position: relative;
  z-index: 1;
}

.cp-keys {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.25rem;
  position: relative;
  z-index: 1;
}

.cp-keys span {
  color: var(--text-secondary);
  font-size: 0.7rem;
}

.command-palette-trigger kbd {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* Subtle pulse animation for the trigger */
.hero-cp-trigger {
  animation: trigger-pulse 3s ease-in-out infinite;
}

@keyframes trigger-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 122, 204, 0); }
  50% { box-shadow: 0 0 0 8px rgba(0, 122, 204, 0.08); }
}

/* Command Palette Modal */
.command-palette {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  background: rgba(0, 0, 0, 0.5);
}

.command-palette.is-open {
  display: flex;
}

.command-palette-box {
  width: 100%;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.6);
  animation: palette-enter 0.15s ease-out;
}

@keyframes palette-enter {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.command-palette-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--vsc-bg-input);
  border: none;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-bright);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  outline: none;
}

.command-palette-input::placeholder {
  color: var(--text-secondary);
}

.command-palette-list {
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
}

.command-palette-item {
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: background 0.1s;
  color: var(--text-primary);
  font-size: 0.85rem;
}

.command-palette-item:hover,
.command-palette-item.is-active {
  background: rgba(0, 122, 204, 0.15);
}

.command-palette-item .cp-icon {
  color: var(--vsc-accent);
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}

.command-palette-item .cp-label {
  flex: 1;
}

.command-palette-item .cp-shortcut {
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-family: 'JetBrains Mono', monospace;
}

/* ===== Minimap (decorative) ===== */

.minimap {
  position: fixed;
  right: 8px;
  top: 60px;
  width: 40px;
  bottom: 10px;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.minimap.is-visible {
  opacity: 0.3;
}

.minimap-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.minimap-line {
  height: 2px;
  border-radius: 1px;
  background: var(--text-secondary);
  opacity: 0.3;
}

.minimap-line.accent {
  background: var(--vsc-accent);
  opacity: 0.6;
}

/* ===== Footer ===== */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.footer-logo {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  object-fit: cover;
}

.footer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
}

.footer-desc {
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--vsc-accent-bright);
}

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

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
}

/* ===== Scroll Reveal ===== */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Status bar (bottom) ===== */

.statusbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: var(--vsc-accent);
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.9);
  z-index: 999;
  gap: 1rem;
}

.statusbar-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.statusbar-spacer {
  flex: 1;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-subtitle {
    max-width: 100%;
  }

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

  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }

  .showcase-logo {
    max-width: 380px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .step {
    max-width: 100%;
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
  }

  .step-number {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .step-arrow {
    display: none;
  }

  .minimap {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 80px 1.5rem 2rem;
    gap: 0.5rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-color);
    z-index: 999;
  }

  .nav.is-open {
    right: 0;
  }

  .nav a {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .burger {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding: 80px 0 60px;
  }

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

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
  }

  .stat {
    padding: 0.875rem 0.5rem;
  }

  .stat-value {
    font-size: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

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

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

  .container {
    padding: 0 1.25rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .cta-block {
    padding: 2.5rem 1.25rem;
  }

  .cta-block h2 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 0.625rem 1.25rem;
  }

  .btn-lg {
    padding: 0.875rem 2rem;
  }

  .statusbar {
    display: none;
  }

}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    padding: 0.625rem 0.875rem;
  }

  .stat-value {
    margin-bottom: 0;
    white-space: nowrap;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .command-palette-box {
    margin: 0 1rem;
  }
}
