:root {
  --background: #0B0F18;
  --solana: #9945FF;
  --robinhood: #C8FF3D;
  --network-accent: var(--solana);
  --network-tint: rgba(153, 69, 255, 0.12);
  --bg: var(--background);
  --bg2: #141923;
  --panel: rgba(255, 255, 255, 0.045);
  --panel2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.22);
  --text: #F3F4F6;
  --muted: #9DA3AE;
  --muted-2: #C4C8D0;
  --accent: var(--robinhood);
  --accent2: var(--solana);
  --danger: #ff93b2;
  --warning: #ffd28a;
  --ok: #9DA3AE;
  --ok-2: #C8FF3D;
  --header-height: 72px;
}
html[data-analysis-chain="robinhood"] {
  --network-accent: var(--robinhood);
  --network-tint: rgba(200, 255, 61, 0.10);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}
html, body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: radial-gradient(circle at top, rgba(153, 69, 255, 0.09), transparent 28%), linear-gradient(180deg, #111620 0%, var(--background) 42%, #080B11 100%);
  color: var(--text);
}
html[data-route-boot] body {
  overflow: hidden;
}
html[data-route-boot] .site-header {
  display: none;
}
.route-boot-loader {
  display: none;
  min-height: 100vh;
  padding: 24px;
  place-items: center;
}
html[data-route-boot] .route-boot-loader {
  display: grid;
}
html[data-route-boot] .app-shell {
  height: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  visibility: hidden;
}
.route-boot-card {
  width: min(420px, 100%);
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255,0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 255, 61,0.14), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  box-shadow: 0 20px 60px rgba(3, 8, 20, 0.34);
  text-align: center;
}
.route-boot-card strong {
  font-size: 24px;
}
.route-boot-card p {
  margin: 0;
  color: var(--muted-2);
}
.route-boot-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255,0.22);
  border-top-color: var(--accent);
  border-right-color: var(--accent2);
  animation: routeBootSpin 900ms linear infinite;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255,0.18);
  background: rgba(11, 15, 24, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(3, 8, 20, 0.22);
}
.site-header-left {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  font-size: 17px;
  text-decoration: none;
}
.site-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #11161F;
  box-shadow: 0 0 20px rgba(200, 255, 61,0.12);
}
.site-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.site-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-nav::-webkit-scrollbar {
  display: none;
}
.account-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
}
.language-option {
  min-width: 34px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 8px;
  background: transparent;
  color: var(--muted-2);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}
.language-option:hover {
  color: var(--text);
}
.language-option.is-active {
  background: rgba(200, 255, 61,0.16);
  color: var(--ok-2);
}
.header-section-link {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted-2);
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}
.header-section-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.055);
}
.header-login-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(200, 255, 61,0.28);
  background: rgba(255,255,255,0.055);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.header-login-link:hover {
  transform: translateY(-1px);
  background: rgba(200, 255, 61,0.11);
}
.header-account-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(200, 255, 61,0.36);
  background: linear-gradient(135deg, rgba(200, 255, 61,0.92), rgba(153, 69, 255,0.92));
  color: #0B0F18;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(200, 255, 61,0.16);
  overflow: hidden;
}
.header-avatar-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.app-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 32px) 20px 64px;
  min-height: 100vh;
}
.landing-hero {
  min-height: min(760px, calc(100vh - 64px));
  scroll-margin-top: calc(var(--header-height) + 18px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 0;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 28%, rgba(200, 255, 61,0.19), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(153, 69, 255,0.18), transparent 31%),
    linear-gradient(135deg, rgba(200, 255, 61, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035));
  box-shadow: 0 10px 28px rgba(3, 8, 20, 0.26);
  overflow: hidden;
  position: relative;
  animation: heroReveal 700ms ease both;
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}
.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 32px 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 255, 61,0.45), transparent);
}
.landing-copy h1 {
  max-width: 760px;
  font-size: clamp(44px, 8vw, 92px);
  letter-spacing: 0;
}
.landing-copy .subtitle {
  max-width: 760px;
  font-size: 18px;
}
.landing-copy {
  position: relative;
  z-index: 1;
  animation: slideUp 800ms ease 80ms both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 14px;
  background: var(--robinhood);
  color: #0B0F18;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}
.button-link:hover { transform: translateY(-1px); filter: brightness(1.06); }
.secondary-link {
  background: rgba(153, 69, 255, 0.12);
  border: 1px solid rgba(153, 69, 255, 0.5);
  color: var(--text);
}
.button-link.is-disabled {
  opacity: 0.48;
  cursor: not-allowed;
  pointer-events: auto;
}
.full-width-link { width: 100%; }
.landing-page {
  display: grid;
  gap: 18px;
}
.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  isolation: isolate;
  animation: slideUp 800ms ease 180ms both;
}
.signal-orbit {
  position: absolute;
  width: min(360px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255,0.18);
  animation: slowSpin 16s linear infinite;
}
.signal-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ok-2);
  box-shadow: 0 0 18px rgba(200, 255, 61,0.7);
}
.signal-orbit span:nth-child(1) { left: 50%; top: -5px; }
.signal-orbit span:nth-child(2) { right: 12%; bottom: 14%; }
.signal-orbit span:nth-child(3) { left: 8%; bottom: 24%; }
.signal-card,
.mini-signal-card {
  border: 1px solid rgba(255, 255, 255,0.22);
  background: rgba(8,14,30,0.74);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}
.signal-card {
  width: min(330px, 82vw);
  padding: 26px;
  border-radius: 22px;
  text-align: center;
  animation: floatCard 4.8s ease-in-out infinite;
}
.signal-card span,
.signal-card em {
  display: block;
  color: var(--muted);
  font-style: normal;
}
.signal-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 34px;
}
.mini-signal-card {
  position: absolute;
  padding: 10px 13px;
  border-radius: 14px;
  color: var(--muted-2);
  animation: floatCard 5.4s ease-in-out infinite;
}
.mini-a { top: 62px; right: 18px; animation-delay: 250ms; }
.mini-b { left: 6px; bottom: 92px; animation-delay: 520ms; }
.mini-c { right: 42px; bottom: 34px; animation-delay: 820ms; }
.hero-kicker {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(200, 255, 61,0.28);
  border-radius: 999px;
  background: rgba(200, 255, 61,0.08);
  color: var(--ok-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-proof-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-proof-grid span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
}
.terminal-preview {
  width: min(500px, 100%);
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255,0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(11,16,32,0.92), rgba(8,13,26,0.82)),
    rgba(8,14,30,0.9);
  box-shadow: 0 24px 70px rgba(0,0,0,0.34);
  backdrop-filter: blur(12px);
  animation: floatCard 5.6s ease-in-out infinite;
}
.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255,0.16);
}
.terminal-bar span,
.terminal-metrics span,
.report-verdict span,
.report-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.terminal-bar strong {
  color: var(--ok-2);
  font-size: 13px;
}
.terminal-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.terminal-metrics div,
.report-list div,
.trust-grid div {
  display: grid;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255,0.17);
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
}
.terminal-metrics strong {
  font-size: 26px;
  line-height: 1;
}
.terminal-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
}
.terminal-flow i {
  height: 1px;
  min-width: 20px;
  background: linear-gradient(90deg, rgba(200, 255, 61,0.2), rgba(200, 255, 61,0.9));
}
.terminal-feed {
  display: grid;
  gap: 8px;
}
.terminal-feed p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.18);
  color: var(--muted-2);
  font-size: 13px;
}
.terminal-feed b {
  color: var(--text);
}
.account-stats div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255,0.18);
  background: rgba(255,255,255,0.045);
}
.account-stats span {
  color: var(--muted-2);
}
.story-stage,
.route-screen {
  min-height: min(760px, calc(100vh - 64px));
  scroll-margin-top: calc(var(--header-height) + 18px);
  display: grid;
  place-items: center;
  padding: 54px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
.market-section {
  scroll-margin-top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 24px;
  padding: 36px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}
.section-head {
  max-width: 780px;
}
.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}
.section-head p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.65;
  font-size: 17px;
}
.section-head p:empty,
.report-verdict p:empty {
  display: none;
}
.intel-stage {
  grid-template-columns: minmax(380px, 0.82fr) minmax(430px, 1.18fr);
  align-items: center;
  padding-top: 12px;
  padding-bottom: 9px;
}
.intel-stage .section-head h2 {
  font-size: clamp(25px, 4.5vw, 49px);
}
.intel-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255,0.22);
  border-radius: 16px;
  background: rgba(8,14,30,0.68);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}
