/* ========================================
   Lerim Landing Page
   Vercel/Linear-inspired dark aesthetic
   ======================================== */

/* Variables */
:root {
  --bg: #0a0f1e;
  --bg-subtle: #111827;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --accent-blue: #3b82f6;
  --accent-teal: #10b981;
  --accent-gradient: linear-gradient(135deg, #3b82f6, #10b981);

  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  --container: 1200px;
  --section-gap: 140px;
  --radius: 12px;
  --radius-lg: 16px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* Dot grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient gradient blurs */
body::after {
  content: '';
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: rgba(10, 15, 30, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

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

.nav-github {
  display: flex;
  align-items: center;
  color: var(--text-secondary) !important;
  transition: color 0.2s;
}

.nav-github:hover {
  color: var(--text) !important;
}

/* ========== Hero Section ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 32px 60px;
  position: relative;
  z-index: 1;
  gap: 40px;
}

.hero-left {
  flex: 0 0 42%;
  max-width: 520px;
  animation: fade-up 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}

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

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

.hero-ctas {
  display: flex;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent-gradient);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--bg-card);
}

/* ========== Connection Diagram (Hero Right) ========== */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-up 1s ease-out 0.2s both;
}

.connection-diagram {
  position: relative;
  width: 520px;
  height: 440px;
}

.connection-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Central Hub */
.hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  animation: hub-pulse 3s ease-in-out infinite;
}

.hub-ring-2 {
  inset: -24px;
  border-color: rgba(16, 185, 129, 0.15);
  animation-delay: 1.5s;
}

@keyframes hub-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hub-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.4)) drop-shadow(0 0 60px rgba(16, 185, 129, 0.2));
  position: relative;
  z-index: 2;
}



/* Agent Nodes */
.agent-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 5;
  opacity: 0;
  animation: agent-appear 0.5s ease-out forwards;
}

/* Stagger agent appearances (skip svg child, hub children) */
.agent-node[data-agent="claude"]   { animation-delay: 0.3s; }
.agent-node[data-agent="cursor"]   { animation-delay: 0.4s; }
.agent-node[data-agent="copilot"]  { animation-delay: 0.5s; }
.agent-node[data-agent="codex"]    { animation-delay: 0.6s; }
.agent-node[data-agent="windsurf"] { animation-delay: 0.7s; }
.agent-node[data-agent="aider"]    { animation-delay: 0.8s; }
.agent-node[data-agent="vscode"]   { animation-delay: 0.9s; }
.agent-node[data-agent="cline"]    { animation-delay: 1.0s; }
.agent-node[data-agent="opencode"] { animation-delay: 1.1s; }
.agent-node[data-agent="zed"]      { animation-delay: 1.2s; }
.agent-node[data-agent="amp"]      { animation-delay: 1.3s; }
.agent-node[data-agent="kiro"]     { animation-delay: 1.4s; }

@keyframes agent-appear {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.agent-tile {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: default;
}

.agent-tile svg {
  width: 24px;
  height: 24px;
}

/* Image-based agent logos */
.agent-tile-img {
  overflow: hidden;
  padding: 0;
}

.agent-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

/* SVG logos loaded via img need padding so the icon doesn't bleed to edges */
.agent-tile-img-padded {
  padding: 8px;
}

.agent-tile-img-padded img {
  border-radius: 4px;
  object-fit: contain;
}

.agent-tile:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Subtle float animation for agent nodes */
.agent-node[data-agent="claude"]   { animation: agent-appear 0.5s ease-out forwards, agent-float 6s ease-in-out 1.5s infinite; }
.agent-node[data-agent="cursor"]   { animation: agent-appear 0.5s ease-out forwards, agent-float 7s ease-in-out 2s infinite; }
.agent-node[data-agent="copilot"]  { animation: agent-appear 0.5s ease-out forwards, agent-float 5.5s ease-in-out 1.8s infinite; }
.agent-node[data-agent="codex"]    { animation: agent-appear 0.5s ease-out forwards, agent-float 6.5s ease-in-out 2.2s infinite; }
.agent-node[data-agent="windsurf"] { animation: agent-appear 0.5s ease-out forwards, agent-float 7.5s ease-in-out 1.6s infinite; }
.agent-node[data-agent="aider"]    { animation: agent-appear 0.5s ease-out forwards, agent-float 5s ease-in-out 2.4s infinite; }
.agent-node[data-agent="vscode"]   { animation: agent-appear 0.5s ease-out forwards, agent-float 6.8s ease-in-out 1.9s infinite; }
.agent-node[data-agent="cline"]    { animation: agent-appear 0.5s ease-out forwards, agent-float 5.8s ease-in-out 2.1s infinite; }
.agent-node[data-agent="opencode"] { animation: agent-appear 0.5s ease-out forwards, agent-float 7.2s ease-in-out 2.3s infinite; }
.agent-node[data-agent="zed"]      { animation: agent-appear 0.5s ease-out forwards, agent-float 6.2s ease-in-out 1.7s infinite; }
.agent-node[data-agent="amp"]      { animation: agent-appear 0.5s ease-out forwards, agent-float 5.4s ease-in-out 2.5s infinite; }
.agent-node[data-agent="kiro"]     { animation: agent-appear 0.5s ease-out forwards, agent-float 6.1s ease-in-out 2.0s infinite; }

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

.agent-name {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ========== Problem Statement ========== */
.problem {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

.problem .container {
  max-width: 700px;
  text-align: center;
}

.problem-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 400;
}

.problem-text strong {
  color: var(--text);
  font-weight: 600;
}

.problem-answer {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== Section Common ========== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-teal);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

/* ========== How It Works ========== */
.how-it-works {
  padding: var(--section-gap) 24px;
  position: relative;
  z-index: 1;
}

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

.step-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-teal);
  margin-bottom: 20px;
}

