: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;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.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);
}

.app-shot {
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.app-shot: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: 184px;
  height: 64px;
  overflow: hidden;
}

.brand img {
  width: 151px;
  height: 51px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.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: min(720px, 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: cover;
  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: 56px 0 44px;
  z-index: 4;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}

.hero-copy {
  width: 100%;
  max-width: 720px;
}

.hero-text {
  position: absolute;
  top: 14px;
  left: 0;
  width: min(100%, 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;
}

.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;
}

main section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 86px 0;
}

#info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  scroll-margin-top: 92px;
}

#info .section-head {
  grid-column: 1 / -1;
}

#info .feature-card-grid,
#info .shot-grid {
  display: contents;
}

#info .feature-card-grid .feature-card:nth-child(2),
#info .account-app-shot,
#info .feature-card-grid .feature-card:nth-child(1),
#info .sizer-app-shot,
#info .feature-card-grid .feature-card:nth-child(5) {
  grid-column: 1;
}

#info .feature-card-grid .feature-card:nth-child(3),
#info .equity-app-shot,
#info .feature-card-grid .feature-card:nth-child(4),
#info .history-app-shot,
#info .stats-app-shot {
  grid-column: 2;
}

#info .feature-card-grid .feature-card:nth-child(2),
#info .feature-card-grid .feature-card:nth-child(3) {
  order: 1;
}

#info .account-app-shot,
#info .equity-app-shot {
  order: 2;
}

#info .feature-card-grid .feature-card:nth-child(1),
#info .feature-card-grid .feature-card:nth-child(4) {
  order: 3;
}

#info .sizer-app-shot,
#info .history-app-shot {
  order: 4;
}

#info .feature-card-grid .feature-card:nth-child(5),
#info .stats-app-shot {
  order: 5;
}

.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-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.feature-card {
  background: rgba(15, 17, 20, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  min-height: 178px;
  padding: 18px;
}

.feature-card .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-card:nth-child(2) .tag {
  background: var(--amber);
  color: #160d02;
}

.feature-card:nth-child(3) .tag {
  background: var(--blue);
  color: #04101e;
}

.feature-card:nth-child(4) .tag {
  background: var(--violet);
  color: #080510;
}

.feature-card strong {
  color: var(--text);
  display: block;
  font-size: 19px;
  line-height: 1.18;
  margin: 16px 0 8px;
}

.feature-card p {
  margin-bottom: 0;
}

.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;
}

.download-page {
  min-height: calc(100vh - 129px);
  padding-top: 46px;
}

.download-page h1 {
  font-size: 52px;
  line-height: 1.04;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, 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;
}

.stats-shot,
.equity-shot {
  align-items: stretch;
  background: #020304;
  justify-content: center;
  min-height: 760px;
  padding: 0;
}

.stats-shot::before,
.equity-shot::before {
  display: none;
}

.stats-shot img,
.equity-shot img {
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  object-fit: contain;
  object-position: top center;
  width: auto;
}

.equity-shot {
  min-height: 610px;
}

.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;
}

.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);
}

.sizer-shot,
.account-shot,
.history-shot {
  min-height: 680px;
  gap: 10px;
  padding: 10px;
  border-color: rgba(31, 143, 255, 0.55);
  background: #050609;
  font-size: 12px;
}

.sizer-shot::before,
.account-shot::before,
.history-shot::before {
  display: none;
}

.app-section-title {
  border-left: 3px solid var(--blue);
  color: #f6f8fb;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  padding-left: 8px;
  text-transform: uppercase;
}

.app-section-title.compact {
  margin-top: 4px;
}

.app-section-title.row-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.app-section-title small {
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(31, 143, 255, 0.42);
  color: #fff;
  font-size: 11px;
  padding: 7px 14px;
  text-transform: none;
}

.risk-toggle,
.contract-toggle,
.history-tabs {
  background: #111318;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  padding: 3px;
}

