/* ═══════════════════════════════════════════
   Chebit — Crypto On & Off-Ramps for Latin America
   DESIGN DIRECTION:
   Modern fintech SaaS. Soft blue base (#F5F7FA)
   with primary blue (#1F75EB), cool greys, and
   subtle gradients. Clean, trustworthy, calm.
   Rounded components. Soft shadows. Hero gradient.
═══════════════════════════════════════════ */

:root {
  /* ── PRIMARY BRAND ── */
  --blue:        #1F75EB;
  --blue-hover:  #1660D0;
  --blue-icon:   #1F75EB;
  --blue-lt:     #43D5EF;
  --blue-pale:   #E3F4FD;
  --blue-mid:    #9ADFF5;

  /* ── SUCCESS / STATUS ── */
  --emerald:     #2ECC71;
  --emerald-lt:  #52D98A;
  --emerald-pale:#E8FAF1;
  --emerald-mid: #A8EDCA;
  --amber:       #FF8A3D;
  --amber-pale:  #FFF1E8;
  --coral:       #FF5A5A;
  --coral-lt:    #FF7A7A;
  --coral-pale:  #FFEEEE;
  --coral-mid:   #FFCCCC;
  --violet:      #7B6CF0;
  --violet-pale: #EEECFF;
  --sky:         #1F75EB;
  --sky-pale:    #E3F4FD;
  --chart-pos:   #4CD964;

  /* ── BACKGROUNDS ── */
  --white:       #FFFFFF;
  --off-white:   #FFFFFF;
  --gray-50:     #F6F8FA;
  --gray-100:    #E3E8EF;
  --gray-200:    #C8D0DC;
  --gray-400:    #7B8CA5;
  --gray-600:    #4A5D73;
  --gray-800:    #2A3A50;

  /* ── TYPOGRAPHY ── */
  --text:        #1F3352;
  --text2:       #4A5D73;
  --text3:       #7B8CA5;

  /* ── SEMANTIC ALIASES ── */
  --navy:        #1F3352;
  --navy-mid:    #2E4A6A;
  --section-bg:  #F8F9FB;
  --divider:     #E8EDF3;

  /* Layout */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  20px;
  --radius-xl:  24px;
  --radius-2xl: 32px;

  --shadow-sm:  0 1px 4px rgba(31,117,235,0.06), 0 1px 3px rgba(31,51,82,0.05);
  --shadow-md:  0 4px 20px rgba(31,117,235,0.10), 0 2px 6px rgba(31,51,82,0.06);
  --shadow-lg:  0 12px 40px rgba(31,117,235,0.12), 0 4px 12px rgba(31,51,82,0.07);
  --shadow-xl:  0 24px 64px rgba(31,117,235,0.14), 0 8px 24px rgba(31,51,82,0.08);

  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════ RESET ══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ══════════ UTILITIES ══════════ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 48px; }

/* Gradient text */
.coral-text { color: var(--navy); }
.emerald-text { color: var(--navy); }
.multi-grad { color: var(--navy); }

