*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #ffffff;
  --bg2:         #faf8ff;
  --bg3:         #f3f0fb;
  --border:      #e0d9f5;
  --purple:      #6d28d9;
  --purple-mid:  #7c3aed;
  --purple-light:#ede9fe;
  --maroon:      #881337;
  --maroon-light:#fff1f2;
  --text:        #1a0a2e;
  --text-dim:    #5b4b7a;
  --text-dimmer: #9e8fbf;
  --radius:      12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--purple-mid); text-decoration: none; }
a:hover { color: var(--purple); text-decoration: underline; }

/* ── Animations ── */
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-24px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { border-right-color: var(--maroon); }
  50%       { border-right-color: transparent; }
}
@keyframes scriptFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109,40,217,0.15); }
  50%       { box-shadow: 0 0 0 6px rgba(109,40,217,0); }
}

.animate-drop {
  animation: dropIn 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
.animate-up {
  animation: fadeUp 0.6s ease both;
  animation-delay: var(--delay, 0s);
}

/* ── Nav ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  z-index: 10;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.nav-brand span { font-size: 22px; color: var(--maroon); }
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  font-size: 14px;
}
.nav-links a { color: var(--text-dim); }
.nav-links a:hover { color: var(--purple); text-decoration: none; }

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 72px 24px 60px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-icon {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--maroon);
}
h1 {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.75;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub em {
  font-style: normal;
  color: var(--maroon);
  font-weight: 600;
}

/* ── Badges ── */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.badge {
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.badge-purple {
  background: var(--purple-light);
  border: 1px solid rgba(109,40,217,0.2);
  color: var(--purple);
}
.badge-maroon {
  background: var(--maroon-light);
  border: 1px solid rgba(136,19,55,0.15);
  color: var(--maroon);
}

/* ── Demo strip ── */
.demo-strip {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 32px;
  text-align: left;
  animation: pulse-border 3s ease-in-out 1.5s infinite;
}
.demo-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dimmer);
  margin-bottom: 14px;
}
.demo-input {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.demo-cursor {
  font-family: "SF Mono", "Fira Mono", monospace;
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
  border-right: 2px solid var(--maroon);
  padding-right: 3px;
  animation: blink 1s step-end infinite;
  white-space: nowrap;
}
.demo-arrow {
  font-size: 20px;
  color: var(--text-dimmer);
  margin-top: 2px;
  flex-shrink: 0;
}
.demo-outputs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.demo-out {
  font-size: 19px;
  color: var(--purple);
  opacity: 0;
  animation: scriptFadeIn 0.4s ease forwards;
  animation-delay: calc(0.8s + var(--i) * 0.15s);
}
.demo-iast {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 17px;
  color: var(--maroon);
}
.demo-out:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: var(--border);
  font-style: normal;
  font-family: sans-serif;
}

/* ── Platform row ── */
.platform-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.platform-chip {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.platform-divider {
  font-size: 18px;
  color: var(--text-dimmer);
  font-weight: 300;
}
.platform-note {
  font-size: 13px;
  color: var(--text-dimmer);
}

/* ── Platform tag (inline label) ── */
.platform-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Download cards ── */
.download-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px 80px;
}
.dl-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.dl-card:hover {
  border-color: var(--purple-mid);
  box-shadow: 0 4px 24px rgba(109,40,217,0.10);
  transform: translateY(-2px);
}
.dl-icon { font-size: 40px; }
.dl-card h3 { font-size: 18px; color: var(--text); font-weight: 700; }
.dl-card p  { font-size: 13px; color: var(--text-dim); text-align: center; }
.dl-btn {
  display: inline-block;
  background: var(--maroon);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  margin-top: 4px;
  transition: background 0.15s;
  text-decoration: none;
}
.dl-btn:hover { background: #9f1239; color: #fff; text-decoration: none; }
.dl-btn.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 12px;
  padding: 7px 16px;
}
.dl-btn.secondary:hover { border-color: var(--purple-mid); color: var(--purple); }

