/* ============================================
   AI EXPLOITS HUB — Landing
   Warm modern design with 3D animations
   ============================================ */

:root {
  /* Light/warm palette */
  --bg: #FBF8F4;
  --bg-2: #F4EFE8;
  --bg-3: #ECE6DC;
  --surface: #ffffff;
  --ink: #1A1814;
  --ink-2: #4A453E;
  --ink-3: #807A70;
  --ink-4: #B5AFA5;
  --line: rgba(26, 24, 20, 0.08);
  --line-2: rgba(26, 24, 20, 0.14);

  /* Brand colors — warm gradient */
  --c-coral: #FF6B6B;
  --c-orange: #FF9F45;
  --c-amber: #FFB347;
  --c-violet: #9B7BFF;
  --c-mint: #4ED7B7;
  --c-sky: #7AB8FF;
  --c-rose: #FF8FA3;

  /* Category accents */
  --ai: #7AB8FF;
  --abuses: #FF6B6B;
  --tools: #FFB347;
  --bin: #9B7BFF;

  /* Severity */
  --crit: #E14B4B;
  --high: #FF9F45;

  /* Gradients */
  --grad-warm: linear-gradient(135deg, #FF6B6B 0%, #FFB347 50%, #9B7BFF 100%);
  --grad-coral: linear-gradient(135deg, #FF6B6B, #FF8FA3);
  --grad-amber: linear-gradient(135deg, #FFB347, #FF9F45);
  --grad-violet: linear-gradient(135deg, #9B7BFF, #7AB8FF);
  --grad-mint: linear-gradient(135deg, #4ED7B7, #7AB8FF);

  --shadow-1: 0 1px 2px rgba(26,24,20,0.04), 0 4px 12px rgba(26,24,20,0.04);
  --shadow-2: 0 4px 12px rgba(26,24,20,0.06), 0 16px 40px rgba(26,24,20,0.08);
  --shadow-3: 0 12px 32px rgba(26,24,20,0.10), 0 32px 80px rgba(26,24,20,0.10);
  --shadow-warm: 0 24px 60px -12px rgba(255, 107, 107, 0.25);
  --radius-s: 10px;
  --radius: 16px;
  --radius-l: 24px;
  --radius-xl: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--c-coral);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img, svg { display: block; max-width: 100%; }

.serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== CURSOR GLOW ===================== */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, rgba(155, 123, 255, 0.08) 35%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  filter: blur(20px);
  opacity: 0;
}

@media (hover: hover) {
  .cursor-glow.active { opacity: 1; }
}

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(251, 248, 244, 0.7);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  padding: 10px 0;
  background: rgba(251, 248, 244, 0.85);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 107, 0.25));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover .brand-mark {
  transform: rotate(45deg) scale(1.1);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--grad-warm);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--ink); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 4px 16px rgba(26,24,20,0.18), 0 0 0 0 rgba(255,107,107,0);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-warm);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.35);
  color: #fff;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-soft {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-1);
}

.btn-soft:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.btn[disabled], .btn-soft[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn-link {
  display: inline-block;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 12px;
  text-align: center;
  width: 100%;
  transition: color 0.2s;
}

.btn-link:hover { color: var(--ink); }

.link {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px dashed var(--ink-3);
  transition: border-color 0.2s;
}

.link:hover { border-color: var(--ink); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}

.blob-1 {
  width: 520px;
  height: 520px;
  background: var(--c-coral);
  top: -120px;
  left: -120px;
  animation: blob-float 22s ease-in-out infinite;
}

.blob-2 {
  width: 480px;
  height: 480px;
  background: var(--c-amber);
  top: 30%;
  right: -100px;
  opacity: 0.5;
  animation: blob-float 28s ease-in-out infinite reverse;
}

.blob-3 {
  width: 420px;
  height: 420px;
  background: var(--c-violet);
  bottom: -80px;
  left: 30%;
  opacity: 0.4;
  animation: blob-float 30s ease-in-out infinite;
  animation-delay: -10s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -50px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,24,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,24,20,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  opacity: 0.7;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: var(--shadow-1);
  animation: pill-bounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pill-bounce {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-coral);
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--c-coral);
  animation: ping 2s ease-out infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3); opacity: 0; }
}

.hero-title {
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line > * {
  display: inline-block;
}

.hero-title em.serif {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum';
  line-height: 1;
}

.meta-suffix {
  font-size: 0.6em;
  color: var(--ink-3);
}

.meta-label {
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ===================== HERO 3D SCENE ===================== */
.hero-scene {
  position: relative;
  z-index: 1;
  perspective: 1400px;
  height: 540px;
}

.float-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-3);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
}

