/* ══════════════════════════════════════════════════
   VELORA — Carbon Acid
   Graphite carbon · acid chartreuse · soft orchid
   (avoids cascade green, white UI, gold, electric blue)
   ══════════════════════════════════════════════════ */
:root {
  --bg: #090a0b;
  --bg-elev: #101214;
  --bg-soft: #16191c;
  --ink: #eef0f2;
  --ink-2: #c2c6cb;
  --mute: #8a9098;
  --faint: #5e646c;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.13);
  /* primary: acid chartreuse — secondary: soft orchid */
  --gold: #c8f542;
  --gold-2: #e2ff7a;
  --gold-dim: rgba(200, 245, 66, 0.12);
  --violet: #c77dff;
  --up: #c8f542;
  --danger: #ff5c7a;
  --card: rgba(16, 18, 20, 0.82);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius-sm: 12px;
  --pill: 999px;
  --font: "Instrument Sans", system-ui, sans-serif;
  --display: "Outfit", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shell: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --accent: var(--gold);
  --accent-2: var(--gold-2);
  --accent-soft: var(--gold-dim);
  --color-card: var(--bg-soft);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(200, 245, 66, 0.35);
  color: #0a0b0c;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
.mono {
  font-family: var(--mono);
}
.muted {
  color: var(--faint);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.shell {
  width: min(var(--shell), calc(100% - 2rem));
  margin-inline: auto;
}

/* Ambient orbs */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite;
}
.orb-a {
  width: 420px;
  height: 420px;
  background: rgba(200, 245, 66, 0.12);
  top: -80px;
  left: -60px;
}
.orb-b {
  width: 380px;
  height: 380px;
  background: rgba(199, 125, 255, 0.12);
  top: 20%;
  right: -100px;
  animation-delay: -6s;
}
.orb-c {
  width: 300px;
  height: 300px;
  background: rgba(200, 245, 66, 0.06);
  bottom: 10%;
  left: 30%;
  animation-delay: -12s;
}
@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.08);
  }
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.85rem 0 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 62px;
  padding: 0 0.85rem 0 1rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: rgba(9, 10, 11, 0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: var(--shadow);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-mark {
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(200, 245, 66, 0.35);
}
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.nav-desktop {
  display: flex;
  gap: 1.2rem;
  flex: 1;
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mute);
  transition: color 0.15s;
}
.nav-desktop a:hover {
  color: var(--gold-2);
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.link-quiet {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mute);
  padding: 0.4rem 0.55rem;
}
.link-quiet:hover {
  color: var(--ink);
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  width: min(var(--shell), calc(100% - 2rem));
  margin: 0.5rem auto 0;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 10, 18, 0.95);
  backdrop-filter: blur(16px);
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  padding: 0.75rem 0.65rem;
  border-radius: 10px;
  font-weight: 500;
}
.nav-mobile a:hover {
  background: var(--gold-dim);
  color: var(--gold-2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--pill);
  padding: 0.58rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.15s, filter 0.15s,
    border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: linear-gradient(135deg, #e2ff7a 0%, #c8f542 45%, #9fd400 100%);
  color: #0a0b0c;
  box-shadow: 0 0 0 1px rgba(226, 255, 122, 0.35),
    0 10px 30px rgba(200, 245, 66, 0.22);
}
.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 0 0 1px rgba(226, 255, 122, 0.5),
    0 14px 36px rgba(200, 245, 66, 0.32);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: rgba(200, 245, 66, 0.45);
  color: var(--gold-2);
  background: var(--gold-dim);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  border-color: rgba(200, 245, 66, 0.5);
  color: var(--gold-2);
}
.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
}
.copy-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.85rem;
  border-radius: var(--pill);
  background: var(--gold-dim);
  border: 1px solid rgba(200, 245, 66, 0.28);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 600;
}
.pill.soft {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--mute);
}
.pill i,
.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8f542;
  box-shadow: 0 0 0 3px rgba(200, 245, 66, 0.22), 0 0 12px #c8f542;
}
.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
.badge.panel-tag,
.panel-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: var(--pill);
  background: var(--gold-dim);
  color: var(--gold-2);
  border: 1px solid rgba(200, 245, 66, 0.25);
}

