:root {
  color-scheme: dark;
  --bg: #050607;
  --panel: #0f1114;
  --panel-2: #15181d;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f7f9fb;
  --muted: #a5adb8;
  --blue: #1f8fff;
  --green: #66d36e;
  --amber: #ffb347;
  --red: #ff5a62;
  --violet: #9b7cff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.market-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.82;
}

.site-header,
.hero,
main,
.site-footer,
.page {
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.feature,
.app-shot,
.support-card,
.stat {
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.feature:hover,
.app-shot:hover,
.support-card:hover,
.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(102, 211, 110, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 7, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 52px;
}

.brand img {
  width: 112px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.10), rgba(5, 6, 7, 0.72) 54%, #050607 96%),
    #050607;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.70) 0%, rgba(5, 6, 7, 0.22) 42%, rgba(5, 6, 7, 0.46) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 120px);
  pointer-events: none;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
  z-index: 3;
}

.splash-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: scale(1.14);
  background: #050607;
  z-index: 1;
}

.splash-video-base {
  opacity: 0.58;
}

.splash-video-ghost {
  opacity: 0.38;
  mix-blend-mode: screen;
  filter: saturate(1.12) brightness(1.05);
}

.splash-video-echo {
  opacity: 0.24;
  mix-blend-mode: screen;
  filter: saturate(1.2) brightness(1.08);
}

.hero-flow {
  position: absolute;
  left: 50%;
  top: 20%;
  width: min(1180px, 132vw);
  transform: translateX(-42%);
  opacity: 0.72;
  z-index: 2;
  overflow: visible;
}

.flow-shadow,
.flow-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-shadow {
  stroke: rgba(102, 211, 110, 0.16);
  stroke-width: 34;
  filter: blur(13px);
}

.flow-line {
  stroke: var(--green);
  stroke-width: 8;
  stroke-dasharray: 280 920;
  animation: flow-dash 8s linear infinite;
  filter: drop-shadow(0 0 16px rgba(102, 211, 110, 0.70));
}

.flow-nodes circle {
  fill: #f9fff9;
  stroke: rgba(102, 211, 110, 0.68);
  stroke-width: 5;
  filter: drop-shadow(0 0 16px rgba(102, 211, 110, 0.85));
  animation: node-pulse 2.6s ease-in-out infinite;
}

.flow-nodes circle:nth-child(2) { animation-delay: 0.28s; }
.flow-nodes circle:nth-child(3) { animation-delay: 0.56s; }
.flow-nodes circle:nth-child(4) { animation-delay: 0.84s; }
.flow-nodes circle:nth-child(5) { animation-delay: 1.12s; }

@keyframes flow-dash {
  to {
    stroke-dashoffset: -1200;
  }
}

@keyframes node-pulse {
  0%, 100% {
    opacity: 0.62;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero-inner {
  position: relative;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 96px 0 44px;
  z-index: 4;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: 72px;
  line-height: 0.92;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.lead {
  color: #d7dde5;
  font-size: 21px;
  line-height: 1.55;
  max-width: 680px;
  margin-bottom: 30px;
}

.hero-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  background: var(--green);
  border-color: rgba(102, 211, 110, 0.7);
  color: #061007;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: 2px solid rgba(255, 255, 255, 0.18);
  outline-offset: 2px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 64px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 15, 18, 0.76);
  padding: 16px;
}

.stat b {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

main section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 86px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 0;
}

.section-head p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  min-height: 220px;
}

.feature .tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  color: #07120a;
  background: var(--green);
}

.feature:nth-child(2) .tag {
  background: var(--blue);
  color: #04101e;
}

.feature:nth-child(3) .tag {
  background: var(--amber);
  color: #160d02;
}

.feature h3 {
  font-size: 22px;
  margin: 22px 0 10px;
}

.feature p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.app-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.phone {
  width: min(100%, 378px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px;
  background: #050607;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.48);
}

.screen {
  border-radius: 8px;
  overflow: hidden;
  background: #090b0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-top {
  display: flex;
  justify-content: space-between;
  padding: 18px 18px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.screen-hero {
  padding: 8px 18px 18px;
}

.screen-title {
  font-size: 26px;
  font-weight: 900;
}

.rings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0;
}

.ring {
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #101318 0 54%, transparent 55%),
    conic-gradient(var(--green) 0 64%, rgba(255,255,255,0.08) 64% 100%);
}

.ring:nth-child(2) {
  background:
    radial-gradient(circle at center, #101318 0 54%, transparent 55%),
    conic-gradient(var(--violet) 0 38%, rgba(255,255,255,0.08) 38% 100%);
}

.ring b {
  display: block;
  font-size: 22px;
  text-align: center;
}

.ring span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  margin-top: 3px;
}

.sizer-card {
  margin: 0 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  padding: 16px;
}

.seg {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

.seg span,
.mini-row span,
.trade-row span {
  border-radius: 8px;
  background: #20252c;
  color: #dce4ee;
  padding: 8px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.seg b {
  color: var(--green);
}

.slider {
  height: 7px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green) 0 46%, #272d35 46% 100%);
  margin-bottom: 16px;
}

.mini-row,
.trade-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.trade-row {
  margin-top: 8px;
}

.showcase-copy h2 {
  font-size: 42px;
  line-height: 1.05;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  color: #dfe5ed;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
}

.stores {
  background: #080a0c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 100%;
  max-width: none;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.intro-shots {
  margin-bottom: 28px;
}

.app-shot {
  margin: 0;
}

.shot-screen {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07090c;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.shot-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(102, 211, 110, 0.06) 46%, transparent 54%),
    repeating-linear-gradient(180deg, transparent 0 34px, rgba(255, 255, 255, 0.035) 35px);
  transform: translateY(var(--scan-y, 0));
  pointer-events: none;
}

.shot-screen > * {
  position: relative;
  z-index: 1;
}

.shot-status {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.shot-title {
  font-size: 28px;
  font-weight: 900;
}

.shot-card,
.stat-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  padding: 16px;
}

.shot-seg,
.shot-fields,
.shot-metrics,
.shot-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.shot-seg span,
.shot-fields span,
.shot-tabs span,
.shot-tabs b {
  min-height: 38px;
  border-radius: 8px;
  background: #20252c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dbe3ed;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.shot-seg b {
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shot-slider {
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green) 0 44%, #2a3038 44% 100%);
  margin: 18px 0;
}

.shot-metrics {
  grid-template-columns: repeat(2, 1fr);
}

.shot-metrics span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  color: var(--muted);
}

.shot-metrics b {
  display: block;
  color: var(--text);
  font-size: 24px;
  margin-bottom: 4px;
}

.shot-tabs {
  margin-top: auto;
}

.shot-tabs b {
  background: var(--green);
  color: #061007;
}

.app-shot figcaption {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin-top: 12px;
}

.equity-chart {
  position: relative;
  height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(102, 211, 110, 0.07), rgba(31, 143, 255, 0.04));
  overflow: hidden;
}