.card-app {
  width: 110%;
  top: 30px;
  left: 0;
  z-index: 2;
  overflow: hidden;
  animation: float-y 7s ease-in-out infinite;
  transform: rotateY(-12deg) rotateX(6deg);
}

@keyframes float-y {
  0%, 100% { transform: rotateY(-12deg) rotateX(6deg) translateY(0); }
  50% { transform: rotateY(-12deg) rotateX(6deg) translateY(-12px); }
}

.fc-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.fc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.fc-dot.r { background: #FF6B6B; }
.fc-dot.y { background: #FFB347; }
.fc-dot.g { background: #4ED7B7; }

.fc-title {
  margin-left: auto;
  margin-right: auto;
  font-size: 11px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
}

.fc-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 320px;
}

.fc-side {
  background: var(--bg-2);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--line);
}

.fc-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}

.fc-nav.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-1);
}

.fc-nav em {
  margin-left: auto;
  background: var(--c-coral);
  color: #fff;
  font-style: normal;
  padding: 1px 6px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
}

.fc-feed {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-row {
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 0.3s;
}

.fc-row.crit { border-left: 3px solid var(--crit); }
.fc-row.high { border-left: 3px solid var(--high); }

.fc-row p {
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  margin: 4px 0;
  line-height: 1.4;
}

.fc-row small {
  font-size: 10px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
}

.fc-tag {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: 'JetBrains Mono', monospace;
}

.fc-tag.crit {
  background: rgba(225, 75, 75, 0.12);
  color: var(--crit);
}

.fc-tag.high {
  background: rgba(255, 159, 69, 0.16);
  color: var(--high);
}

/* Floating stat cards */
.card-stat {
  padding: 18px 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}

.card-stat small {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-big {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.stat-bar {
  height: 6px;
  background: var(--bg-3);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 4px;
}

.stat-bar span {
  display: block;
  height: 100%;
  background: var(--grad-warm);
  border-radius: 100px;
  animation: bar-fill 1.5s ease-out;
}

@keyframes bar-fill {
  from { width: 0 !important; }
}

.stat-trend {
  color: var(--c-mint) !important;
  font-weight: 600;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: 'JetBrains Mono', monospace;
}

.float-stat-1 {
  top: 0;
  right: -10px;
  animation: float-y 6s ease-in-out infinite;
  animation-delay: -2s;
  transform: rotate(2deg);
}

.float-stat-2 {
  bottom: 30px;
  right: 20px;
  animation: float-y 8s ease-in-out infinite;
  transform: rotate(-3deg);
}

.sparkline { height: 32px; margin-top: 2px; }
.sparkline svg { width: 100%; height: 100%; }

.card-cve {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 4;
  bottom: 100px;
  left: -40px;
  background: var(--ink);
  color: #fff;
  border: none;
  animation: float-y 5.5s ease-in-out infinite;
  animation-delay: -1s;
  transform: rotate(-5deg);
}

.cve-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--c-coral);
  color: #fff;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: 'JetBrains Mono', monospace;
  width: fit-content;
}

.cve-id {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(255,255,255,0.7);
}

.cve-score {
  font-size: 28px;
  font-weight: 700;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating shapes */
.shape {
  position: absolute;
  pointer-events: none;
}

.shape-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-coral);
  top: -10px;
  left: 60%;
  filter: blur(0.5px);
  opacity: 0.85;
  animation: shape-spin 18s linear infinite, float-y 5s ease-in-out infinite;
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.35);
}

.shape-ring {
  width: 80px;
  height: 80px;
  border: 4px solid;
  border-image: var(--grad-violet) 1;
  border-radius: 50%;
  bottom: -20px;
  left: 30%;
  animation: shape-spin 22s linear infinite reverse;
}

.shape-cube {
  width: 56px;
  height: 56px;
  position: absolute;
  bottom: 60px;
  right: -20px;
  transform-style: preserve-3d;
  animation: cube-spin 14s linear infinite;
}

.cube-face {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 8px;
}

.cube-front { background: var(--c-amber); transform: translateZ(28px); }
.cube-back { background: var(--c-coral); transform: rotateY(180deg) translateZ(28px); }
.cube-right { background: var(--c-orange); transform: rotateY(90deg) translateZ(28px); }
.cube-left { background: var(--c-rose); transform: rotateY(-90deg) translateZ(28px); }
.cube-top { background: var(--c-violet); transform: rotateX(90deg) translateZ(28px); }
.cube-bottom { background: var(--c-mint); transform: rotateX(-90deg) translateZ(28px); }