.intel-row {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr 0.72fr 0.9fr 0.9fr;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255,0.13);
}
.intel-row:first-child {
  border-top: 0;
}
.intel-row-head {
  min-height: 44px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.035);
}
.intel-row strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.intel-row em {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
.signal-true {
  background: rgba(200, 255, 61,0.12);
  color: var(--ok-2);
}
.signal-false {
  background: rgba(255,147,178,0.12);
  color: var(--danger);
}
.signal-watch {
  background: rgba(255,210,138,0.12);
  color: var(--warning);
}
.demo-stage {
  align-items: start;
  padding-top: 9px;
}
.demo-stage .section-head {
  max-width: 100%;
}
.demo-stage .section-head h2 {
  font-size: clamp(27px, 4.5vw, 51px);
}
.report-preview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: 16px;
}
.report-verdict {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(200, 255, 61,0.24);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(200, 255, 61,0.13), rgba(153, 69, 255,0.08)),
    rgba(8,14,30,0.72);
}
.report-verdict strong {
  color: var(--ok-2);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
}
.report-verdict p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.55;
}
.report-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.report-list div {
  min-height: 124px;
  align-content: center;
}
.report-list strong {
  font-size: 24px;
}
.wallet-export-stage {
  grid-template-columns: minmax(300px, 920px);
  align-items: stretch;
  justify-content: center;
}
.wallet-export-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255,0.22);
  border-radius: 16px;
  background: rgba(8,14,30,0.68);
  box-shadow: 0 18px 46px rgba(0,0,0,0.2);
}
.wallet-export-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
}
.wallet-export-card p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.6;
}
.wallet-export-code {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255,0.18);
  border-radius: 14px;
  background: rgba(5,7,19,0.78);
  color: #F3F4F6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
}
.wallet-export-code code {
  white-space: pre;
}
.pricing-stage {
  grid-template-columns: minmax(300px, 720px);
  align-items: stretch;
  justify-content: center;
}
.pricing-card,
.trust-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255,0.22);
  border-radius: 16px;
  background: rgba(8,14,30,0.68);
  box-shadow: 0 18px 46px rgba(0,0,0,0.2);
}
.pricing-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
}
.pricing-card p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.6;
}
.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-card li {
  padding: 11px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.045);
  color: var(--muted-2);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.trust-grid strong {
  color: var(--text);
}
.trust-grid span {
  color: var(--muted-2);
  line-height: 1.45;
}
.how-stage {
  grid-template-columns: minmax(250px, 0.52fr) minmax(680px, 1.48fr);
  gap: 24px;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.story-copy,
.access-window,
.auth-card,
.download-layout {
  width: 100%;
  animation: scrollCardIn 700ms ease both;
}
.story-copy h2,
.access-window h2,
.download-copy h1,
.auth-card h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}
.how-stage .story-copy h2 {
  font-size: clamp(31px, 4.5vw, 51px);
}
.story-copy p,
.access-window p,
.download-copy p {
  color: var(--muted-2);
  line-height: 1.65;
  font-size: 17px;
}
.story-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.story-steps span,
.oauth-divider span {
  color: var(--muted-2);
}
.story-steps span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
}
.chart-demo {
  position: relative;
  width: 100%;
  aspect-ratio: 2.06 / 1;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(37, 207, 142, 0.1), transparent 26%),
    linear-gradient(180deg, #111620 0%, #0E131C 100%);
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}
.chart-grid {
  position: absolute;
  inset: 0 58px 34px 0;
  background-image:
    linear-gradient(rgba(255, 255, 255,0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255,0.11) 1px, transparent 1px);
  background-size: 100% 44px, 102px 100%;
}
.chart-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: -58px;
  bottom: 0;
  height: 34px;
  background: #0D121A;
  border-top: 1px solid rgba(255, 255, 255,0.16);
}
.axis-label {
  position: absolute;
  right: -48px;
  color: #C4C8D0;
  font-size: 15px;
  font-weight: 700;
}
.y-250 { top: 3%; }
.y-225 { top: 12%; }
.y-200 { top: 21%; }
.y-175 { top: 30%; }
.y-150 { top: 39%; }
.y-125 { top: 48%; }
.y-100 { top: 57%; }
.y-75 { top: 66%; }
.y-50 { top: 75%; }
.y-25 { top: 84%; }
.price-tag {
  position: absolute;
  right: -56px;
  z-index: 7;
  min-width: 56px;
  padding: 4px 7px;
  color: #F3F4F6;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  border-radius: 2px 0 0 2px;
}
.price-last {
  top: calc(67% - 12px);
  background: rgba(11,16,32,0.92);
  border: 1px solid rgba(255, 255, 255,0.22);
}
.tv-candle {
  position: absolute;
  left: var(--x);
  bottom: var(--y);
  z-index: 4;
  width: clamp(5px, 1vw, 10px);
  height: var(--h);
  color: var(--accent);
  background: currentColor;
  border-radius: 1px;
  transform: translateX(-50%);
  animation: candlePulse 4.8s ease-in-out infinite;
  animation-delay: var(--d);
}
.tv-candle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(var(--wick) * -0.48);
  width: 1px;
  height: calc(100% + var(--wick));
  background: currentColor;
  transform: translateX(-50%);
  opacity: 0.9;
}
.tv-candle.down,
.tv-candle.dark {
  color: #ff4667;
}
.tv-candle.up,
.tv-candle.light {
  color: #12c7a7;
}
.chart-line {
  position: absolute;
  top: 0;
  bottom: -34px;
  z-index: 5;
  width: 2px;
  background: var(--network-accent);
  box-shadow: 0 0 8px var(--network-tint);
  transform-origin: top;
  animation: lineDrop 7.2s ease-in-out infinite;
  opacity: 0;
}
.chart-line span {
  position: absolute;
  left: 50%;
  bottom: -1px;
  min-width: 154px;
  padding: 7px 9px;
  border-radius: 5px 5px 0 0;
  background: var(--network-accent);
  color: var(--background);
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  transform: translateX(-50%);
  opacity: 0;
  animation: labelRise 7.2s ease-in-out infinite;
}
.chart-line-start { left: 18%; animation-delay: 0ms; }
.chart-line-split { left: 60%; animation-delay: 900ms; }
.chart-line-end { left: 78%; animation-delay: 1800ms; }
.chart-line-start span { animation-delay: 0ms; }
.chart-line-split span { animation-delay: 900ms; }
.chart-line-end span { animation-delay: 1800ms; }
.x-label {
  position: absolute;
  bottom: -26px;
  color: #C4C8D0;
  font-size: 15px;
  font-weight: 700;
  transform: translateX(-50%);
}
.x-1 { left: 18%; }
.x-2 { left: 29%; }
.x-3 { left: 41%; }
.x-4 { left: 60%; }
.x-5 { left: 78%; }
.x-6 { left: 91%; }
.chart-badge {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 8;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #11161F;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
}
.access-stage {
  min-height: 70vh;
}
.access-window {
  max-width: 780px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255,0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(200, 255, 61,0.11), rgba(153, 69, 255,0.11)),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  box-shadow: 0 18px 52px rgba(0,0,0,0.24);
}
.auth-screen,
.download-screen,
.dashboard-screen {
  min-height: calc(100vh - 64px);
}
.account-dashboard-card {
  width: min(820px, 100%);
  display: grid;
  gap: 24px;
  padding: 34px;
}
.dashboard-profile-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.dashboard-avatar {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(200, 255, 61,0.36);
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,0.42), transparent 24%),
    linear-gradient(135deg, rgba(200, 255, 61,0.94), rgba(153, 69, 255,0.94));
  color: #0B0F18;
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(200, 255, 61,0.18);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}
.dashboard-avatar:hover {
  border-color: rgba(200, 255, 61,0.72);
  box-shadow: 0 18px 48px rgba(200, 255, 61,0.28);
}
.dashboard-avatar.has-image {
  background-position: center;
  background-size: cover;
  color: transparent;
}
.dashboard-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.dashboard-profile-head h1 {
  margin: 8px 0 8px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.dashboard-name-edit {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(168,180,205,0.28);
  background: rgba(255,255,255,0.04);
  color: #9aa7bd;
}
.dashboard-name-edit:hover {
  color: #d7dfef;
  border-color: rgba(168,180,205,0.52);
  background: rgba(255,255,255,0.08);
}
.dashboard-name-edit svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dashboard-name-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  margin: 8px 0 10px;
}
.dashboard-name-form.hidden {
  display: none;
}
.dashboard-name-form input {
  min-width: 0;
}
.dashboard-name-form button {
  min-height: 42px;
  padding: 0 14px;
}
.dashboard-profile-status {
  min-height: 20px;
  margin: 6px 0 0;
}
.dashboard-profile-status[data-tone="success"] {
  color: #C8FF3D;
}
.dashboard-profile-status[data-tone="error"] {
  color: #ffd6e2;
}
.dashboard-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.dashboard-info-grid div {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
}
.dashboard-info-grid span {
  color: var(--muted-2);
}
.dashboard-info-grid strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--text);
}
.dashboard-history-window {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}
.dashboard-history-window .panel-head {
  margin-bottom: 0;
}
.dashboard-history-count {
  color: var(--text-soft, #B4B8C2);
  font-weight: 500;
  line-height: 1.2;
}
.dashboard-history-list {
  display: grid;
  gap: 8px;
}
.dashboard-network-groups {
  display: grid;
  gap: 10px;
}
.dashboard-network-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  overflow: clip;
}
.dashboard-network-panel summary {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}
.dashboard-network-panel summary::-webkit-details-marker {
  display: none;
}
.dashboard-network-panel summary::after {
  content: "›";
  grid-column: 4;
  color: var(--muted-2);
  font-size: 22px;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform .22s ease;
}
.dashboard-network-panel[open] summary::after {
  transform: rotate(-90deg);
}
.dashboard-network-panel summary > span:last-of-type {
  color: var(--muted-2);
  font-size: 13px;
}
.network-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}
.network-dot-solana { color: var(--solana); background: currentColor; }
.network-dot-robinhood { color: var(--robinhood); background: currentColor; }
.dashboard-network-body {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
  animation: dashboardNetworkReveal .2s ease-out;
}
@keyframes dashboardNetworkReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.dashboard-history-item {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  color: var(--text);
  text-decoration: none;
}
.dashboard-history-item:hover {
  border-color: rgba(200, 255, 61,0.42);
  background: rgba(255,255,255,0.065);
}
.dashboard-history-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
.dashboard-history-token {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}
.dashboard-history-verdict {
  flex: 0 0 auto;
  color: #C8FF3D;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.dashboard-history-meta {
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.dashboard-wallets-window {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}
.billing-card,
.extension-access-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(153, 69, 255, 0.4);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(153, 69, 255, 0.09), rgba(255, 255, 255, 0.025));
  scroll-margin-top: calc(var(--header-height) + 24px);
}
.extension-access-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.025);
}
.billing-card h2,
.extension-access-card h2 { margin: 7px 0 0; font-size: 24px; }
.billing-card h3 { margin: 0; font-size: 18px; }
.billing-card p,
.extension-access-card p { margin: 0; line-height: 1.55; }
.billing-head,
.billing-offer,
.billing-invoice-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.billing-plan-badge {
  padding: 7px 11px;
  border: 1px solid rgba(200, 255, 61, 0.3);
  border-radius: 999px;
  color: var(--ok-2);
  background: rgba(200, 255, 61, 0.06);
  font-size: 12px;
  text-align: center;
}
.billing-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.billing-metrics > div { display: grid; align-content: start; gap: 10px; min-width: 0; padding: 14px; border-radius: 12px; background: rgba(0, 0, 0, 0.16); }
.billing-metrics span { color: var(--muted-2); font-size: 12px; }
.billing-metrics strong { font-size: 22px; font-weight: 600; overflow-wrap: anywhere; }
.billing-metrics > div:last-child strong { font-size: 15px; line-height: 1.5; }
.billing-offer { padding-top: 6px; }
.billing-offer strong { font-size: 22px; }
.billing-offer strong span { margin-left: 8px; color: var(--ok-2); }
.billing-offer p { margin-top: 5px; font-size: 13px; }
.billing-card button,
.extension-access-card button { min-height: 42px; padding: 10px 15px; font-size: 13px; }
.billing-card .billing-secondary,
.extension-access-card .billing-secondary { color: var(--text); border: 1px solid rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.045); box-shadow: none; }
.billing-card button:disabled,
.extension-access-card button:disabled { cursor: wait; opacity: 0.5; transform: none; }
.billing-card .button-link { min-height: 42px; padding: 10px 15px; font-size: 13px; }
.billing-fine-print { font-size: 12px; }
.billing-status { color: var(--muted-2); font-size: 13px; overflow-wrap: anywhere; }
.billing-status:empty { display: none; }
.billing-status[data-tone="success"] { color: var(--ok-2); }
.billing-status[data-tone="error"] { color: var(--danger); }
.billing-invoice { display: grid; gap: 16px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.billing-invoice-head > span { font-size: 12px; text-align: right; }
.billing-payment-notice { padding: 12px 14px; border-left: 2px solid var(--solana); border-radius: 0 8px 8px 0; background: rgba(153, 69, 255, 0.08); font-size: 13px; color: var(--muted-2); }
.billing-payment-layout { display: flex; gap: 20px; align-items: flex-start; min-width: 0; }
.billing-qr { width: 168px; height: 168px; flex: 0 0 168px; padding: 7px; border-radius: 10px; background: white; }
.billing-payment-copy { display: grid; gap: 10px; flex: 1; min-width: 0; }
.billing-payment-copy > span { font-size: 12px; }
.billing-address { font-size: 12px; overflow-wrap: anywhere; line-height: 1.55; }
.billing-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.billing-verify-form,
.extension-token-result { display: grid; gap: 9px; min-width: 0; }
.billing-verify-form label,
.extension-token-result label { color: var(--muted-2); font-size: 13px; }
.billing-verify-row { display: flex; gap: 8px; min-width: 0; }
.billing-verify-row input { min-width: 0; width: 100%; flex: 1; font-size: 13px; }
.billing-verify-row button { flex-shrink: 0; }
.billing-invoice.hidden,
.billing-payment-layout.hidden,
.extension-token-result.hidden { display: none; }
.text-link { color: var(--ok-2); text-underline-offset: 4px; }
@media (max-width: 640px) {
  .billing-card,
  .extension-access-card { padding: 18px; }
  .billing-head,
  .billing-offer,
  .billing-invoice-head { align-items: flex-start; flex-direction: column; gap: 12px; }
  .billing-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .billing-metrics > div:last-child { grid-column: 1 / -1; }
  .billing-offer > button { width: 100%; }
  .billing-payment-layout { flex-direction: column; }
  .billing-qr { align-self: center; }
  .billing-verify-row { flex-direction: column; }
  .billing-invoice-head > span { text-align: left; }
}
.dashboard-wallets-head {
  margin-bottom: 0;
}
.dashboard-recurring-wallets-button {
  width: auto;
  min-height: 40px;
  padding: 9px 14px;
  font-size: 13px;
}
.dashboard-recurring-wallets-status {
  margin: 0;
}
.dashboard-recurring-wallets-status:empty {
  display: none;
}
.dashboard-recurring-wallets-list {
  display: grid;
  gap: 8px;
}
.dashboard-recurring-wallet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
}
.dashboard-recurring-wallet .wallet-copy-chip {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dashboard-recurring-wallet-count {
  flex: 0 0 auto;
  color: #C8FF3D;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}
.logout-button {
  justify-self: start;
  min-width: 180px;
  border-color: rgba(255,147,178,0.34);
  background: rgba(255,147,178,0.1);
  color: #ffd6e2;
}
.logout-button:hover {
  border-color: rgba(255,147,178,0.58);
  background: rgba(255,147,178,0.16);
}
.auth-card {
  width: min(520px, 100%);
}
.oauth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}
.oauth-divider::before,
.oauth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255,0.18);
}
.oauth-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.oauth-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255,0.24);
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,0.045);
}
.oauth-button.is-disabled {
  opacity: 0.48;
  cursor: not-allowed;
}
.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(200, 255, 61,0.24);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(200, 255, 61,0.13), rgba(153, 69, 255,0.10)),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  box-shadow: 0 20px 58px rgba(0,0,0,0.26);
}
.download-graphic {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  min-width: 0;
}
.download-chart-mount {
  width: 100%;
  min-width: 0;
}
.download-chart-mount .chart-demo {
  min-height: 340px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}
