/* ============================================================
   Cajeros Criptomonedas — Landing UI styles
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--fg2);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
::selection { background: rgba(79,219,221,.3); color: #fff; }

/* page atmosphere: hex grid + radial glows */
.cc-page {
  position: relative;
  min-height: 100vh;
  background:
    var(--grad-hero),
    radial-gradient(80% 60% at 85% 20%, rgba(79,219,221,.12), transparent 60%),
    var(--bg-base);
}
.cc-hexbg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0L56 16v33L28 65 0 49V16z M28 65L56 81v33M28 65L0 81v33' fill='none' stroke='%237C92FF' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E");
  mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
}
.cc-shell { position: relative; z-index: 1; }
.cc-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---------- typography helpers ---------- */
.cc-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-cyan);
  padding: 6px 12px; border: 1px solid var(--line-cyan); border-radius: var(--r-pill);
  background: rgba(79,219,221,.06); white-space: nowrap;
}
.gradient-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- buttons ---------- */
.cc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; cursor: pointer;
  border: 0; border-radius: var(--r-pill); white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out), filter var(--dur) var(--ease-out);
}
.cc-btn--md { padding: 12px 20px; font-size: 15px; }
.cc-btn--lg { padding: 16px 28px; font-size: 16.5px; }
.cc-btn--primary {
  background: var(--grad-brand); color: #071021;
  box-shadow: 0 8px 26px rgba(83,113,254,.4), inset 0 1px 0 rgba(255,255,255,.35);
}
.cc-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(83,113,254,.5), 0 0 0 1px rgba(79,219,221,.4); filter: brightness(1.05); }
.cc-btn--primary:active { transform: translateY(0) scale(.98); }
.cc-btn--secondary {
  background: rgba(124,146,255,.08); color: var(--fg1);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.cc-btn--secondary:hover { background: rgba(124,146,255,.16); box-shadow: inset 0 0 0 1px var(--brand-indigo); transform: translateY(-2px); }
.cc-btn--secondary:active { transform: translateY(0) scale(.98); }
.cc-btn--ghost { background: transparent; color: var(--fg2); padding: 10px 14px; }
.cc-btn--ghost:hover { color: var(--fg1); background: rgba(124,146,255,.08); }

/* ---------- coin tags / badges ---------- */
.cc-coin {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .03em;
  padding: 3px 9px; border-radius: var(--r-xs); color: var(--fg2);
  background: rgba(124,146,255,.1); border: 1px solid var(--line);
}
.cc-dir {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill);
  white-space: nowrap; flex-shrink: 0;
}
.cc-dir--buy  { color: #6EE7B7; background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.3); }
.cc-dir--sell { color: #FBBF77; background: rgba(247,147,26,.12); border: 1px solid rgba(247,147,26,.32); }
.cc-dir--both { color: var(--brand-cyan); background: rgba(79,219,221,.1); border: 1px solid var(--line-cyan); }

/* ---------- generic card ---------- */
.cc-card {
  background: linear-gradient(180deg, rgba(22,30,61,.7), rgba(17,23,51,.7));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-card); backdrop-filter: blur(8px);
}

/* ---------- header ---------- */
.cc-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,11,24,.72); backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.cc-header__row { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.cc-nav { display: flex; align-items: center; gap: 4px; }
.cc-nav a {
  font-size: 14.5px; font-weight: 600; color: var(--fg2); padding: 8px 14px; border-radius: var(--r-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.cc-nav a:hover { color: var(--fg1); background: rgba(124,146,255,.08); }
.cc-header__cta { display: flex; align-items: center; gap: 10px; }
.cc-burger { display: none; }

/* ---------- hero ---------- */
.cc-hero { padding: 76px 0 64px; position: relative; }
.cc-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.cc-hero h2.cc-hero__h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.2vw, 66px); line-height: 1.04; letter-spacing: -.03em; color: var(--fg1);
  margin: 22px 0 18px;
}
.cc-hero__sub { font-size: 18.5px; line-height: 1.6; color: var(--fg2); max-width: 540px; }

/* search box */
.cc-search {
  margin-top: 30px; display: flex; align-items: center; gap: 8px;
  background: var(--bg-inset); border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  padding: 7px 7px 7px 18px; max-width: 540px; transition: box-shadow var(--dur), border-color var(--dur);
}
.cc-search:focus-within { border-color: var(--brand-cyan); box-shadow: 0 0 0 4px rgba(79,219,221,.14); }
.cc-search__icon { color: var(--brand-cyan); flex-shrink: 0; }
.cc-search input {
  flex: 1; background: transparent; border: 0; outline: 0; color: var(--fg1);
  font-family: var(--font-body); font-size: 16px; min-width: 0;
}
.cc-search input::placeholder { color: var(--fg3); }

.cc-trustline { margin-top: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12.5px; color: var(--fg3); }
.cc-trustline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-cyan); }

