/* Arka Alpha — Modern Electric Cyan & Dark Sapphire High-Tech Trading Theme */

:root {
  --bg: #070b14;
  --surface: #0f172a;
  --surface-2: #162036;
  --surface-3: #1e2d4a;
  --border: rgba(0, 242, 254, 0.16);
  --border-strong: rgba(0, 242, 254, 0.35);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent: #00f2fe;
  --accent-secondary: #4facfe;
  --accent-hover: #38ef7d;
  --accent-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --accent-glow: rgba(0, 242, 254, 0.25);
  --green: #38ef7d;
  --green-dim: rgba(56, 239, 125, 0.12);
  --red: #ff5252;
  --red-dim: rgba(255, 82, 82, 0.12);
  --yellow: #ffd166;
  --yellow-dim: rgba(255, 209, 102, 0.12);
  --gray-dim: rgba(148, 163, 184, 0.12);
  --blue-dim: rgba(0, 242, 254, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "Fira Code", ui-monospace, "Cascadia Mono", Consolas, monospace;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #f0f4f9;
    --surface: #ffffff;
    --surface-2: #e8f0f8;
    --surface-3: #dbe7f5;
    --border: rgba(7, 95, 214, 0.18);
    --border-strong: rgba(7, 95, 214, 0.35);
    --border-subtle: rgba(0, 0, 0, 0.08);
    --text: #0f172a;
    --text-muted: #475569;
    --text-dim: #94a3b8;
    --accent: #0284c7;
    --accent-secondary: #2563eb;
    --accent-hover: #0369a1;
    --accent-gradient: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    --accent-glow: rgba(2, 132, 199, 0.2);
    --green: #16a34a;
    --green-dim: rgba(22, 163, 74, 0.12);
    --red: #dc2626;
    --red-dim: rgba(220, 38, 38, 0.12);
    --yellow: #d97706;
    --yellow-dim: rgba(217, 119, 6, 0.12);
    --gray-dim: rgba(100, 116, 139, 0.12);
    --blue-dim: rgba(2, 132, 199, 0.12);
  }
}

[data-theme="light"] {
  --bg: #f0f4f9;
  --surface: #ffffff;
  --surface-2: #e8f0f8;
  --surface-3: #dbe7f5;
  --border: rgba(7, 95, 214, 0.18);
  --border-strong: rgba(7, 95, 214, 0.35);
  --border-subtle: rgba(0, 0, 0, 0.08);
  --text: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;
  --accent: #0284c7;
  --accent-secondary: #2563eb;
  --accent-hover: #0369a1;
  --accent-gradient: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  --accent-glow: rgba(2, 132, 199, 0.2);
  --green: #16a34a;
  --green-dim: rgba(22, 163, 74, 0.12);
  --red: #dc2626;
  --red-dim: rgba(220, 38, 38, 0.12);
  --yellow: #d97706;
  --yellow-dim: rgba(217, 119, 6, 0.12);
  --gray-dim: rgba(100, 116, 139, 0.12);
  --blue-dim: rgba(2, 132, 199, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent); text-decoration: none; transition: color 0.15s ease; }
a:hover { text-decoration: underline; color: var(--accent-secondary); }

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 0.5rem; letter-spacing: -0.01em; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.page-main { flex: 1; padding-top: 1.75rem; padding-bottom: 3rem; }

.page-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.muted { color: var(--text-muted); margin: 0 0 0.75rem; }

.hint { display: block; color: var(--text-muted); font-size: 0.8rem; margin-top: 0.25rem; }

/* ---------- Navbar ---------- */

.navbar {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 62px;
}