/* ── Gatekeeper ── */
.gatekeeper-note {
  font-size: 12px;
  color: #7c3a00;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: left;
  line-height: 1.7;
  cursor: pointer;
  width: 100%;
}
.gatekeeper-note summary { font-weight: 700; font-size: 12px; list-style: none; }
.gatekeeper-note summary::-webkit-details-marker { display: none; }
.gatekeeper-note[open] summary { margin-bottom: 6px; }

/* ── Features ── */
.features {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}
.features h2, .section h2, .shortcuts h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 40px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  animation: fadeUp 0.5s ease both;
  animation-delay: calc(0.1s + var(--fi, 0) * 0.07s);
}
.feature-card:hover {
  border-color: var(--purple-mid);
  box-shadow: 0 4px 20px rgba(109,40,217,0.09);
  transform: translateY(-3px);
}
.feature-card .icon { font-size: 28px; margin-bottom: 10px; }
.feature-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.feature-card p  { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.feature-card strong { color: var(--text); }

/* ── How it works ── */
.section {
  padding: 64px 24px;
  max-width: 820px;
  margin: 0 auto;
}
.mode-tabs {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mode-tab {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
}
.mode-tab-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.mode-num {
  background: var(--purple);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mode-tab-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.steps { display: flex; flex-direction: column; gap: 16px; }
.step { display: flex; align-items: flex-start; gap: 14px; }
.step-num {
  background: var(--purple);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-body h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.step-body p  { font-size: 13px; color: var(--text-dim); }

code {
  background: var(--purple-light);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 7px;
  font-family: monospace;
  font-size: 13px;
  color: var(--maroon);
}

/* ── Shortcuts ── */
.shortcuts {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 24px;
}
.shortcuts-sub {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dimmer);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.shortcut-table {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shortcut-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  transition: border-color 0.15s;
}
.shortcut-row:hover { border-color: var(--purple-mid); }
.shortcut-row span { font-size: 13px; color: var(--text-dim); }
.kbd-group { display: flex; gap: 4px; }
kbd {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 8px;
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 30px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dimmer);
}
footer a { color: var(--text-dim); }
footer a:hover { color: var(--purple); }

/* ── About page ── */
.about-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-hero { text-align: center; padding: 40px 0 20px; }
.about-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.about-card h2 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.about-card p  { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.about-link { color: var(--purple-mid); }
.about-link:hover { text-decoration: underline; }
.bmc-btn {
  display: inline-block;
  margin-top: 16px;
  background: #ffdd00;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.bmc-btn:hover { opacity: 0.85; color: #000; text-decoration: none; }

/* ── Troubleshoot page ─────────────────────────────────────────────────────── */

.ts-page-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  text-align: center;
}
.ts-page-header h1 { font-size: 32px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.ts-page-header p  { font-size: 15px; color: var(--text-dim); margin-bottom: 24px; }
.ts-back-btn { display: inline-block; font-size: 13px; }

.ts-jump-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 24px 36px;
  max-width: 720px;
  margin: 0 auto;
}
.ts-jump-bar a {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-mid);
  background: var(--purple-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  text-decoration: none;
  transition: background 0.15s;
}
.ts-jump-bar a:hover { background: var(--border); text-decoration: none; }

.ts-section {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.ts-section:nth-child(even) { background: var(--bg2); }

.ts-section-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ts-section-inner h2 { font-size: 20px; font-weight: 700; color: var(--text); line-height: 1.35; }
.ts-section-inner h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-top: 4px; }
.ts-intro { font-size: 14px; color: var(--text-dim); line-height: 1.65; }
.ts-note  { font-size: 12px; color: var(--text-dimmer); line-height: 1.6; }

.ts-recommended { font-weight: 400; font-size: 11px; color: var(--purple-mid); margin-left: 6px; }

.ts-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}
.ts-badge-mac  { background: var(--purple-light); color: var(--purple);      border: 1px solid var(--border); }
.ts-badge-win  { background: #e0f0ff;             color: #1a5fa0;            border: 1px solid #b3d4f5; }
.ts-badge-both { background: #e6f9ee;             color: #166534;            border: 1px solid #bbf7d0; }

.ts-steps {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.ts-steps li strong { color: var(--text); }
.ts-steps li em     { color: var(--text-dim); font-style: italic; }

kbd {
  display: inline-block;
  font-family: "SF Mono", "Consolas", monospace;
  font-size: 11px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--text);
  white-space: nowrap;
}

.ts-code-block {
  display: block;
  font-family: "SF Mono", "Consolas", monospace;
  font-size: 13px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--maroon);
  user-select: all;
  word-break: break-all;
}

.ts-screenshot-slot {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.ts-screenshot-placeholder {
  padding: 40px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dimmer);
  font-style: italic;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-screenshot-slot figcaption {
  padding: 8px 16px;
  font-size: 12px;
  color: var(--text-dimmer);
  border-top: 1px solid var(--border);
}

.ts-inline-symbol {
  font-size: 15px;
  color: var(--maroon);
}

.ts-still-stuck {
  background: var(--purple-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-dim);
}
.ts-still-stuck a { color: var(--purple-mid); font-weight: 600; }

/* "Having trouble?" link below download buttons */
.ts-help-link {
  font-size: 12px;
  color: var(--text-dimmer);
  text-decoration: none;
  text-align: center;
}
.ts-help-link:hover { color: var(--purple-mid); text-decoration: underline; }

/* Active nav link */
.nav-active { color: var(--purple) !important; font-weight: 600; }

/* ── Platform setup link (replaces "Having trouble?") ─────────────────────── */
.platform-setup-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-mid);
  text-decoration: none;
  text-align: center;
  margin-top: 2px;
}
.platform-setup-link:hover { text-decoration: underline; color: var(--purple); }

/* ── Platform page header ─────────────────────────────────────────────────── */
.platform-page-header {
  max-width: 600px;
  margin: 0 auto;
  padding: 52px 24px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.platform-page-icon { font-size: 48px; }
.platform-page-header h1 { font-size: 34px; font-weight: 800; color: var(--text); }
.platform-page-header p  { font-size: 14px; color: var(--text-dim); margin-bottom: 6px; }

/* ── Platform sections ────────────────────────────────────────────────────── */
.platform-section {
  padding: 52px 24px;
  border-top: 1px solid var(--border);
}
.platform-section-alt { background: var(--bg2); }

.platform-section-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.platform-section-inner > h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}
.section-intro {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-top: -16px;
}

/* ── Install steps ────────────────────────────────────────────────────────── */
.install-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.install-step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.install-step:last-child { border-bottom: none; }

.install-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.install-step-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.install-step-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.install-step-body p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}
.install-step-body ol {
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.install-step-body ol li strong { color: var(--text); }
.install-step-body ol li em     { font-style: italic; }

.install-code {
  display: block;
  font-family: "SF Mono", "Consolas", monospace;
  font-size: 13px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--maroon);
  user-select: all;
}
.install-note {
  font-size: 12px !important;
  color: var(--text-dimmer) !important;
}

.required-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 8px;
  vertical-align: middle;
}
.recommended-tag {
  font-size: 10px;
  font-weight: 600;
  background: var(--purple-light);
  color: var(--purple-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 8px;
  vertical-align: middle;
}
.tray-icon {
  font-size: 15px;
  color: var(--maroon);
}

/* ── Method blocks (Chrome / Edge sub-steps etc.) ─────────────────────────── */
.method-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.method-block h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.method-block ol {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}
.method-block ol li strong { color: var(--text); }
.method-block ol li em     { font-style: italic; }

/* ── Usage tabs (get started sections) ───────────────────────────────────── */
.usage-tabs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.usage-tab {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.usage-tab-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px 16px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.usage-tab-head h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.usage-sub {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.usage-tab .steps {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Troubleshoot ordered steps (numbered with circle) ───────────────────── */
.ts-ordered-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ts-ordered-step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.ts-ordered-step:last-child { border-bottom: none; }
.ts-ordered-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.ts-ordered-step-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ts-ordered-step-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.ts-ordered-step-body p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}