.equity-chart i {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.equity-chart i:nth-child(1) { top: 25%; }
.equity-chart i:nth-child(2) { top: 50%; }
.equity-chart i:nth-child(3) { top: 75%; }
.equity-chart i:nth-child(4) { top: 100%; }

.equity-chart svg {
  position: absolute;
  inset: 22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
}

.equity-chart path {
  fill: none;
  stroke: var(--green);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(102, 211, 110, 0.44));
}

.stat-list {
  display: grid;
  gap: 10px;
}

.stat-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-list span {
  color: var(--muted);
}

.stat-list b {
  font-size: 22px;
}

.shot-card.compact {
  display: grid;
  gap: 10px;
}

.bar {
  height: 12px;
  border-radius: 8px;
  background: var(--green);
}

.bar.blue {
  width: 76%;
  background: var(--blue);
}

.bar.amber {
  width: 54%;
  background: var(--amber);
}

.stores-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.store-selector {
  display: grid;
  gap: 10px;
}

.store-option {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 14px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.store-option img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
}

.store-option b,
.store-panel b {
  display: block;
  font-size: 18px;
}

.store-option span,
.store-panel span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.store-option.active {
  border-color: rgba(102, 211, 110, 0.72);
  background: rgba(102, 211, 110, 0.08);
}

.store-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 28px;
}

.store-panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.store-panel-head img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  min-height: 58px;
  border-radius: 8px;
  background: #f7f9fb;
  color: #030506;
  padding: 10px 16px;
  font-weight: 900;
  margin-top: 8px;
}

.store-badge small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #3e4650;
}

.notice {
  color: var(--amber);
  font-weight: 800;
  min-height: 24px;
  margin: 14px 0 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.support-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.support-card h3 {
  font-size: 20px;
}

.support-card p {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page {
  width: min(100% - 32px, 860px);
  margin: 0 auto;
  padding: 84px 0;
}

.page h1 {
  font-size: 52px;
}

.page h2 {
  font-size: 26px;
  margin-top: 34px;
}

.page p,
.page li {
  color: #c8d0da;
  line-height: 1.72;
}

.page a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 900px) {
  h1 {
    font-size: 54px;
  }

  .hero {
    min-height: 760px;
  }

  .splash-video {
    object-position: center;
    transform: scale(1.08);
  }

  .splash-video-base {
    opacity: 0.54;
  }

  .splash-video-ghost {
    opacity: 0.32;
  }

  .splash-video-echo {
    opacity: 0.20;
  }

  .hero-flow {
    top: 16%;
    width: 1040px;
    transform: translateX(-38%);
  }

  .hero-stats,
  .feature-grid,
  .support-grid,
  .shot-grid,
  .app-showcase,
  .stores-inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head h2,
  .showcase-copy h2 {
    font-size: 34px;
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 62px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 9px 7px;
    font-size: 13px;
  }

  .brand {
    width: 92px;
  }

  .brand img {
    width: 90px;
    height: 34px;
  }

  h1,
  .page h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 18px;
  }

  main section {
    padding: 58px 0;
  }

  .hero-inner {
    padding-bottom: 28px;
  }

  .hero-stats {
    margin-top: 42px;
  }

  .store-option,
  .store-panel-head {
    grid-template-columns: 54px 1fr;
  }

  .store-option img,
  .store-panel-head img {
    width: 54px;
    height: 54px;
  }

  .footer-inner {
    display: block;
  }

  .footer-links {
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .market-field {
    display: none;
  }

  .splash-video {
    transform: scale(1.04);
  }

  .splash-video-base {
    opacity: 0.60;
  }

  .splash-video-ghost {
    display: none;
  }

  .splash-video-echo {
    display: none;
  }

  .flow-line,
  .flow-nodes circle {
    animation: none;
  }

  .reveal,
  .feature,
  .app-shot,
  .support-card,
  .stat {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