.download-chart-mount .tv-candle {
  width: clamp(4px, 0.7vw, 7px);
}
.download-window {
  text-align: center;
  border-color: rgba(200, 255, 61,0.36);
  background:
    linear-gradient(135deg, rgba(200, 255, 61,0.13), rgba(153, 69, 255,0.10)),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
}
.signup-form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.auth-card .signup-form label {
  display: grid;
  gap: 8px;
  margin: 0;
}
.auth-card .signup-form label.hidden {
  display: none !important;
}
.auth-card .signup-form input,
.auth-card .signup-form button {
  width: 100%;
}
.auth-card .signup-form .verification-resend-button {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}
.auth-card .signup-form .verification-resend-button:hover:not(:disabled) {
  border-color: var(--solana);
  color: var(--solana);
}
.auth-switch,
.auth-status {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.auth-switch a {
  color: var(--ok-2);
  font-weight: 800;
  text-decoration: none;
}
.auth-switch a:hover {
  text-decoration: underline;
}
.auth-forgot-password { margin: 16px 0 0; line-height: 1.55; }
.auth-forgot-password a,
.auth-recovery-link { color: var(--ok-2); font-weight: 600; text-decoration: none; }
.auth-forgot-password a:hover,
.auth-recovery-link:hover { text-decoration: underline; }
.auth-forgot-password + .auth-switch { margin-top: 7px; }
.auth-delivery-notice { margin: 16px 0; padding: 12px 14px; border-left: 2px solid var(--solana); background: rgba(153, 69, 255, 0.09); border-radius: 0 8px 8px 0; color: var(--muted-2); font-size: 13px; line-height: 1.6; overflow-wrap: anywhere; }
.auth-recovery-status { margin: 18px 0 0; color: var(--muted-2); line-height: 1.6; }
.auth-recovery-status[data-tone="success"] { color: var(--ok-2); }
.auth-recovery-status[data-tone="error"] { color: var(--danger); }
.auth-recovery-link { display: inline-block; margin-top: 14px; }
.auth-recovery-retry { margin-top: 14px; width: 100%; }
.auth-password-hint { margin: 0; font-size: 13px; line-height: 1.5; }
.signup-form.hidden,
.auth-recovery-link.hidden { display: none; }
.auth-status {
  min-height: 24px;
}
.account-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.account-stats strong {
  font-size: 22px;
}
.form-panel.hidden {
  display: none;
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes routeBootSpin {
  to { transform: rotate(360deg); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes slowSpin {
  to { transform: rotate(360deg); }
}
@keyframes scrollCardIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineDrop {
  0%, 2% { opacity: 0; transform: scaleY(0); }
  8%, 72% { opacity: 1; transform: scaleY(1); }
  86%, 100% { opacity: 0; transform: scaleY(1); }
}
@keyframes labelRise {
  0%, 5% { opacity: 0; transform: translate(-50%, 10px); }
  12%, 72% { opacity: 1; transform: translate(-50%, 0); }
  86%, 100% { opacity: 0; transform: translate(-50%, 0); }
}
@keyframes candlePulse {
  0%, 100% { filter: brightness(0.94); }
  50% { filter: brightness(1.18); }
}
@keyframes scanLine {
  0%, 100% { opacity: 0.2; transform: translateX(-16px); }
  50% { opacity: 1; transform: translateX(16px); }
}
.hero {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: start;
}
.hero-note {
  padding: 18px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.note-kicker, .section-kicker, .eyebrow {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.eyebrow { margin-bottom: 10px; }
.section-kicker { display: block; margin-bottom: 10px; }
h1 { margin: 0 0 12px; font-size: 48px; line-height: 1; }
h2 { margin: 0 0 14px; font-size: 22px; }
.subtitle, .text-soft, .hero-note li { color: var(--muted); line-height: 1.6; }
.hero-note ul { margin: 10px 0 0; padding-left: 18px; }
.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(3, 8, 20, 0.22);
  backdrop-filter: blur(4px);
  content-visibility: auto;
  contain-intrinsic-size: 1px 320px;
}
.form-panel { margin-bottom: 20px; }
label { display: block; margin-bottom: 10px; color: var(--muted); }
.form-row { display: flex; gap: 12px; }
input, select {
  flex: 1;
  min-width: 0;
  background: rgba(5, 8, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--network-accent);
  box-shadow: 0 0 0 3px var(--network-tint);
}
#analysisChain {
  border-color: var(--network-accent);
  background: var(--network-tint);
  box-shadow: 0 0 0 1px var(--network-tint) inset;
}
#analysisChain option {
  background: var(--background);
  color: var(--text);
}
#analysisForm {
  border-color: var(--network-accent);
  box-shadow: 0 0 0 1px var(--network-tint) inset, 0 12px 32px rgba(0, 0, 0, 0.2);
}
button {
  background: var(--robinhood);
  color: #0B0F18;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
button:hover:not(:disabled) {
  filter: brightness(1.04);
}
button:disabled { opacity: 0.7; cursor: wait; }
.secondary-btn {
  background: rgba(153, 69, 255, 0.12);
  border: 1px solid rgba(153, 69, 255, 0.5);
  color: var(--text);
}
.hint { color: var(--muted); font-size: 14px; margin-top: 12px; }
.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.summary-overview {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.verdict-only-panel {
  display: block;
}
.analysis-token-identity {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.analysis-token-address {
  margin-bottom: 20px;
}
.analysis-token-address .analysis-token-copy {
  width: auto;
  max-width: 100%;
  justify-content: flex-start;
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
  white-space: normal;
  text-align: left;
}
.analysis-top-controls {
  margin: 0 0 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.sticker-mode-control legend {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}
.sticker-mode-control > p {
  margin: 6px 0 12px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
}
.sticker-mode-control {
  width: min(100%, 420px);
  margin: 0;
  padding: 0;
  border: 0;
}
.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .035);
}
.segmented-control label {
  min-width: 0;
  margin: 0;
  cursor: pointer;
}
.segmented-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.segmented-control span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 7px 9px;
  border-radius: 7px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
}
.segmented-control input:checked + span {
  background: var(--network-accent);
  color: #0B0F18;
}
.segmented-control input:focus-visible + span {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}
.verdict-only-panel h2 {
  margin: 0;
  font-size: 28px;
}
.overview-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.overview-head h2 { font-size: 34px; margin-bottom: 8px; }
.risk-badge-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
  align-items: flex-end;
}
.risk-badge, .source-badge, .pill-muted {
  background: rgba(255,255,255,0.06);
  color: var(--muted);
}
.risk-low { background: rgba(255, 255, 255, 0.16); color: #E5E7EB; }
.risk-medium { background: rgba(200, 255, 61, 0.12); color: #C4C8D0; }
.risk-high { background: rgba(255, 147, 178, 0.16); color: #ffd6e2; }
.meta-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 255, 255,0.14);
  border-radius: 14px;
  padding: 12px 14px;
}
.meta-item span, .metric-label, .metric-subtext { color: var(--muted); }
.meta-item span { display: block; margin-bottom: 6px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.meta-item strong { display: block; font-size: 14px; line-height: 1.5; word-break: break-word; }
.metric-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  padding: 18px;
}
.metric-label { display: block; margin-bottom: 10px; font-size: 13px; }
.metric-card strong { font-size: 26px; display: block; margin-bottom: 8px; }
.metric-subtext { display: block; font-size: 13px; line-height: 1.5; }
.verdict-card.verdict-high strong { color: #ffd6e2; }
.verdict-card.verdict-medium strong { color: #C4C8D0; }
.verdict-card.verdict-low strong { color: #E5E7EB; }
.verdict-low { border-color: rgba(153, 69, 255, 0.35); }
.verdict-medium { border-color: rgba(153, 69, 255, 0.45); }
.verdict-high { border-color: rgba(255, 147, 178, 0.45); }
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.full-span { grid-column: 1 / -1; }
.text-block { color: #F3F4F6; line-height: 1.75; margin-bottom: 16px; }
.section-note { margin-bottom: 14px; }
.list, .mono-list, .check-list { margin: 0; padding-left: 18px; }
.compact-list li, .check-list li { margin-bottom: 8px; color: #C4C8D0; line-height: 1.6; }
.mono-list, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  color: #F3F4F6;
  white-space: pre-wrap;
  word-break: break-word;
}
.cluster-block {
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
}
.cluster-member-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.cluster-member {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  line-height: 1.45;
}
.cluster-member b {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(200, 255, 61, 0.12);
  color: var(--ok-2);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cluster-member em {
  color: var(--muted-2);
  font-style: normal;
}
.cluster-member.is-pool span { color: #E9FFB5; }
.cluster-meta-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.cluster-meta-badge { display: inline-flex; align-items: baseline; gap: 6px; padding: 4px 8px; border-radius: 999px; border: 1px solid rgba(255, 255, 255,.18); background: rgba(255,255,255,.04); }
.cluster-meta-badge span { color: var(--text-soft, #B4B8C2); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.cluster-meta-badge strong { color: #fff; font-size: 12px; text-transform: lowercase; }
.check-list li::marker { color: var(--ok-2); }
.signal-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signal-item {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.signal-item strong, .signal-item span { display: block; }
.signal-item strong { margin-bottom: 6px; }
.signal-item span { color: var(--muted); font-size: 13px; }
.signal-warn { border-color: rgba(255, 147, 178, 0.22); background: rgba(255, 147, 178, 0.07); }
.signal-ok { border-color: rgba(153, 69, 255, 0.18); background: rgba(153, 69, 255, 0.06); }
.timeframes-grid, .providers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.providers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.timeframe-card, .provider-card, .empty-state, .limitations-block, .bubblemap-placeholder {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.timeframe-card h3, .provider-card h3 { margin: 0 0 10px; font-size: 16px; }
.empty-state, .limitations-block, .bubblemap-placeholder {
  color: var(--muted);
  line-height: 1.6;
}
.limitations-block { margin-top: 12px; background: rgba(255,255,255,0.05); border-color: rgba(255, 255, 255,0.18); }
.bubblemap-placeholder {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.bar-row { display: flex; flex-direction: column; gap: 8px; }
.bar-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #C4C8D0;
}
.bar-track {
  width: 100%;
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(200, 255, 61, 0.9), rgba(153, 69, 255, 0.95));
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.loading-card {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.loading-title { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.loading-copy p { margin: 0; color: var(--muted); }
.loading-steps { display: flex; gap: 10px; flex-wrap: wrap; }
.loading-pill {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.06);
}
.loading-pill.is-active {
  color: #fff;
  border-color: rgba(200, 255, 61,0.34);
  box-shadow: 0 0 0 1px rgba(200, 255, 61,0.16) inset;
}
.error { border-color: rgba(255, 147, 178, 0.35); color: #ffc7de; }
.error-panel {
  margin-bottom: 20px;
  border-color: rgba(255, 147, 178, 0.3);
  background: rgba(255, 147, 178, 0.08);
  color: #ffd6e2;
}
.error-panel strong { display: block; margin-bottom: 6px; }
.error-panel p { margin: 0; color: #ffc7de; line-height: 1.55; }
.success { border-color: rgba(153, 69, 255, 0.3); color: #E5E7EB; }
.loading { border-color: rgba(153, 69, 255, 0.28); color: #E7D6FF; }
.hidden { display: none; }
body:not([data-view="register"]) #signupConfirmLabel { display: none !important; }
.availability-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 255, 255,0.18);
  color: var(--muted-2);
  line-height: 1.6;
}
.availability-full { color: #E5E7EB; }
.availability-partial { color: #C4C8D0; }
@media (max-width: 900px) {
  .details-grid, .dashboard, .snapshot-meta, .timeframes-grid { grid-template-columns: 1fr; }
  .form-row, .loading-card { flex-direction: column; align-items: stretch; }
  h1 { font-size: 38px; }
  .panel-head { flex-direction: column; align-items: flex-start; }
  .app-shell { padding-inline: 16px; }
}

.loading-pill.is-done { color: #E9FFB5; border-color: rgba(200, 255, 61, 0.32); background: rgba(200, 255, 61, 0.08); }
.dual-supply-card strong { display: block; font-size: 24px; margin: 6px 0; }
.table-wrap { overflow-x: auto; }
.member-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.member-table th, .member-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  vertical-align: top;
}
.member-table th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.member-table td { color: #C4C8D0; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; }
.pool-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(200, 255, 61, 0.12);
  color: var(--ok-2);
}
.pool-badge.is-wallet { background: rgba(255,255,255,0.06); color: var(--muted); }
.graph-area { min-height: 220px; }
.network-svg {
  width: 100%;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255,0.18);
  border-radius: 16px;
  background: radial-gradient(circle at center, rgba(200, 255, 61,0.10), rgba(255,255,255,0.02));
}
.graph-list { margin-top: 12px; }

.interval-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.interval-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-soft, #B4B8C2);
  font-size: 13px;
}
.interval-form-grid input {
  width: 100%;
}
.form-row-actions {
  margin-top: 14px;
  justify-content: flex-end;
}
.interval-results {
  display: grid;
  gap: 14px;
}
.interval-cluster-card, .interval-relation-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.035);
}
.interval-cluster-card h3 { margin: 0 0 8px; }
.interval-meta-line { color: var(--text-soft, #B4B8C2); font-size: 13px; margin: 4px 0; }
@media (max-width: 720px) { .interval-form-grid { grid-template-columns: 1fr; } }

.readable-buyer-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.045);
  margin-bottom: 14px;
  contain: layout paint style;
  content-visibility: auto;
  contain-intrinsic-size: auto 180px;
}
.readable-buyer-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}
.readable-buyer-head h3 {
  margin: 4px 0 0;
  font-size: 15px;
  overflow-wrap: anywhere;
}
.buyer-label, .pump-links-title {
  color: var(--text-soft, #B4B8C2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mc-badge {
  border: 1px solid rgba(200, 255, 61,.35);
  color: #C8FF3D;
  border-radius: 999px;
  padding: 6px 10px;
  white-space: nowrap;
  font-weight: 700;
}
.buyer-outcome-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.outcome-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 800;
  letter-spacing: .02em;
}
.outcome-category {
  color: var(--text-soft, #B4B8C2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.outcome-profit, .outcome-realized, .pnl-positive { color: #C8FF3D; background: rgba(200, 255, 61, .14); border: 1px solid rgba(200, 255, 61, .28); }
.outcome-partial { color: #E5FF9A; background: rgba(200, 255, 61, .10); border: 1px solid rgba(200, 255, 61, .18); }
.outcome-transfer, .outcome-forwarded { color: #ffd28a; background: rgba(255, 210, 138, .14); border: 1px solid rgba(255, 210, 138, .28); }
.outcome-holding { color: #C8CCD4; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .24); }
.outcome-loss, .pnl-negative { color: #ff9da8; background: rgba(255, 93, 110, .14); border: 1px solid rgba(255, 93, 110, .28); }
.outcome-neutral, .outcome-none, .outcome-unknown, .pnl-neutral { color: #C8CCD4; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .24); }
.buyer-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 10px;
}
.buyer-stat {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255, 255, 255,.16);
}
.buyer-stat span {
  display: block;
  color: var(--text-soft, #B4B8C2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.buyer-stat strong {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.forwarded-wallets {
  margin: 8px 0 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 210, 138, .18);
  background: rgba(255, 210, 138, .06);
}
.recipient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.recipient-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255,.22);
  background: rgba(255,255,255,.04);
  color: #F3F4F6;
  font-size: 11px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: nowrap;
}
.wallet-copy-chip {
  appearance: none;
  -webkit-appearance: none;
  width: auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255,.22);
  background: rgba(255,255,255,.04);
  color: #F3F4F6;
  font-size: 11px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.3;
  cursor: pointer;
  text-align: left;
}
.wallet-copy-chip:hover,
.wallet-copy-chip:focus-visible {
  border-color: rgba(200, 255, 61,.45);
  background: rgba(200, 255, 61,.08);
  color: #F4FFD9;
}
.wallet-copy-chip:focus-visible {
  outline: 2px solid rgba(200, 255, 61,.4);
  outline-offset: 2px;
}
.wallet-copy-chip.is-copied {
  border-color: rgba(200, 255, 61,.62);
  background: rgba(200, 255, 61,.14);
  color: #C8FF3D;
}
.wallet-copy-icon {
  font-size: 10px;
  opacity: .72;
  flex: none;
}
.recipient-chip-more { color: #C8FF3D; }
.pump-links-title { margin-top: 14px; margin-bottom: 8px; }
.pump-links { display: grid; gap: 8px; }
.pump-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(100px, .7fr) minmax(130px, .9fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.16);
}

.profit-buckets-section, .profit-bucket-remainder {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}
.profit-bucket-panel {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  overflow: clip;
  contain: layout paint style;
  content-visibility: auto;
  contain-intrinsic-size: auto 74px;
}
.profit-bucket-strengths {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.profit-category-panel {
  border-color: rgba(200, 255, 61, 0.22);
  background: rgba(200, 255, 61, 0.045);
}
.profit-category-buckets {
  display: grid;
  gap: 10px;
}
.profit-category-buckets .profit-bucket-panel {
  background: rgba(255,255,255,0.035);
}
.profit-strength-panel {
  margin-left: 10px;
  border-color: rgba(153, 69, 255, 0.2);
  background: rgba(255,255,255,0.03);
}
.profit-strength-panel .interval-group-title {
  text-transform: lowercase;
}
.strength-export-panel {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 12px;
}
.strength-export-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.strength-export-summary {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.strength-export-copy {
  width: auto;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #F3F4F6;
  font-size: 12px;
  font-weight: 700;
}
.strength-export-copy:not(:disabled):hover,
.strength-export-copy:not(:disabled):focus-visible {
  border-color: rgba(200, 255, 61, 0.42);
  background: rgba(200, 255, 61, 0.08);
  color: #F4FFD9;
}
.strength-export-copy:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.strength-export-copy.is-copied {
  border-color: rgba(200, 255, 61, 0.62);
  background: rgba(200, 255, 61, 0.14);
  color: #C8FF3D;
}
.strength-export-copy.is-copy-error {
  border-color: rgba(255, 93, 110, 0.62);
  background: rgba(255, 93, 110, 0.12);
  color: #ffb3bc;
}
.strength-export-notice {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.strength-export-output-hidden {
  display: none;
}
.profit-bucket-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.profit-bucket-toggle-main {
  display: grid;
  gap: 4px;
}
.profit-bucket-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}
.profit-bucket-meta {
  color: var(--text-soft, #B4B8C2);
  font-size: 12px;
}
.profit-bucket-toggle-side {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.profit-bucket-pnl {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
}
.profit-bucket-chevron {
  display: inline-flex;
  transition: transform .25s ease;
  color: var(--text-soft, #B4B8C2);
  font-size: 18px;
  line-height: 1;
}
.profit-bucket-body-shell {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .28s ease, opacity .28s ease;
  contain: layout paint;
  will-change: grid-template-rows, opacity;
}
.profit-bucket-body {
  min-height: 0;
  overflow: hidden;
  padding: 0 16px 0;
  transform: translateY(-4px);
  transition: transform .28s ease;
  will-change: transform;
}
.profit-bucket-panel.is-open .profit-bucket-body-shell {
  grid-template-rows: 1fr;
  opacity: 1;
}
.profit-bucket-panel.is-open {
  content-visibility: visible;
}
.profit-bucket-panel.is-open .profit-bucket-chevron {
  transform: rotate(90deg);
}
.profit-bucket-panel.is-open .profit-bucket-body {
  padding-bottom: 16px;
  transform: translateY(0);
}
.profit-bucket-panel:focus-within {
  border-color: rgba(200, 255, 61, 0.35);
}
.cluster-card-panel .cluster-card-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.cluster-card-panel {
  contain: layout paint style;
  content-visibility: auto;
  contain-intrinsic-size: auto 92px;
}
.cluster-card-toggle-main {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}
.cluster-card-chevron {
  display: inline-flex;
  transition: transform .25s ease;
  color: var(--text-soft, #B4B8C2);
  font-size: 18px;
  line-height: 1;
}
.cluster-card-body-shell {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .28s ease, opacity .28s ease;
  contain: layout paint;
  will-change: grid-template-rows, opacity;
}
.cluster-card-body {
  min-height: 0;
  overflow: hidden;
  padding-top: 0;
  transform: translateY(-4px);
  transition: transform .28s ease;
  will-change: transform;
}
.cluster-card-panel.is-open .cluster-card-body-shell {
  grid-template-rows: 1fr;
  opacity: 1;
}
.cluster-card-panel.is-open {
  content-visibility: visible;
}
.cluster-card-panel.is-open .cluster-card-chevron {
  transform: rotate(90deg);
}
.cluster-card-panel.is-open .cluster-card-body {
  padding-top: 12px;
  transform: translateY(0);
}
.cluster-card-panel:focus-within {
  border-color: rgba(200, 255, 61, 0.35);
}
.readable-buyer-card-compact {
  margin-bottom: 0;
}
.progressive-wallet-list {
  display: grid;
  gap: 12px;
}
.progressive-wallet-list .readable-buyer-card {
  animation: listItemReveal .18s ease both;
}
.progressive-list-status {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text-soft, #B4B8C2);
  background: rgba(255,255,255,0.025);
  font-size: 12px;
}
@keyframes listItemReveal {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.buyer-stats-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.profit-section-note {
  color: var(--text-soft, #B4B8C2);
  font-size: 12px;
  margin: 0 0 2px;
}
.empty-state-tight {
  padding: 12px 16px;
}
[data-lazy-placeholder][aria-busy="true"] {
  opacity: 0.74;
}
.pump-link-row span {
  display: block;
  color: var(--text-soft, #B4B8C2);
  font-size: 12px;
}
@media (max-width: 760px) {
  .readable-buyer-head { flex-direction: column; }
  .buyer-outcome-stack { align-items: flex-start; }
  .buyer-stats { grid-template-columns: 1fr 1fr; }
  .buyer-stats-compact { grid-template-columns: 1fr; }
  .profit-bucket-toggle { flex-direction: column; align-items: flex-start; }
  .profit-bucket-toggle-side { width: 100%; justify-content: space-between; }
  .profit-strength-panel { margin-left: 0; }
  .pump-link-row { grid-template-columns: 1fr; }
}

.interval-form-grid select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255,.22);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(5,7,19,.72);
  color: inherit;
}

.interval-group-panel {
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  overflow: clip;
  contain: layout paint style;
  content-visibility: auto;
  contain-intrinsic-size: auto 76px;
}
.interval-group-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.interval-group-toggle-main,
.member-group-toggle-main {
  display: grid;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
}
.interval-group-title,
.member-group-toggle-main {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: lowercase;
}
.interval-group-caption {
  color: var(--text-soft, #B4B8C2);
  font-size: 12px;
}
.interval-group-toggle-side,
.member-group-toggle-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--text-soft, #B4B8C2);
  font-size: 12px;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 45%;
  text-align: right;
  overflow-wrap: anywhere;
}
.interval-group-chevron,
.member-group-chevron {
  display: inline-flex;
  transition: transform .25s ease;
  font-size: 18px;
  line-height: 1;
}
.interval-group-body-shell {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .28s ease, opacity .28s ease;
  contain: layout paint;
  will-change: grid-template-rows, opacity;
}
.interval-group-body {
  min-height: 0;
  overflow: hidden;
  padding: 0 16px 16px;
  display: grid;
  gap: 12px;
  transform: translateY(-4px);
  transition: transform .28s ease;
  will-change: transform;
}
.interval-group-panel.is-open .interval-group-body-shell {
  grid-template-rows: 1fr;
  opacity: 1;
}
.interval-group-panel.is-open .interval-group-body {
  transform: translateY(0);
}
.interval-group-panel.is-open {
  content-visibility: visible;
}
.interval-group-panel.is-open .interval-group-chevron,
.member-group-row.is-open .member-group-chevron {
  transform: rotate(90deg);
}
.interval-cluster-card {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
}
.interval-cluster-head,
.member-cluster-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.interval-cluster-title,
.member-cluster-head {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.interval-cluster-badge {
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  background: rgba(255,255,255,0.08);
  flex: 0 0 auto;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.interval-cluster-badge-strong { background: rgba(200, 255, 61,0.14); color: #C8FF3D; }
.interval-cluster-badge-medium { background: rgba(255,196,107,0.14); color: #ffc46b; }
.interval-cluster-badge-weak { background: rgba(255,255,255,0.08); color: var(--text-soft, #B4B8C2); }
.interval-cluster-badge-clusters { background: rgba(200, 255, 61,0.14); color: #C8FF3D; }
.interval-cluster-meta,
.member-cluster-meta {
  margin-top: 6px;
  color: var(--text-soft, #B4B8C2);
  font-size: 12px;
  line-height: 1.5;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.member-wallet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.interval-relation-wallets {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.relation-copy-item {
  word-break: break-word;
}
.pump-wallet-chip {
  margin-right: 0;
}
.member-wallet-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.member-wallet-chip-more {
  background: rgba(200, 255, 61,0.12);
  color: #C8FF3D;
}
.member-group-row td { border: 0; padding: 0; }
.member-group-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.member-group-body-row td { border: 0; padding-top: 0; }
.member-group-body {
  display: grid;
  gap: 12px;
  padding: 0 0 12px;
}
.member-cluster-card {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
}

@media (max-width: 980px) {
  .intel-stage,
  .pricing-stage,
  .report-preview-grid {
    grid-template-columns: 1fr;
  }
  .intel-table {
    overflow-x: auto;
  }
  .intel-row {
    min-width: 720px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 14px;
    gap: 10px;
  }
  .site-header-left {
    gap: 8px;
    flex: 1 1 auto;
    overflow: hidden;
  }
  .site-nav {
    gap: 6px;
  }
  .site-brand span:last-child {
    display: none;
  }
  .header-section-link {
    min-height: 34px;
    padding: 6px 7px;
    font-size: 11px;
  }
  .account-nav {
    gap: 6px;
  }
  .language-switcher {
    padding: 2px;
  }
  .language-option {
    min-width: 29px;
    min-height: 28px;
    padding: 0 6px;
    font-size: 11px;
  }
  .header-login-link {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 13px;
  }
  .header-account-link {
    width: 36px;
    height: 36px;
  }
  .landing-hero,
  .how-stage,
  .download-layout {
    grid-template-columns: 1fr;
  }
  .landing-hero {
    min-height: auto;
    padding: 18px;
    gap: 18px;
  }
  .story-stage,
  .route-screen {
    min-height: auto;
    padding: 36px 0;
  }
  .market-section {
    padding: 34px 0;
  }
  .section-head h2 {
    font-size: 32px;
  }
  .report-list,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .landing-copy h1 {
    font-size: 42px;
  }
  .landing-copy .subtitle {
    font-size: 15px;
    line-height: 1.5;
  }
  .hero-actions {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .button-link {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 12px;
  }
  .hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .hero-proof-grid span {
    padding: 8px;
    text-align: center;
    font-size: 11px;
  }
  .hero-visual {
    min-height: auto;
  }
  .terminal-preview {
    padding: 14px;
    gap: 12px;
  }
  .terminal-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .terminal-feed p {
    padding: 8px 10px;
    font-size: 12px;
  }
  .terminal-feed p:nth-child(n+2),
  .terminal-flow {
    display: none;
  }
  .terminal-bar {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .report-verdict,
  .pricing-card,
  .trust-panel {
    padding: 20px;
  }
  .story-copy h2,
  .access-window h2,
  .download-copy h1,
  .auth-card h1 {
    font-size: 34px;
  }
  .chart-demo {
    min-height: 360px;
  }
  .download-chart-mount .chart-demo {
    min-height: 300px;
  }
  .chart-line span {
    min-width: 128px;
    font-size: 12px;
  }
  .access-window,
  .download-layout {
    padding: 24px;
  }
  .oauth-actions {
    grid-template-columns: 1fr;
  }
  .account-stats {
    grid-template-columns: 1fr;
  }
  .dashboard-profile-head,
  .dashboard-info-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-name-form {
    grid-template-columns: 1fr;
  }
  .dashboard-history-row {
    display: grid;
    gap: 4px;
  }
  .dashboard-history-verdict {
    justify-self: start;
  }
  .account-dashboard-card {
    padding: 24px;
  }
  .sticker-mode-control {
    width: 100%;
  }
  .hero-actions,
  .button-link {
    width: 100%;
  }
  .interval-group-toggle,
  .member-group-toggle,
  .interval-cluster-head,
  .member-cluster-head {
    flex-direction: column;
    align-items: stretch;
  }
  .interval-group-toggle-side,
  .member-group-toggle-side {
    max-width: 100%;
    justify-content: space-between;
    text-align: left;
  }
}

.graph-wallet-node { cursor: pointer; }
.graph-wallet-node:hover text { fill: #F4FFD9; }


@media (prefers-reduced-motion: reduce) {
  .panel {
    backdrop-filter: none;
  }
  button,
  .loading-pill,
  .profit-bucket-chevron,
  .cluster-card-chevron,
  .profit-bucket-body-shell,
  .cluster-card-body-shell,
  .interval-group-body-shell,
  .profit-bucket-body,
  .cluster-card-body,
  .interval-group-body,
  .progressive-wallet-list .readable-buyer-card {
    transition: none;
    animation: none;
  }
  .profit-bucket-body,
  .cluster-card-body,
  .interval-group-body {
    transform: none;
  }
}
/* Privacy policy */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  color: #c8ff3d;
}

.privacy-body {
  min-height: 100vh;
  background: #0b0f18;
  color: rgba(255, 255, 255, 0.92);
}

.privacy-site-header {
  justify-content: space-between;
}

.privacy-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.privacy-back-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.privacy-back-link:hover {
  color: #c8ff3d;
}

.privacy-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 72px;
}

.privacy-document[hidden] {
  display: none;
}

.privacy-intro {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.privacy-intro h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1;
}

.privacy-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.6;
}

.privacy-date {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.privacy-document section {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-document section:last-child {
  border-bottom: 0;
}

.privacy-document h2 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.25;
}

.privacy-document h3 {
  margin: 22px 0 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.privacy-document p,
.privacy-document li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.72;
}

.privacy-document p {
  margin: 0 0 12px;
}

.privacy-document ul {
  margin: 0;
  padding-left: 22px;
}

.privacy-document a {
  color: #c8ff3d;
}

.privacy-summary {
  border-top: 2px solid #9945ff;
}

@media (max-width: 720px) {
  .privacy-site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .privacy-header-actions {
    gap: 10px;
  }

  .privacy-back-link {
    display: none;
  }

  .privacy-page {
    width: min(100% - 28px, 920px);
    padding: 96px 0 48px;
  }

  .privacy-intro h1 {
    overflow-wrap: anywhere;
    font-size: 36px;
  }

  .privacy-lead {
    font-size: 17px;
  }

  .site-footer {
    width: min(100% - 28px, 1180px);
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 24px;
  }
}