/* ═══ HERO SLIDER ═══ */
.hero {
  padding: 1.5rem 0 2rem;
}
.hero-slider {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(
    155deg,
    rgba(22, 24, 26, 0.95) 0%,
    rgba(10, 11, 12, 0.98) 55%,
    rgba(18, 16, 22, 0.95) 100%
  );
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  min-height: 520px;
}
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 60% 50% at 80% 20%,
      rgba(200, 245, 66, 0.1),
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 80%,
      rgba(199, 125, 255, 0.1),
      transparent 50%
    );
  pointer-events: none;
}
.hero-slide {
  display: none;
  padding: 2.5rem 2.25rem 5.5rem;
  animation: slideIn 0.55s var(--ease);
}
.hero-slide.is-active {
  display: block;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-slide-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}
.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 12ch;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #e2ff7a, #c8f542 45%, #c77dff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: var(--mute);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.hero-kpis span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.25rem;
}
.hero-kpis strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.glass-panel {
  border-radius: 22px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  padding: 1.35rem;
}
.cycle-panel {
  background: linear-gradient(
    165deg,
    rgba(200, 245, 66, 0.08),
    rgba(12, 13, 14, 0.95)
  );
}
.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.countdown-block {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}
.countdown-value {
  display: block;
  font-size: 3.25rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--gold-2);
  text-shadow: 0 0 50px rgba(200, 245, 66, 0.28);
  line-height: 1;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.m-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.25rem;
}
.m-value {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.m-value.lg {
  font-family: var(--display);
  font-size: 1.55rem;
}
.m-value.is-loading {
  color: var(--faint);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Split mini on slide 2 */
.split-mini {
  margin-top: 1.75rem;
}
.split-bar {
  display: flex;
  height: 10px;
  border-radius: var(--pill);
  overflow: hidden;
  background: var(--bg);
  gap: 3px;
}
.split-bar i {
  display: block;
  height: 100%;
  border-radius: var(--pill);
}
.split-bar i:nth-child(1) {
  background: linear-gradient(90deg, #e2ff7a, #c8f542);
}
.split-bar i:nth-child(2) {
  background: var(--violet);
}
.split-bar i:nth-child(3) {
  background: #3a3f46;
}
.split-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--mute);
}
.split-legend b {
  color: var(--ink);
  margin-right: 0.25rem;
}

/* Story cards slide 2 */
.story-cards {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem;
}
.story-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.story-card span {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--faint);
}
.story-card p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.story-card.active {
  border-color: rgba(200, 245, 66, 0.45);
  background: var(--gold-dim);
  transform: scale(1.02);
}
.story-card.active span {
  color: var(--gold);
}

/* Logo cloud slide 3 */
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  min-height: 280px;
}
.logo-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 0.5rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
  animation: pop 0.5s var(--ease) both;
  animation-delay: var(--d, 0s);
  transition: border-color 0.2s, transform 0.2s;
}
.logo-bubble:hover {
  border-color: rgba(200, 245, 66, 0.4);
  transform: translateY(-3px);
}
.logo-bubble img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
}
.logo-bubble b {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-2);
}
@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slider controls */
.slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
}
.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(0, 0, 0, 0.4);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  background: var(--gold-dim);
  transform: scale(1.05);
}
.slider-dots {
  display: flex;
  gap: 0.4rem;
  flex: 1;
  justify-content: center;
}
.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}
.slider-dots .dot.is-active {
  width: 28px;
  border-radius: var(--pill);
  background: var(--gold);
}
.slider-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}
.slider-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #c8f542, #c77dff);
}