.cc-quickcities { margin-top: 22px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.cc-quickcities .lbl { font-size: 13px; color: var(--fg3); margin-right: 2px; }
.cc-chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--fg2);
  padding: 7px 13px; border-radius: var(--r-pill); border: 1px solid var(--line); background: rgba(124,146,255,.05);
  cursor: pointer; transition: all var(--dur-fast);
}
.cc-chip:hover { color: var(--fg1); border-color: var(--brand-indigo); background: rgba(83,113,254,.14); transform: translateY(-1px); }
.cc-chip b { font-family: var(--font-mono); color: var(--brand-cyan); font-weight: 600; }

/* hero stats */
.cc-stats { display: flex; gap: 10px; margin-top: 34px; }
.cc-stat { flex: 1; }
.cc-stat__num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--fg1); letter-spacing: -.02em; }
.cc-stat__num .u { color: var(--brand-cyan); }
.cc-stat__lbl { font-size: 12.5px; color: var(--fg3); margin-top: 2px; }

/* ---------- map panel (hero right) ---------- */
.cc-mappanel {
  position: relative; aspect-ratio: 1/1; border-radius: var(--r-xl);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(83,113,254,.16), transparent 55%),
    linear-gradient(160deg, #0E1430, #0A0E20);
  border: 1px solid var(--line-strong); overflow: hidden; box-shadow: var(--sh-3);
}
.cc-mappanel__grid { position: absolute; inset: 0; opacity: .6;
  background-image:
    linear-gradient(rgba(124,146,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,146,255,.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(80% 80% at 50% 45%, #000, transparent);
}
.cc-pin {
  position: absolute; transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand-cyan); box-shadow: 0 0 0 4px rgba(79,219,221,.2), 0 0 16px rgba(79,219,221,.7);
}
.cc-pin::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--brand-cyan); animation: pinpulse 2.4s ease-out infinite; }
.cc-pin--indigo { background: var(--brand-indigo); box-shadow: 0 0 0 4px rgba(83,113,254,.22), 0 0 16px rgba(83,113,254,.7); }
.cc-pin--indigo::after { border-color: var(--brand-indigo); }
@keyframes pinpulse { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(3.4); opacity: 0; } }

.cc-mapcard {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  background: var(--glass-strong); border: 1px solid var(--glass-line); border-radius: var(--r-md);
  padding: 14px 16px; backdrop-filter: blur(14px); display: flex; align-items: center; gap: 13px;
}
.cc-mapcard__ico { width: 40px; height: 40px; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--grad-brand-soft); color: var(--brand-cyan); flex-shrink: 0; border: 1px solid var(--line-cyan); }
.cc-mapcard__t { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--fg1); }
.cc-mapcard__m { font-family: var(--font-mono); font-size: 12px; color: var(--fg3); margin-top: 2px; }
.cc-mapchip { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; color: var(--brand-cyan); padding: 6px 11px; border-radius: var(--r-pill); background: var(--glass-strong); border: 1px solid var(--line-cyan); }
.cc-livedot { width: 7px; height: 7px; border-radius: 50%; background: #34D399; box-shadow: 0 0 8px #34D399; animation: live 1.8s ease-in-out infinite; }
@keyframes live { 50% { opacity: .35; } }

/* ---------- section frame ---------- */
.cc-section { padding: 84px 0; position: relative; }
.cc-section__head { max-width: 680px; margin-bottom: 48px; }
.cc-section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.cc-section h2 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; letter-spacing: -.025em; color: var(--fg1); line-height: 1.12; margin: 16px 0 14px; }
.cc-section__head p { font-size: 17px; line-height: 1.6; color: var(--fg2); }

/* ---------- how it works ---------- */
.cc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cc-step { padding: 28px; position: relative; }
.cc-step__n { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--brand-cyan); letter-spacing: .1em; }
.cc-step__ico { width: 54px; height: 54px; border-radius: var(--r-md); display: grid; place-items: center; margin: 16px 0 18px; color: var(--brand-indigo); background: rgba(83,113,254,.1); border: 1px solid var(--line-strong); }
.cc-step h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--fg1); margin-bottom: 8px; }
.cc-step p { font-size: 14.5px; line-height: 1.55; color: var(--fg2); }
.cc-step__line { position: absolute; top: 54px; right: -9px; color: var(--line-strong); }