.navbar-actions { display: flex; align-items: center; gap: 0.75rem; }
.theme-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface-2);
  color: var(--text-muted); cursor: pointer; transition: all 0.2s ease;
  padding: 0;
}
.theme-icon-btn:hover { color: var(--accent); border-color: var(--accent); background: var(--blue-dim); box-shadow: 0 0 12px var(--accent-glow); }
.theme-icon-btn svg { width: 18px; height: 18px; }
/* Show sun in dark mode, moon in light mode */
.theme-icon-sun { display: block; }
.theme-icon-moon { display: none; }
[data-theme="light"] .theme-icon-sun { display: none; }
[data-theme="light"] .theme-icon-moon { display: block; }
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) .theme-icon-sun { display: none; }
  :root:not([data-theme="dark"]) .theme-icon-moon { display: block; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 9px;
  flex-shrink: 0;
  box-shadow: 0 0 14px var(--accent-glow);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand:hover .brand-logo { transform: scale(1.08) rotate(3deg); }

.hero-brand-logo {
  display: block;
  width: min(220px, 58vw);
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 18px;
  box-shadow: 0 0 48px var(--accent-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.nav-links a,
.nav-links button {
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--text);
  background: var(--surface-2);
  border-color: var(--border);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--accent);
  background: var(--blue-dim);
  border-color: var(--border-strong);
  font-weight: 600;
  box-shadow: 0 0 12px var(--accent-glow);
}

.nav-links .nav-cta {
  background: var(--accent-gradient);
  color: #041221;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 0 14px var(--accent-glow);
}
.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(0, 242, 254, 0.45);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: auto;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Hero & landing ---------- */

.hero {
  text-align: center;
  padding: 3.5rem 0 2.5rem;
}

.hero-title {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 { font-size: 1rem; margin: 0.6rem 0 0.35rem; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.feature-icon { color: var(--accent); }

.disclaimer-block {
  border-left: 3px solid var(--yellow);
}
.disclaimer-block h3 { color: var(--yellow); font-size: 1rem; }
.disclaimer-block p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- Card ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 10px 40px rgba(0, 242, 254, 0.08);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.card-head .card-title { margin-bottom: 0; }

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1.25rem;
}
.dash-grid .card { margin-bottom: 0; }

/* ---------- Tombol ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.55rem 1.15rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  text-decoration: none;
  border-color: var(--border-strong);
  transform: translateY(-1px);
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-primary {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #041221;
  font-weight: 700;
  box-shadow: 0 0 14px var(--accent-glow);
}
.btn-primary:hover:not(:disabled) {
  box-shadow: 0 0 22px rgba(0, 242, 254, 0.45);
  transform: translateY(-1px);
}

.btn-success {
  background: linear-gradient(135deg, #00e676 0%, #38ef7d 100%);
  border-color: transparent;
  color: #04140a;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(56, 239, 125, 0.25);
}
.btn-success:hover:not(:disabled) {
  box-shadow: 0 0 20px rgba(56, 239, 125, 0.45);
  transform: translateY(-1px);
}

.btn-danger {
  background: linear-gradient(135deg, #ff5252 0%, #ff1744 100%);
  border-color: transparent;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(255, 82, 82, 0.25);
}
.btn-danger:hover:not(:disabled) {
  box-shadow: 0 0 20px rgba(255, 82, 82, 0.45);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
}
.btn-ghost:hover:not(:disabled) {
  background: var(--blue-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg { padding: 0.75rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.35rem 0.8rem; font-size: 0.82rem; }
.select-sm { width: auto; padding: 0.35rem 0.6rem; font-size: 0.82rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; gap: 0.65rem; flex-wrap: wrap; }

/* ---------- Badge ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.badge-stopped { background: var(--gray-dim); color: var(--text-muted); border-color: var(--border); }
.badge-starting { background: var(--yellow-dim); color: var(--yellow); border-color: var(--yellow); }
.badge-running { background: var(--green-dim); color: var(--green); border-color: var(--green); box-shadow: 0 0 8px rgba(56, 239, 125, 0.2); }
.badge-error { background: var(--red-dim); color: var(--red); border-color: var(--red); }

.badge-success { background: var(--green-dim); color: var(--green); border-color: var(--green); }
.badge-danger { background: var(--red-dim); color: var(--red); border-color: var(--red); }
.badge-neutral { background: var(--gray-dim); color: var(--text-muted); border-color: var(--border); }
.badge-info { background: var(--blue-dim); color: var(--accent); border-color: var(--accent); }

/* ---------- Form ---------- */

.form-group { margin-bottom: 0.95rem; min-width: 0; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
  background: var(--surface-3);
}

input::placeholder { color: var(--text-muted); opacity: 0.7; }

select option { background: var(--surface); color: var(--text); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.75rem;
}

.inline-form {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.inline-form input { width: auto; min-width: 180px; }
.inline-form .form-group { margin-bottom: 0; }

.prewrap { white-space: pre-wrap; overflow-wrap: anywhere; }

.ai-result {
  margin-top: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
}
.ai-result .hint { margin-bottom: 0.5rem; display: block; }

.checkbox-group { margin: 0.25rem 0 0.85rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.15rem;
  accent-color: var(--accent);
}

.form-message {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.6rem 0.8rem;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
}
.form-message.is-error { background: var(--red-dim); border-color: var(--red); color: var(--red); }
.form-message.is-success { background: var(--green-dim); border-color: var(--green); color: var(--green); }

/* ---------- Auth ---------- */

.auth-wrap {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0;
}

.auth-card { width: 100%; max-width: 420px; }

.auth-alt {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- Banner ---------- */

.banner {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.banner-success { background: var(--green-dim); border-color: var(--green); color: var(--green); }
.banner-danger { background: var(--red-dim); border-color: var(--red); color: var(--red); }
.banner-warning { background: var(--yellow-dim); border-color: var(--yellow); color: var(--yellow); }

/* ---------- Kontrol bot & statistik ---------- */

.control-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  min-width: 0;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.stat-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.stat-value-sm { font-size: 0.92rem; }

.test-result {
  margin-top: 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
}
.test-result.is-ok { border-color: var(--green); background: var(--green-dim); }
.test-result.is-fail { border-color: var(--red); background: var(--red-dim); color: var(--red); }
.test-result dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.9rem;
  margin: 0.5rem 0 0;
}
.test-result dt { color: var(--text-muted); }
.test-result dd { margin: 0; font-weight: 600; }

/* ---------- Tabel ---------- */

.table-wrap { overflow-x: auto; }

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}

.table th, .table td {
  text-align: left;
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.table tbody tr:hover { background: var(--surface-2); }

.table-empty { color: var(--text-muted); text-align: center; padding: 1rem; }

.profit-pos { color: var(--green); font-weight: 600; }
.profit-neg { color: var(--red); font-weight: 600; }

.mono { font-family: var(--mono); font-size: 0.85rem; }

.cell-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.cell-actions input[type="number"] { width: 4.5rem; padding: 0.3rem 0.4rem; font-size: 0.8rem; }

/* ---------- Kode lisensi baru ---------- */

.new-codes {
  border: 1px solid var(--green);
  background: var(--green-dim);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin: 1rem 0;
}
.new-codes h4 { color: var(--green); margin-bottom: 0.25rem; }

.new-codes-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.new-code-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.new-code-item code {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.3rem 0.6rem;
  letter-spacing: 0.05em;
}

/* ---------- Paket sewa (landing) ---------- */

.pricing { margin: 2.5rem 0; }
.section-title { text-align: center; font-size: 1.5rem; margin-bottom: 0.35rem; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 1.5rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.plan-card { position: relative; display: flex; flex-direction: column; }
.plan-featured { border-color: var(--accent); }
.plan-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.plan-name { font-size: 1.25rem; margin-bottom: 0.2rem; }
.plan-price { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.1rem; }
.plan-duration { color: var(--text-muted); margin-bottom: 0.85rem; font-size: 0.9rem; }
.plan-features {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}
.plan-features li { padding-left: 1.3rem; position: relative; }
.plan-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.plan-card .btn { margin-top: auto; text-align: center; }
.pricing-note { text-align: center; margin-top: 1.1rem; font-size: 0.85rem; }

/* ---------- Toast ---------- */

.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 100;
  max-width: min(340px, calc(100vw - 2rem));
}

.toast {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  animation: toast-in 0.18s ease-out;
}
.toast-error { border-left-color: var(--red); }
.toast-success { border-left-color: var(--green); }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .navbar-actions { gap: 0.35rem; }
  .theme-picker-label { display: none; }
  .hero { padding: 2.25rem 0 1.75rem; }
  .hero-title { font-size: 1.6rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .inline-form { align-items: stretch; flex-direction: column; }
  .inline-form input { min-width: 0; width: 100%; }
}

/* ---------- Crypto AI dashboard (fully scoped) ---------- */

.crypto-shell {
  --crypto-void: var(--bg);
  --crypto-panel: var(--surface);
  --crypto-panel-2: var(--surface-2);
  --crypto-line: var(--border);
  --crypto-line-strong: var(--border-strong);
  --crypto-text: var(--text);
  --crypto-muted: var(--text-muted);
  --crypto-mint: var(--accent);
  --crypto-lime: var(--green);
  --crypto-amber: var(--yellow);
  --crypto-red: var(--red);
  --crypto-blue: var(--accent-secondary);
  --crypto-display: var(--font);
  --crypto-mono: var(--mono);
  position: relative;
  isolation: isolate;
  color: var(--crypto-text);
  font-family: var(--font);
}

.crypto-shell::before {
  position: absolute;
  z-index: -2;
  inset: -1.5rem -1rem -2.5rem;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 7%, rgba(0, 242, 254, 0.14), transparent 25rem),
    radial-gradient(circle at 5% 38%, rgba(79, 172, 254, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(7, 11, 20, 0.4), transparent 34rem);
}

.crypto-shell [hidden] {
  display: none !important;
}

.crypto-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.5rem 2.25rem;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: clamp(1.45rem, 4vw, 3rem);
  border: 1px solid var(--crypto-line);
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(14, 33, 29, 0.98), rgba(8, 18, 16, 0.96)),
    var(--crypto-void);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  animation: crypto-rise 0.55s ease-out both;
}

.crypto-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(92, 225, 207, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 225, 207, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 20%, #000 75%);
}

.crypto-hero::after {
  position: absolute;
  top: 0;
  left: clamp(1.45rem, 4vw, 3rem);
  width: 96px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--crypto-mint), transparent);
}