/* Rail chips */
.rail {
  padding: 1rem 0;
  border-block: 1px solid var(--line);
  background: rgba(12, 10, 18, 0.5);
}
.rail-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.chip,
.official-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.chip:hover,
.official-chip:hover {
  border-color: rgba(200, 245, 66, 0.4);
  background: var(--gold-dim);
  box-shadow: 0 0 24px rgba(200, 245, 66, 0.08);
}
.chip-k,
.official-k {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.chip .mono,
.official-chip .mono {
  font-size: 0.76rem;
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Market strip */
.market-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.market-track {
  display: flex;
  gap: 2.25rem;
  width: max-content;
  padding: 0.9rem 0;
  animation: marquee 48s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  font-size: 0.85rem;
}
.ticker-item img {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
}
.ticker-item .sym {
  font-weight: 600;
}
.ticker-item .px {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--mute);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: 4.25rem 0;
}
.section-alt {
  background: rgba(255, 255, 255, 0.015);
  border-block: 1px solid var(--line);
}
.section-head {
  margin-bottom: 1.85rem;
  max-width: 36rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head.row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  max-width: none;
}
.section-head h2 {
  margin: 0.4rem 0 0.4rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.section-desc {
  margin: 0;
  color: var(--mute);
}
.stamp {
  margin: 0.5rem 0 0 !important;
  font-size: 0.75rem !important;
  color: var(--faint) !important;
}
.center-row {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}
.carousel-nav {
  display: flex;
  gap: 0.5rem;
}

/* Metrics */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.metric-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.metric {
  background: var(--bg-elev);
  padding: 1.5rem 1.35rem;
}
.metric.accent {
  background: linear-gradient(180deg, rgba(200, 245, 66, 0.1), var(--bg-elev));
}

/* Engine */
.engine-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.engine-card {
  position: relative;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, transform 0.25s var(--ease), box-shadow 0.2s;
  overflow: hidden;
}
.engine-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #c8f542, #c77dff, transparent);
  opacity: 0.8;
}
.engine-card:hover {
  border-color: rgba(200, 245, 66, 0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.engine-card .n {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}
.engine-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.engine-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mute);
  line-height: 1.55;
}

/* Split bento */
.split-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}
.split-card {
  padding: 1.6rem 1.45rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.split-card:hover {
  border-color: rgba(200, 245, 66, 0.35);
  box-shadow: var(--shadow);
}
.split-hero {
  grid-row: span 2;
  background: radial-gradient(
      ellipse 80% 50% at 20% 0%,
      rgba(200, 245, 66, 0.12),
      transparent 55%
    ),
    linear-gradient(165deg, #14161a, rgba(10, 11, 12, 0.96));
  border-color: rgba(200, 245, 66, 0.28);
}
.split-pct {
  display: block;
  font-family: var(--display);
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(120deg, #e2ff7a, #c8f542 50%, #c77dff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}
.split-pct.sm {
  font-size: 2.35rem;
}
.split-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 650;
}
.split-card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Equity carousel */
.eq-carousel {
  margin: 0 -0.25rem;
}
.eq-track,
#basketGrid {
  display: flex !important;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.eq-track::-webkit-scrollbar,
#basketGrid::-webkit-scrollbar {
  display: none;
}

.stock-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 1.3rem 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.04),
    rgba(12, 10, 18, 0.9)
  );
  color: inherit;
  transition: border-color 0.2s, transform 0.25s var(--ease), box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 210px;
}
.stock-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 100% 0%,
    var(--accent, transparent),
    transparent 55%
  );
  opacity: 0.12;
  pointer-events: none;
}
.stock-card:hover {
  border-color: rgba(200, 245, 66, 0.4);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.stock-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.stock-idx {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--faint);
}
.stock-logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.stock-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stock-logo-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #111;
}
.stock-sym {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.stock-name {
  color: var(--mute);
  font-size: 0.88rem;
  margin: 0.15rem 0 0.85rem;
}
.stock-px {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stock-foot {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.stock-chip {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.stock-meta {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--faint);
  text-align: right;
}

/* Ledger */
.cycle-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 0.85rem;
  color: var(--mute);
}
.cycle-chip strong {
  color: var(--gold-2);
  font-size: 1rem;
}
.ledger {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.receipt {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color 0.15s;
}
.receipt:hover {
  border-color: rgba(200, 245, 66, 0.3);
}
.receipt-id {
  font-family: var(--mono);
  font-size: 0.85rem;
}
.receipt-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}
.receipt-status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.receipt-status-warn {
  color: var(--mute) !important;
}
.receipt-status-warn::before {
  background: var(--faint) !important;
  box-shadow: none !important;
}
.receipt-time {
  color: var(--mute);
  font-size: 0.85rem;
}
.receipt-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.badge {
  font-family: var(--mono);
  font-size: 0.68rem;
  padding: 0.22rem 0.45rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--mute);
  background: rgba(0, 0, 0, 0.25);
}
.receipt-total {
  font-weight: 600;
  text-align: right;
  text-transform: capitalize;
}
.receipt-link {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--faint);
}
.receipt-link:hover {
  color: var(--gold-2);
}
.ledger-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px dashed var(--line-2);
  border-radius: 22px;
  background: var(--card);
}
.ledger-empty h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
}
.ledger-empty p {
  margin: 0 auto 1.15rem;
  max-width: 28rem;
  color: var(--mute);
}
.ledger-empty .btn {
  margin: 0 0.25rem;
}

