:root {
  --bg: #0b0b0c;
  --surface: #101012;
  --ink: #f4f4f1;
  --muted: #9a9aa2;
  --line: #26262a;
  --ac: #17c964;
  --acR: 23, 201, 100;
  --danger: #ff4d5e;
  --light: #f3f1ea;
  --dark-text: #111114;
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --display: "Onest", "IBM Plex Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: clip;
}

.has-brand-cursor,
.has-brand-cursor * {
  cursor: none !important;
}

.brand-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 28px;
  height: 28px;
  margin: 0;
  pointer-events: none;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.15s ease;
}

.brand-cursor.is-on {
  opacity: 1;
}

.brand-cursor__ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(var(--acR), 0.55);
  border-radius: 50%;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.brand-cursor__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--ac);
  box-shadow: 0 0 10px rgba(var(--acR), 0.7);
  transition: transform 0.15s ease, background 0.15s ease;
}

.brand-cursor.is-hot .brand-cursor__ring {
  transform: scale(1.45);
  border-color: #f4f4f1;
  background: rgba(244, 244, 241, 0.12);
  box-shadow: 0 0 16px rgba(244, 244, 241, 0.35);
}

.brand-cursor.is-hot .brand-cursor__dot {
  transform: scale(1.25);
  background: #f4f4f1;
  box-shadow: 0 0 12px rgba(244, 244, 241, 0.75);
}

.brand-cursor.is-hot.is-down .brand-cursor__ring {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.brand-cursor.is-hot.is-down .brand-cursor__dot {
  background: #ffffff;
}

.brand-cursor.is-down .brand-cursor__ring {
  transform: scale(0.85);
}

.brand-cursor.is-down .brand-cursor__dot {
  transform: scale(0.8);
}

@media (prefers-reduced-motion: reduce) {
  .brand-cursor,
  .brand-cursor__ring,
  .brand-cursor__dot {
    transition: none;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(clamp(1240px, 92vw, 1880px), calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 12, 0.96);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo i,
.label i,
.eyebrow i {
  width: 9px;
  height: 9px;
  background: var(--ac);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(var(--acR), 0.55);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.topbar__center {
  margin: 0;
  color: #6e6e76;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--fill {
  background: var(--ac);
  color: #0b0b0c;
  box-shadow: 4px 4px 0 rgba(var(--acR), 0.25);
}

.btn--fill:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(var(--acR), 0.3);
}

.btn--outline {
  border-color: var(--ac);
  color: var(--ac);
  background: transparent;
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-weight: 500;
}

.btn--outline:hover {
  background: rgba(var(--acR), 0.1);
}

.btn--ghost {
  border-color: #26262a;
  color: var(--ink);
  background: transparent;
  font-weight: 500;
}

.btn--ghost:hover {
  border-color: var(--ac);
  color: var(--ink);
}

.btn--ghost-dark {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
  font-weight: 500;
}

.btn--ghost-dark:hover {
  border-color: var(--ac);
  color: var(--ink);
}

.btn--lg {
  min-height: 54px;
  padding: 1.05rem 1.9rem;
  font-size: 0.84rem;
}

.btn--block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: clip;
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 64px);
  min-height: calc(100dvh - 64px);
  background:
    radial-gradient(ellipse 900px 620px at 78% 32%, rgba(var(--acR), 0.14), transparent 65%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 90px),
    #0b0b0c;
}

.hero__stage {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  align-content: space-between;
  padding: clamp(1.5rem, 3.5vw, 3rem) 0 0;
  box-sizing: border-box;
}

.hero__copy {
  flex: 1 1 560px;
  min-width: min(100%, 290px);
  padding-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--ac);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  margin: 1.35rem 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero__line--outline {
  display: block;
  color: #0b0b0c;
  text-shadow:
    2.2px 0 var(--ac),
    2.03px 0.84px var(--ac),
    1.56px 1.56px var(--ac),
    0.84px 2.03px var(--ac),
    0 2.2px var(--ac),
    -0.84px 2.03px var(--ac),
    -1.56px 1.56px var(--ac),
    -2.03px 0.84px var(--ac),
    -2.2px 0 var(--ac),
    -2.03px -0.84px var(--ac),
    -1.56px -1.56px var(--ac),
    -0.84px -2.03px var(--ac),
    0 -2.2px var(--ac),
    0.84px -2.03px var(--ac),
    1.56px -1.56px var(--ac),
    2.03px -0.84px var(--ac);
}

.lead {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  color: #a6a6ae;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__chips li {
  padding: 0.5rem 0.85rem;
  border: 1px solid #26262a;
  color: #9a9aa2;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.hero__visual {
  flex: 1 1 380px;
  min-width: min(100%, 280px);
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  overflow: visible;
  padding: 2.5rem 1.5rem;
}

.hero__orb {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
}

.hero__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  translate: -50% -50%;
}

.hero__orbit--outer {
  width: 140%;
  height: 104%;
  border-color: rgba(255, 255, 255, 0.12);
  rotate: -18deg;
}

.hero__orbit--mid {
  width: 122%;
  height: 90%;
  border-color: rgba(var(--acR), 0.22);
  rotate: 12deg;
}