.crypto-hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.crypto-eyebrow,
.crypto-kicker {
  color: var(--crypto-mint);
  font-family: var(--crypto-mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.crypto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.crypto-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crypto-lime);
  box-shadow: 0 0 0 0 rgba(211, 248, 120, 0.45);
  animation: crypto-pulse 2s ease-out infinite;
}

.crypto-hero__title {
  max-width: 620px;
  margin: 0;
  color: var(--crypto-text);
  font-family: var(--crypto-display);
  font-size: clamp(2.35rem, 6vw, 4.7rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}

.crypto-hero__title span {
  color: transparent;
  background: linear-gradient(90deg, var(--crypto-mint), var(--crypto-lime));
  background-clip: text;
  -webkit-background-clip: text;
}

.crypto-hero__lead {
  max-width: 620px;
  margin: 1.25rem 0 1.15rem;
  color: var(--crypto-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.crypto-ai-rule {
  position: relative;
  max-width: 660px;
  padding: 0.9rem 1rem 0.9rem 1.15rem;
  border: 1px solid rgba(92, 225, 207, 0.22);
  border-left: 3px solid var(--crypto-mint);
  border-radius: 0 12px 12px 0;
  background: rgba(92, 225, 207, 0.055);
}

.crypto-ai-rule__label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--crypto-mint);
  font-family: var(--crypto-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.crypto-ai-rule p {
  margin: 0;
  color: #b7ccc6;
  font-size: 0.86rem;
  line-height: 1.55;
}

.crypto-ai-rule strong {
  color: var(--crypto-text);
}

.crypto-hero__actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.crypto-button,
.crypto-icon-button,
.crypto-dialog__close {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.crypto-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.58rem 1rem;
  border: 1px solid var(--crypto-line-strong);
  border-radius: 8px;
  color: var(--crypto-text);
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--crypto-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.crypto-button:hover:not(:disabled) {
  border-color: rgba(92, 225, 207, 0.7);
  background: rgba(92, 225, 207, 0.09);
  transform: translateY(-1px);
}

.crypto-button:disabled,
.crypto-icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.crypto-button--primary {
  border-color: var(--crypto-mint);
  color: #061411;
  background: var(--crypto-mint);
  box-shadow: 0 8px 24px rgba(92, 225, 207, 0.13);
}

.crypto-button--primary:hover:not(:disabled) {
  color: #061411;
  background: #7be9da;
}

.crypto-button--quiet {
  background: rgba(8, 17, 15, 0.48);
}

.crypto-button--danger,
.crypto-button--stop {
  border-color: rgba(255, 107, 103, 0.72);
  color: #fff;
  background: rgba(255, 107, 103, 0.16);
}

.crypto-button--danger:hover:not(:disabled),
.crypto-button--stop:hover:not(:disabled) {
  border-color: var(--crypto-red);
  color: #fff;
  background: rgba(255, 107, 103, 0.25);
}

.crypto-button--danger-quiet {
  color: #ff9c98;
  background: transparent;
}

.crypto-button--start {
  border-color: rgba(211, 248, 120, 0.65);
  color: #0b150b;
  background: var(--crypto-lime);
}

.crypto-button--start:hover:not(:disabled) {
  border-color: var(--crypto-lime);
  color: #0b150b;
  background: #dfff91;
}

.crypto-button--small {
  min-height: 34px;
  padding: 0.43rem 0.7rem;
  font-size: 0.72rem;
}

.crypto-button:focus-visible,
.crypto-icon-button:focus-visible,
.crypto-dialog__close:focus-visible,
.crypto-field input:focus-visible,
.crypto-field select:focus-visible,
.crypto-audit-controls select:focus-visible,
.crypto-check input:focus-visible + span,
.crypto-switch input:focus-visible + .crypto-switch__track {
  outline: 2px solid var(--crypto-lime);
  outline-offset: 3px;
}

.crypto-hero__visual {
  position: relative;
  z-index: 1;
  align-self: center;
  min-height: 350px;
}

.crypto-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(92, 225, 207, 0.19);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.crypto-orbit::before,
.crypto-orbit::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--crypto-mint);
  box-shadow: 0 0 16px rgba(92, 225, 207, 0.75);
}

.crypto-orbit--outer {
  width: min(330px, 86%);
  aspect-ratio: 1;
  border-style: dashed;
  animation: crypto-orbit 32s linear infinite;
}

.crypto-orbit--outer::before {
  top: 22%;
  left: 3%;
}

.crypto-orbit--outer::after {
  right: 10%;
  bottom: 14%;
  background: var(--crypto-lime);
}

.crypto-orbit--inner {
  width: min(222px, 58%);
  aspect-ratio: 1;
  border-color: rgba(211, 248, 120, 0.22);
  animation: crypto-orbit-reverse 21s linear infinite;
}

.crypto-orbit--inner::before {
  top: -4px;
  left: 52%;
  background: var(--crypto-lime);
}

.crypto-orbit--inner::after {
  right: 11%;
  bottom: 8%;
  background: var(--crypto-amber);
}

.crypto-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 112px;
  height: 112px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(92, 225, 207, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(92, 225, 207, 0.19), rgba(8, 17, 15, 0.95) 68%);
  box-shadow: 0 0 60px rgba(92, 225, 207, 0.13), inset 0 0 25px rgba(92, 225, 207, 0.08);
  transform: translate(-50%, -50%);
}

.crypto-core span {
  color: var(--crypto-text);
  font-family: var(--crypto-display);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.crypto-core small {
  margin-top: 0.25rem;
  color: var(--crypto-mint);
  font-family: var(--crypto-mono);
  font-size: 0.53rem;
  letter-spacing: 0.16em;
}

.crypto-signal {
  position: absolute;
  padding: 0.28rem 0.48rem;
  border: 1px solid var(--crypto-line-strong);
  border-radius: 5px;
  color: var(--crypto-muted);
  background: rgba(8, 17, 15, 0.82);
  font-family: var(--crypto-mono);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.crypto-signal--buy {
  top: 14%;
  right: 3%;
  color: var(--crypto-lime);
}

.crypto-signal--hold {
  right: 1%;
  bottom: 14%;
  color: var(--crypto-amber);
}

.crypto-signal--close {
  bottom: 10%;
  left: 3%;
  color: #ff9995;
}

.crypto-chart {
  position: absolute;
  right: -8%;
  bottom: 2%;
  width: 112%;
  opacity: 0.35;
}

.crypto-capabilities {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: stretch;
  padding-top: 1.35rem;
  border-top: 1px solid var(--crypto-line);
}

.crypto-capability {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.72rem;
  padding: 0.7rem 0.78rem;
  border: 1px solid var(--crypto-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.crypto-capability__mark {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  font-family: var(--crypto-display);
  font-size: 1rem;
  font-weight: 800;
}

.crypto-capability__mark--binance {
  color: #151306;
  background: #f3ba2f;
}

.crypto-capability__mark--indodax {
  color: #061724;
  background: #56b7ef;
}

.crypto-capability div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.crypto-capability strong {
  font-family: var(--crypto-display);
  font-size: 0.83rem;
  letter-spacing: 0.02em;
}

.crypto-capability div span {
  overflow: hidden;
  color: var(--crypto-muted);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crypto-capability__state {
  margin-left: auto;
  color: var(--crypto-mint);
  font-family: var(--crypto-mono);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.crypto-sync {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 165px;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--crypto-line);
  border-radius: 10px;
  color: var(--crypto-muted);
  background: rgba(8, 17, 15, 0.5);
  font-family: var(--crypto-mono);
  font-size: 0.62rem;
  text-align: center;
}

.crypto-sync__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--crypto-muted);
}

.crypto-sync--ok .crypto-sync__dot {
  background: var(--crypto-lime);
  box-shadow: 0 0 10px rgba(211, 248, 120, 0.5);
}

.crypto-sync--warn .crypto-sync__dot,
.crypto-sync--pending .crypto-sync__dot {
  background: var(--crypto-amber);
}

.crypto-sync--error .crypto-sync__dot {
  background: var(--crypto-red);
}

.crypto-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
  animation: crypto-rise 0.55s 0.08s ease-out both;
}

.crypto-metric {
  position: relative;
  display: grid;
  min-height: 112px;
  padding: 0.9rem 1rem;
  overflow: hidden;
  border: 1px solid var(--crypto-line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(17, 33, 30, 0.94), rgba(10, 20, 18, 0.95));
}

.crypto-metric::after {
  position: absolute;
  right: -22px;
  bottom: -38px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(92, 225, 207, 0.1);
  border-radius: 50%;
  content: "";
}

.crypto-metric__index {
  position: absolute;
  top: 0.8rem;
  right: 0.85rem;
  color: rgba(138, 164, 157, 0.44);
  font-family: var(--crypto-mono);
  font-size: 0.58rem;
}

.crypto-metric__label {
  align-self: start;
  color: var(--crypto-muted);
  font-size: 0.72rem;
}

.crypto-metric strong {
  align-self: end;
  color: var(--crypto-text);
  font-family: var(--crypto-display);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.crypto-metric--mode strong {
  color: var(--crypto-lime);
  font-size: 1.35rem;
}

.crypto-metric--alert {
  border-color: rgba(255, 107, 103, 0.42);
  background: linear-gradient(145deg, rgba(55, 24, 22, 0.92), rgba(20, 15, 14, 0.96));
}

.crypto-metric--alert strong {
  color: #ff9894;
}

.crypto-section {
  margin-top: 1rem;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid var(--crypto-line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 25, 23, 0.96), rgba(9, 18, 16, 0.98));
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.14);
  animation: crypto-rise 0.55s 0.14s ease-out both;
}

.crypto-section:nth-of-type(4) {
  animation-delay: 0.2s;
}

.crypto-section:nth-of-type(5) {
  animation-delay: 0.26s;
}

.crypto-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.crypto-section__head h2 {
  margin: 0.2rem 0 0.2rem;
  color: var(--crypto-text);
  font-family: var(--crypto-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.crypto-section__head p {
  max-width: 670px;
  margin: 0;
  color: var(--crypto-muted);
  font-size: 0.82rem;
}

.crypto-security-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 180, 95, 0.28);
  border-radius: 10px;
  background: rgba(255, 180, 95, 0.055);
  font-size: 0.78rem;
}

.crypto-security-note strong {
  color: var(--crypto-amber);
}

.crypto-security-note span {
  color: #b2aaa0;
}

.crypto-account-grid,
.crypto-bot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.crypto-account-card,
.crypto-bot-card,
.crypto-ledger {
  min-width: 0;
  border: 1px solid var(--crypto-line);
  border-radius: 14px;
  background: rgba(17, 33, 30, 0.68);
}

.crypto-account-card {
  padding: 1rem;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.crypto-account-card:hover {
  border-color: rgba(92, 225, 207, 0.34);
  transform: translateY(-2px);
}

.crypto-account-card__head,
.crypto-account-card__identity,
.crypto-bot-card__head,
.crypto-bot-card__pair {
  display: flex;
  align-items: center;
}

.crypto-account-card__head,
.crypto-bot-card__head {
  justify-content: space-between;
  gap: 0.75rem;
}

.crypto-account-card__identity {
  min-width: 0;
  gap: 0.7rem;
}

.crypto-account-card__identity > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.crypto-account-card__identity strong {
  overflow: hidden;
  font-family: var(--crypto-display);
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crypto-account-card__identity span:not(.crypto-account-card__mark) {
  color: var(--crypto-muted);
  font-size: 0.7rem;
}

.crypto-account-card__mark,
.crypto-bot-card__asset {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(92, 225, 207, 0.25);
  border-radius: 10px;
  color: var(--crypto-mint);
  background: rgba(92, 225, 207, 0.07);
  font-family: var(--crypto-display);
  font-weight: 800;
}

.crypto-account-card__markets,
.crypto-bot-card__chips {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.crypto-market-chip,
.crypto-mode-chip,
.crypto-status,
.crypto-action,
.crypto-trade-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-family: var(--crypto-mono);
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.crypto-market-chip {
  padding: 0.18rem 0.48rem;
  border: 1px solid var(--crypto-line);
  color: #a8beb8;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.59rem;
}

.crypto-mode-chip {
  padding: 0.18rem 0.5rem;
  border: 1px solid var(--crypto-line);
  color: var(--crypto-muted);
  font-size: 0.57rem;
}

.crypto-mode-chip--paper {
  border-color: rgba(114, 185, 255, 0.32);
  color: var(--crypto-blue);
  background: rgba(114, 185, 255, 0.08);
}

.crypto-mode-chip--live {
  border-color: rgba(255, 107, 103, 0.44);
  color: #ff9b97;
  background: rgba(255, 107, 103, 0.11);
}

.crypto-mode-chip--neutral {
  color: #b6c8c3;
}

.crypto-account-card__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 0.8rem;
  margin: 0.9rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--crypto-line);
  font-size: 0.7rem;
}

.crypto-account-card__meta dt {
  color: var(--crypto-muted);
}

.crypto-account-card__meta dd {
  overflow-wrap: anywhere;
  margin: 0;
  color: #c5d7d1;
  text-align: right;
}

.crypto-account-card__result {
  margin: 0.75rem 0 0;
  padding: 0.58rem 0.65rem;
  border: 1px solid var(--crypto-line);
  border-radius: 8px;
  color: var(--crypto-muted);
  background: rgba(8, 17, 15, 0.58);
  font-size: 0.68rem;
  overflow-wrap: anywhere;
}

.crypto-account-card__result--ok {
  border-color: rgba(211, 248, 120, 0.3);
  color: #cde994;
}

.crypto-account-card__result--error {
  border-color: rgba(255, 107, 103, 0.36);
  color: #ffaaa6;
}

.crypto-card-actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.crypto-bot-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.crypto-bot-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, var(--crypto-mint), transparent 70%);
  opacity: 0.65;
}

.crypto-bot-card__pair {
  min-width: 0;
  gap: 0.7rem;
}

.crypto-bot-card__pair > div {
  min-width: 0;
}

.crypto-bot-card__pair h3 {
  overflow: hidden;
  margin: 0;
  color: var(--crypto-text);
  font-family: var(--crypto-display);
  font-size: 1.05rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crypto-bot-card__pair p {
  overflow: hidden;
  margin: 0.14rem 0 0;
  color: var(--crypto-muted);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crypto-bot-card__asset {
  width: 44px;
  height: 44px;
  color: var(--crypto-lime);
  font-size: 0.69rem;
  letter-spacing: -0.02em;
}

.crypto-status {
  flex: 0 0 auto;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--crypto-line);
  color: var(--crypto-muted);
  font-size: 0.57rem;
  text-transform: uppercase;
}

.crypto-status--running {
  border-color: rgba(211, 248, 120, 0.42);
  color: var(--crypto-lime);
  background: rgba(211, 248, 120, 0.08);
}

.crypto-status--pending {
  border-color: rgba(255, 180, 95, 0.42);
  color: var(--crypto-amber);
  background: rgba(255, 180, 95, 0.08);
}

.crypto-status--error {
  border-color: rgba(255, 107, 103, 0.45);
  color: #ff9995;
  background: rgba(255, 107, 103, 0.09);
}

.crypto-model-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.8rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(92, 225, 207, 0.14);
  border-radius: 8px;
  background: rgba(8, 17, 15, 0.42);
}

.crypto-model-strip span {
  color: var(--crypto-mint);
  font-family: var(--crypto-mono);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
}

.crypto-model-strip strong {
  overflow: hidden;
  color: #c9d9d4;
  font-family: var(--crypto-mono);
  font-size: 0.66rem;
  font-weight: 500;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crypto-bot-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.8rem 0 0;
}

.crypto-bot-metrics div {
  min-width: 0;
  padding: 0.58rem;
  border: 1px solid var(--crypto-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.crypto-bot-metrics dt {
  overflow: hidden;
  color: var(--crypto-muted);
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crypto-bot-metrics dd {
  overflow: hidden;
  margin: 0.2rem 0 0;
  color: var(--crypto-text);
  font-family: var(--crypto-mono);
  font-size: 0.66rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crypto-bot-card__error {
  margin: 0.75rem 0 0;
  padding: 0.58rem 0.65rem;
  border-left: 2px solid var(--crypto-red);
  color: #ffaaa6;
  background: rgba(255, 107, 103, 0.06);
  font-size: 0.68rem;
  overflow-wrap: anywhere;
}

.crypto-card-actions--bot {
  padding-top: 0.75rem;
  border-top: 1px solid var(--crypto-line);
}

.crypto-empty {
  grid-column: 1 / -1;
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem;
  border: 1px dashed var(--crypto-line-strong);
  border-radius: 12px;
  color: var(--crypto-muted);
  background: rgba(8, 17, 15, 0.3);
  font-size: 0.78rem;
  text-align: center;
}

.crypto-empty__title {
  color: #c5d7d1;
  font-family: var(--crypto-display);
  font-size: 0.92rem;
}

.crypto-empty__detail {
  max-width: 430px;
}

.crypto-empty .crypto-button {
  margin-top: 0.45rem;
}

.crypto-empty--loading {
  min-height: 180px;
}

.crypto-loader {
  width: 22px;
  height: 22px;
  margin-bottom: 0.25rem;
  border: 2px solid rgba(92, 225, 207, 0.16);
  border-top-color: var(--crypto-mint);
  border-radius: 50%;
  animation: crypto-spin 0.8s linear infinite;
}

.crypto-section--audit {
  overflow: hidden;
}

.crypto-section__head--audit {
  align-items: flex-end;
}

.crypto-audit-controls {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 38px;
  gap: 0.35rem;
  align-items: end;
}

.crypto-audit-controls label {
  grid-column: 1 / -1;
  color: var(--crypto-muted);
  font-size: 0.67rem;
}

.crypto-audit-controls select {
  width: 100%;
  min-height: 38px;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--crypto-line-strong);
  border-radius: 8px;
  color: var(--crypto-text);
  background: var(--crypto-void);
  font: inherit;
  font-size: 0.74rem;
}

.crypto-icon-button {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--crypto-line-strong);
  border-radius: 8px;
  color: var(--crypto-mint);
  background: rgba(8, 17, 15, 0.6);
  font-size: 1.1rem;
}

.crypto-icon-button:hover:not(:disabled) {
  background: rgba(92, 225, 207, 0.09);
}

.crypto-audit-state {
  margin: -0.3rem 0 0.85rem;
  color: var(--crypto-muted);
  font-family: var(--crypto-mono);
  font-size: 0.61rem;
}

.crypto-activity-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.35fr);
  gap: 0.8rem;
  align-items: start;
}

.crypto-ledger {
  overflow: hidden;
}

.crypto-ledger__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--crypto-line);
  background: rgba(8, 17, 15, 0.38);
}