/* Tag / eyebrow */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px;
}
.tag-coral  { background: var(--blue-pale);    color: var(--blue);    border: 1.5px solid var(--blue-mid); }
.tag-emerald{ background: var(--emerald-pale);  color: #1AAE5C;        border: 1.5px solid var(--emerald-mid); }
.tag-navy   { background: rgba(31,51,82,0.06);  color: var(--navy);    border: 1.5px solid rgba(31,51,82,0.12); }
.tag-amber  { background: var(--amber-pale);    color: #C85A00;        border: 1.5px solid #FFBB8A; }
.tag-violet { background: var(--violet-pale);   color: var(--violet);  border: 1.5px solid #BEB6FF; }
.tag::before { content:''; width:5px; height:5px; border-radius:50%; background:currentColor; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
  white-space: nowrap; cursor: pointer;
}
.btn-coral {
  background: linear-gradient(135deg, #1F75EB 0%, #43D5EF 100%); color: #fff;
  box-shadow: 0 4px 16px rgba(31,117,235,0.35);
}
.btn-coral:hover {
  background: linear-gradient(135deg, #1660D0 0%, #2DC4DE 100%);
  box-shadow: 0 8px 28px rgba(31,117,235,0.5);
  transform: translateY(-2px) scale(1.02);
}
.btn-navy {
  background: var(--navy); color: #fff;
  box-shadow: 0 4px 16px rgba(31,51,82,0.3);
}
.btn-navy:hover {
  background: var(--navy-mid);
  box-shadow: 0 8px 28px rgba(31,51,82,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--gray-100);
}
.btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  transform: translateY(-1px);
}
.btn-emerald {
  background: var(--emerald); color: #fff;
  box-shadow: 0 4px 16px rgba(46,204,113,0.3);
}
.btn-emerald:hover {
  background: #22B860;
  box-shadow: 0 8px 28px rgba(46,204,113,0.45);
  transform: translateY(-2px);
}

.btn .arrow { transition: transform 0.2s ease; display:inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ══════════ CURSOR TRAIL ══════════ */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
  opacity: 0.5;
}

/* ══════════ SCROLL REVEAL ══════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-32px); }
.reveal-left.visible { transform: translateX(0); }
.reveal-right { transform: translateX(32px); }
.reveal-right.visible { transform: translateX(0); }
.reveal-scale { transform: scale(0.92); }
.reveal-scale.visible { transform: scale(1); }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.35s; }

/* ══════════ NAVBAR ══════════ */
@keyframes heroSlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s, padding 0.3s;
  animation: heroSlideDown 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
#navbar.scrolled {
  background: rgba(245,247,250,0.95);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(31,51,82,0.07), 0 4px 20px rgba(31,117,235,0.06);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; position: relative; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 21px; font-weight: 900;
  color: var(--navy);
}
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: none;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}
.nav-logo:hover .nav-logo-mark { transform: rotate(-8deg) scale(1.1); }

.nav-links { display: flex; align-items: center; gap: 4px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-link {
  font-family: 'Satoshi', sans-serif;
  font-size: 14.5px; font-weight: 500;
  color: var(--text2); padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 10px; right: 10px;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.25s var(--ease-spring);
  transform-origin: left;
}
.nav-link:hover { color: var(--text); background: var(--gray-50); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.lang-toggle {
  display: flex; background: var(--gray-50); border: 1.5px solid var(--gray-100);
  border-radius: 100px; overflow: hidden;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
}
.lang-btn { padding: 5px 13px; color: var(--text3); transition: all 0.2s; cursor: pointer; }
.lang-btn.active { background: var(--blue); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span {
  display: block; width: 22px; height: 2.5px;
  background: var(--navy); border-radius: 2px; transition: all 0.3s var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 100px 32px 48px; flex-direction: column; gap: 4px;
  transform: translateX(100%); opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}
.mobile-nav.open { transform: translateX(0); opacity: 1; }
.mobile-nav-link {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--text2);
  padding: 14px 0; border-bottom: 1.5px solid var(--gray-100);
  transition: color 0.2s, padding-left 0.25s;
}
.mobile-nav-link:hover { color: var(--blue); padding-left: 8px; }
.mobile-nav-cta { margin-top: 32px; }

/* ══════════ HERO ══════════ */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
  background: var(--white);
}

/* Clean subtle dot grid only */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape-1, .hero-shape-2, .hero-shape-3 { display: none; }
.hero-stripe, .hero-stripe-2 { display: none; }
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(31,117,235,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

/* Centred single-column layout */
.hero-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1; gap: 0;
  width: 100%;
}

/* Eyebrow badge with animated dot */
.hero-badge-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 22px; }
.pulse-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--blue);
  position: relative; flex-shrink: 0;
}
.pulse-dot::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; background: var(--blue);
  opacity: 0.25; animation: pulseDot 1.8s ease-in-out infinite;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; background: var(--blue);
  opacity: 0.12; animation: pulseDot 1.8s ease-in-out infinite 0.3s;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.6); opacity: 0; }
}
.pulse-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--blue); font-weight: 500;
  letter-spacing: 0.08em;
}

.hero-h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(42px, 5.5vw, 70px);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--navy); text-align: center;
}
.hero-h1 em {
  font-style: normal;
  position: relative; display: inline-block;
}