.hero__orbit--inner {
  width: 88%;
  height: 88%;
  border-color: #2e2e33;
  rotate: 0deg;
}

.hero__spark {
  position: absolute;
  fill: var(--ac);
  filter: drop-shadow(0 0 8px rgba(var(--acR), 0.55));
  z-index: 4;
  pointer-events: none;
}

.hero__spark--tr {
  top: 4%;
  right: 8%;
  width: 26px;
  height: 26px;
  animation: sparkPulse 2.8s ease-in-out infinite;
}

.hero__spark--bl {
  bottom: 10%;
  left: 6%;
  width: 18px;
  height: 18px;
  animation: sparkPulse 3.4s ease-in-out infinite;
  animation-delay: -1s;
}

@keyframes sparkPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero__track {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.hero__track--btc {
  rotate: -18deg;
}

.hero__track--eth {
  rotate: 12deg;
}

.hero__coin {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 96px;
  height: 96px;
  margin: -48px;
  offset-rotate: 0deg;
  will-change: offset-distance;
  border-radius: 50%;
  overflow: hidden;
}

.hero__coin--btc {
  offset-path: ellipse(70% 52% at 50% 50%);
  animation: orbitCoin 52s linear infinite;
}

.hero__coin--eth {
  offset-path: ellipse(61% 45% at 50% 50%);
  animation: orbitCoin 22s linear infinite reverse;
  animation-delay: -7s;
}

.coin-canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  border-radius: 50%;
}

@keyframes orbitCoin {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}

.hero__portrait-wrap {
  position: absolute;
  inset: 7%;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 50% 105%,
      rgba(var(--acR), 0.28),
      rgba(var(--acR), 0.06) 55%,
      rgba(var(--acR), 0) 72%
    ),
    #101013;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(var(--acR), 0.18),
    0 0 60px rgba(var(--acR), 0.16);
}

.hero__portrait {
  width: 77%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  margin: 0 auto;
}

.hero__proof {
  width: 100%;
  flex: 1 1 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  gap: clamp(0.2rem, 1.5vw, 0.85rem);
  margin-top: auto;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  padding: clamp(0.5rem, 2.5vw, 0.75rem) clamp(0.85rem, 3.5vw, 1.6rem);
  border: 1px solid #2e2e33;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1vw, 0.45rem);
  min-width: 0;
  color: inherit;
  transition: opacity 0.2s ease;
}

.proof-pill:hover {
  opacity: 0.8;
}

.proof-pill__icon {
  width: clamp(23px, 7vw, 34px);
  height: clamp(23px, 7vw, 34px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.proof-pill__icon svg {
  width: 56%;
  height: auto;
  fill: #fff;
}

.proof-pill__icon--yt {
  background: #ff0033;
  box-shadow: 0 8px 20px rgba(255, 0, 51, 0.35);
}

.proof-pill__icon--tg {
  background: #2aabee;
  box-shadow: 0 8px 20px rgba(42, 171, 238, 0.35);
}

.proof-pill__icon--ig {
  background: radial-gradient(
    circle at 28% 110%,
    #feda75 0%,
    #fa7e1e 26%,
    #d62976 52%,
    #962fbf 76%,
    #4f5bd5 100%
  );
  box-shadow: 0 8px 20px rgba(214, 41, 118, 0.35);
}

.proof-pill__icon--ig svg {
  fill: none;
  stroke: #fff;
}

.proof-pill__icon--vk {
  background: #0077ff;
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.35);
}

.proof-pill span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.proof-pill b {
  font-family: var(--display);
  font-size: clamp(0.66rem, 3.4vw, 0.9rem);
  line-height: 1.1;
  white-space: nowrap;
}

.proof-pill small {
  color: #6e6e76;
  font-size: clamp(0.45rem, 1.1vw, 0.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}

@media (max-width: 719px) {
  .topbar__center {
    display: none;
  }
}

.ticker {
  margin-top: auto;
  flex-shrink: 0;
  border-block: 1px solid var(--line);
  background: #0b0b0c;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: slide 32s linear infinite;
}

.ticker__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: 0.9rem 0;
}

.ticker__group span {
  color: #9a9aa2;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.ticker__group i {
  font-style: normal;
  color: var(--ac);
  padding: 0 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-family: var(--display);
}

@keyframes slide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  color: var(--ac);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.label--light {
  color: var(--ac);
}

.h1 {
  margin: 0 0 1.75rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.h1--dark {
  color: var(--ink);
}

.fit,
.proof,
.pricing,
.inside,
.mentors,
.faq,
.final {
  padding: clamp(3.75rem, 7.5vw, 5.25rem) 0;
  background: var(--bg);
  color: var(--ink);
}

.fit,
.pricing {
  background: var(--surface);
}

.fit__title {
  margin-bottom: 1.75rem;
  max-width: 14ch;
}

.fit__grid {
  display: grid;
  gap: 1.15rem;
}

.fit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0e0e10;
}

.fit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--line);
}

.fit-card--yes::before {
  background: var(--ac);
  box-shadow: 0 0 24px rgba(var(--acR), 0.45);
}

.fit-card--no::before {
  background: var(--danger);
  box-shadow: 0 0 24px rgba(255, 77, 94, 0.35);
}