.risk-toggle {
  border-color: rgba(232, 241, 30, 0.74);
  box-shadow: 0 0 12px rgba(232, 241, 30, 0.22);
  grid-template-columns: 1fr 0.75fr 1fr;
}

.risk-toggle span,
.risk-toggle b,
.contract-toggle span,
.contract-toggle b,
.history-tabs span,
.history-tabs b {
  align-items: center;
  border-radius: 6px;
  color: #aeb5c0;
  display: flex;
  font-size: 10px;
  font-weight: 900;
  justify-content: center;
  min-height: 28px;
  text-align: center;
}

.risk-toggle span:first-child,
.contract-toggle b,
.history-tabs b {
  background: var(--blue);
  color: #fff;
}

.risk-toggle b {
  color: #fff;
  font-size: 17px;
}

.ladder-slider {
  height: 18px;
  position: relative;
}

.ladder-slider::before {
  background: linear-gradient(90deg, #e3ec24 0 18%, #30343a 18% 100%);
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 5px;
  position: absolute;
  right: 5px;
  top: 7px;
}

.ladder-slider span {
  background: #f3f6fb;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.28);
  height: 17px;
  left: 15%;
  position: absolute;
  top: 1px;
  width: 17px;
}

.input-grid,
.trade-form {
  display: grid;
  gap: 8px;
}

.input-grid {
  grid-template-columns: 1fr 1fr;
}

.input-grid label,
.trade-form label,
.account-form,
.risk-result,
.trade-list div,
.account-list div {
  background: #191b20;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.input-grid label,
.trade-form label {
  display: grid;
  gap: 6px;
  padding: 8px 10px;
}

.input-grid span,
.trade-form span {
  color: #8f96a3;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.input-grid b,
.trade-form b {
  color: #f5f7fb;
  font-size: 15px;
  text-align: center;
}

.input-grid label:first-child {
  border-color: rgba(232, 241, 30, 0.78);
  box-shadow: 0 0 10px rgba(232, 241, 30, 0.2);
}

.market-pills,
.instrument-row {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(6, 1fr);
}

.market-pills b,
.market-pills span {
  background: #17191e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #aeb5c0;
  font-size: 9px;
  font-weight: 850;
  padding: 6px 5px;
  text-align: center;
}

.market-pills b {
  background: var(--blue);
  color: #fff;
}

.instrument-row {
  grid-template-columns: repeat(4, 1fr);
}

.instrument-row span,
.instrument-row b {
  align-items: center;
  background: #101319;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: #b9c1cd;
  display: grid;
  font-size: 10px;
  justify-items: center;
  min-height: 58px;
  padding: 7px 4px;
}

.instrument-row b {
  background: rgba(31, 143, 255, 0.17);
  border-color: rgba(31, 143, 255, 0.6);
  box-shadow: 0 0 14px rgba(31, 143, 255, 0.25);
  color: #fff;
}

.instrument-row small {
  color: inherit;
  font-size: 7px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.contract-toggle,
.history-tabs {
  grid-template-columns: 1fr 1fr;
}

.risk-result {
  padding: 12px;
  text-align: center;
}

.risk-result strong {
  color: #e7ef24;
  display: block;
  font-size: 32px;
  line-height: 1;
}

.risk-result small {
  color: #8f96a3;
  display: block;
  font-size: 8px;
  font-weight: 850;
  margin: 5px 0 12px;
  text-transform: uppercase;
}

.risk-result > div {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  padding-top: 10px;
}

.risk-result span {
  color: #8f96a3;
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.risk-result b {
  color: var(--amber);
  display: block;
  font-size: 14px;
  margin-top: 4px;
}

.risk-result span:last-child b {
  color: var(--green);
}

.app-action {
  align-items: center;
  background: linear-gradient(180deg, #b75cff, #7724db);
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(183, 92, 255, 0.38);
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 950;
  justify-content: center;
  min-height: 42px;
}

.ladder-table {
  background: #101216;
  border: 1px solid rgba(31, 143, 255, 0.44);
  border-radius: 8px;
  display: grid;
  font-size: 9px;
  grid-template-columns: 1.1fr 0.8fr 1fr 1fr 1fr;
  overflow: hidden;
}

.ladder-table span,
.ladder-table b {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #cbd2dc;
  padding: 6px 5px;
  text-align: center;
}

.ladder-table span {
  color: #8f96a3;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.ladder-table b:nth-child(5n + 4) {
  color: var(--amber);
}

.green {
  color: var(--green) !important;
}

.amber {
  color: var(--amber) !important;
}

.red,
.loss {
  color: var(--red) !important;
}

.account-top {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto auto;
}

.account-top b {
  color: #fff;
  font-size: 22px;
}

.account-top span,
.account-top strong {
  border-radius: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  padding: 8px 12px;
}

.account-top span {
  background: rgba(102, 211, 110, 0.12);
  border: 1px solid rgba(102, 211, 110, 0.38);
}

.account-top strong {
  background: #20232a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.account-hero {
  background: radial-gradient(circle at 78% 10%, rgba(102, 211, 110, 0.28), transparent 36%), linear-gradient(135deg, rgba(31, 143, 255, 0.32), rgba(6, 75, 54, 0.88));
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  min-height: 250px;
  overflow: hidden;
  padding: 34px 16px 78px;
  position: relative;
}

.account-hero svg {
  bottom: 12px;
  height: 62%;
  left: 0;
  opacity: 0.55;
  position: absolute;
  width: 100%;
}

.account-hero path {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
}

.ring-card {
  align-items: center;
  aspect-ratio: 1;
  display: grid;
  justify-items: center;
  position: relative;
  width: min(130px, 38vw);
  z-index: 1;
}

.ring-card + .ring-card {
  margin-left: 0;
}

.ring-card i {
  grid-area: 1 / 1;
  aspect-ratio: 1;
  border: 14px solid;
  border-radius: 50%;
  display: block;
  width: 100%;
}

.ring-card.green i {
  border-color: #43df7d #67d9e8 #43df7d #43df7d;
}

.ring-card.violet i {
  border-color: #287dff #287dff #9f4ee8 #835bff;
}

.ring-card span,
.ring-card b {
  grid-area: 1 / 1;
  text-align: center;
}

.ring-card span {
  align-self: center;
  color: #aab2ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-top: -30px;
  text-transform: uppercase;
}

.ring-card b {
  align-self: center;
  color: #35eda4;
  font-size: 28px;
  line-height: 1;
  margin-top: 14px;
}

.account-total {
  color: var(--green);
  font-size: 22px;
  position: absolute;
  right: 18px;
  top: 14px;
}

.account-metrics {
  bottom: 14px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  left: 16px;
  position: absolute;
  right: 16px;
  z-index: 1;
}

.account-metrics span {
  background: rgba(25, 27, 32, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  color: #a9b0bc;
  font-size: 9px;
  font-weight: 850;
  padding: 10px 6px;
  text-align: center;
  text-transform: uppercase;
}

.account-metrics b {
  color: #35eda4;
  display: block;
  font-size: 14px;
  margin-top: 4px;
}

.account-list {
  display: grid;
  gap: 8px;
}

.account-list div,
.trade-list div {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 44px 1fr auto;
  padding: 10px;
}

.account-list .active {
  background: rgba(6, 34, 29, 0.9);
  border-color: rgba(102, 211, 110, 0.75);
}

.account-list i,
.trade-list i {
  align-items: center;
  background: var(--blue);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-style: normal;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.account-list .active i {
  background: var(--green);
}

.account-list span,
.trade-list span {
  color: #9ca4af;
  line-height: 1.25;
}

.account-list b,
.trade-list b {
  color: #f4f6fb;
  margin-right: 4px;
}

.account-list small,
.trade-list small {
  color: #9ca4af;
  display: block;
  font-size: 10px;
  margin-top: 3px;
}

.account-list strong,
.trade-list strong {
  color: var(--green);
  font-size: 15px;
}

.account-form {
  overflow: hidden;
}

.account-form p {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  margin: 0;
  padding: 12px 14px;
}

.account-form p:last-child {
  border-bottom: 0;
}

.account-form span {
  color: #f2f4f8;
  font-size: 13px;
}

.account-form b {
  color: #5fcfff;
  font-size: 17px;
}

.account-form strong {
  color: var(--green);
  display: block;
  font-size: 19px;
  grid-column: 1;
}

.history-shot {
  border-color: rgba(255, 255, 255, 0.12);
}

.trade-form {
  background: #17191e;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  grid-template-columns: 1fr 1.45fr 0.6fr;
  padding: 12px;
}

.trade-form label:nth-child(1),
.trade-form label:nth-child(2),
.trade-form label:nth-child(6),
.trade-form label:nth-child(7) {
  grid-column: span 1;
}

.trade-form label:nth-child(7) {
  grid-column: span 2;
}

.trade-form label:nth-child(2) {
  grid-column: 2 / span 2;
}

.trade-form .segmented:not(.result) {
  grid-column: 1;
}

.trade-form .segmented.result {
  grid-column: 2;
}

.trade-form label:nth-child(5) {
  grid-column: 3;
}

.trade-form label:nth-child(6) {
  grid-column: 1;
}

.trade-form label:nth-child(7) {
  grid-column: 2 / span 2;
}

.trade-form em {
  color: #7f858e;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.segmented {
  background: #101216;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
}

.segmented.result {
  grid-column: span 2;
  grid-template-columns: 1fr 1fr 1fr;
}

.segmented b,
.segmented span {
  align-items: center;
  border-radius: 6px;
  color: #aeb5c0;
  display: flex;
  font-size: 10px;
  font-weight: 900;
  justify-content: center;
}

.segmented b {
  background: var(--blue);
  color: #fff;
}

.segmented.result b {
  background: var(--green);
}

.history-tabs {
  grid-template-columns: repeat(4, 1fr);
}

.month-history ~ .app-section-title.row-title,
.month-history ~ .history-tabs,
.month-history ~ .trade-list {
  display: none;
}

.history-mode {
  background: #17191e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: inline-grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr;
  margin-left: auto;
  padding: 3px;
}

.history-mode b {
  align-items: center;
  border-radius: 6px;
  color: #aeb5c0;
  display: flex;
  font-size: 10px;
  justify-content: center;
  min-width: 48px;
  min-height: 24px;
  text-transform: none;
}

.history-mode b:last-child {
  background: #262a32;
  color: #fff;
}

.month-card {
  background: #17191e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
}

.month-nav {
  align-items: center;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  margin-bottom: 14px;
}

.month-nav button {
  align-items: center;
  background: #20232a;
  border: 0;
  border-radius: 50%;
  color: #d9dee7;
  display: flex;
  font-size: 18px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.month-nav strong {
  color: #fff;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
}

.month-summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  justify-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.month-summary b {
  color: #c8cdd7;
  font-size: 28px;
  line-height: 1;
}

.month-summary span {
  color: #a8afbb;
  font-weight: 900;
  margin-top: 4px;
}

.month-summary small {
  color: #9ca4af;
  font-size: 11px;
  margin-top: 3px;
}

.calendar-grid {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-grid span {
  color: #b8bfca;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 0;
  text-align: center;
}

.calendar-grid i,
.calendar-grid em {
  align-items: center;
  aspect-ratio: 1;
  background: #15171c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  color: #aeb5c0;
  display: flex;
  flex-direction: column;
  font-style: normal;
  font-weight: 800;
  justify-content: center;
  line-height: 1.05;
  min-width: 0;
}

.calendar-grid i {
  visibility: hidden;
}

.calendar-grid b,
.calendar-grid small {
  display: block;
  font-size: 8px;
}

.calendar-grid .gain {
  background: rgba(35, 222, 108, 0.14);
  border-color: rgba(35, 222, 108, 0.55);
  color: var(--green);
}

.calendar-grid .selected {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(31, 143, 255, 0.85);
  color: #fff;
}

.calendar-grid .loss-day {
  background: rgba(255, 90, 98, 0.13);
  border-color: rgba(255, 90, 98, 0.62);
  color: var(--red);
}

.trade-list {
  display: grid;
  gap: 8px;
}

.trade-list div {
  border-radius: 12px;
  padding: 10px 12px;
}

.trade-list i {
  background: #062f62;
  color: var(--blue);
  font-size: 11px;
}

.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-mobile-label {
  margin: 0 0 10px;
  color: #ffb23f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.store-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
  max-width: 470px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 0 50%, rgba(255, 136, 38, 0.12), transparent 42%),
    transparent;
  box-shadow: none;
}

.store-option {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(255, 123, 43, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
    #050607;
  padding: 8px 12px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.store-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 153, 54, 0.20), transparent 38%),
    linear-gradient(90deg, rgba(255, 123, 43, 0.14), transparent 64%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.store-option::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 178, 63, 0.55);
  border-radius: 999px;
  background: rgba(255, 178, 63, 0.12);
  position: absolute;
  top: 10px;
  right: 10px;
}

.store-logo {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.store-logo svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.store-logo-play {
  background: transparent;
}

.store-logo-play svg {
  width: 34px;
  height: 34px;
}

.play-blue {
  fill: #48a8ff;
}

.play-green {
  fill: #31d26f;
}

.play-yellow {
  fill: #ffcc45;
}

.play-red {
  fill: #ff5a58;
}

.store-option > span {
  position: relative;
  z-index: 1;
}

.store-panel-head small {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px;
  border: 1px solid rgba(102, 211, 110, 0.38);
  border-radius: 999px;
  background: rgba(102, 211, 110, 0.10);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 6px 9px;
  text-transform: uppercase;
}

.store-option small {
  display: block;
  color: #e8a666;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 3px;
  text-transform: uppercase;
}

.store-option b,
.store-panel b {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  color: var(--text);
}

.store-option > span > span,
.store-panel span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.store-option > span {
  color: var(--text);
  margin: 0;
}

.store-option.active {
  border-color: rgba(255, 178, 63, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 178, 63, 0.12), rgba(255, 123, 43, 0.04)),
    #060708;
  box-shadow:
    inset 0 0 0 1px rgba(255, 178, 63, 0.12),
    0 16px 38px rgba(255, 123, 43, 0.13);
}

.store-option.active::before {
  opacity: 1;
}

.store-option.active::after {
  border-color: rgba(255, 211, 127, 0.92);
  background: #ffb23f;
  box-shadow: 0 0 18px rgba(255, 178, 63, 0.62);
}

.store-option:hover {
  border-color: rgba(255, 178, 63, 0.82);
  transform: translateY(-1px);
}

.store-option:focus-visible {
  outline: 2px solid rgba(255, 178, 63, 0.58);
  outline-offset: 3px;
}

.pricing-model {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(102, 211, 110, 0.32);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(102, 211, 110, 0.10), rgba(31, 143, 255, 0.06)), var(--panel);
}

.pricing-model .eyebrow {
  margin-bottom: 14px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.price-card.featured {
  border-color: rgba(102, 211, 110, 0.52);
  box-shadow: inset 0 0 0 1px rgba(102, 211, 110, 0.12);
}

.price-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.price-card p {
  margin: 8px 0 0;
  color: var(--green);
  font-weight: 800;
}

.pricing-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.store-panel {
  border: 1px solid rgba(255, 178, 63, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 178, 63, 0.09), rgba(102, 211, 110, 0.07) 48%, rgba(255, 255, 255, 0.03)),
    #0a0d11;
  padding: 28px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  position: relative;
}

.store-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(255, 178, 63, 0.09)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 42px);
  pointer-events: none;
}

.store-panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.store-panel-head img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.store-panel-copy {
  max-width: 440px;
  margin: -4px 0 18px;
  color: #b7c3d1;
  line-height: 1.58;
  position: relative;
  z-index: 1;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  min-height: 58px;
  border-radius: 8px;
  border: 1px solid rgba(255, 123, 43, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    #050607;
  color: #fff;
  padding: 10px 16px;
  font-weight: 900;
  margin-top: 8px;
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.store-badge .store-logo {
  width: 32px;
  height: 32px;
}

.store-badge .store-logo svg {
  width: 23px;
  height: 23px;
}

.store-badge .store-logo-play svg {
  width: 32px;
  height: 32px;
}

.store-badge small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #e8a666;
  text-transform: uppercase;
}

.notice {
  color: var(--amber);
  font-weight: 800;
  min-height: 24px;
  margin: 14px 0 0;
}

.tester-hero,
.tester-signup,
.tester-disclaimer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.tester-hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 86px 0;
}

.tester-copy h1 {
  max-width: 820px;
}

.tester-offer,
.tester-panel,
.signup-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 17, 20, 0.86);
}

.tester-offer {
  max-width: 720px;
  margin: 30px 0;
  padding: 22px;
  border-color: rgba(102, 211, 110, 0.38);
}

.tester-offer span {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tester-offer strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 34px;
  line-height: 1.08;
}

.tester-offer p,
.tester-panel li,
.tester-signup p,
.tester-disclaimer p,
.form-message {
  color: #c8d0da;
  line-height: 1.65;
}

.tester-offer p {
  margin: 12px 0 0;
}

.tester-panel {
  padding: 26px;
}

.tester-panel h2,
.tester-signup h2 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.08;
}

.tester-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: start;
  padding: 0 0 86px;
}

.signup-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.signup-form label {
  display: grid;
  gap: 8px;
}

.signup-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080a0c;
  color: var(--text);
  font: inherit;
  padding: 0 14px;
}