.crypto-ledger__head h3 {
  margin: 0;
  color: var(--crypto-text);
  font-family: var(--crypto-display);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.crypto-ledger__head span {
  color: var(--crypto-muted);
  font-family: var(--crypto-mono);
  font-size: 0.51rem;
  letter-spacing: 0.05em;
}

.crypto-decision-list {
  display: flex;
  max-height: 570px;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-color: rgba(92, 225, 207, 0.28) transparent;
}

.crypto-decision-list > .crypto-empty {
  min-height: 220px;
  border: 0;
  border-radius: 0;
}

.crypto-decision {
  position: relative;
  padding: 0.85rem 0.9rem 0.85rem 1rem;
  border-bottom: 1px solid var(--crypto-line);
  background: rgba(255, 255, 255, 0.008);
}

.crypto-decision:last-child {
  border-bottom: 0;
}

.crypto-decision::before {
  position: absolute;
  top: 0.95rem;
  bottom: 0.95rem;
  left: 0;
  width: 2px;
  content: "";
  background: var(--crypto-mint);
}

.crypto-decision--rejected::before {
  background: var(--crypto-red);
}

.crypto-decision--noop::before {
  background: var(--crypto-amber);
}

.crypto-decision__head,
.crypto-decision__badges,
.crypto-decision__meta {
  display: flex;
  align-items: center;
}

.crypto-decision__head {
  justify-content: space-between;
  gap: 0.7rem;
}

.crypto-decision__badges,
.crypto-decision__meta {
  gap: 0.35rem;
  flex-wrap: wrap;
}

.crypto-decision__state {
  color: var(--crypto-mint);
  font-family: var(--crypto-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.crypto-decision--rejected .crypto-decision__state {
  color: #ff9995;
}

.crypto-decision--noop .crypto-decision__state {
  color: var(--crypto-amber);
}

.crypto-action {
  padding: 0.16rem 0.42rem;
  border: 1px solid var(--crypto-line);
  font-size: 0.54rem;
}

.crypto-action--buy {
  border-color: rgba(211, 248, 120, 0.32);
  color: var(--crypto-lime);
  background: rgba(211, 248, 120, 0.06);
}

.crypto-action--sell,
.crypto-action--close {
  border-color: rgba(255, 107, 103, 0.32);
  color: #ff9995;
  background: rgba(255, 107, 103, 0.06);
}

.crypto-action--hold {
  border-color: rgba(255, 180, 95, 0.32);
  color: var(--crypto-amber);
  background: rgba(255, 180, 95, 0.06);
}

.crypto-decision__head time {
  color: var(--crypto-muted);
  font-family: var(--crypto-mono);
  font-size: 0.55rem;
  white-space: nowrap;
}

.crypto-decision__reason {
  margin: 0.58rem 0 0;
  color: #c7d8d3;
  font-size: 0.76rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.crypto-decision__guardrail {
  margin: 0.5rem 0 0;
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  color: #b9aaa1;
  background: rgba(255, 180, 95, 0.055);
  font-size: 0.67rem;
  overflow-wrap: anywhere;
}

.crypto-decision__guardrail strong {
  color: var(--crypto-amber);
}

.crypto-decision__meta {
  margin-top: 0.55rem;
}

.crypto-decision__meta span {
  color: var(--crypto-muted);
  font-family: var(--crypto-mono);
  font-size: 0.54rem;
}

.crypto-decision__meta span + span::before {
  margin-right: 0.35rem;
  color: rgba(138, 164, 157, 0.38);
  content: "/";
}

.crypto-table-wrap {
  max-height: 570px;
  overflow: auto;
  scrollbar-color: rgba(92, 225, 207, 0.28) transparent;
}

.crypto-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #c8d8d3;
  font-size: 0.69rem;
}

.crypto-table th,
.crypto-table td {
  padding: 0.65rem 0.68rem;
  border-bottom: 1px solid var(--crypto-line);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.crypto-table th {
  position: sticky;
  z-index: 1;
  top: 0;
  color: var(--crypto-muted);
  background: #0d1b18;
  font-family: var(--crypto-mono);
  font-size: 0.53rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.crypto-table tr:last-child td {
  border-bottom: 0;
}

.crypto-table tbody tr:hover {
  background: rgba(92, 225, 207, 0.025);
}

.crypto-table td small {
  display: block;
  margin-top: 0.15rem;
  color: var(--crypto-muted);
  font-size: 0.57rem;
}

.crypto-table__pair {
  display: block;
  color: var(--crypto-text);
  font-family: var(--crypto-mono);
}

.crypto-table__number,
.crypto-pnl {
  font-family: var(--crypto-mono);
}

.crypto-table__empty {
  height: 150px;
  color: var(--crypto-muted);
  text-align: center !important;
}

.crypto-pnl--positive {
  color: var(--crypto-lime);
}

.crypto-pnl--negative {
  color: #ff9995;
}

.crypto-trade-state {
  padding: 0.17rem 0.4rem;
  border: 1px solid var(--crypto-line);
  color: var(--crypto-muted);
  font-size: 0.52rem;
}

.crypto-trade-state--open {
  border-color: rgba(92, 225, 207, 0.32);
  color: var(--crypto-mint);
}

.crypto-risk-footer {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--crypto-line);
  color: var(--crypto-muted);
  font-size: 0.72rem;
  text-align: center;
}

.crypto-dialog {
  width: min(640px, calc(100vw - 2rem));
  max-height: min(880px, calc(100vh - 2rem));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--crypto-line-strong);
  border-radius: 18px;
  color: var(--crypto-text);
  background: #0b1714;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.68);
}

.crypto-dialog[open] {
  animation: crypto-dialog-in 0.2s ease-out both;
}

.crypto-dialog::backdrop {
  background: rgba(2, 8, 7, 0.76);
  backdrop-filter: blur(7px);
}

.crypto-dialog--bot {
  width: min(880px, calc(100vw - 2rem));
}

.crypto-dialog--confirm {
  width: min(440px, calc(100vw - 2rem));
}

.crypto-dialog__form {
  padding: clamp(1rem, 3vw, 1.45rem);
}

.crypto-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin: -0.15rem 0 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--crypto-line);
}

.crypto-dialog__head h2,
.crypto-confirm h2 {
  margin: 0.2rem 0 0;
  color: var(--crypto-text);
  font-family: var(--crypto-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.crypto-dialog__close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--crypto-line);
  border-radius: 8px;
  color: var(--crypto-muted);
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
}

.crypto-dialog__close:hover {
  border-color: var(--crypto-line-strong);
  color: var(--crypto-text);
  background: rgba(255, 255, 255, 0.04);
}

.crypto-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 0.8rem;
}