.fit-card--yes {
  background:
    radial-gradient(520px 220px at 0% 0%, rgba(var(--acR), 0.14), transparent 60%),
    linear-gradient(180deg, #121416 0%, #0c0c0e 100%);
}

.fit-card--no {
  background:
    radial-gradient(520px 220px at 0% 0%, rgba(255, 77, 94, 0.1), transparent 60%),
    linear-gradient(180deg, #141214 0%, #0c0c0e 100%);
}

.fit-card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.25rem 1.25rem 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.fit-card__mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.fit-card--yes .fit-card__mark {
  color: var(--ac);
  border-color: rgba(var(--acR), 0.45);
  background: rgba(var(--acR), 0.08);
}

.fit-card--no .fit-card__mark {
  color: var(--danger);
  border-color: rgba(255, 77, 94, 0.4);
  background: rgba(255, 77, 94, 0.08);
}

.fit-card__kicker {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.fit-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.fit-card--yes h3 {
  color: var(--ink);
}

.fit-card--no h3 {
  color: var(--ink);
}

.fit-card ul {
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  display: grid;
}

.fit-card li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.55rem;
  align-items: start;
  margin: 0;
  padding: 0.85rem 1.25rem 0.85rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #c4c4ca;
  font-size: 0.95rem;
  line-height: 1.45;
  transition: background 0.2s ease, color 0.2s ease;
}

.fit-card li:last-child {
  border-bottom: 0;
}

.fit-card li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.4rem;
  border-radius: 1px;
  transform: rotate(45deg);
}

.fit-card--yes li::before {
  background: var(--ac);
  box-shadow: 0 0 10px rgba(var(--acR), 0.55);
}

.fit-card--no li::before {
  background: var(--danger);
  box-shadow: 0 0 10px rgba(255, 77, 94, 0.4);
}

.fit-card li span {
  min-width: 0;
}

@media (hover: hover) {
  .fit-card--yes li:hover {
    background: rgba(var(--acR), 0.06);
    color: var(--ink);
  }

  .fit-card--no li:hover {
    background: rgba(255, 77, 94, 0.06);
    color: var(--ink);
  }
}

.tools-head {
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.tools-head .h1 {
  margin-bottom: 0.7rem;
}

.tools-head__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tools {
  display: grid;
  gap: 0.85rem;
}

.tool {
  --tool-glow: var(--acR);
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.03), transparent 40%),
    #0e0e11;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

a.tool {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.tool::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: rgba(var(--tool-glow), 0.55);
  box-shadow: 0 0 18px rgba(var(--tool-glow), 0.35);
  opacity: 0.7;
  transition: opacity 0.25s ease, width 0.25s ease;
}

.tool:hover {
  border-color: rgba(var(--tool-glow), 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(var(--tool-glow), 0.12);
}

.tool:hover::before {
  opacity: 1;
  width: 3px;
}

.tool--dump {
  --tool-glow: 255, 77, 94;
}

.tool__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 8.8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 75% 70% at 50% 35%, rgba(var(--tool-glow), 0.16), transparent 62%),
    linear-gradient(160deg, #151518 0%, #0b0b0c 100%);
  overflow: hidden;
}

.tool__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.tool:hover .tool__scan {
  animation: toolScan 0.9s ease forwards;
}

.tool__visual svg {
  position: relative;
  z-index: 1;
  width: min(88%, 204px);
  height: auto;
  filter: drop-shadow(0 0 10px rgba(var(--tool-glow), 0.22));
  overflow: visible;
}

/* Radar — only on hover (view-box = center at SVG 80,52) */
.tool__radar-sweep {
  transform-box: view-box;
  transform-origin: 80px 52px;
}

.tool--radar:hover .tool__radar-sweep {
  animation: toolRadar 2.4s linear infinite;
}

.tool--radar:hover .tool__radar-dot--2 {
  animation: toolBlip 1.2s ease-in-out infinite;
}

.tool--radar:hover .tool__radar-dot--3 {
  animation: toolBlip 1.2s ease-in-out 0.2s infinite;
}

.tool--radar:hover .tool__radar-dot--4 {
  animation: toolBlip 1.2s ease-in-out 0.4s infinite;
}

.tool--radar:hover .tool__radar-ring {
  animation: toolRingPulse 1.6s ease-out infinite;
}

/* DUMP-BOT */
.tool__dump-line {
  stroke-dasharray: 220;
  stroke-dashoffset: 0;
}

.tool--dump:hover .tool__dump-line {
  animation: toolDraw 1.1s ease forwards;
}

.tool--dump:hover .tool__dump-arrow {
  animation: toolArrowNudge 0.7s ease-in-out infinite;
}

.tool--dump:hover .tool__dump-badge,
.tool--dump:hover .tool__dump-label {
  animation: toolBlip 1s ease-in-out infinite;
}

/* Diary */
.tool__bar {
  transform-box: fill-box;
  transform-origin: left center;
}

.tool--diary:hover .tool__bar--1 {
  animation: toolBarPulse 1.2s ease-in-out infinite;
}

.tool--diary:hover .tool__bar--2 {
  animation: toolBarPulse 1.2s ease-in-out 0.15s infinite;
}

.tool--diary:hover .tool__bar--3 {
  animation: toolBarPulse 1.2s ease-in-out 0.3s infinite;
}

.tool__check {
  transform-box: fill-box;
  transform-origin: center;
}

.tool--diary:hover .tool__check {
  animation: toolCheckPulse 1.2s ease-in-out 0.2s infinite;
}

/* Polymarket */
.tool__poly-yes,
.tool__poly-yes-label {
  transform-box: fill-box;
  transform-origin: center;
}

.tool--poly:hover .tool__poly-yes {
  animation: toolYesPulse 1.1s ease-in-out infinite;
}

.tool--poly:hover .tool__poly-yes-label {
  animation: toolBlip 1.1s ease-in-out infinite;
}

.tool--poly:hover .tool__poly-no,
.tool--poly:hover .tool__poly-no-label {
  animation: toolFadeSoft 1.1s ease-in-out infinite;
}

.tool__poly-link {
  stroke-dasharray: 20;
  stroke-dashoffset: 0;
}

.tool--poly:hover .tool__poly-link {
  animation: toolDrawLink 0.8s ease forwards;
}

/* Chat — typing dots + message reveal (no float) */
.tool__bubble--in,
.tool__bubble--out {
  transform-box: fill-box;
  transform-origin: center;
}

.tool--chat:hover .tool__bubble--in {
  animation: toolChatFade 2.4s ease-in-out infinite;
}

.tool--chat:hover .tool__bubble--out {
  animation: toolChatFade 2.4s ease-in-out 0.5s infinite;
}

.tool__dot {
  transform-box: fill-box;
  transform-origin: center;
}

.tool--chat:hover .tool__dot--1 {
  animation: toolTypeDot 0.9s ease-in-out infinite;
}

.tool--chat:hover .tool__dot--2 {
  animation: toolTypeDot 0.9s ease-in-out 0.15s infinite;
}

.tool--chat:hover .tool__dot--3 {
  animation: toolTypeDot 0.9s ease-in-out 0.3s infinite;
}

.tool__msg-line {
  stroke-dasharray: 36;
  stroke-dashoffset: 0;
}

.tool--chat:hover .tool__msg-line--1 {
  animation: toolMsgDraw 2.4s ease-in-out infinite;
}

.tool--chat:hover .tool__msg-line--2 {
  animation: toolMsgDraw 2.4s ease-in-out 0.18s infinite;
}

/* Calls */
.tool__call-ring--l,
.tool__call-ring--r,
.tool__call-core {
  transform-box: fill-box;
  transform-origin: center;
}

.tool--calls:hover .tool__call-ring--l {
  animation: toolRingOut 1.4s ease-out infinite;
}

.tool--calls:hover .tool__call-ring--r {
  animation: toolRingOut 1.4s ease-out 0.2s infinite;
}

.tool--calls:hover .tool__call-core {
  animation: toolPop 0.5s cubic-bezier(0.2, 1.4, 0.4, 1) both;
}

.tool--calls:hover .tool__call-wave {
  animation: toolWave 1.2s ease-in-out infinite;
}

.tool__body {
  position: relative;
  display: grid;
  gap: 0.22rem;
  padding: 0.7rem 0.85rem 0.85rem 1rem;
}

.tool__idx {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(var(--tool-glow), 0.55);
}

.tool h3 {
  margin: 0;
  padding-right: 1.6rem;
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.25;
}

.tool p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  max-width: 30ch;
}