.signup-form input:focus-visible {
  border-color: rgba(102, 211, 110, 0.64);
  outline: 2px solid rgba(102, 211, 110, 0.20);
  outline-offset: 2px;
}

.signup-form button:disabled {
  cursor: progress;
  opacity: 0.7;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 26px;
  margin: 0;
}

.form-message a {
  color: var(--green);
  font-weight: 800;
}

.form-message.success {
  color: #dff9e1;
}

.form-message.error {
  color: var(--red);
}

.tester-disclaimer {
  padding: 0 0 72px;
}

.tester-disclaimer p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 179, 71, 0.34);
  border-radius: 8px;
  background: rgba(255, 179, 71, 0.08);
}

.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: 54px 0 84px;
}

.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;
}

.resource-hero,
.resource-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 86px 0;
}

.resource-hero {
  padding: 54px 0 86px;
}

.resource-hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  margin: 0;
  max-width: 820px;
}

.resource-hero .section-head {
  align-items: start;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.resource-split,
.resource-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.resource-faq {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-split article,
.resource-steps article,
.resource-faq article {
  background: rgba(15, 17, 20, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.resource-split h3,
.resource-steps h3,
.resource-faq h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.resource-split p,
.resource-steps p,
.resource-faq p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.resource-split p + p {
  margin-top: 14px;
}

.resource-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.resource-steps span {
  color: var(--green);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.resource-topic-links .feature-card {
  display: block;
}

.resource-topic-links .feature-card:hover,
.resource-topic-links .feature-card:focus-visible {
  border-color: rgba(102, 211, 110, 0.35);
  outline: none;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  h1 {
    font-size: 54px;
  }

  .hero {
    min-height: 760px;
  }

  .splash-video {
    object-fit: contain;
    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%);
  }

  .feature-card-grid,
  .shot-grid,
  .stores-inner,
  .tester-hero,
  .tester-signup,
  .resource-grid,
  .resource-split,
  .resource-steps,
  .resource-faq {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head h2 {
    font-size: 34px;
    margin-bottom: 12px;
  }

  #info {
    display: flex;
    flex-direction: column;
  }

  #info.reveal {
    opacity: 1;
    transform: none;
  }

  #info .section-head {
    order: 0;
  }

  #info .feature-card-grid,
  #info .shot-grid {
    display: contents;
  }

  #info .feature-card {
    margin-top: 18px;
  }

  #info .app-shot {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    width: 100%;
  }

  #info .equity-app-shot {
    margin-top: 6px;
  }

  #info .shot-screen {
    height: clamp(760px, 160vw, 820px);
    justify-content: center;
    margin-inline: auto;
    min-height: 0;
    width: min(100%, 390px);
  }

  #info .stats-shot,
  #info .equity-shot {
    align-items: center;
    min-height: 0;
  }

  #info .stats-shot {
    height: clamp(980px, 215vw, 1060px);
    justify-content: flex-start;
  }

  #info .stats-shot img,
  #info .equity-shot img {
    height: auto;
    max-height: calc(100% - 36px);
    object-position: center;
  }

  #info .stats-shot img {
    height: auto;
    max-height: none;
    object-position: top center;
    transform: none;
    width: min(100%, 278px);
  }

  #info .feature-card-grid .feature-card:nth-child(2) { order: 1; }
  #info .account-app-shot { order: 2; }
  #info .feature-card-grid .feature-card:nth-child(3) { order: 3; }
  #info .equity-app-shot { order: 4; }
  #info .feature-card-grid .feature-card:nth-child(1) { order: 5; }
  #info .sizer-app-shot { order: 6; }
  #info .feature-card-grid .feature-card:nth-child(4) { order: 7; }
  #info .history-app-shot { order: 8; }
  #info .feature-card-grid .feature-card:nth-child(5) { order: 9; }
  #info .stats-app-shot { order: 10; }
}