.crypto-form-grid--risk {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--crypto-line);
}

.crypto-field {
  min-width: 0;
  margin-bottom: 0.85rem;
}

.crypto-field label {
  display: block;
  margin-bottom: 0.3rem;
  color: #a8bdb7;
  font-size: 0.7rem;
  font-weight: 700;
}

.crypto-field label span,
.crypto-field > small {
  color: var(--crypto-muted);
  font-weight: 400;
}

.crypto-field > small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.62rem;
  line-height: 1.4;
}

.crypto-field input,
.crypto-field select {
  width: 100%;
  min-height: 42px;
  padding: 0.54rem 0.65rem;
  border: 1px solid var(--crypto-line-strong);
  border-radius: 8px;
  color: var(--crypto-text);
  background: var(--crypto-void);
  font: inherit;
  font-size: 0.8rem;
}

.crypto-field input:focus,
.crypto-field select:focus {
  border-color: var(--crypto-mint);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(92, 225, 207, 0.11);
}

.crypto-field input:disabled,
.crypto-field select:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.crypto-check {
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
  color: #c5d7d1;
  font-size: 0.76rem;
  cursor: pointer;
}

.crypto-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 0.14rem 0 0;
  accent-color: var(--crypto-mint);
}

.crypto-check span {
  display: flex;
  flex-direction: column;
}

