/* ============================================
   Claude Opus 4.6 — Showcase Website
   ============================================ */

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

:root {
  --bg: #0a0a0f;
  --bg-elevated: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --text: #e8e8ed;
  --text-muted: #9898a8;
  --text-dim: #5a5a6e;
  --accent: #a78bfa;
  --accent-bright: #c4b5fd;
  --accent-deep: #6d28d9;
  --accent-glow: rgba(167, 139, 250, 0.15);
  --gradient-primary: linear-gradient(135deg, #a78bfa 0%, #6d28d9 50%, #4c1d95 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(167,139,250,0.1) 0%, rgba(109,40,217,0.05) 100%);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(167, 139, 250, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code { font-family: 'SF Mono', 'Fira Code', monospace; background: rgba(167,139,250,0.1); padding: 0.15em 0.4em; border-radius: 4px; font-size: 0.9em; color: var(--accent-bright); }

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.nav-logo-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

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

.nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: opacity var(--transition);
}

.nav-cta:hover {
  opacity: 0.9;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.5), transparent 70%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.3), transparent 70%);
  top: 20%;
  right: -10%;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(76, 29, 149, 0.4), transparent 70%);
  bottom: -5%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(167, 139, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-bright);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-title-line {
  display: block;
  color: var(--text);
}

.hero-title-accent {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-bright);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll a {
  color: var(--text-dim);
  transition: color var(--transition);
}

.hero-scroll a:hover {
  color: var(--accent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(109, 40, 217, 0.5);
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  border-color: var(--border-accent);
  background: var(--accent-glow);
}

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

/* --- Sections --- */
.section {
  padding: 7rem 0;
}

.section-dark {
  background: var(--bg-elevated);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Capabilities --- */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}

.capability-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.capability-card-featured {
  grid-column: span 3;
  background: var(--gradient-subtle);
  border-color: var(--border-accent);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.capability-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.capability-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

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

.capability-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

.capability-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.detail-chip {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.detail-chip-active {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent-bright);
}

.detail-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-left: 0.5rem;
}

/* --- Benchmarks --- */
.benchmarks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.benchmark-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}

.benchmark-card:hover {
  border-color: var(--border-accent);
}

.benchmark-header {
  margin-bottom: 1.5rem;
}

.benchmark-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.benchmark-domain {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Bar Chart */
.benchmark-bars {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.benchmark-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
  margin-bottom: 0.35rem;
}

.benchmark-bar-label span:first-child {
  font-weight: 600;
}

.benchmark-bar-value {
  color: var(--text-dim);
  font-size: 0.8rem;
}

.benchmark-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  overflow: hidden;
}

.benchmark-bar-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.benchmark-bar-fill.animate {
  width: var(--target-width);
}

.benchmark-bar-fill-primary { background: var(--gradient-primary); }
.benchmark-bar-fill-secondary { background: rgba(255,255,255,0.15); }
.benchmark-bar-fill-tertiary { background: rgba(255,255,255,0.08); }

/* Donut */
.benchmark-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benchmark-donut {
  position: relative;
  width: 120px;
  height: 120px;
}

.benchmark-donut svg {
  width: 100%;
  height: 100%;
}

.benchmark-donut-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benchmark-donut-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-bright);
}

.benchmark-donut-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.benchmark-donut-detail {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Comparison Bars (vertical) */
.benchmark-comparison {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5rem;
  height: 180px;
  padding-top: 1rem;
}

.benchmark-compare-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.benchmark-compare-bar {
  width: 64px;
  height: var(--height);
  background: var(--gradient-primary);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.6rem;
  transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.benchmark-compare-bar-dim {
  background: rgba(255,255,255,0.1);
}

.benchmark-compare-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

.benchmark-compare-bar-dim .benchmark-compare-value {
  color: var(--text-muted);
}

.benchmark-compare-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Highlight */
.benchmark-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-accent);
}

.benchmark-highlight-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.15);
  border-radius: 8px;
}

.benchmark-highlight-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.benchmark-highlight-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.benchmark-highlight-text span {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* --- Agent Teams --- */
.teams-architecture {
  max-width: 800px;
  margin: 0 auto 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.teams-arch-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  min-width: 120px;
}

.teams-arch-node:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.teams-arch-lead {
  background: var(--gradient-subtle);
  border-color: var(--border-accent);
  padding: 1.5rem 3rem;
}

.teams-arch-node-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.teams-arch-node-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.teams-arch-node-title {
  font-weight: 700;
  font-size: 0.9rem;
}

.teams-arch-node-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

.teams-arch-connections {
  display: flex;
  justify-content: center;
  gap: 3rem;
  height: 40px;
  position: relative;
  width: 100%;
}

.teams-arch-line {
  width: 2px;
  height: 100%;
  background: var(--border-accent);
  position: relative;
}

.teams-arch-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.teams-arch-line-1::after { animation-delay: 0s; }
.teams-arch-line-2::after { animation-delay: 0.5s; }
.teams-arch-line-3::after { animation-delay: 1s; }
.teams-arch-line-4::after { animation-delay: 1.5s; }

@keyframes pulse-dot {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(0.8); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.teams-arch-workers {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.teams-arch-taskbar {
  width: 100%;
  max-width: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1rem;
}

.teams-arch-taskbar-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.teams-arch-tasks {
  padding: 0.5rem;
}

.teams-arch-task {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.teams-arch-task-done {
  color: var(--text-dim);
  text-decoration: line-through;
}

.task-check {
  color: #34d399;
  font-weight: 700;
  font-size: 0.9rem;
}

.task-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.task-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  margin: 0 3px;
}

.teams-arch-task-active {
  color: var(--text);
  background: rgba(167, 139, 250, 0.05);
}

/* Features Grid */
.teams-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.teams-feature {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.teams-feature:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.teams-feature-number {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(167, 139, 250, 0.15);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.teams-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.teams-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Use Cases */
.teams-usecases {
  text-align: center;
}

.teams-usecases-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.teams-usecase-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.teams-usecase-card {
  padding: 2rem;
  background: var(--gradient-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  text-align: left;
  transition: all var(--transition);
}

.teams-usecase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(109, 40, 217, 0.1);
}

.teams-usecase-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.teams-usecase-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.teams-usecase-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Specs --- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.spec-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--accent-bright);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--border);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 0.65rem 0;
  font-size: 0.875rem;
}

.spec-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.spec-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.spec-check {
  color: #34d399;
  font-weight: 700;
}

.spec-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--accent-bright);
  font-weight: 600;
}

/* --- CTA --- */
.section-cta {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(109, 40, 217, 0.12), transparent 70%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-logo {
  color: var(--accent);
}

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

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

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

.footer-note {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* --- Mobile --- */
@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .capability-card-featured {
    grid-column: span 2;
  }
  .teams-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .capabilities-grid,
  .benchmarks-grid,
  .teams-features,
  .teams-usecase-cards,
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .capability-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .teams-arch-workers {
    gap: 0.75rem;
  }

  .teams-arch-node {
    min-width: 90px;
    padding: 1rem;
  }

  .teams-arch-connections {
    gap: 1.5rem;
  }

  .benchmark-comparison {
    gap: 1.5rem;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; justify-content: center; }
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