@media (max-width: 640px) {
  .nav {
    min-height: 62px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 9px 5px;
    font-size: 13px;
  }

  .brand {
    width: 150px;
  }

  .brand img {
    width: 144px;
    height: 52px;
  }

  h1,
  .page h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 0;
  }

  .hero {
    min-height: 410px;
  }

  .splash-video {
    object-fit: contain;
    object-position: center 26%;
    transform: scale(1.18);
  }

  main section {
    padding: 58px 0;
  }

  .hero-inner {
    padding: 34px 0 24px;
  }

  .hero-text {
    bottom: 24px;
    display: flex;
    flex-direction: column;
    top: 8px;
  }

  .hero-text .button-row {
    align-items: flex-start;
    margin-top: auto;
  }

  .hero-text .btn {
    min-height: 44px;
    max-width: 320px;
    padding: 8px 16px;
    text-align: left;
  }

  .store-panel-head {
    grid-template-columns: 58px 1fr;
  }

  .store-selector {
    gap: 8px;
    padding: 0;
  }

  .store-option {
    min-height: 52px;
    gap: 9px;
    padding: 8px 10px;
  }

  .store-option b,
  .store-panel b {
    font-size: 18px;
  }

  .store-option small {
    font-size: 8px;
  }

  .store-panel-head small {
    font-size: 10px;
    padding: 5px 8px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 116px;
  }

  .store-logo {
    width: 32px;
    height: 32px;
  }

  .store-logo svg {
    width: 22px;
    height: 22px;
  }

  .store-logo-play svg {
    width: 32px;
    height: 32px;
  }

  .store-panel-head img {
    width: 58px;
    height: 58px;
  }

  .store-panel {
    padding: 20px;
  }

  .store-panel-copy {
    font-size: 14px;
  }

  .tester-hero {
    padding: 58px 0;
  }

  .tester-signup {
    padding-bottom: 58px;
  }

  .tester-offer strong,
  .tester-panel h2,
  .tester-signup h2 {
    font-size: 28px;
  }

  .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,
  .app-shot {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