.hero-sub {
  font-size: 17px; font-weight: 400;
  color: var(--text2); max-width: 560px; line-height: 1.75;
  margin-bottom: 32px; text-align: center;
}

.hero-bullets { margin-bottom: 38px; margin-top: 40px; display: flex; flex-direction: row; gap: 28px; justify-content: center; flex-wrap: wrap; }
.hero-bullet {
  display: flex; align-items: center; gap: 11px;
  font-size: 14.5px; color: var(--text2);
}
.bullet-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-pale); border: 1.5px solid var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
}
.bullet-check svg { width: 11px; height: 11px; }

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

/* Hero visual */
.hero-visual {
  position: relative;
  animation: floatCard 5s ease-in-out infinite;
  width: 100%; max-width: 520px;
}
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.main-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  border: 1.5px solid var(--gray-100);
  position: relative; overflow: hidden;
}
.main-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt), var(--emerald));
}
.card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.card-traffic { display: flex; gap: 5px; }
.cd { width: 10px; height: 10px; border-radius: 50%; }
.cd-r { background: #FF5F57; } .cd-y { background: #FFBD2E; } .cd-g { background: #28C840; }
.live-badge {
  display: flex; align-items: center; gap: 5px;
  background: var(--emerald-pale); border: 1px solid var(--emerald-mid);
  color: #1AAE5C; padding: 3px 10px; border-radius: 100px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); animation: blink 1.4s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.card-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--text3); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.card-volume {
  font-family: 'Cabinet Grotesk', sans-serif; font-size: 38px;
  font-weight: 900; color: var(--navy); letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.card-delta {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: #1AAE5C; background: var(--emerald-pale);
  padding: 2px 8px; border-radius: 100px; margin-bottom: 22px;
}

.card-hr { height: 1px; background: var(--gray-100); margin: 0 -28px 20px; }

.rail-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-100); margin-bottom: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rail-row:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-sm); }
.rail-l { display: flex; align-items: center; gap: 10px; }
.rail-ico {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.ric-ar { background: linear-gradient(135deg, var(--blue-pale), var(--blue-mid)); }
.ric-br { background: linear-gradient(135deg, var(--emerald-pale), var(--emerald-mid)); }
.rail-name { font-family: 'Cabinet Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.rail-sub { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text3); }
.rail-amt { font-family: 'Cabinet Grotesk', sans-serif; font-size: 15px; font-weight: 800; color: var(--navy); }

.card-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.card-btn {
  padding: 9px; border-radius: var(--radius-sm);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
  text-align: center; transition: all 0.2s; cursor: pointer;
}
.cb-coral { background: var(--blue-pale); color: var(--blue); border: 1.5px solid var(--blue-mid); }
.cb-coral:hover { background: var(--blue); color: #fff; }
.cb-emerald { background: var(--emerald-pale); color: #1AAE5C; border: 1.5px solid var(--emerald-mid); }
.cb-emerald:hover { background: var(--emerald); color: #fff; }

/* Floating stickers */
.sticker {
  position: absolute; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--gray-100); padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  animation: stickerFloat 5s ease-in-out infinite;
}
.sticker-1 { top: -22px; right: -16px; animation-delay: -1.5s; }
.sticker-2 { bottom: 20px; left: -28px; animation-delay: -3s; }
.sticker-3 { top: 40%; right: -32px; animation-delay: -0.7s; }
@keyframes stickerFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
.sticker-icon { font-size: 18px; }
.sticker-text { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--text2); line-height: 1.4; }
.sticker-text strong { display: block; font-size: 13px; color: var(--navy); font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; }

/* ══════════ HERO ENTRANCE ANIMATIONS ══════════ */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim-down {
  opacity: 0;
  animation: heroSlideDown 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: var(--hd, 0s);
}
.hero-anim-up {
  opacity: 0;
  animation: heroSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: var(--hd, 0s);
}

/* ══════════ TRUST BAR ══════════ */
#trust {
  background: var(--white); padding: 52px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--text3); letter-spacing: 0.12em; text-transform: uppercase;
  text-align: center; margin-bottom: 40px;
}
.trust-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-stat {
  display: flex; align-items: center; gap: 16px;
  padding: 0 56px;
  border-right: 1px solid var(--gray-100);
}
.trust-stat:last-child { border-right: none; }
.trust-stat-icon {
  font-size: 32px; line-height: 1; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(31,117,235,0.18));
}
.trust-stat-value {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 26px; font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue) 0%, #6A9FFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.trust-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text3); margin-top: 3px;
}
@media (max-width: 768px) {
  .trust-stats { justify-content: flex-start; }
  .trust-stat { padding: 16px 20px; border-right: none; border-bottom: 1px solid var(--gray-100); width: 50%; gap: 10px; box-sizing: border-box; min-width: 0; }
  .trust-stat-value { font-size: 20px; word-break: break-word; overflow-wrap: break-word; }
  .trust-stat-icon { font-size: 24px; }
  .trust-stat:nth-child(odd) { border-right: 1px solid var(--gray-100); }
  .trust-stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ══════════ FEATURES ══════════ */
#features { padding: 100px 0; background: var(--white); }

.section-header { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.section-h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--navy); margin: 14px 0;
}
.section-sub { font-size: 16px; color: var(--text2); line-height: 1.75; }

