body.trade-snapshot-open {
  overflow: hidden;
}

.trade-snapshot {
  position: relative;
}

.trade-snapshot__launcher {
  position: fixed;
  right: 24px;
  bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
  z-index: 180;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.96);
  color: #fff;
  padding: 14px 20px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.32s var(--ease-out, cubic-bezier(.16,1,.3,1)),
    transform 0.32s var(--ease-out, cubic-bezier(.16,1,.3,1)),
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.trade-snapshot__launcher.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.trade-snapshot__launcher:hover,
.trade-snapshot__launcher:focus-visible {
  border-color: rgba(212, 175, 55, 0.68);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.24);
  outline: none;
}

.trade-snapshot__launcher-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent, #d4af37);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.15);
  flex-shrink: 0;
}

.trade-snapshot__overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.trade-snapshot__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.trade-snapshot__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.36);
  backdrop-filter: blur(10px);
}

.trade-snapshot__dialog {
  position: relative;
  width: min(960px, calc(100vw - 48px));
  max-height: min(760px, calc(100svh - 48px));
  outline: none;
}

.trade-snapshot__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 34%) minmax(0, 1fr);
  max-height: inherit;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.22);
  transform: translateY(18px);
  transition: transform 0.32s var(--ease-out, cubic-bezier(.16,1,.3,1));
}

.trade-snapshot__overlay.is-open .trade-snapshot__panel {
  transform: translateY(0);
}

.trade-snapshot__rail {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 30px 28px;
  background: #050505;
  color: #fff;
}

.trade-snapshot__rail::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
  background-position: center;
  opacity: 0.8;
  pointer-events: none;
}

.trade-snapshot__rail > * {
  position: relative;
  z-index: 1;
}

.trade-snapshot__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(230, 194, 122, 0.96);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trade-snapshot__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(212, 175, 55, 0.72);
}

.trade-snapshot__rail-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.trade-snapshot__rail-copy {
  margin: 0;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
}

.trade-snapshot__rail-list {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.trade-snapshot__rail-list li {
  color: #e2e8f0;
  font-size: 13px;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.trade-snapshot__rail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, #d4af37);
}

.trade-snapshot__progress {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.trade-snapshot__progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trade-snapshot__progress-track {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.trade-snapshot__progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent, #d4af37), rgba(230, 194, 122, 0.95));
  transition: width 0.24s ease;
}

.trade-snapshot__main {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  max-height: inherit;
  padding: 30px 30px 26px;
  background: rgba(255, 255, 255, 0.98);
}

.trade-snapshot__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.88);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.24s ease, transform 0.24s ease, background 0.24s ease;
}

.trade-snapshot__close:hover,
.trade-snapshot__close:focus-visible {
  border-color: rgba(212, 175, 55, 0.72);
  background: #fff;
  transform: translateY(-1px);
  outline: none;
}

.trade-snapshot__close svg {
  width: 17px;
  height: 17px;
}

.trade-snapshot__content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  margin-top: 18px;
  animation: tradeSnapshotFadeIn 0.26s var(--ease-out, cubic-bezier(.16,1,.3,1));
}