/* FAQ */
.faq-wrap {
  max-width: 680px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item[open] {
  border-color: rgba(200, 245, 66, 0.35);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.3rem;
  font-weight: 600;
  position: relative;
  padding-right: 2.5rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.15rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* CTA */
.cta-section {
  padding-bottom: 4.5rem;
}
.cta-box {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: radial-gradient(
      ellipse 70% 80% at 50% 0%,
      rgba(200, 245, 66, 0.1),
      transparent 55%
    ),
    linear-gradient(165deg, #14161a, #090a0b);
  box-shadow: var(--shadow);
}
.cta-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(200, 245, 66, 0.35);
  margin-bottom: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.cta-box h2 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -0.03em;
}
.cta-box p {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  color: rgba(248, 244, 236, 0.5);
  font-size: 0.95rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.5rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.footer-brand {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.footer-brand img {
  border-radius: 8px;
}
.footer-brand strong {
  font-family: var(--display);
}
.footer-brand p {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links a {
  color: var(--mute);
  font-size: 0.85rem;
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--gold-2);
}
.footer-grid .mono {
  font-size: 0.75rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Compat: process / buy-steps if any leftover */
.process,
.buy-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-slide-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero-slider {
    min-height: 0;
  }
  .hero-slide {
    padding: 1.75rem 1.35rem 5rem;
  }
  .metric-grid,
  .metric-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .engine-track {
    grid-template-columns: 1fr 1fr;
  }
  .split-bento {
    grid-template-columns: 1fr;
  }
  .split-hero {
    grid-row: auto;
  }
  .logo-cloud {
    grid-template-columns: repeat(3, 1fr);
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .nav-desktop,
  .link-quiet {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .topbar-inner {
    border-radius: 16px;
  }
  .hero-copy h1 {
    max-width: none;
  }
  .hero-kpis {
    grid-template-columns: 1fr 1fr;
  }
  .metric-grid,
  .metric-grid-4,
  .engine-track {
    grid-template-columns: 1fr;
  }
  .section-head.row {
    flex-direction: column;
    align-items: flex-start;
  }
  .receipt {
    grid-template-columns: 1fr;
  }
  .receipt-total {
    text-align: left;
  }
  .logo-cloud {
    grid-template-columns: repeat(3, 1fr);
  }
}