/* ---------- city cards ---------- */
.cc-cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cc-city { padding: 22px; cursor: pointer; transition: transform var(--dur) var(--ease-out), border-color var(--dur), box-shadow var(--dur); overflow: hidden; position: relative; }
.cc-city:hover { transform: translateY(-4px); border-color: var(--line-cyan); box-shadow: 0 16px 44px rgba(0,0,0,.5), 0 0 0 1px rgba(79,219,221,.2); }
.cc-city__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.cc-city__name { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--fg1); }
.cc-city__count { font-family: var(--font-mono); font-size: 13px; color: var(--brand-cyan); margin-top: 3px; }
.cc-city__count .big { font-size: 22px; font-weight: 600; }
.cc-city p { font-size: 14px; line-height: 1.5; color: var(--fg2); margin-bottom: 16px; }
.cc-city__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--brand-indigo-400); white-space: nowrap; }
.cc-city:hover .cc-city__link { color: var(--brand-cyan); gap: 9px; }
.cc-city__flare { position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(79,219,221,.16), transparent 70%); opacity: 0; transition: opacity var(--dur); }
.cc-city:hover .cc-city__flare { opacity: 1; }

/* ---------- fees / tips ---------- */
.cc-fees { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.cc-feegauge { padding: 32px; text-align: center; }
.cc-feegauge__range { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--fg1); letter-spacing: -.03em; }
.cc-feegauge__range .gradient-text { font-size: inherit; }
.cc-feebar { height: 10px; border-radius: var(--r-pill); margin: 22px 0 10px; background: linear-gradient(90deg, #34D399, #FBBF24 55%, #F7931A); position: relative; }
.cc-feebar__band { position: absolute; top: -4px; bottom: -4px; left: 30%; right: 18%; border: 2px solid #fff; border-radius: var(--r-pill); box-shadow: 0 0 0 3px rgba(0,0,0,.25); }
.cc-feescale { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 12px; color: var(--fg3); }
.cc-tip { display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.cc-tip:last-child { border-bottom: 0; }
.cc-tip__ico { color: var(--brand-cyan); flex-shrink: 0; margin-top: 1px; }
.cc-tip b { color: var(--fg1); font-weight: 700; }
.cc-tip span { font-size: 14.5px; line-height: 1.5; }
.cc-inline-link { color: var(--brand-cyan); font-weight: 700; border-bottom: 1px solid rgba(79,219,221,.4); transition: border-color var(--dur); }
.cc-inline-link:hover { border-color: var(--brand-cyan); }

/* ---------- trust strip ---------- */
.cc-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cc-trustitem { display: flex; gap: 12px; padding: 20px; align-items: flex-start; }
.cc-trustitem__ico { width: 40px; height: 40px; border-radius: var(--r-sm); display: grid; place-items: center; background: rgba(79,219,221,.08); color: var(--brand-cyan); border: 1px solid var(--line-cyan); flex-shrink: 0; }
.cc-trustitem b { display: block; color: var(--fg1); font-family: var(--font-display); font-size: 15.5px; font-weight: 600; margin-bottom: 3px; }
.cc-trustitem span { font-size: 13.5px; line-height: 1.45; color: var(--fg2); }

/* ---------- operators CTA ---------- */
.cc-operators { position: relative; padding: 56px; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(120deg, rgba(83,113,254,.16), rgba(79,219,221,.1)), var(--bg-raised);
  border: 1px solid var(--line-strong); }
.cc-operators__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.cc-operators h2 { margin-bottom: 14px; }
.cc-operators p { font-size: 16.5px; line-height: 1.6; color: var(--fg2); }
.cc-operators__actions { display: flex; flex-direction: column; gap: 12px; }
.cc-operators__hex { position: absolute; right: -60px; top: -40px; width: 320px; height: 320px; opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0L56 16v33L28 65 0 49V16z' fill='none' stroke='%234FDBDD' stroke-opacity='0.3' stroke-width='1'/%3E%3C/svg%3E"); }

/* ---------- FAQ ---------- */
.cc-faq { max-width: 820px; margin: 0 auto; }
.cc-faqitem { border-bottom: 1px solid var(--line); }
.cc-faqq { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; background: none; border: 0; cursor: pointer; color: var(--fg1);
  font-family: var(--font-display); font-size: 18px; font-weight: 600; transition: color var(--dur-fast); }
.cc-faqq:hover { color: var(--brand-cyan); }
.cc-faqq__ico { flex-shrink: 0; color: var(--brand-cyan); transition: transform var(--dur) var(--ease-out); }
.cc-faqitem.open .cc-faqq__ico { transform: rotate(180deg); }
.cc-faqa { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease-out); }
.cc-faqa__inner { padding: 0 4px 24px; font-size: 15.5px; line-height: 1.65; color: var(--fg2); max-width: 680px; }

/* ---------- final CTA ---------- */
.cc-final { text-align: center; padding: 90px 0; }
.cc-final h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 50px); font-weight: 700; letter-spacing: -.03em; color: var(--fg1); line-height: 1.1; max-width: 760px; margin: 18px auto 16px; }
.cc-final p { font-size: 17px; color: var(--fg2); margin-bottom: 30px; }
.cc-final__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.cc-footer { border-top: 1px solid var(--line); padding: 56px 0 36px; background: var(--bg-abyss); position: relative; z-index: 1; }
.cc-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.cc-footer__about { font-size: 14px; line-height: 1.6; color: var(--fg3); max-width: 320px; margin-top: 16px; }
.cc-footcol h4 { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--fg3); margin-bottom: 14px; }
.cc-footcol a { display: block; font-size: 14px; color: var(--fg2); padding: 6px 0; transition: color var(--dur-fast); }
.cc-footcol a:hover { color: var(--brand-cyan); }
.cc-footer__bar { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--fg3); flex-wrap: wrap; gap: 12px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .cc-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .cc-radar { max-width: 480px; }
  .cc-fees, .cc-operators__grid { grid-template-columns: 1fr; gap: 28px; }
  .cc-steps, .cc-cities, .cc-trust { grid-template-columns: 1fr 1fr; }
  .cc-nav { display: none; }
  .cc-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cc-steps, .cc-cities, .cc-trust, .cc-footer__grid { grid-template-columns: 1fr; }
  .cc-stats { flex-wrap: wrap; }
  .cc-stat { min-width: 40%; }
  .cc-header__cta .cc-btn--secondary { display: none; }
}