@keyframes toolScan {
  to {
    transform: translateX(120%);
  }
}

@keyframes toolRadar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes toolBlip {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@keyframes toolRingPulse {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.25;
    stroke-width: 2;
  }
}

@keyframes toolDraw {
  from {
    stroke-dashoffset: 220;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes toolArrowNudge {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(2px, -2px);
  }
}

@keyframes toolBarGrow {
  from {
    transform: scaleX(0.15);
    opacity: 0.35;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes toolBarPulse {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.45;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes toolPop {
  0% {
    transform: scale(0.55);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes toolCheckPulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes toolYesPulse {
  0%,
  100% {
    fill: rgba(23, 201, 100, 0.08);
    stroke: rgba(23, 201, 100, 0.5);
  }
  50% {
    fill: rgba(23, 201, 100, 0.22);
    stroke: rgba(23, 201, 100, 0.95);
  }
}

@keyframes toolFadeSoft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@keyframes toolDrawLink {
  from {
    stroke-dashoffset: 20;
    opacity: 0.2;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes toolBubbleIn {
  from {
    transform: translate(-8px, 4px);
    opacity: 0.2;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes toolBubbleOut {
  from {
    transform: translate(8px, -4px);
    opacity: 0.2;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes toolChatFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes toolChatFade {
  0%,
  100% {
    opacity: 0.45;
  }
  40%,
  65% {
    opacity: 1;
  }
}

@keyframes toolTypeDot {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes toolMsgDraw {
  0%,
  100% {
    stroke-dashoffset: 36;
    opacity: 0.25;
  }
  40%,
  70% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes toolRingOut {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.18);
    opacity: 0.15;
  }
}

@keyframes toolWave {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateY(2px);
  }
}

.diary-feature {
  display: grid;
  gap: 0;
  margin-top: 0;
  padding-top: clamp(6.5rem, 12vw, 9rem);
  width: 100%;
  align-items: start;
}

.diary-feature__head {
  max-width: 36rem;
  scroll-margin-top: 1rem;
}

.diary-feature__body {
  display: grid;
  gap: 1.75rem;
  width: 100%;
  align-items: start;
}

.diary-feature__copy {
  min-width: 0;
}

.diary-feature__lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 36rem;
}

.diary-feature__copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.diary-feature__copy li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--muted);
  line-height: 1.45;
}

.diary-feature__copy li::before {
  content: "+";
  color: var(--ac);
  font-weight: 700;
  line-height: 1.35;
  margin-top: 0.1rem;
}

.diary-feature__copy li strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text, #f4f4f1);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.diary-feature__copy li span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.diary {
  --diary-mint: #2ee0a6;
  --diary-loss: #f95e7e;
  --diary-purple: #7166fb;
  --diary-blue: #5386fe;
  --diary-grad: linear-gradient(90deg, #7166fb 0%, #5386fe 100%);
  --diary-btn: #2b2f5c;
  --diary-btn-2: #1a283f;
  --diary-line: rgba(255, 255, 255, 0.09);
  display: grid;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  width: 100%;
  min-width: 0;
}

.diary__left,
.diary__right {
  min-width: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, #1c1e42 0%, #161833 48%, #12142c 100%);
  border: 1px solid rgba(120, 130, 200, 0.14);
  box-shadow: 0 18px 50px rgba(8, 10, 30, 0.45);
}

.diary__left {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.15rem 1.2rem;
}

.diary__views {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}

.diary__panel[data-panel="dash"],
.diary__panel[data-panel="analytics"] {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.diary__panel[data-panel="analytics"] {
  gap: 0.85rem;
}

.diary__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.diary-an__head {
  margin-top: 0.15rem;
}

.diary-an__kicker {
  margin: 0 0 0.25rem;
  color: #8b91b0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.diary-an__title {
  margin: 0;
  color: #f4f4f1;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.diary-an__insights {
  display: grid;
  gap: 0.55rem;
}

.diary-an__card {
  display: grid;
  gap: 0.3rem;
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 36, 0.45);
}

.diary-an__card--ok {
  border-color: rgba(47, 222, 167, 0.28);
  background: linear-gradient(135deg, rgba(47, 222, 167, 0.1), rgba(12, 14, 36, 0.35));
}

.diary-an__card--warn {
  border-color: rgba(249, 94, 126, 0.28);
  background: linear-gradient(135deg, rgba(249, 94, 126, 0.1), rgba(12, 14, 36, 0.35));
}

.diary-an__tag {
  color: #9aa0c0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.diary-an__card strong {
  color: #f4f4f1;
  font-size: 15px;
  outline: none;
}

.diary-an__card p {
  margin: 0;
  color: #9aa0c0;
  font-size: 13px;
  line-height: 1.4;
  outline: none;
}

.diary-an__split {
  display: grid;
  gap: 0.55rem;
}

.diary-an__block {
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 36, 0.45);
}

.diary-an__label {
  margin: 0 0 0.65rem;
  color: #8b91b0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.diary-an__meters {
  display: grid;
  gap: 0.65rem;
}

.diary-an__meter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  color: #c5c9de;
  font-size: 13px;
}

.diary-an__meter-top .is-pos {
  color: var(--diary-mint, #2ee0a6);
  font-weight: 700;
}

.diary-an__meter i {
  display: block;
  height: 8px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.diary-an__meter i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, #2fdea7, #17c964);
}

.diary-an__meter i.is-short::after {
  background: linear-gradient(90deg, #7c6af5, #5386fe);
}

.diary-an__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.diary-an__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.diary-an__list span {
  color: #9aa0c0;
  font-size: 13px;
}

.diary-an__list input {
  width: auto;
  max-width: 7rem;
  border: 0;
  background: transparent;
  color: #f4f4f1;
  text-align: right;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}

.diary-an__list input.is-pos,
.diary-an__pairs .is-pos {
  color: var(--diary-mint, #2ee0a6);
}

.diary-an__pairs .is-neg {
  color: var(--diary-loss, #f95e7e);
}

.diary-an__block--pairs {
  margin-top: auto;
}

.diary-an__pairs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.diary-an__pairs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.diary-an__pairs strong,
.diary-an__pairs span {
  outline: none;
  font-size: 13px;
}

.diary-an__pairs strong {
  font-weight: 700;
  color: #f4f4f1;
}

.diary-an__pairs span {
  font-weight: 700;
}

@media (min-width: 700px) {
  .diary-an__split {
    grid-template-columns: 1fr 1fr;
  }
}

.diary__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
  border: 1px solid var(--diary-line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(10, 12, 32, 0.35);
}

.diary__footer {
  display: grid;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.diary__ranges {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(12, 14, 36, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.diary__range {
  flex: 1 1 auto;
  padding: 0.72rem 0.5rem;
  border-radius: 999px;
  background: transparent;
  color: #9aa0c0;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.diary__range.is-active {
  color: #fff;
  background: var(--diary-grad);
  box-shadow: 0 8px 20px rgba(83, 134, 254, 0.28);
}

.diary__right {
  display: flex;
  flex-direction: column;
  padding: 0.9rem;
  background: linear-gradient(180deg, #1a1c3d 0%, #13152c 100%);
  min-height: 0;
}

.diary__trades {
  display: grid;
  gap: 0.55rem;
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding-right: 0.15rem;
}

.diary__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.diary__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  color: #f4f4f1;
}

.diary__brand strong {
  font-weight: 600;
  line-height: 1;
}

.diary__icon {
  width: 14px;
  height: 14px;
  color: #d0d4e8;
  flex-shrink: 0;
  display: block;
  overflow: visible;
  position: relative;
  top: 1px;
}

.diary__book {
  font-size: 15px;
  line-height: 1;
}

.diary__account {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 14, 36, 0.55);
  color: #ececf2;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.diary__account i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--diary-mint);
  box-shadow: 0 0 8px rgba(46, 224, 166, 0.85);
  animation: diaryPulse 1.8s ease-in-out infinite;
}

@keyframes diaryPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 6px rgba(46, 224, 166, 0.7);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.85);
    box-shadow: 0 0 14px rgba(46, 224, 166, 0.25);
  }
}

.diary__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1rem;
  padding: 4px;
  border-radius: 999px;
  background: rgba(12, 14, 36, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.diary__tab,
.diary__range,
.diary-note__save,
.diary-share {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.diary__tab {
  padding: 0.72rem 0.85rem;
  border-radius: 999px;
  background: transparent;
  color: #9aa0c0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.diary__tab.is-active {
  color: #fff;
  background: var(--diary-grad);
  box-shadow: 0 8px 22px rgba(83, 134, 254, 0.3);
}

.diary__period-label {
  margin: 0 0 0.25rem;
  color: #8b91b0;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.diary__total {
  display: block;
  margin-bottom: 0.2rem;
}

.diary__total input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--diary-mint);
  font-family: var(--font);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-shadow: 0 0 28px rgba(46, 224, 166, 0.55);
  outline: none;
  padding: 0;
}

.diary__chart {
  height: 150px;
  margin: 1.35rem 0 0.85rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.diary__chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.diary__chart-line {
  stroke: #2fdea7;
  stroke-width: 2;
  filter: drop-shadow(0 0 5px rgba(47, 222, 167, 0.75));
  transition: none;
  vector-effect: non-scaling-stroke;
}

.diary__chart-fill {
  transition: none;
}

.diary__chart-base {
  stroke: rgba(170, 180, 220, 0.32);
  stroke-width: 1;
  stroke-dasharray: 2 4;
  vector-effect: non-scaling-stroke;
}

.diary__stat {
  display: grid;
  gap: 0.4rem;
  padding: 1.15rem 0.85rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--diary-line);
  border-bottom: 1px solid var(--diary-line);
}

.diary__stat:nth-child(3n) {
  border-right: 0;
}

.diary__stat:nth-child(n + 4) {
  border-bottom: 0;
}

.diary__stat span {
  color: #8b91b0;
  font-size: 13px;
  font-weight: 500;
}

.diary__stat input,
.diary-trade__grid input,
.diary-note textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f4f4f1;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  padding: 0;
  min-width: 0;
}

.diary__stat input {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.diary-trade__grid input {
  font-size: 13px;
  font-weight: 600;
}

.diary__stat input.is-pos,
.diary-trade__grid input.is-pos,
.diary-trade__meta .is-pos {
  color: var(--diary-mint);
  text-shadow: 0 0 12px rgba(46, 224, 166, 0.3);
}

.diary__stat input.is-neg {
  color: var(--diary-loss);
}

.diary__bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  align-items: end;
  height: 170px;
  margin: 0.5rem 0 1rem;
  padding: 0.75rem 0.5rem 0.4rem;
  border-radius: 12px;
  background: #0d0f14;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.diary__bar {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.35rem;
  justify-items: center;
  height: 100%;
}

.diary__bar i {
  display: block;
  align-self: end;
  width: 100%;
  max-width: 28px;
  height: var(--h);
  min-height: 24px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #6ff0c4, #2ee0a6 60%, rgba(46, 224, 166, 0.25));
  box-shadow: 0 0 16px rgba(46, 224, 166, 0.25);
}

.diary__bar span {
  color: var(--muted);
  font-size: 0.68rem;
}

.diary__hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.diary-trade {
  border-radius: 16px;
  background: #151736;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.diary-trade.is-open {
  border-color: rgba(46, 224, 166, 0.28);
  background: #181a3c;
  box-shadow: none;
}

.diary-trade__head {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.diary-trade__pair,
.diary-trade__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.diary-trade__pair strong,
.diary-trade__meta strong {
  font-size: 14px;
  outline: none;
}

.diary-trade__meta time {
  color: var(--muted);
  font-size: 12px;
}

.diary-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.diary-badge--long {
  color: #0b0b0c;
  background: var(--diary-mint, #2ee0a6);
}

.diary-badge--short {
  color: #fff;
  background: #ff4d5e;
}

.diary-trade__body {
  display: none;
  gap: 0.75rem;
  padding: 0 0.85rem 0.9rem;
}

.diary-trade.is-open .diary-trade__body {
  display: grid;
}

.diary-trade__timeline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 11px;
  user-select: none;
}

.diary-trade__timeline > span {
  line-height: 1.25;
  text-align: center;
  min-width: 3.2rem;
}

.diary-trade__timeline > span b {
  display: inline-block;
  margin-top: 0.15rem;
  color: #d7dcef;
  font-size: 10px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.diary-trade__track {
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
  touch-action: none;
}

.diary-trade__track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(46, 224, 166, 0.22);
}

.diary-trade__range {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: rgba(46, 224, 166, 0.55);
  left: 12%;
  right: 12%;
  cursor: grab;
}

.diary-trade__range.is-dragging {
  cursor: grabbing;
}

.diary-trade__knob {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--diary-mint, #2ee0a6);
  box-shadow: 0 0 10px rgba(46, 224, 166, 0.7);
  transform: translate(-50%, -50%);
  cursor: grab;
  z-index: 1;
}

.diary-trade__knob:active,
.diary-trade__knob.is-dragging {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.12);
}

.diary-trade__knob[data-range-knob="in"] {
  left: 12%;
}

.diary-trade__knob[data-range-knob="out"] {
  left: 88%;
}

.diary-trade__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.diary-trade__grid label {
  display: grid;
  gap: 0.15rem;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.diary-trade__grid label span {
  color: var(--muted);
  font-size: 11px;
}

.diary-note {
  display: grid;
  gap: 0.45rem;
  padding: 0.7rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.diary-note p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.diary-note textarea {
  resize: vertical;
  min-height: 2.6rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: #0d0f14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
}

.diary-note__save {
  justify-self: start;
  padding: 0.42rem 0.7rem;
  border-radius: 10px;
  background: #1a1c22;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.diary-share {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: var(--diary-grad, linear-gradient(90deg, #7c6af5 0%, #3f82f6 100%));
  box-shadow: 0 10px 28px rgba(63, 130, 246, 0.28);
}

.diary__toast {
  margin: 0.55rem 0 0;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(46, 224, 166, 0.12);
  border: 1px solid rgba(46, 224, 166, 0.35);
  color: var(--diary-mint, #2ee0a6);
  font-size: 0.82rem;
  font-weight: 600;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 900px) {
  .diary-feature__body {
    grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
    gap: clamp(1.75rem, 3vw, 3rem);
    align-items: start;
  }

  .diary {
    grid-template-columns: 1.18fr 1fr;
    gap: 0.75rem;
  }

  .diary__left,
  .diary__right {
    min-height: min(68vh, 740px);
  }

  .diary-trade__head {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .diary-trade__pair {
    justify-content: flex-start;
  }

  .diary-trade__meta {
    justify-content: flex-end;
    text-align: right;
  }
}

.gift {
  display: grid;
  gap: 1.15rem;
  margin-top: clamp(3.75rem, 7.5vw, 5.25rem);
  padding: 1.5rem 1.5rem;
  border: 1px solid rgba(var(--acR), 0.35);
  background:
    linear-gradient(90deg, rgba(var(--acR), 0.1), transparent 55%),
    #0e0e10;
}

.gift .label {
  margin-bottom: 0.55rem;
}

.gift h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.gift p:last-of-type {
  margin: 0;
  color: var(--muted);
}

.cases-rail {
  overflow: hidden;
  width: 100%;
  margin: 0 0 0.25rem;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.cases-track {
  display: flex;
  width: max-content;
  animation: casesSlide 55s linear infinite;
  will-change: transform;
}

.cases-rail:hover .cases-track {
  animation-play-state: paused;
}

.cases {
  display: flex;
  gap: 1rem;
  padding: 0.15rem 0.75rem;
  width: max-content;
}

.case {
  display: flex;
  flex-direction: column;
  flex: 0 0 min(340px, 82vw);
  width: min(340px, 82vw);
  border: 1px solid var(--line);
  background: #0e0e10;
  overflow: hidden;
}

@keyframes casesSlide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.case__pnl {
  position: relative;
  padding: 2.75rem 1.25rem 2.8rem;
  background:
    radial-gradient(420px 200px at 100% 0%, rgba(var(--acR), 0.12), transparent 55%),
    repeating-linear-gradient(
      90deg,
      rgba(var(--acR), 0.035) 0 1px,
      transparent 1px 28px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(var(--acR), 0.03) 0 1px,
      transparent 1px 28px
    ),
    linear-gradient(180deg, #121416 0%, #0c0c0e 100%);
  border-bottom: 1px solid var(--line);
}

.case__pnl::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--ac);
  box-shadow: 0 0 18px rgba(var(--acR), 0.4);
}

.case__head {
  margin-bottom: 1.7rem;
  padding-left: 0.35rem;
}

.case__user {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.case__pair-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.7rem;
}

.case__pair {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.case__side {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case__side--long {
  color: var(--ac);
  border-color: rgba(var(--acR), 0.4);
  background: rgba(var(--acR), 0.1);
}

.case__side--short {
  color: #ff8a96;
  border-color: rgba(255, 77, 94, 0.4);
  background: rgba(255, 77, 94, 0.1);
}

.case__roi-label {
  margin: 0 0 0.2rem;
  padding-left: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.case__roi {
  margin: 0 0 1.7rem;
  padding-left: 0.35rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.5vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ac);
  text-shadow: 0 0 18px rgba(var(--acR), 0.22);
}

.case__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 1.3rem 0.95rem 1.3rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.28);
}

.case__prices dt {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case__prices dd {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.case__review {
  margin: 0;
  padding: 1.05rem 1.2rem 1.2rem;
  background: #121214;
}

.case__review p {
  margin: 0;
  color: #c8c8ce;
  font-size: 0.95rem;
  line-height: 1.5;
}

.case__review p + p {
  margin-top: 0.4rem;
}

.disclaimer {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.mentors__grid {
  display: grid;
  gap: 1rem;
}

.mentor {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.mentor img,
.mentor__anon {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  background: #141416;
}

.mentor__anon {
  background:
    radial-gradient(circle at 50% 32%, #2a2a30, #141416 70%),
    repeating-linear-gradient(45deg, rgba(var(--acR), 0.05) 0 1px, transparent 1px 18px);
}

.mentor__tag,
.mentor h3,
.mentor ul {
  padding-inline: 1rem;
}

.mentor__tag {
  margin: 1rem 0 0.25rem;
  color: var(--ac);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.mentor h3 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  text-transform: uppercase;
}

.mentor ul {
  margin: 0 0 1.1rem;
  padding-left: 2rem;
  color: var(--muted);
  display: grid;
  gap: 0.3rem;
}

.plans {
  display: grid;
  gap: 1.15rem;
}

.plan {
  padding: 1.45rem 1.25rem;
  background: #121214;
  border: 1px solid var(--line);
}

.plan--hot {
  border: 2px solid var(--ac);
  box-shadow: 0 0 0 4px rgba(var(--acR), 0.12);
}

.plan__name,
.plan__hot {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}

.plan__hot {
  color: var(--ac);
}

.plan__price {
  margin: 0.55rem 0 0.2rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.plan__price small {
  font-size: 0.35em;
}

.plan__term {
  margin: 0 0 1rem;
  color: var(--muted);
}

.plan ul {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.plan ul li::before {
  content: "+ ";
  color: var(--ac);
  font-weight: 800;
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--ac);
}

.pay-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.faq__list {
  display: grid;
  gap: 0.7rem;
}

.faq__list details {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.faq__list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq__list p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.final__box {
  text-align: center;
  padding: 2.8rem 1.2rem;
  border: 1px solid rgba(var(--acR), 0.35);
  background:
    radial-gradient(600px 220px at 50% 0%, rgba(var(--acR), 0.16), transparent 70%),
    #0e0e10;
}

.final__box h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-transform: uppercase;
  color: var(--ac);
}

.final__box p {
  margin: 0.75rem auto 1.2rem;
  max-width: 36ch;
  color: var(--muted);
}

.footer {
  padding: 2.4rem 0 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer__grid {
  display: grid;
  gap: 1.4rem;
}

.footer a {
  display: block;
  margin-top: 0.35rem;
}

.footer a:hover {
  color: var(--ac);
}

.footer__note {
  margin-top: 1.6rem;
  font-size: 0.78rem;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .fit__grid,
  .plans {
    grid-template-columns: 1fr 1fr;
  }

  .tools {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .tool h3 {
    font-size: 0.95rem;
  }

  .mentors__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gift {
    grid-template-columns: 1.5fr auto;
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track,
  .cases-track,
  .hero__coin--btc,
  .hero__coin--eth,
  .hero__spark--tr,
  .hero__spark--bl,
  .diary__account i,
  .tool--radar:hover .tool__radar-sweep,
  .tool--radar:hover .tool__radar-dot--2,
  .tool--radar:hover .tool__radar-dot--3,
  .tool--radar:hover .tool__radar-dot--4,
  .tool--radar:hover .tool__radar-ring,
  .tool--dump:hover .tool__dump-line,
  .tool--dump:hover .tool__dump-arrow,
  .tool--dump:hover .tool__dump-badge,
  .tool--dump:hover .tool__dump-label,
  .tool--diary:hover .tool__bar--1,
  .tool--diary:hover .tool__bar--2,
  .tool--diary:hover .tool__bar--3,
  .tool--diary:hover .tool__check,
  .tool--poly:hover .tool__poly-yes,
  .tool--poly:hover .tool__poly-yes-label,
  .tool--poly:hover .tool__poly-no,
  .tool--poly:hover .tool__poly-no-label,
  .tool--poly:hover .tool__poly-link,
  .tool--chat:hover .tool__bubble--in,
  .tool--chat:hover .tool__bubble--out,
  .tool--chat:hover .tool__dot--1,
  .tool--chat:hover .tool__dot--2,
  .tool--chat:hover .tool__dot--3,
  .tool--chat:hover .tool__msg-line--1,
  .tool--chat:hover .tool__msg-line--2,
  .tool--calls:hover .tool__call-ring--l,
  .tool--calls:hover .tool__call-ring--r,
  .tool--calls:hover .tool__call-core,
  .tool--calls:hover .tool__call-wave,
  .tool:hover .tool__scan {
    animation: none;
  }

  .hero__coin--btc {
    offset-distance: 12%;
  }

  .hero__coin--eth {
    offset-distance: 62%;
  }

  .btn:hover {
    transform: none;
  }
}
