/* Landing: editorial typography paired with an interactive product surface. */
.landing-page > main {
  max-width: 1360px;
  padding-top: 20px;
}
.current-hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 50px 0 64px;
  position: relative;
}
.hero-kicker {
  font:
    11px/1.5 Consolas,
    monospace;
  letter-spacing: 0.13em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 30px;
}
.kicker-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.current-hero h1 {
  font-size: clamp(48px, 5.2vw, 73px);
  font-weight: 600;
  line-height: 1.09;
  letter-spacing: -0.055em;
  margin: 0 0 27px;
}
.current-hero h1 > span {
  color: var(--accent);
}
.hero-description {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 450px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}
.hero-actions .button {
  padding: 15px 22px;
  min-height: 53px;
  font-size: 14px;
}
.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: var(--muted);
}
.hero-secondary:hover {
  color: var(--text);
}
.hero-secondary .ui-icon {
  width: 16px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 23px;
}
.hero-note .ui-icon {
  color: var(--accent);
  width: 14px;
  height: 14px;
}
.hero-index {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 43px;
  font:
    9px Consolas,
    monospace;
  letter-spacing: 1px;
  color: var(--muted);
}
.hero-index > div {
  width: 94px;
  height: 2px;
  background: var(--line);
}
.hero-index i {
  display: block;
  width: 27%;
  height: 2px;
  background: var(--accent);
}
.hero-visual {
  min-width: 0;
  position: relative;
  padding: 15px 0 0;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: -30px -28px 25px;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse, black, transparent 70%);
}
.preview-window {
  border: 1px solid color-mix(in srgb, var(--accent) 23%, var(--line));
  border-radius: 14px;
  background: var(--card);
  overflow: hidden;
  box-shadow:
    0 24px 80px #00000029,
    0 0 60px #52d8bc07;
  transform: perspective(1600px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.4s;
}
.preview-window:hover {
  transform: perspective(1600px) rotateY(0deg) rotateX(0deg);
}
.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--field);
  border-bottom: 1px solid var(--line);
  padding: 14px 19px;
  font-size: 10px;
  color: var(--muted);
  gap: 10px;
}
.preview-topbar > div {
  display: flex;
  align-items: center;
  gap: 11px;
}
.preview-topbar strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.window-mark {
  font-weight: 800;
  color: var(--accent);
  font-size: 17px;
  letter-spacing: -4px;
  margin-right: 4px;
}
.preview-divider {
  color: var(--muted);
  opacity: 0.45;
}
.demo-label {
  font:
    9px Consolas,
    monospace;
  letter-spacing: 1px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 3px 7px;
  color: var(--muted);
}
.preview-pair-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 25px 23px 21px;
}
.preview-pair {
  display: flex;
  gap: 11px;
  align-items: center;
}
.preview-coin {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #f29d2c1a;
  color: #f0b862;
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 600;
}
.preview-pair strong {
  display: block;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.03em;
}
.preview-pair div > span {
  font-size: 10px;
  display: block;
  color: var(--muted);
  margin-top: 3px;
}
.preview-quote {
  text-align: right;
}
.preview-quote strong {
  font:
    22px/1.2 Consolas,
    monospace;
  display: block;
  letter-spacing: -0.8px;
}
.preview-quote > span {
  font:
    11px Consolas,
    monospace;
  display: block;
  color: var(--positive);
  margin-top: 6px;
}
.preview-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 23px 13px;
  gap: 10px;
}
.preview-assets,
.preview-ranges {
  display: flex;
  gap: 5px;
}
.preview-assets button,
.preview-ranges button {
  border: 1px solid transparent;
  border-radius: 5px;
  background: none;
  color: var(--muted);
  font:
    10px Consolas,
    monospace;
  padding: 6px 9px;
  min-height: 28px;
}
.preview-assets button[aria-pressed="true"] {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 20%, transparent);
}
.preview-ranges button[aria-pressed="true"] {
  background: var(--field);
  color: var(--text);
}
.preview-assets button:hover,
.preview-ranges button:hover {
  background: var(--field);
  color: var(--text);
}
.preview-chart-wrap {
  padding: 0 12px 0 21px;
  position: relative;
}
.preview-chart {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.demo-grid {
  stroke: var(--line);
  stroke-width: 0.7;
  stroke-dasharray: 3 4;
  fill: none;
}
.demo-axis {
  font:
    9px Consolas,
    monospace;
  fill: var(--muted);
}
.preview-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  padding: 18px 23px;
  margin-top: 8px;
  gap: 12px;
}
.preview-data > div + div {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.preview-data div > span {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 6px;
}
.preview-data strong {
  font:
    13px Consolas,
    monospace;
  white-space: nowrap;
}
.preview-data strong small {
  font:
    9px Consolas,
    monospace;
  color: var(--muted);
}
.preview-trend {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font-size: 12px !important;
}
.preview-trend .ui-icon {
  width: 14px;
  height: 14px;
}
.preview-insight {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 15px 19px 0;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  background: var(--accent-soft);
  border-radius: 8px;
  padding: 11px 12px;
}
.insight-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 8px;
  color: var(--accent);
}
.insight-icon .ui-icon {
  width: 16px;
  height: 16px;
}
.preview-insight > div > span {
  font:
    8px Consolas,
    monospace;
  letter-spacing: 1px;
  color: var(--accent);
}
.preview-insight p {
  font-size: 11px;
  margin: 3px 0 0;
}
.preview-insight > .ui-icon {
  width: 15px;
  color: var(--muted);
  margin-left: auto;
}
.preview-disclaimer {
  margin: 12px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.01em;
}
.visual-footnote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 0 0;
  font:
    9px Consolas,
    monospace;
  letter-spacing: 1.3px;
  color: var(--muted);
}
.visual-cross {
  font-size: 18px;
  opacity: 0.65;
}
.exchange-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-block: 1px solid var(--line);
  padding: 29px 0;
  margin: 12px 0 0;
}
.exchange-strip > p {
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
  flex-shrink: 0;
}
.exchange-strip > p > span {
  color: var(--muted);
}
.exchange-wordmarks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex: 1;
  max-width: 685px;
  color: var(--muted);
}
.exchange-wordmarks > span {
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.8px;
}
.exchange-wordmarks > span:nth-child(2) {
  font-size: 16px;
  letter-spacing: 0.7px;
}
.exchange-wordmarks > span:nth-child(4) {
  font-size: 24px;
  letter-spacing: -1.3px;
}
.exchange-wordmarks > span:nth-child(5) {
  font-weight: 500;
  letter-spacing: -1px;
}
.exchange-wordmarks .exchange-bybit {
  font-size: 18px;
}
.exchange-bybit > span {
  color: var(--accent);
  font-size: 10px;
  padding-left: 2px;
}
.exchange-caption {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}
.possibilities-section {
  padding: 105px 0 0;
}
.landing-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 38px;
}
.landing-section-heading .eyebrow {
  margin-bottom: 18px;
}
.landing-section-heading h2,
.risk-copy h2,
.start-section h2 {
  font-size: clamp(31px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.045em;
  margin: 0;
}
.landing-section-heading h2 > span,
.start-section h2 > span {
  color: var(--muted);
}
.landing-section-heading > p {
  max-width: 310px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 0 0 5px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 20px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 29px 30px;
  position: relative;
  overflow: hidden;
  min-width: 0;
  transition: border-color 0.2s;
}
.product-card:hover {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
}
.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.feature-icon-box {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--accent);
}
.feature-icon-box .ui-icon {
  width: 20px;
  height: 20px;
}
.product-number {
  font:
    11px Consolas,
    monospace;
  color: var(--muted);
}
.product-card h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.3;
  margin: 0 0 13px;
}
.product-card > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 435px;
  margin-bottom: 26px;
}
.product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text);
  margin-top: auto;
  padding-top: 24px;
}
.product-link .ui-icon {
  width: 18px;
  color: var(--accent);
}
.mini-orderbook {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 15px 18px;
  border-radius: 10px;
  font:
    11px Consolas,
    monospace;
  position: relative;
}
.mini-orderbook > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 6px 3px;
  isolation: isolate;
  color: var(--negative);
}
.mini-orderbook > div > i {
  position: absolute;
  right: 0;
  top: 2px;
  bottom: 2px;
  width: var(--depth);
  background: color-mix(in srgb, var(--negative) 12%, transparent);
  z-index: -1;
}
.mini-orderbook > div.buy {
  color: var(--positive);
}
.mini-orderbook > div.buy > i {
  background: color-mix(in srgb, var(--positive) 12%, transparent);
}
.mini-orderbook > div.mini-book-top {
  color: var(--muted);
  font-size: 9px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 11px;
  margin-bottom: 8px;
}
.mini-orderbook > div.mini-book-mid {
  justify-content: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  padding: 11px 0;
}
.mini-book-mid > span {
  color: var(--accent);
}
.mini-screener {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 10px;
  padding: 5px 16px 9px;
}
.mini-screener > div {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-size: 11px;
}
.mini-screener > div > span {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.coin-dot {
  font-style: normal;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
}
.btc {
  background: #c7951c18;
  color: #dca341;
}
.eth {
  background: #697bec18;
  color: #92a1ec;
}
.sol {
  background: #5abece18;
  color: var(--accent);
}
.mini-screener > div > svg {
  width: 100px;
  height: 30px;
  fill: none;
  stroke: var(--positive);
  stroke-width: 1.5;
}
.mini-screener b {
  font:
    11px Consolas,
    monospace;
  color: var(--positive);
  min-width: 65px;
  text-align: right;
}
.mini-screener > small {
  font-size: 9px;
  color: var(--muted);
  display: block;
  text-align: right;
  margin-top: 8px;
}
.journal-visual {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 8px 0 15px;
}
.journal-visual > div {
  background: var(--field);
  border: 1px solid var(--line);
  padding: 16px 14px;
  border-radius: 9px;
  flex: 1;
  min-width: 0;
  min-height: 93px;
}
.journal-visual > div > span {
  font:
    9px Consolas,
    monospace;
  color: var(--muted);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 14px;
}
.journal-visual > div > i {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--line);
  margin: 7px 0;
  width: 70%;
}
.journal-visual > div > i:last-child {
  width: 45%;
}
.journal-visual > div:last-child {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  background: var(--accent-soft);
}
.journal-visual .ui-icon {
  color: var(--accent);
  width: 17px;
}
.journal-visual > div > .ui-icon {
  width: 22px;
  height: 22px;
}
.product-copilot {
  background: linear-gradient(
    130deg,
    var(--card),
    color-mix(in srgb, var(--accent) 7%, var(--card))
  );
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
}
.copilot-tag {
  font:
    9px Consolas,
    monospace;
  color: var(--accent);
  letter-spacing: 1px;
}
.product-copilot h3 {
  font-size: 27px;
}
.example-prompt {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 15px;
}
.example-prompt .ui-icon {
  color: var(--accent);
  width: 18px;
}
.risk-lab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
  max-width: 1360px;
}
.risk-copy h2 {
  margin-bottom: 24px;
}
.risk-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  max-width: 435px;
}
.risk-education {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 29px;
  max-width: 400px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
}
.risk-education > .ui-icon {
  width: 17px;
  color: var(--accent);
  margin-top: 2px;
}
.risk-calculator {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 27px;
  width: 100%;
  max-width: 620px;
}
.calculator-heading {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 24px;
  gap: 12px;
}
.calculator-heading > span:last-child {
  font-size: 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 3px 7px;
}
.risk-calculator label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
  gap: 16px;
}
.risk-calculator label > output {
  font:
    13px Consolas,
    monospace;
  color: var(--text);
}
.risk-calculator input[type="range"] {
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  accent-color: var(--accent);
  margin: 0;
  width: 100%;
  display: block;
  cursor: pointer;
  box-shadow: none;
}
.range-labels {
  display: flex;
  justify-content: space-between;
  font:
    9px Consolas,
    monospace;
  color: var(--muted);
  margin: 5px 0 25px;
}
.calculator-outcome {
  border-top: 1px solid var(--line);
  padding: 22px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.calculator-outcome > div {
  min-width: 180px;
}
.calculator-outcome > div > span {
  font-size: 12px;
}
.calculator-outcome small {
  font-size: 9px;
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.calculator-outcome > output {
  font:
    29px Consolas,
    monospace;
  color: var(--positive);
  white-space: nowrap;
}
.calculator-outcome > output > small {
  display: inline;
  font-size: 11px;
}
.trade-outcomes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  margin: 10px 0 15px;
  max-width: 520px;
}
.trade-outcomes span {
  border: 1px solid color-mix(in srgb, var(--positive) 27%, transparent);
  background: color-mix(in srgb, var(--positive) 9%, transparent);
  color: var(--positive);
  text-align: center;
  border-radius: 4px;
  height: 24px;
  line-height: 22px;
  font:
    11px/22px Consolas,
    monospace;
}
.trade-outcomes span.loss {
  border-color: color-mix(in srgb, var(--negative) 27%, transparent);
  background: color-mix(in srgb, var(--negative) 9%, transparent);
  color: var(--negative);
}
.calculator-footnote {
  font-size: 9px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.calculator-footnote strong {
  font-weight: 500;
  color: var(--text);
}
.start-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 95px 0;
}
.start-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.start-steps li {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 0 0 24px;
}
.start-steps li + li {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.start-steps li > span {
  font:
    12px Consolas,
    monospace;
  padding-top: 5px;
  color: var(--accent);
}
.start-steps h3 {
  font-size: 17px;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 8px;
}
.start-steps p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  max-width: 355px;
  line-height: 1.8;
}
.landing-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  border-radius: 16px;
  background: var(--card);
  padding: 62px 40px;
  text-align: center;
}
.landing-cta:before,
.landing-cta:after {
  content: "";
  position: absolute;
  inset: 0 auto 0 12%;
  width: 1px;
  background: var(--line);
  opacity: 0.4;
  pointer-events: none;
}
.landing-cta:after {
  left: auto;
  right: 12%;
}
.landing-cta h2 {
  font-size: clamp(35px, 4.2vw, 57px);
  line-height: 1.15;
  letter-spacing: -0.05em;
  margin: 0 0 22px;
}
.landing-cta > .eyebrow {
  color: var(--accent);
  font:
    10px Consolas,
    monospace;
  letter-spacing: 0.16em;
}
.landing-cta > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 26px;
}
.landing-cta .button {
  padding: 13px 23px;
  position: relative;
  z-index: 1;
}
.cta-plans {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  margin-left: 22px;
  color: var(--muted);
}
.cta-plans .ui-icon {
  width: 15px;
}
.cta-cross {
  position: absolute;
  top: 21px;
  left: 26px;
  color: var(--muted);
  font:
    25px Consolas,
    monospace;
}
.cta-coordinate {
  display: block;
  margin-top: 34px;
  color: var(--muted);
  font:
    9px Consolas,
    monospace;
  letter-spacing: 1.6px;
}
:root[data-theme="light"] .preview-window {
  box-shadow: 0 25px 60px #1e526b12;
}
:root[data-theme="light"] .preview-coin {
  color: #b27620;
}
@media (min-width: 1500px) {
  .current-hero {
    gap: 95px;
    padding: 65px 0 80px;
  }
  .current-hero h1 {
    font-size: 78px;
  }
  .hero-actions {
    gap: 21px;
  }
  .hero-visual {
    padding-top: 0;
  }
}
@media (max-width: 1150px) {
  .current-hero {
    gap: 38px;
    padding-top: 36px;
  }
  .current-hero h1 {
    font-size: 59px;
  }
  .hero-description {
    font-size: 15px;
  }
  .exchange-strip {
    gap: 24px;
  }
  .exchange-wordmarks {
    gap: 20px;
  }
  .exchange-caption {
    display: none;
  }
  .exchange-wordmarks > span {
    font-size: 19px;
  }
  .risk-lab,
  .start-section {
    gap: 50px;
  }
  .product-card {
    padding: 25px;
  }
  .hero-kicker {
    font-size: 10px;
  }
  .preview-data strong {
    font-size: 12px;
  }
  .preview-data > div + div {
    padding-left: 11px;
  }
  .preview-quote strong {
    font-size: 20px;
  }
  .hero-index {
    margin-top: 34px;
  }
}
@media (max-width: 950px) {
  .current-hero {
    gap: 30px;
  }
  .current-hero h1 {
    font-size: 51px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 13px 15px;
  }
  .hero-secondary {
    font-size: 11px;
  }
  .preview-pair-row {
    padding: 21px 17px;
  }
  .preview-pair strong {
    font-size: 14px;
  }
  .preview-quote strong {
    font-size: 18px;
  }
  .preview-coin {
    width: 31px;
    height: 31px;
    font-size: 22px;
  }
  .preview-controls {
    padding-left: 17px;
    padding-right: 17px;
  }
  .preview-data {
    padding: 15px;
  }
  .preview-insight {
    margin-left: 13px;
    margin-right: 13px;
  }
  .preview-topbar {
    padding: 12px 15px;
  }
  .preview-disclaimer {
    font-size: 8px;
  }
  .exchange-wordmarks {
    gap: 16px;
  }
  .exchange-wordmarks > span {
    font-size: 16px;
  }
  .exchange-wordmarks > span:nth-child(2) {
    font-size: 12px;
  }
  .exchange-strip > p {
    font-size: 10px;
  }
  .landing-section-heading h2,
  .risk-copy h2,
  .start-section h2 {
    font-size: 35px;
  }
  .landing-section-heading > p {
    font-size: 13px;
    max-width: 275px;
  }
  .possibilities-section {
    padding-top: 78px;
  }
  .risk-lab {
    padding: 80px 0;
    gap: 32px;
  }
  .risk-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .risk-calculator {
    padding: 22px;
  }
  .start-section {
    padding: 75px 0;
  }
  .product-card h3 {
    font-size: 22px;
  }
  .product-card > p {
    font-size: 13px;
  }
  .product-copilot h3 {
    font-size: 24px;
  }
  .journal-visual {
    gap: 8px;
  }
  .journal-visual > div {
    padding: 14px 10px;
  }
  .journal-visual > div > span {
    font-size: 8px;
  }
  .mini-screener > div > svg {
    width: 75px;
  }
}
@media (max-width: 760px) {
  .current-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 28px 0 32px;
  }
  .current-hero-copy {
    max-width: 570px;
  }
  .current-hero h1 {
    font-size: clamp(48px, 8.7vw, 67px);
  }
  .hero-kicker {
    margin-bottom: 24px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 490px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 19px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding: 13px 17px;
  }
  .hero-note {
    margin-top: 19px;
  }
  .hero-index {
    display: none;
  }
  .hero-visual {
    max-width: 570px;
    width: 100%;
    margin: auto;
    padding-top: 0;
  }
  .preview-window {
    transform: none;
  }
  .preview-quote strong {
    font-size: 24px;
  }
  .preview-pair strong {
    font-size: 16px;
  }
  .preview-data strong {
    font-size: 14px;
  }
  .preview-data > div > span {
    font-size: 10px;
  }
  .preview-data {
    padding: 19px 22px;
  }
  .preview-insight {
    margin: 16px 18px 0;
    padding: 12px;
  }
  .preview-insight p {
    font-size: 12px;
  }
  .preview-disclaimer {
    font-size: 10px;
  }
  .preview-controls {
    padding-left: 22px;
    padding-right: 22px;
  }
  .preview-topbar {
    padding: 14px 19px;
  }
  .preview-pair-row {
    padding: 23px;
  }
  .preview-coin {
    width: 36px;
    height: 36px;
  }
  .exchange-strip {
    flex-wrap: wrap;
    gap: 22px;
    padding: 25px 0;
  }
  .exchange-strip > p {
    font-size: 12px;
  }
  .exchange-strip > p > br {
    display: none;
  }
  .exchange-strip > p > span {
    padding-left: 4px;
  }
  .exchange-wordmarks {
    flex-basis: 100%;
    max-width: none;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .exchange-wordmarks > span {
    font-size: 18px;
  }
  .exchange-wordmarks > span:nth-child(2) {
    font-size: 13px;
  }
  .exchange-wordmarks > span:nth-child(4) {
    font-size: 22px;
  }
  .landing-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }
  .landing-section-heading > p {
    max-width: 440px;
    font-size: 14px;
  }
  .landing-section-heading h2,
  .risk-copy h2,
  .start-section h2 {
    font-size: 36px;
  }
  .product-card {
    padding: 24px;
  }
  .product-grid {
    gap: 14px;
  }
  .product-card h3 {
    font-size: 21px;
  }
  .product-card-head {
    margin-bottom: 21px;
  }
  .product-card > p {
    font-size: 12px;
  }
  .mini-screener > div > svg {
    width: 55px;
  }
  .mini-screener {
    padding: 5px 12px 8px;
  }
  .mini-screener b {
    font-size: 10px;
    min-width: 51px;
  }
  .mini-screener > div {
    gap: 7px;
  }
  .journal-visual {
    flex-wrap: wrap;
    gap: 6px;
  }
  .journal-visual > div {
    min-height: 83px;
  }
  .journal-visual > .ui-icon {
    width: 11px;
  }
  .example-prompt {
    font-size: 11px;
  }
  .product-copilot h3 {
    font-size: 23px;
  }
  .risk-lab {
    grid-template-columns: 1fr;
    padding: 65px 0;
    gap: 30px;
  }
  .risk-copy > p:not(.eyebrow) {
    font-size: 15px;
    max-width: 520px;
  }
  .risk-education {
    max-width: none;
    margin-top: 21px;
    font-size: 12px;
  }
  .risk-calculator {
    padding: 26px;
    max-width: 570px;
    width: 100%;
    margin: auto;
  }
  .risk-calculator label {
    font-size: 13px;
  }
  .calculator-heading {
    font-size: 15px;
  }
  .calculator-footnote {
    font-size: 10px;
  }
  .start-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 65px 0;
  }
  .start-steps p {
    max-width: 460px;
    font-size: 14px;
  }
  .start-steps h3 {
    font-size: 19px;
  }
  .start-steps li {
    gap: 22px;
  }
  .landing-cta {
    padding: 49px 25px;
  }
  .landing-cta h2 {
    font-size: 42px;
  }
  .landing-cta > .eyebrow {
    margin-bottom: 22px;
  }
}
@media (max-width: 520px) {
  .current-hero {
    padding-top: 22px;
    gap: 35px;
  }
  .current-hero h1 {
    font-size: clamp(41px, 10vw, 52px);
    letter-spacing: -0.055em;
  }
  .hero-kicker {
    font-size: 9px;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding: 14px 19px;
    justify-content: space-between;
  }
  .hero-secondary {
    font-size: 12px;
    justify-content: space-between;
    padding: 0 3px;
  }
  .hero-note {
    font-size: 10px;
  }
  .preview-topbar {
    padding: 12px 14px;
  }
  .preview-topbar > div {
    gap: 8px;
  }
  .preview-topbar > div > span:last-child {
    font-size: 9px;
  }
  .preview-pair-row {
    padding: 20px 15px;
    gap: 10px;
  }
  .preview-pair {
    gap: 9px;
  }
  .preview-pair strong {
    font-size: 14px;
  }
  .preview-quote strong {
    font-size: 20px;
  }
  .preview-controls {
    padding: 0 15px 10px;
  }
  .preview-assets button,
  .preview-ranges button {
    padding: 6px 8px;
    font-size: 10px;
    min-height: 30px;
  }
  .preview-chart-wrap {
    padding-left: 12px;
    padding-right: 8px;
  }
  .preview-data {
    padding: 15px;
    gap: 8px;
  }
  .preview-data strong {
    font-size: 12px;
  }
  .preview-data > div > span {
    font-size: 8px;
  }
  .preview-data > div + div {
    padding-left: 11px;
  }
  .preview-trend {
    font-size: 10px !important;
    gap: 3px;
  }
  .preview-insight {
    margin: 13px 12px 0;
    gap: 9px;
    padding: 10px;
  }
  .preview-insight p {
    font-size: 10px;
  }
  .preview-disclaimer {
    font-size: 8px;
    margin: 11px 8px;
  }
  .visual-footnote {
    font-size: 8px;
    letter-spacing: 0.6px;
    padding-top: 13px;
  }
  .exchange-strip > p {
    font-size: 11px;
  }
  .exchange-strip > p > br {
    display: block;
  }
  .exchange-strip > p > span {
    padding: 0;
  }
  .exchange-wordmarks {
    justify-content: flex-start;
    gap: 18px 26px;
  }
  .exchange-wordmarks > span {
    font-size: 18px;
  }
  .exchange-wordmarks > span:nth-child(2) {
    font-size: 13px;
  }
  .exchange-wordmarks > span:nth-child(4) {
    font-size: 22px;
  }
  .exchange-wordmarks > span:nth-child(5) {
    font-size: 20px;
  }
  .possibilities-section {
    padding-top: 60px;
  }
  .landing-section-heading h2,
  .risk-copy h2,
  .start-section h2 {
    font-size: 31px;
  }
  .landing-section-heading > .eyebrow {
    font-size: 10px;
  }
  .landing-section-heading > p {
    font-size: 13px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-card {
    padding: 25px;
  }
  .product-card h3 {
    font-size: 24px;
  }
  .product-card > p {
    font-size: 14px;
  }
  .product-card-head {
    margin-bottom: 23px;
  }
  .product-link {
    font-size: 13px;
  }
  .mini-screener > div > svg {
    width: 100px;
  }
  .mini-screener b {
    font-size: 12px;
  }
  .mini-screener > div > span {
    font-size: 12px;
  }
  .journal-visual > div > span {
    font-size: 9px;
  }
  .journal-visual > div {
    min-height: 90px;
  }
  .journal-visual > .ui-icon {
    width: 17px;
  }
  .example-prompt {
    font-size: 12px;
  }
  .risk-calculator {
    padding: 22px;
  }
  .risk-calculator label {
    font-size: 12px;
  }
  .calculator-outcome > output {
    font-size: 27px;
  }
  .calculator-heading {
    font-size: 14px;
  }
  .calculator-heading > span:last-child {
    font-size: 9px;
  }
  .calculator-outcome > div > span {
    font-size: 11px;
  }
  .calculator-outcome small {
    font-size: 8px;
  }
  .trade-outcomes {
    gap: 4px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }
  .trade-outcomes span {
    height: 22px;
    line-height: 20px;
    font-size: 10px;
  }
  .calculator-footnote {
    font-size: 9px;
  }
  .risk-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .risk-education {
    font-size: 11px;
  }
  .start-steps h3 {
    font-size: 18px;
  }
  .start-steps p {
    font-size: 13px;
  }
  .landing-cta {
    padding: 44px 22px;
  }
  .landing-cta h2 {
    font-size: 34px;
  }
  .landing-cta > p:not(.eyebrow) {
    font-size: 13px;
  }
  .landing-cta .button {
    display: flex;
    max-width: 260px;
    margin: 0 auto;
  }
  .cta-plans {
    margin: 19px 0 0;
    font-size: 12px;
  }
  .cta-cross {
    top: 12px;
    left: 15px;
    font-size: 20px;
  }
  .cta-coordinate {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .landing-cta:before {
    left: 8%;
  }
  .landing-cta:after {
    right: 8%;
  }
}

@media (max-width: 390px) {
  .risk-calculator {
    padding: 18px;
  }
  .risk-calculator label {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .risk-calculator label > output {
    font-size: 11px;
  }
  .calculator-heading {
    font-size: 13px;
    gap: 8px;
  }
  .calculator-heading > span:last-child {
    font-size: 8px;
  }
  .risk-lab {
    gap: 22px;
    padding-top: 52px;
  }
  .calculator-outcome {
    row-gap: 8px;
    padding-top: 18px;
  }
  .calculator-outcome > div {
    min-width: 150px;
  }
  .calculator-outcome > div > span {
    font-size: 10px;
  }
  .calculator-outcome > output {
    font-size: 24px;
  }
  .calculator-outcome > output > small {
    font-size: 9px;
  }
  .trade-outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }
  .trade-outcomes span {
    height: 20px;
    line-height: 19px;
    font-size: 9px;
  }
  .risk-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .risk-education {
    font-size: 10px;
  }
}

.product-copilot .copilot-allowance {
  color: var(--accent);
  font-size: 12px;
  margin: 0 0 16px;
}