.crypto-check small {
  margin-top: 0.1rem;
  color: var(--crypto-muted);
  font-size: 0.62rem;
  line-height: 1.4;
}

.crypto-check--boxed {
  margin-bottom: 0.9rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid var(--crypto-line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
}

.crypto-check--context {
  align-self: start;
  min-height: 72px;
  margin-bottom: 0.85rem;
}

.crypto-credential-warning {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.2rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(255, 180, 95, 0.3);
  border-radius: 9px;
  color: #c1b2a5;
  background: rgba(255, 180, 95, 0.055);
  font-size: 0.67rem;
  line-height: 1.45;
}

.crypto-credential-warning strong {
  color: var(--crypto-amber);
  font-family: var(--crypto-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

.crypto-mode-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.1rem 0 0.2rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(114, 185, 255, 0.22);
  border-radius: 10px;
  background: rgba(114, 185, 255, 0.045);
}

.crypto-mode-panel > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.crypto-mode-panel__label {
  color: var(--crypto-blue);
  font-family: var(--crypto-mono);
  font-size: 0.55rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.crypto-mode-panel strong {
  margin-top: 0.15rem;
  font-family: var(--crypto-display);
  font-size: 0.92rem;
}

.crypto-mode-panel small {
  margin-top: 0.1rem;
  color: var(--crypto-muted);
  font-size: 0.62rem;
}

.crypto-switch {
  display: grid;
  grid-template-columns: auto;
  justify-items: center;
  gap: 0.25rem;
  flex: 0 0 auto;
  cursor: pointer;
}

.crypto-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.crypto-switch__track {
  display: inline-flex;
  width: 46px;
  height: 25px;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--crypto-line-strong);
  border-radius: 999px;
  background: rgba(255, 107, 103, 0.16);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.crypto-switch__track span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ff8e89;
  transition: transform 0.18s ease, background 0.18s ease;
}

.crypto-switch input:checked + .crypto-switch__track {
  border-color: rgba(114, 185, 255, 0.5);
  background: rgba(114, 185, 255, 0.16);
}

.crypto-switch input:checked + .crypto-switch__track span {
  background: var(--crypto-blue);
  transform: translateX(21px);
}

.crypto-switch__text {
  color: var(--crypto-muted);
  font-family: var(--crypto-mono);
  font-size: 0.54rem;
}

.crypto-live-gate {
  position: relative;
  margin-top: 0.25rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 103, 0.56);
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(255, 107, 103, 0.11), rgba(30, 15, 14, 0.86)),
    var(--crypto-void);
}

