:root {
  --bg: #020617;
  --surface: #0f172a;
  --surface-2: #1e293b;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.12);
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
}

.font-display {
  font-family: "Urbanist", system-ui, sans-serif;
}

.glass {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.72) 0%,
    rgba(15, 23, 42, 0.45) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.glass-accent {
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.08), 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-gradient {
  background: radial-gradient(
      ellipse 80% 60% at 50% -20%,
      rgba(245, 158, 11, 0.18),
      transparent 55%
    ),
    var(--bg);
}

.cable-stage {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cable-svg {
  max-width: min(420px, 90vw);
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }
}

.bento-span-2 {
  grid-column: span 2;
}

.bento-span-2-row {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tall {
  grid-row: span 2;
}

.btn-amber {
  background: linear-gradient(180deg, #fbbf24 0%, var(--accent) 100%);
  color: #0f172a;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-amber:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.btn-outline:hover {
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--accent);
}