.trade-snapshot__step-tag {
  margin: 0 0 14px;
  color: var(--accent-dark, #9a7b30);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trade-snapshot__title {
  margin: 0 0 12px;
  color: var(--text-primary, #0f172a);
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.trade-snapshot__subtitle {
  margin: 0 0 26px;
  color: var(--text-secondary, #475569);
  font-size: 16px;
  line-height: 1.72;
  max-width: 560px;
}

.trade-snapshot__intro-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-dark, #9a7b30);
  font-size: 13px;
  font-weight: 600;
}

.trade-snapshot__question-group {
  display: grid;
  gap: 12px;
}

.trade-snapshot__option {
  width: 100%;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 16px;
  background: #fff;
  color: var(--text-primary, #0f172a);
  padding: 18px 18px;
  text-align: left;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
  transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.trade-snapshot__option:hover,
.trade-snapshot__option:focus-visible {
  border-color: rgba(212, 175, 55, 0.72);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  outline: none;
}

.trade-snapshot__option.is-selected {
  border-color: rgba(212, 175, 55, 0.9);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.12);
}

.trade-snapshot__option-copy {
  display: block;
}

.trade-snapshot__form {
  display: grid;
  gap: 18px;
}

.trade-snapshot__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trade-snapshot__field {
  display: grid;
  gap: 8px;
}

.trade-snapshot__field--full {
  grid-column: 1 / -1;
}

.trade-snapshot__label {
  color: var(--text-primary, #0f172a);
  font-size: 13px;
  font-weight: 600;
}

.trade-snapshot__label span {
  color: var(--text-tertiary, #64748b);
  font-weight: 500;
}

.trade-snapshot__input,
.trade-snapshot__textarea {
  width: 100%;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 12px;
  background: #fff;
  color: var(--text-primary, #0f172a);
  padding: 14px 15px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.trade-snapshot__textarea {
  min-height: 112px;
  resize: vertical;
}

.trade-snapshot__input:focus,
.trade-snapshot__textarea:focus {
  border-color: rgba(212, 175, 55, 0.86);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
  outline: none;
}

.trade-snapshot__input.is-invalid,
.trade-snapshot__textarea.is-invalid {
  border-color: rgba(180, 35, 24, 0.85);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.1);
}

.trade-snapshot__field-note {
  margin: -2px 0 0;
  color: var(--text-tertiary, #64748b);
  font-size: 13px;
  line-height: 1.6;
}

.trade-snapshot__status {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 6px;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.trade-snapshot__status::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(148, 163, 184, 0.5);
}

.trade-snapshot__status--pending {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
}

.trade-snapshot__status--pending::before {
  background: rgba(212, 175, 55, 0.92);
}

.trade-snapshot__status--success {
  border-color: rgba(5, 150, 105, 0.2);
  background: rgba(5, 150, 105, 0.08);
}

.trade-snapshot__status--success::before {
  background: rgba(5, 150, 105, 0.92);
}

.trade-snapshot__status--error {
  border-color: rgba(180, 35, 24, 0.18);
  background: rgba(180, 35, 24, 0.07);
}

.trade-snapshot__status--error::before {
  background: rgba(180, 35, 24, 0.92);
}

.trade-snapshot__status-title {
  margin: 0;
  color: var(--text-primary, #0f172a);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trade-snapshot__status-copy {
  margin: 0;
  color: var(--text-secondary, #475569);
  font-size: 14px;
  line-height: 1.65;
}

.trade-snapshot__status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.trade-snapshot__status-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-primary, #0f172a);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.trade-snapshot__status-button:hover,
.trade-snapshot__status-button:focus-visible {
  border-color: rgba(212, 175, 55, 0.72);
  background: #fff;
  transform: translateY(-1px);
  outline: none;
}

.trade-snapshot__error {
  color: #b42318;
  font-size: 13px;
  line-height: 1.45;
}

.trade-snapshot__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
}

.trade-snapshot__footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.trade-snapshot__ghost,
.trade-snapshot__link,
.trade-snapshot__button,
.trade-snapshot__button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease, opacity 0.24s ease;
}

.trade-snapshot__ghost {
  padding: 11px 14px;
  background: transparent;
  color: var(--text-secondary, #475569);
}

.trade-snapshot__ghost:hover,
.trade-snapshot__ghost:focus-visible,
.trade-snapshot__link:hover,
.trade-snapshot__link:focus-visible {
  color: var(--text-primary, #0f172a);
  outline: none;
}

.trade-snapshot__link {
  padding: 0;
  background: transparent;
  color: var(--text-tertiary, #64748b);
}

.trade-snapshot__button,
.trade-snapshot__button-secondary {
  min-height: 46px;
  padding: 0 18px;
}

.trade-snapshot__button {
  background: var(--accent, #d4af37);
  color: var(--text-primary, #0f172a);
}

.trade-snapshot__button:hover,
.trade-snapshot__button:focus-visible {
  background: var(--accent-light, #e6c27a);
  transform: translateY(-1px);
  outline: none;
}

.trade-snapshot__button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.trade-snapshot__button[aria-busy="true"] {
  opacity: 1;
  cursor: wait;
}

.trade-snapshot__button[aria-busy="true"]::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(15, 23, 42, 0.22);
  border-top-color: rgba(15, 23, 42, 0.92);
  border-radius: 50%;
  animation: tradeSnapshotSpin 0.7s linear infinite;
}

.trade-snapshot__button-secondary {
  border-color: rgba(226, 232, 240, 0.96);
  background: #fff;
  color: var(--text-primary, #0f172a);
}

.trade-snapshot__button-secondary:hover,
.trade-snapshot__button-secondary:focus-visible {
  border-color: rgba(212, 175, 55, 0.72);
  color: var(--accent-dark, #9a7b30);
  transform: translateY(-1px);
  outline: none;
}

.trade-snapshot__result {
  display: grid;
  gap: 18px;
}

.trade-snapshot__result-panel {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 1));
  padding: 22px 22px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.trade-snapshot__result-kicker {
  margin: 0 0 8px;
  color: var(--accent-dark, #9a7b30);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trade-snapshot__result-title {
  margin: 0 0 12px;
  color: var(--text-primary, #0f172a);
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.trade-snapshot__result-body {
  margin: 0;
  color: var(--text-secondary, #475569);
  font-size: 16px;
  line-height: 1.72;
}

.trade-snapshot__secondary {
  border-left: 2px solid rgba(212, 175, 55, 0.72);
  padding-left: 16px;
}

.trade-snapshot__secondary-title {
  margin: 0 0 6px;
  color: var(--text-primary, #0f172a);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trade-snapshot__secondary-copy {
  margin: 0;
  color: var(--text-secondary, #475569);
  font-size: 14px;
  line-height: 1.65;
}

.trade-snapshot__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trade-snapshot__result-actions .trade-snapshot__button,
.trade-snapshot__result-actions .trade-snapshot__button-secondary {
  min-width: 220px;
}

.trade-snapshot__result-note {
  margin: 0;
  color: var(--text-tertiary, #64748b);
  font-size: 13px;
  line-height: 1.6;
}

@keyframes tradeSnapshotFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tradeSnapshotSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 860px) {
  .trade-snapshot__launcher {
    right: 16px;
    left: 16px;
    bottom: max(14px, calc(env(safe-area-inset-bottom) + 12px));
    justify-content: center;
    padding: 14px 18px;
  }

  .trade-snapshot__overlay {
    align-items: flex-end;
    padding: max(12px, env(safe-area-inset-top)) 0 0;
  }

  .trade-snapshot__dialog {
    width: 100%;
    height: min(calc(100svh - max(12px, env(safe-area-inset-top))), 760px);
    height: min(calc(100dvh - max(12px, env(safe-area-inset-top))), 760px);
    max-height: none;
  }

  .trade-snapshot__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 0;
    max-height: 100%;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
  }

  .trade-snapshot__overlay.is-open .trade-snapshot__panel {
    transform: translateY(0);
  }

  .trade-snapshot__rail {
    gap: 10px;
    padding: 18px 18px 12px;
  }

  .trade-snapshot__rail-title {
    font-size: 24px;
  }

  .trade-snapshot__rail-copy {
    font-size: 14px;
    line-height: 1.55;
  }

  .trade-snapshot__rail-list {
    display: none;
  }

  .trade-snapshot__progress {
    margin-top: 2px;
  }

  .trade-snapshot__progress-meta {
    justify-content: flex-start;
  }

  .trade-snapshot__progress-meta span:last-child {
    display: none;
  }

  .trade-snapshot__main {
    min-height: 0;
    overflow: hidden;
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
  }

  .trade-snapshot__close {
    top: 12px;
    right: 12px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.96);
  }

  .trade-snapshot__content {
    margin-top: 0;
    padding-right: 0;
    padding-top: 40px;
    overscroll-behavior: contain;
  }

  .trade-snapshot__title,
  .trade-snapshot__result-title {
    font-size: clamp(24px, 8vw, 32px);
  }

  .trade-snapshot__subtitle,
  .trade-snapshot__result-body {
    font-size: 15px;
    line-height: 1.6;
  }

  .trade-snapshot__field-grid {
    grid-template-columns: 1fr;
  }

  .trade-snapshot__footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: grid;
    gap: 10px;
    align-items: stretch;
    margin-top: 18px;
    padding: 16px 0 calc(8px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96) 22px, #fff 100%);
  }

  .trade-snapshot__footer-actions {
    width: 100%;
    display: grid;
    gap: 10px;
    margin-left: 0;
  }

  .trade-snapshot__ghost,
  .trade-snapshot__link {
    min-height: 38px;
    justify-content: flex-start;
    padding: 8px 0;
  }

  .trade-snapshot__button,
  .trade-snapshot__button-secondary {
    width: 100%;
    min-width: 0;
  }

  .trade-snapshot__result-actions {
    position: sticky;
    bottom: 0;
    flex-direction: column;
    z-index: 2;
    padding-top: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96) 22px, #fff 100%);
  }

  .trade-snapshot__result-actions .trade-snapshot__button,
  .trade-snapshot__result-actions .trade-snapshot__button-secondary {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .trade-snapshot__overlay {
    padding: max(8px, env(safe-area-inset-top)) 0 0;
  }

  .trade-snapshot__dialog {
    height: min(calc(100svh - max(8px, env(safe-area-inset-top))), 700px);
    height: min(calc(100dvh - max(8px, env(safe-area-inset-top))), 700px);
  }

  .trade-snapshot__panel {
    border-radius: 20px 20px 0 0;
  }

  .trade-snapshot__rail {
    gap: 8px;
    padding: 14px 14px 10px;
  }

  .trade-snapshot__rail-title {
    font-size: 21px;
  }

  .trade-snapshot__rail-copy {
    display: none;
  }

  .trade-snapshot__main {
    padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
  }

  .trade-snapshot__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .trade-snapshot__content {
    padding-top: 36px;
  }

  .trade-snapshot__step-tag,
  .trade-snapshot__result-kicker {
    margin-bottom: 10px;
  }

  .trade-snapshot__title,
  .trade-snapshot__result-title {
    font-size: clamp(22px, 7.6vw, 28px);
  }

  .trade-snapshot__subtitle,
  .trade-snapshot__result-body,
  .trade-snapshot__secondary-copy {
    font-size: 14px;
    line-height: 1.55;
  }

  .trade-snapshot__intro-meta {
    padding: 8px 12px;
    font-size: 12px;
  }

  .trade-snapshot__question-group {
    gap: 10px;
  }

  .trade-snapshot__option {
    padding: 14px 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .trade-snapshot__field-grid {
    gap: 12px;
  }

  .trade-snapshot__input,
  .trade-snapshot__textarea {
    padding: 12px 13px;
    font-size: 14px;
  }

  .trade-snapshot__textarea {
    min-height: 96px;
  }

  .trade-snapshot__footer {
    margin-top: 14px;
    padding-top: 12px;
    gap: 8px;
  }

  .trade-snapshot__ghost,
  .trade-snapshot__link {
    min-height: 34px;
    font-size: 13px;
  }

  .trade-snapshot__button,
  .trade-snapshot__button-secondary {
    min-height: 44px;
  }

  .trade-snapshot__secondary {
    padding-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trade-snapshot__launcher,
  .trade-snapshot__overlay,
  .trade-snapshot__panel,
  .trade-snapshot__progress-fill,
  .trade-snapshot__button,
  .trade-snapshot__button-secondary,
  .trade-snapshot__option,
  .trade-snapshot__close,
  .trade-snapshot__content {
    animation: none !important;
    transition: none !important;
  }
}