.crypto-live-gate::after {
  position: absolute;
  top: -35px;
  right: -35px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 107, 103, 0.15);
  border-radius: 50%;
  content: "";
}

.crypto-live-gate__flag {
  display: inline-flex;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  color: #2a0908;
  background: var(--crypto-red);
  font-family: var(--crypto-mono);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.crypto-live-gate h3 {
  margin: 0.55rem 0 0.25rem;
  color: #fff0ef;
  font-family: var(--crypto-display);
  font-size: 1rem;
  text-transform: uppercase;
}

.crypto-live-gate > p {
  max-width: 690px;
  margin: 0 0 0.75rem;
  color: #c9aaa7;
  font-size: 0.72rem;
  line-height: 1.5;
}

.crypto-field--live {
  max-width: 260px;
  margin: 0.75rem 0 0;
}

.crypto-field--live label {
  color: #e5c1be;
}

.crypto-form-status {
  margin: 0.9rem 0 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(211, 248, 120, 0.3);
  border-radius: 8px;
  color: #cde994;
  background: rgba(211, 248, 120, 0.06);
  font-size: 0.72rem;
  overflow-wrap: anywhere;
}

.crypto-form-status--error {
  border-color: rgba(255, 107, 103, 0.38);
  color: #ffaaa6;
  background: rgba(255, 107, 103, 0.07);
}

.crypto-dialog__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--crypto-line);
}