@keyframes cube-spin {
  0% { transform: rotateX(0) rotateY(0); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes shape-spin {
  to { transform: rotate(360deg); }
}

/* ===================== TICKER ===================== */
.ticker-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface), transparent);
}

.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
  padding-right: 28px;
  animation: ticker 40s linear infinite;
}

.ticker-track span {
  font-size: 18px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.ticker-track span:nth-child(odd) {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--ink);
}

@keyframes ticker {
  to { transform: translateX(-100%); }
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-soft {
  background: var(--bg-2);
}

.sec-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.sec-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: var(--shadow-1);
}

.sec-header h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 16px;
}

.sec-header h2 em.serif {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-header p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ===================== BENTO FEATURES ===================== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}

.bento-card {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 50%, rgba(255,107,107,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--line-2);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-1 { grid-column: span 3; grid-row: span 2; }
.bento-2 { grid-column: span 3; }
.bento-3 { grid-column: span 2; }
.bento-4 { grid-column: span 2; }
.bento-5 { grid-column: span 2; }
.bento-6 { grid-column: span 2; }
.bento-7 { grid-column: span 4; }

.bc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transform: translateZ(20px);
}

.bc-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
}

.icon-search { background: var(--grad-coral); }
.icon-classify { background: var(--grad-amber); }
.icon-realtime { background: var(--grad-violet); }
.icon-export { background: var(--grad-mint); }
.icon-collections { background: linear-gradient(135deg, var(--c-violet), var(--c-coral)); }
.icon-privacy { background: linear-gradient(135deg, var(--c-mint), var(--c-amber)); }
.icon-offline { background: linear-gradient(135deg, var(--c-amber), var(--c-violet)); }

.bento-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.bento-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

.bc-demo {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.demo-search > span {
  color: var(--c-coral);
  font-size: 16px;
}

.demo-search code {
  color: var(--ink);
  font-family: inherit;
}

.caret {
  color: var(--c-coral);
  animation: blink 1s steps(2) infinite;
  font-style: normal;
  font-weight: 700;
}

@keyframes blink {
  50% { opacity: 0; }
}

.demo-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-result {
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-2);
}

.dr-tag {
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dr-tag.crit { background: rgba(225,75,75,0.12); color: var(--crit); }
.dr-tag.high { background: rgba(255,159,69,0.16); color: var(--high); }

.bc-pulse {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad-violet);
  filter: blur(20px);
  opacity: 0.4;
  animation: pulse-soft 3s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.bc-chips {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.chip {
  padding: 4px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-2);
}

.bc-list {
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-2);
  font-family: 'JetBrains Mono', monospace;
}

.bc-list li > span:first-child {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-mint);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}

/* ===================== CATEGORIES ===================== */
.cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cat {
  position: relative;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.cat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
}

.cat-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  top: -100px;
  right: -100px;
  transition: opacity 0.4s, transform 0.4s;
}

.cat:hover .cat-orb {
  opacity: 0.55;
  transform: scale(1.2);
}

.cat-ai .cat-orb { background: var(--ai); }
.cat-abuses .cat-orb { background: var(--abuses); }
.cat-tools .cat-orb { background: var(--tools); }
.cat-bin .cat-orb { background: var(--bin); }

.cat-emoji {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 16px rgba(26,24,20,0.15));
  transform: translateZ(20px);
  transition: transform 0.4s;
}

.cat:hover .cat-emoji {
  transform: translateZ(40px) rotate(-8deg) scale(1.1);
}

.cat h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  position: relative;
}

.cat p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 22px;
  position: relative;
}

.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
}

.cat-tags span {
  padding: 4px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink-2);
}

/* ===================== SOURCES ===================== */
.src-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.src {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.src:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-2);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.ai { background: var(--ai); box-shadow: 0 0 12px rgba(122, 184, 255, 0.5); }
.dot.abuses { background: var(--abuses); box-shadow: 0 0 12px rgba(255, 107, 107, 0.5); }
.dot.tools { background: var(--tools); box-shadow: 0 0 12px rgba(255, 179, 71, 0.5); }
.dot.custom { background: var(--c-violet); box-shadow: 0 0 12px rgba(155, 123, 255, 0.5); }

.src-add {
  background: linear-gradient(135deg, rgba(255,107,107,0.05), rgba(155,123,255,0.05));
  border-color: var(--line-2);
  color: var(--c-violet);
  font-weight: 600;
}