.features-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}
.feat-card {
  border-radius: var(--radius-xl); padding: 36px;
  border: 1.5px solid var(--gray-100);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.fc-1 { grid-column: span 6; background: var(--blue-pale); border-color: var(--blue-mid); }
.fc-2 { grid-column: span 6; background: var(--emerald-pale); border-color: var(--emerald-mid); }
.fc-3 { grid-column: span 8; background: linear-gradient(135deg, #FFF8F3 0%, #FFE8D6 100%); border-color: #FFD4B8; }
.fc-4 { grid-column: span 4; background: var(--gray-50); border-color: var(--gray-100); }

.feat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  opacity: 0.4; position: absolute; top: 20px; right: 24px;
  display: none;
}
.fc-1 .feat-num { color: var(--blue); }
.fc-2 .feat-num { color: #1AAE5C; }
.fc-3 .feat-num { color: var(--blue); }
.fc-4 .feat-num { color: var(--text3); }

.feat-icon {
  font-size: 36px; margin-bottom: 20px; display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.fc-1 .feat-icon { color: #1A4ACC; }
.fc-2 .feat-icon { color: #0D7A45; }
.fc-3 .feat-icon { color: #C4601A; }
.fc-4 .feat-icon { color: var(--navy); }
.feat-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 20px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em;
}
.fc-1 .feat-title { color: #1A4ACC; }
.fc-2 .feat-title { color: #0D7A45; }
.fc-3 .feat-title { color: var(--navy); }
.fc-4 .feat-title { color: var(--text); }

.feat-desc { font-size: 14px; line-height: 1.7; }
.fc-1 .feat-desc { color: rgba(30,70,160,0.7); }
.fc-2 .feat-desc { color: rgba(13,100,60,0.72); }
.fc-3 .feat-desc { color: var(--text2); }
.fc-4 .feat-desc { color: rgba(74,93,115,0.8); }

/* Pills inside card */
.feat-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.fpill {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  padding: 4px 11px; border-radius: 100px;
}
.fpill-ar { background: var(--blue-pale); color: var(--blue); border: 1px solid var(--blue-mid); }
.fpill-br { background: var(--emerald-pale); color: #1AAE5C; border: 1px solid var(--emerald-mid); }

/* Code snippet inside warm card — dark for contrast */
.feat-code {
  background: rgba(20,20,30,0.82); border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-md); padding: 16px; margin-top: 20px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; line-height: 1.9;
}
.ck { color: #FF9580; } .cs { color: #B8F7AA; } .cn { color: #FFD580; } .cc { color: rgba(255,255,255,0.35); }

/* ══════════ ABOUT ══════════ */
#about { padding: 100px 0; background: var(--white); }
.about-inner { display: block; max-width: 760px; margin: 0 auto; }

/* Left: big numbered list */
.about-steps { display: flex; flex-direction: column; gap: 0; }
.about-step {
  display: flex; gap: 20px; padding: 28px 0;
  border-bottom: 1.5px solid var(--gray-100);
  transition: background 0.2s;
  cursor: default;
}
.about-step:first-child { padding-top: 0; }
.about-step:last-child { border-bottom: none; }
.step-num-big {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 42px; font-weight: 900; line-height: 1;
  min-width: 54px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: all 0.3s;
}
.about-step:hover .step-num-big {
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--navy);
  margin-bottom: 6px;
}
.step-desc { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* Right: text block + stats */
.about-right { position: relative; text-align: left; }
.about-right .tag { margin-bottom: 18px; }
.about-h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--navy); margin-bottom: 20px;
}
.about-body { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }

.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px;
}
.stat-tile {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.stat-tile:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-md); }
.stat-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.st-coral::before  { background: #1B6EF3; }
.st-emerald::before { background: #1BAF5E; }
.st-violet::before { background: #7B35E8; }
.st-amber::before  { background: #E8430A; }

.stat-val {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 34px; font-weight: 900; line-height: 1; margin-bottom: 5px;
  color: var(--navy);
}
.stat-lab { font-size: 12.5px; color: var(--text3); font-weight: 500; }

/* ══════════ HOW IT WORKS ══════════ */
#how { padding: 100px 0; background: var(--white); }

.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.how-card {
  padding: 0 20px 0; text-align: center;
  position: relative;
}
/* Dotted connector — only between circles, not behind them */
.how-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(50% + 44px);
  right: calc(-50% + 44px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #1F75EB 0, #1F75EB 7px,
    transparent 7px, transparent 17px
  );
  opacity: 0.45;
}
/* Arrow indicator in the middle of each connector */
.how-card:not(:last-child)::before {
  content: '\203A';
  position: absolute;
  top: 32px;
  right: calc(-50% + 44px - 6px);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(135deg, #1F75EB, #43D5EF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.8;
}
.how-num-wrap {
  position: relative; margin: 0 auto 24px;
  width: 88px; height: 88px;
  background: var(--white);
  border-radius: 50%;
  z-index: 1;
}
.how-num-bg {
  width: 88px; height: 88px; border-radius: 50%;
  border: 2px dashed rgba(31,117,235,0.25);
  display: flex; align-items: center; justify-content: center;
  animation: rotateSlow 20s linear infinite;
  position: absolute; inset: 0;
}
@keyframes rotateSlow { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
.how-num-inner {
  position: absolute; inset: 6px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-md);
}
.hn-1 { background: rgba(27,110,243,0.10); border: 2px solid #1B6EF3; }
.hn-2 { background: rgba(232,67,10,0.10); border: 2px solid #E8430A; }
.hn-3 { background: rgba(27,175,94,0.10); border: 2px solid #1BAF5E; }
.hn-4 { background: rgba(123,53,232,0.10); border: 2px solid #7B35E8; }
.how-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 10px;
}
.how-desc { font-size: 13.5px; color: var(--text2); line-height: 1.65; }

/* ══════════ API SECTION ══════════ */
#api {
  padding: 100px 0; background: var(--navy); position: relative; overflow: hidden;
}
#api::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.3;
}
.api-corner-1 {
  position: absolute; top: -60px; left: -60px; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,117,235,0.20) 0%, transparent 70%);
}
.api-corner-2 {
  position: absolute; bottom: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,204,113,0.16) 0%, transparent 70%);
}
/* Top row: text left + code right */
.api-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; position: relative; z-index: 1;
  margin-bottom: 48px;
}
.api-text .tag { margin-bottom: 20px; }
.api-h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.025em; color: #fff; margin-bottom: 18px;
}
.api-body { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 28px; }
.api-list { display: none; }
.api-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(255,255,255,0.75); }
.api-bullet {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; transition: background 0.2s, transform 0.2s;
}
/* Feature grid below */
.api-feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; position: relative; z-index: 1;
}
.api-feat-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 16px 20px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.api-feat-item:hover {
  background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}
.api-feat-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
}
.api-feat-label {
  font-family: 'Satoshi', sans-serif; font-size: 14px;
  font-weight: 600; color: rgba(255,255,255,0.8); line-height: 1.35;
}
/* Code window */
.code-win {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 40px 80px rgba(0,0,0,0.5),
              0 0 60px rgba(31,117,235,0.18);
  position: relative;
}
.code-win-bar {
  background: rgba(255,255,255,0.06); padding: 13px 18px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cwb-dots { display: flex; gap: 5px; }
.cwb-dot { width: 10px; height: 10px; border-radius: 50%; }
.cwbd-r { background: #FF5F57; } .cwbd-y { background: #FFBD2E; } .cwbd-g { background: #28C840; }
.cwb-title { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.3); flex: 1; text-align: center; }
.code-body {
  background: #0D1117; padding: 24px;
  font-family: 'JetBrains Mono', monospace; font-size: 12.5px; line-height: 1.85; overflow-x: auto;
}
.type-line { overflow: hidden; white-space: nowrap; }
.code-kw2 { color: #FF9580; } .code-str2 { color: #B5EBB0; }
.code-key2 { color: #A8D8FF; } .code-num2 { color: #FFD580; }
.code-comment2 { color: rgba(255,255,255,0.25); }
.code-punct { color: rgba(255,255,255,0.4); }
.cursor-blink::after {
  content: '|'; color: var(--blue-lt); animation: blink 1s step-end infinite;
}

/* ══════════ USE CASES ══════════ */
#usecases { padding: 100px 0; background: var(--white); }
.uc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.uc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px 28px 36px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
}
.uc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ucc-1:hover { border-color: rgba(27,110,243,0.3); }
.ucc-2:hover { border-color: rgba(232,67,10,0.3); }
.ucc-3:hover { border-color: rgba(27,175,94,0.3); }
.ucc-4:hover { border-color: rgba(123,53,232,0.3); }

.uc-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; flex-shrink: 0;
}
.uci-1 { background: rgba(27,110,243,0.10); border: 1.5px solid rgba(27,110,243,0.35); }
.uci-2 { background: rgba(232,67,10,0.10); border: 1.5px solid rgba(232,67,10,0.35); }
.uci-3 { background: rgba(27,175,94,0.10); border: 1.5px solid rgba(27,175,94,0.35); }
.uci-4 { background: rgba(123,53,232,0.10); border: 1.5px solid rgba(123,53,232,0.35); }

.uc-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--navy);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.uc-desc { font-size: 13.5px; color: var(--text2); line-height: 1.75; }

/* ══════════ REGIONS ══════════ */
#regions { padding: 100px 0; background: var(--white); overflow: hidden; }
.regions-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 56px; }
.region-card {
  border-radius: var(--radius-2xl); padding: 52px 44px;
  text-align: center; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.region-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.rc-ar {
  background: linear-gradient(145deg, #D7E3F3 0%, #8EB6E8 100%);
  border: 1.5px solid var(--blue-mid);
}
.rc-br {
  background: linear-gradient(145deg, var(--emerald-pale) 0%, var(--emerald-mid) 100%);
  border: 1.5px solid #7ADCB0;
}
.region-bg-num {
  position: absolute; font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 180px; font-weight: 900; opacity: 0.06;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; user-select: none;
  color: var(--navy);
}
.region-flag {
  font-size: 64px; margin-bottom: 16px; line-height: 1;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  animation: flagWave 3s ease-in-out infinite;
}
@keyframes flagWave {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50% { transform: rotate(2deg) scale(1.06); }
}
.region-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 28px; font-weight: 900; color: var(--navy); margin-bottom: 10px;
}
.region-desc { font-size: 14px; color: var(--text2); margin-bottom: 20px; line-height: 1.6; }
.region-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  padding: 6px 16px; border-radius: 100px;
}
.rp-ar { background: var(--blue-pale); color: var(--blue); border: 1px solid var(--blue-mid); }
.rp-br { background: var(--emerald-pale); color: #1AAE5C; border: 1px solid var(--emerald-mid); }

.regions-tagline {
  text-align: center;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 900;
  color: var(--navy); letter-spacing: -0.02em;
}

/* ══════════ FINAL CTA ══════════ */
#cta { padding: 80px 0 120px; background: var(--white); }
.cta-card {
  border-radius: var(--radius-2xl); padding: 80px 64px;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #EEF3FF 0%, #E0EAFF 40%, #D4E4FF 100%);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(31,117,235,0.12);
}
/* Colorful top strip */
.cta-strip {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--emerald), var(--blue-lt), var(--violet), var(--blue));
  background-size: 200%;
  animation: stripSlide 4s linear infinite;
}
@keyframes stripSlide {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
/* Corner glows */
.cta-glow-1 {
  position: absolute; top: -80px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,117,235,0.12) 0%, transparent 70%);
}
.cta-glow-2 {
  position: absolute; bottom: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,117,235,0.10) 0%, transparent 70%);
}