.crypto-dialog__note {
  margin-right: auto;
  color: var(--crypto-muted);
  font-size: 0.62rem;
}

.crypto-confirm {
  padding: 1.25rem;
}

.crypto-confirm__mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 107, 103, 0.5);
  border-radius: 50%;
  color: var(--crypto-red);
  background: rgba(255, 107, 103, 0.09);
  font-family: var(--crypto-display);
  font-weight: 800;
}

.crypto-confirm p {
  margin: 0.65rem 0 0;
  color: #b8cbc5;
  font-size: 0.78rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@keyframes crypto-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes crypto-dialog-in {
  from { opacity: 0; transform: translateY(8px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes crypto-pulse {
  0% { box-shadow: 0 0 0 0 rgba(211, 248, 120, 0.42); }
  70% { box-shadow: 0 0 0 8px rgba(211, 248, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 248, 120, 0); }
}

@keyframes crypto-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes crypto-orbit-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes crypto-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .crypto-hero {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
  }

  .crypto-hero__visual {
    min-height: 300px;
  }

  .crypto-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crypto-sync {
    grid-column: 1 / -1;
  }

  .crypto-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crypto-account-grid,
  .crypto-bot-grid {
    grid-template-columns: 1fr;
  }

  .crypto-activity-grid {
    grid-template-columns: 1fr;
  }

  .crypto-decision-list,
  .crypto-table-wrap {
    max-height: 460px;
  }
}

@media (max-width: 680px) {
  .crypto-shell::before {
    inset: -1.5rem -1rem -2.5rem;
  }

  .crypto-hero {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .crypto-hero::before {
    mask-image: linear-gradient(180deg, transparent 12%, #000 75%);
  }

  .crypto-hero__visual {
    min-height: 265px;
  }

  .crypto-orbit--outer {
    width: min(280px, 82%);
  }

  .crypto-orbit--inner {
    width: min(190px, 56%);
  }

  .crypto-capabilities {
    grid-template-columns: 1fr;
  }

  .crypto-sync {
    grid-column: auto;
  }

  .crypto-overview {
    gap: 0.55rem;
  }

  .crypto-metric {
    min-height: 100px;
  }

  .crypto-section {
    border-radius: 14px;
  }

  .crypto-section__head,
  .crypto-section__head--audit {
    align-items: stretch;
    flex-direction: column;
  }

  .crypto-section__head .crypto-button {
    width: 100%;
  }

  .crypto-security-note {
    grid-template-columns: 1fr;
  }

  .crypto-audit-controls {
    grid-template-columns: minmax(0, 1fr) 38px;
  }

  .crypto-form-grid {
    grid-template-columns: 1fr;
  }

  .crypto-mode-panel {
    align-items: flex-start;
  }

  .crypto-bot-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .crypto-bot-metrics div:last-child {
    grid-column: 1 / -1;
  }

  .crypto-dialog__actions {
    flex-wrap: wrap;
  }

  .crypto-dialog__note {
    width: 100%;
    margin: 0 0 0.2rem;
  }
}

@media (max-width: 440px) {
  .crypto-hero {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
    padding: 1.2rem;
  }

  .crypto-hero__title {
    font-size: 2.25rem;
  }

  .crypto-hero__actions {
    flex-direction: column;
  }

  .crypto-hero__actions .crypto-button {
    width: 100%;
  }

  .crypto-hero__visual {
    min-height: 235px;
  }

  .crypto-capability__state {
    display: none;
  }

  .crypto-overview {
    grid-template-columns: 1fr;
  }

  .crypto-metric {
    min-height: 88px;
  }

  .crypto-metric strong {
    font-size: 1.5rem;
  }

  .crypto-section {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
    padding: 0.9rem;
  }

  .crypto-account-card,
  .crypto-bot-card {
    padding: 0.85rem;
  }

  .crypto-account-card__head,
  .crypto-bot-card__head {
    align-items: flex-start;
  }

  .crypto-card-actions .crypto-button {
    flex: 1 1 auto;
  }

  .crypto-decision__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .crypto-dialog {
    width: 100vw;
    max-width: none;
    max-height: 100vh;
    min-height: 100vh;
    border-width: 0;
    border-radius: 0;
  }

  .crypto-dialog__form,
  .crypto-confirm {
    padding: 1rem;
  }

  .crypto-dialog__actions .crypto-button {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .crypto-hero,
  .crypto-overview,
  .crypto-section,
  .crypto-dialog[open],
  .crypto-pulse,
  .crypto-orbit,
  .crypto-loader {
    animation: none;
  }

  .crypto-button,
  .crypto-account-card,
  .crypto-switch__track,
  .crypto-switch__track span {
    transition: none;
  }
}