/* ===================== DOWNLOAD ===================== */
.section-download {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-download .sec-header h2 {
  color: #fff;
}

.section-download .sec-header p {
  color: rgba(255,255,255,0.7);
}

.section-download .sec-tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  box-shadow: none;
}

.dl-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,107,107,0.4), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(155,123,255,0.4), transparent 40%);
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.dl-card {
  position: relative;
  padding: 36px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-l);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.dl-primary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,107,107,0.4);
  box-shadow: 0 24px 80px -12px rgba(255,107,107,0.3);
}

.dl-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  animation: shine 4s linear infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.dl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

.dl-os {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

.dl-os.dim { opacity: 0.4; }

.dl-meta {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
}

.dl-primary .dl-meta {
  background: var(--grad-warm);
  color: #fff;
}

.dl-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.dl-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
}

.dl-card .btn-primary {
  background: #fff;
  color: var(--ink);
}

.dl-card .btn-primary:hover {
  color: #fff;
}

.dl-card .btn-soft {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}

.dl-hint {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.dl-hint .link {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  margin-left: 6px;
}

.dl-hint .link:hover { border-color: #fff; }

/* ===================== CTA ===================== */
.section-cta {
  padding: 100px 0;
}

.cta-card {
  position: relative;
  padding: 80px 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,107,107,0.1), transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(155,123,255,0.1), transparent 50%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}

.cta-card h2 em.serif {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-card p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-actions .btn-link {
  margin: 0;
  width: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-2);
  padding: 60px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
}

/* ===================== REVEAL ANIMATIONS ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-scene { order: 2; height: 420px; max-width: 480px; margin: 0 auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  .bento {
    grid-template-columns: repeat(4, 1fr);
  }
  .bento-1 { grid-column: span 4; grid-row: auto; }
  .bento-2 { grid-column: span 4; }
  .bento-3, .bento-4, .bento-5, .bento-6 { grid-column: span 2; }
  .bento-7 { grid-column: span 4; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions .nav-link { display: none; }
  .nav-burger { display: flex; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 20px;
    gap: 16px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-2);
  }

  .section { padding: 80px 0; }
  .sec-header { margin-bottom: 56px; }

  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card { grid-column: span 1 !important; }

  .cats { grid-template-columns: 1fr; }

  .dl-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero-meta { gap: 20px; }

  .cta-card { padding: 56px 24px; }

  .ticker-track span { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switch {
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px;
  gap: 0;
}

.lang-btn {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  font-family: 'JetBrains Mono', monospace;
  transition: all 0.25s;
  background: transparent;
  border: none;
  cursor: pointer;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-1);
}

/* Compact variant in dashboard */
.lang-switch-compact {
  background: transparent;
  border: 1px solid var(--line);
  padding: 2px;
}

.lang-switch-compact .lang-btn {
  padding: 4px 9px;
  font-size: 10px;
}

/* ============================================
   IMPROVED RESPONSIVENESS
   ============================================ */

/* Tablets and below */
@media (max-width: 1100px) {
  .container { padding: 0 20px; }
  .hero { padding: 120px 20px 60px; gap: 32px; }
  .hero-title { font-size: clamp(38px, 5.5vw, 64px); }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 13px; }

  .bento { gap: 14px; }
  .cats { gap: 16px; }
  .dl-grid { gap: 16px; }

  .feature-card, .bento-card { padding: 24px; }
}

/* Tablet portrait */
@media (max-width: 980px) {
  .nav-actions {
    gap: 12px;
  }
  .nav-actions .nav-link {
    display: none;
  }
  .nav-actions .lang-switch {
    order: -1;
  }

  .hero-title {
    font-size: clamp(40px, 7vw, 56px);
  }
  .hero-sub {
    font-size: 16px;
  }

  .sec-header h2 {
    font-size: clamp(32px, 5vw, 44px);
  }
  .sec-header { margin-bottom: 56px; }

  .section { padding: 90px 0; }
}

/* Mobile landscape / large phones */
@media (max-width: 768px) {
  .hero-scene {
    height: 380px;
    max-width: 420px;
  }
  .card-app .fc-body { min-height: 280px; }
  .float-stat-1, .float-stat-2 {
    transform: scale(0.85);
  }

  .src-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }
}