/* ============================================================
   WOW LAYER — animated bg, node net, kinetic type, ticker, radar
   ============================================================ */

/* aurora animated mesh behind everything */
.cc-aurora {
  position: fixed; inset: -20% -10% auto -10%; height: 120vh; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 38% at 18% 22%, rgba(83,113,254,.30), transparent 60%),
    radial-gradient(36% 34% at 82% 14%, rgba(79,219,221,.24), transparent 60%),
    radial-gradient(44% 40% at 60% 38%, rgba(124,80,255,.16), transparent 62%);
  filter: blur(20px); opacity: .9;
  animation: aurora 18s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1.05); }
  50%  { transform: translate3d(4%, 3%, 0) scale(1.12); }
  100% { transform: translate3d(-2%, 4%, 0) scale(1.06); }
}

/* node network canvas over hero zone */
.cc-heroglow { position: absolute; top: 72px; left: 0; right: 0; height: 860px; z-index: 0; pointer-events: none; overflow: hidden;
  mask-image: radial-gradient(80% 80% at 60% 35%, #000 30%, transparent 80%); }
.cc-nodecanvas { width: 100%; height: 100%; display: block; }
.cc-hero { z-index: 2; }
.cc-header { z-index: 60; }

/* kinetic hero headline */
.cc-hero__h1 { font-family: var(--font-display); font-weight: 700; line-height: 1.0; letter-spacing: -.035em; color: var(--fg1); margin: 22px 0 20px; display: flex; flex-direction: column; }
.cc-hero__h1 > span { display: block; }
.cc-kinetic { height: 1.04em; overflow: hidden; position: relative; }
.cc-kinetic__word {
  display: inline-block; font-size: clamp(46px, 6vw, 78px); line-height: 1.04; text-transform: capitalize;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: wordIn .6s var(--ease-spring);
}
@keyframes wordIn { 0% { transform: translateY(100%) rotate(4deg); opacity: 0; } 100% { transform: translateY(0) rotate(0); opacity: 1; } }
.cc-hero__line2 { font-size: clamp(40px, 5.2vw, 66px); }
.cc-hero__line3 { font-size: clamp(40px, 5.2vw, 66px); }
.cc-shimmer {
  background: linear-gradient(100deg, #4FDBDD 0%, #fff 25%, #5371FE 50%, #4FDBDD 75%, #fff 100%);
  background-size: 250% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 4.5s linear infinite;
}
@keyframes shimmer { to { background-position: -250% center; } }

.cc-stat__num .u { font-family: var(--font-body); font-size: 13px; color: var(--brand-cyan); font-weight: 600; }

/* price ticker */
.cc-ticker { position: relative; z-index: 3; display: flex; align-items: stretch; gap: 0; margin: 8px 0 12px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(8,11,24,.6); backdrop-filter: blur(10px); overflow: hidden; }
.cc-ticker__tag { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; padding: 13px 20px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: .14em; color: var(--brand-cyan);
  background: rgba(79,219,221,.08); border-right: 1px solid var(--line-cyan); }
.cc-ticker__track { flex: 1; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.cc-ticker__run { display: inline-flex; align-items: center; gap: 36px; padding: 13px 0; white-space: nowrap; animation: ticker 34s linear infinite; }
.cc-ticker:hover .cc-ticker__run { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.cc-tick__item { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 13.5px; }
.cc-tick__item b { color: var(--fg1); font-weight: 600; }
.cc-tick__p { color: var(--fg2); font-variant-numeric: tabular-nums; }
.cc-tick__d { font-size: 12px; font-weight: 600; }
.cc-tick__d.up { color: #34D399; }
.cc-tick__d.down { color: #F87171; }

/* radar map */
.cc-radar {
  position: relative; aspect-ratio: 1/1; border-radius: var(--r-xl); overflow: hidden;
  background: radial-gradient(120% 120% at 50% 50%, rgba(83,113,254,.18), transparent 55%), linear-gradient(160deg, #0E1430, #090C1C);
  border: 1px solid var(--line-strong); box-shadow: var(--sh-3), 0 0 60px rgba(79,219,221,.12);
}
.cc-radar__grid { position: absolute; inset: 0; opacity: .55;
  background-image: linear-gradient(rgba(124,146,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(124,146,255,.08) 1px, transparent 1px);
  background-size: 38px 38px; mask-image: radial-gradient(75% 75% at 50% 50%, #000, transparent); }
.cc-radar__sweep { position: absolute; inset: -25%; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(79,219,221,.0) 0deg, rgba(79,219,221,.22) 40deg, rgba(79,219,221,0) 80deg);
  animation: sweep 5s linear infinite; mix-blend-mode: screen; }
@keyframes sweep { to { transform: rotate(360deg); } }
.cc-radar__rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.cc-radar__rings span { position: absolute; border: 1px solid rgba(124,146,255,.14); border-radius: 50%; }
.cc-radar__rings span:nth-child(1) { width: 38%; height: 38%; }
.cc-radar__rings span:nth-child(2) { width: 64%; height: 64%; }
.cc-radar__rings span:nth-child(3) { width: 90%; height: 90%; }
.cc-pin--active { width: 18px; height: 18px; background: #fff !important; box-shadow: 0 0 0 5px rgba(79,219,221,.3), 0 0 24px rgba(79,219,221,.9) !important; z-index: 4; }
.cc-mapcard { animation: cardIn .5s var(--ease-out); }
@keyframes cardIn { 0% { opacity: 0; transform: translateY(8px); } 100% { opacity: 1; transform: translateY(0); } }

/* scroll reveal — content always visible; scroll-driven entrance only where supported */
.cc-reveal { opacity: 1; }
@supports (animation-timeline: view()) {
  .cc-reveal {
    animation: revealIn linear both;
    animation-timeline: view();
    animation-range: entry 2% cover 16%;
  }
}
@keyframes revealIn { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }

/* button shine sweep */
.cc-btn--primary { position: relative; overflow: hidden; }
.cc-btn--primary::after { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-18deg); transition: left .6s var(--ease-out); }
.cc-btn--primary:hover::after { left: 130%; }

@media (prefers-reduced-motion: reduce) {
  .cc-aurora, .cc-radar__sweep, .cc-ticker__run, .cc-shimmer, .cc-kinetic__word { animation: none !important; }
}
@media (max-width: 600px) {
  .cc-ticker__tag { padding: 11px 14px; font-size: 10.5px; }
  .cc-heroglow { height: 620px; }
}