.cta-h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 54px); font-weight: 900;
  line-height: 1.08; letter-spacing: -0.03em;
  color: var(--navy); max-width: 740px;
  margin: 0 auto 18px; position: relative; z-index: 1;
}
.cta-h2 span[style] { color: var(--navy) !important; }
.cta-body {
  font-size: 16px; color: var(--text2); max-width: 520px;
  margin: 0 auto 40px; line-height: 1.75; position: relative; z-index: 1;
}
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* Floating decorative badges */
.cta-badge {
  position: absolute; background: rgba(255,255,255,0.7);
  border: 1px solid rgba(31,117,235,0.15); border-radius: var(--radius-lg);
  padding: 8px 14px; display: flex; align-items: center; gap: 7px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--text2); backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(31,117,235,0.08);
}
.cta-badge-1 { top: 40px; left: 40px; animation: stickerFloat 6s ease-in-out infinite; }
.cta-badge-2 { top: 40px; right: 40px; animation: stickerFloat 6s ease-in-out infinite 2s; }
.cta-badge-3 { bottom: 40px; left: 60px; animation: stickerFloat 6s ease-in-out infinite 4s; }
.cta-badge-4 { bottom: 40px; right: 60px; animation: stickerFloat 6s ease-in-out infinite 1s; }

/* ══════════ FOOTER ══════════ */
#footer { background: var(--navy); padding: 64px 0 28px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 48px; flex-wrap: wrap; gap: 32px;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 320px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.soc-btn {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.4); transition: all 0.2s;
}
.soc-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
.footer-legal { text-align: right; }
.footer-legal-heading {
  font-family: 'Cabinet Grotesk', sans-serif; font-size: 15px; font-weight: 800;
  color: rgba(255,255,255,0.9); margin-bottom: 14px; letter-spacing: 0.01em;
}
.footer-legal-links { display: flex; gap: 20px; }
.flink { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.flink:hover { color: rgba(255,255,255,0.9); }
.footer-regulatory {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-regulatory p {
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  max-width: 800px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: center; align-items: center;
}
.footer-copy { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.25); }

/* ══════════ LANGUAGE ══════════ */
body.lang-es .lang-en { display: none; }
body.lang-en .lang-es { display: none; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .features-bento { grid-template-columns: 1fr 1fr; }
  .fc-1, .fc-2, .fc-3, .fc-4 { grid-column: span 1; }
  .fc-3 .feat-inner-wide { flex-direction: column; }
  .footer-top { gap: 28px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  #hero { padding: 100px 0 60px; }
  .hero-inner { gap: 0; }
  .hero-visual { display: none; }
  #trust, #features, #about, #how, #api, #usecases, #regions, #cta { padding: 72px 0; }
  .features-bento { grid-template-columns: 1fr; }
  .fc-1,.fc-2,.fc-3,.fc-4 { grid-column: span 1; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .steps-row::before { display: none; }
  .how-card::after { display: none; }
  .api-inner { grid-template-columns: 1fr; gap: 48px; }
  .uc-grid { grid-template-columns: 1fr; }
  .regions-inner { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 24px; }
  .cta-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .steps-row { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .footer-top { flex-direction: column; }
  .footer-legal { text-align: left; }
  .trust-stat { padding: 16px 20px; }
}

/* ══════════ SCROLLBAR ══════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ══════════ SELECTION ══════════ */
::selection { background: var(--blue); color: #fff; }