/* Mobile portrait */
@media (max-width: 640px) {
  /* Nav */
  .nav { padding: 12px 0; }
  .nav-inner { gap: 12px; }
  .brand-text {
    font-size: 14px;
  }
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .lang-switch {
    margin-left: auto;
  }
  .nav-burger {
    display: flex;
  }

  /* Mobile menu open */
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 16px;
    gap: 4px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-2);
  }
  .nav.menu-open .nav-links li {
    width: 100%;
  }
  .nav.menu-open .nav-links a {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
  }
  .nav.menu-open .nav-links a:hover {
    background: var(--bg-2);
  }
  .nav.menu-open .nav-links a::after {
    display: none;
  }

  /* Hero */
  .hero {
    padding-top: 96px;
    padding-bottom: 48px;
    min-height: auto;
    gap: 24px;
  }
  .hero-pill {
    padding: 6px 12px;
    font-size: 11px;
  }
  .hero-title {
    font-size: clamp(32px, 9vw, 44px);
    margin-bottom: 20px;
    line-height: 1.05;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .hero-actions {
    margin-bottom: 36px;
    width: 100%;
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .btn-lg {
    padding: 14px 20px;
    font-size: 14px;
  }
  .hero-meta {
    gap: 18px;
    width: 100%;
    justify-content: center;
  }
  .meta-num {
    font-size: 24px;
  }
  .meta-label {
    font-size: 11px;
  }

  /* Hero scene smaller */
  .hero-scene {
    height: 320px;
    max-width: 380px;
    margin: 0 auto;
  }
  .float-stat-1 { transform: scale(0.7) rotate(2deg); transform-origin: top right; }
  .float-stat-2 { transform: scale(0.7) rotate(-3deg); transform-origin: bottom right; }
  .card-cve { transform: scale(0.85) rotate(-5deg); transform-origin: bottom left; }
  .shape-cube { transform: scale(0.7); }

  /* Sections */
  .section { padding: 64px 0; }
  .section-cta { padding: 56px 0; }
  .sec-header { margin-bottom: 40px; }
  .sec-header h2 {
    font-size: clamp(28px, 7vw, 36px);
  }
  .sec-header p {
    font-size: 15px;
  }
  .sec-tag { font-size: 10px; padding: 5px 12px; }

  /* Bento */
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-card { grid-column: span 1 !important; padding: 22px; }
  .bento-card h3 { font-size: 18px; }
  .bento-card p { font-size: 13px; }
  .bc-icon { width: 44px; height: 44px; margin-bottom: 16px; }

  /* Categories */
  .cats {
    grid-template-columns: 1fr;
  }
  .cat { padding: 28px 24px; }
  .cat h3 { font-size: 22px; }
  .cat p { font-size: 14px; }
  .cat-emoji { font-size: 40px; margin-bottom: 16px; }

  /* Sources */
  .src-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .src {
    padding: 12px 14px;
    font-size: 13px;
    gap: 10px;
  }

  /* Download */
  .dl-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .dl-card { padding: 28px 24px; }
  .dl-card h3 { font-size: 22px; }

  /* CTA */
  .cta-card { padding: 44px 24px; }
  .cta-card h2 { font-size: clamp(24px, 6vw, 32px); }
  .cta-card p { font-size: 15px; }
  .cta-actions { flex-direction: column; gap: 8px; }
  .cta-actions .btn { width: 100%; }

  /* Footer */
  .footer { padding: 48px 0 28px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 11px;
  }

  /* Ticker */
  .ticker-wrap { padding: 14px 0; }
  .ticker-track span { font-size: 14px; }
  .ticker-track { gap: 18px; padding-right: 18px; }

  /* Cursor glow disable on mobile */
  .cursor-glow { display: none; }
}

/* Very small phones */
@media (max-width: 380px) {
  .container { padding: 0 16px; }

  .nav-inner { gap: 8px; }
  .brand-text { display: none; }

  .hero-title {
    font-size: clamp(28px, 9vw, 36px);
  }
  .hero-meta {
    gap: 14px;
  }

  .src-grid {
    grid-template-columns: 1fr;
  }

  .legal-body { padding: 20px 16px; }
}

/* Landscape orientation on small phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 96px 20px 40px;
  }
  .hero-scene {
    height: 280px;
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .cursor-glow { display: none; }
  .feature-card:hover, .bento-card:hover, .cat:hover, .src:hover {
    transform: none;
  }
  .bento-card { transform: none !important; }
}

/* Dark scroll bar to match palette */
@supports (scrollbar-width: thin) {
  html { scrollbar-width: thin; scrollbar-color: var(--ink-4) var(--bg-2); }
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--ink-4); border-radius: 100px; border: 2px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-3); }