.step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.step-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--text-secondary);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.step-code {
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.step-code code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-teal);
}

/* ========== Features ========== */
.features {
  padding: var(--section-gap) 24px;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

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

.feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent-blue);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

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

.feature-card code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  color: var(--accent-teal);
}

/* ========== Use It (Skill + CLI) ========== */
.use-it {
  padding: var(--section-gap) 24px;
  position: relative;
  z-index: 1;
}

.use-it-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.use-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.use-card-primary {
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.03);
}

.use-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-teal);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.use-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.use-card > p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.use-terminal {
  margin-bottom: 16px;
}

.use-note {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .use-it-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CLI Showcase (legacy - kept for terminal styles) ========== */
.cli-showcase {
  padding: var(--section-gap) 24px;
  position: relative;
  z-index: 1;
}

.terminal, .install-terminal {
  max-width: 680px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d1117;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.terminal-dots span:first-child { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }

.terminal-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.terminal-body {
  padding: 20px 20px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.8;
}

.terminal-line {
  display: flex;
  gap: 8px;
}

.t-prompt {
  color: var(--accent-teal);
  user-select: none;
}

.t-cmd {
  color: var(--text);
}

.t-output {
  color: var(--text-muted);
}

.t-highlight {
  color: var(--accent-teal);
}

.t-dim {
  color: var(--text-muted);
  opacity: 0.7;
}

.t-blank {
  height: 1.8em;
}

/* ========== Memory Layout ========== */
.memory-layout {
  padding: var(--section-gap) 24px;
  position: relative;
  z-index: 1;
}

.layout-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
}

.layout-text {
  flex: 1;
}

.layout-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.layout-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.layout-caption code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-teal);
  padding: 3px 8px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 4px;
}

.layout-code {
  flex: 0 0 auto;
}

.code-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d1117;
  min-width: 320px;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.code-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.code-path {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.code-content {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
}

.c-dir { color: var(--accent-blue); }
.c-file { color: var(--text); }
.c-comment { color: var(--text-muted); }

/* ========== Install ========== */
.install {
  padding: var(--section-gap) 24px;
  position: relative;
  z-index: 1;
}

.install-block {
  max-width: 480px;
  margin: 0 auto;
}

.install-terminal .terminal-body {
  padding: 16px 20px;
}

.install-terminal .terminal-line + .terminal-line {
  margin-top: 4px;
}

.install-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.7;
}

.install-note code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-teal);
  padding: 2px 8px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 4px;
}

/* ========== Footer ========== */
.footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--text);
}

/* ========== Animations ========== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ========== SVG Connection Lines ========== */
.connection-line {
  fill: none;
  stroke: url(#line-gradient);
  stroke-width: 1;
  opacity: 0.3;
}

.connection-particle {
  fill: var(--accent-teal);
  filter: url(#particle-glow);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    text-align: center;
    gap: 48px;
  }

  .hero-left {
    flex: none;
    max-width: 560px;
  }

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

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

  .hero-right {
    width: 100%;
    max-width: 480px;
  }

  .connection-diagram {
    width: 100%;
    max-width: 440px;
    height: 380px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .code-block {
    min-width: auto;
    width: 100%;
    max-width: 400px;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 100px;
  }

  .nav {
    padding: 12px 16px;
  }

  .nav-links a:not(.nav-github) {
    display: none;
  }

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

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

  .problem-text, .problem-answer {
    font-size: 1.2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .agent-name {
    display: none;
  }

  .agent-tile {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .agent-tile svg {
    width: 20px;
    height: 20px;
  }

  .hub {
    width: 60px;
    height: 60px;
  }

  .hub-logo {
    width: 48px;
    height: 48px;
  }
}

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

  .section-header h2 {
    font-size: 1.6rem;
  }

  .layout-text h2 {
    font-size: 1.6rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  .connection-diagram {
    max-width: 320px;
    height: 280px;
  }
}
