:root {
  --bg: #0b0b10;
  --bg-2: #14141c;
  --panel: #1a1a24;
  --border: #2a2a38;
  --text: #f0f0f5;
  --muted: #8a8a99;
  --accent: #d11a3d;
  --accent-2: #ff3a5e;
  --ok: #2ecc71;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 ui-sans-serif, -apple-system, "Segoe UI", system-ui, sans-serif;
  scroll-behavior: smooth;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  background: rgba(11, 11, 16, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
}
.brand:hover { text-decoration: none; }
.logo {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 0 0 1px rgba(255,58,94,.3), 0 4px 18px rgba(209,26,61,.4);
}
nav {
  display: flex;
  gap: 24px;
}
nav a {
  color: var(--muted);
  font-size: 14px;
}
nav a:hover { color: var(--text); text-decoration: none; }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.lead strong { color: var(--text); font-weight: 600; }
.cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.trust {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--ok);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--ok);
}

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: 0.3px;
  transition: transform 0.05s, filter 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 6px 24px rgba(209, 26, 61, 0.4);
}
.btn.primary:hover { filter: brightness(1.05); text-decoration: none; }
.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn.ghost:hover { background: var(--panel); text-decoration: none; }
.btn.big { padding: 16px 36px; font-size: 17px; }

/* Mock window in hero */
.window-frame {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,58,94,0.1);
  overflow: hidden;
  transform: rotate(-2deg);
}
.window-bar {
  background: var(--bg-2);
  padding: 10px 14px;
  display: flex;
  gap: 7px;
  border-bottom: 1px solid var(--border);
}
.window-bar span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border);
}
.window-bar span:nth-child(1) { background: #ff5f57; }
.window-bar span:nth-child(2) { background: #ffbd2e; }
.window-bar span:nth-child(3) { background: #28ca42; }
.window-body { padding: 18px; font-size: 13px; }
.window-body .row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.window-body .row:last-child { border-bottom: none; }
.window-body .label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}
.wn { font-weight: 600; }
.wn.dev { color: var(--accent-2); }
.bal { color: var(--text); font-family: ui-monospace, monospace; font-size: 12px; }
.tape {
  font-family: ui-monospace, monospace;
  color: var(--ok);
  font-size: 11px;
}
.tape.sell { color: var(--accent-2); }
.tag {
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: auto;
  font-family: inherit;
}
.launch-btn {
  margin-top: 12px !important;
  padding: 10px !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  display: block !important;
  letter-spacing: 1.5px;
  font-size: 12px;
  border-bottom: none !important;
}

/* ===== FEATURES ===== */
.features {
  background: var(--bg-2);
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features h2, .pricing h2, .faq h2, .cta-bottom h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.feature p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 32px;
}
.pricing-lead {
  text-align: center;
  color: var(--muted);
  max-width: 720px;
  margin: -30px auto 50px;
  font-size: 16px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.plan {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}
.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 40px rgba(209, 26, 61, 0.25);
}
.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.plan h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.plan .price {
  margin-bottom: 24px;
}
.plan .amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.plan .period {
  color: var(--muted);
  font-size: 16px;
  margin-left: 4px;
}
.plan ul {
  list-style: none;
  margin-bottom: 28px;
}
.plan li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--muted);
  position: relative;
  padding-left: 22px;
}
.plan li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 700;
}
.plan .btn {
  display: block;
  width: 100%;
}
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 30px;
}

/* ===== Compare table inside pricing ===== */
.compare-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.compare-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row.header {
  background: rgba(255,255,255,0.04);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.compare-row.mine {
  background: linear-gradient(90deg, rgba(209,26,61,0.18), rgba(209,26,61,0.04));
  font-weight: 600;
}
.compare-row .cheap {
  color: #2ecc71;
  font-weight: 700;
}
.compare-note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg-2);
  padding: 80px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  padding: 4px 0;
}
.faq details[open] summary { color: var(--accent-2); }
.faq p {
  padding-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
.faq code {
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* ===== CTA ===== */
.cta-bottom {
  text-align: center;
  padding: 100px 32px;
}
.cta-bottom p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 30px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 32px;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-content span { color: var(--muted); font-size: 13px; }
.footer-content a { color: var(--muted); font-size: 13px; }

/* ===== Background glow ===== */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 0%, rgba(255, 58, 94, 0.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 30%, rgba(209, 26, 61, 0.08), transparent 70%);
}
main { position: relative; z-index: 1; }

/* ===== Header refinements ===== */
.btn.small { padding: 7px 14px; font-size: 13px; }
.nav-cta { margin-left: 8px; }

/* ===== Hero polish ===== */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 58, 94, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(255, 58, 94, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}
.pulse {
  width: 8px; height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 58, 94, 0.7);
  animation: pulse-anim 2s infinite;
}
@keyframes pulse-anim {
  0%   { box-shadow: 0 0 0 0   rgba(255, 58, 94, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 58, 94, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(255, 58, 94, 0);   }
}

.hero-trust {
  display: grid;
  gap: 10px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.trust-icon { font-size: 16px; }

.btn.big { padding: 14px 26px; font-size: 15px; }
.btn.block { display: block; text-align: center; width: 100%; }

/* ===== Device frame (the "extension" mockup) ===== */
.device-frame {
  background: linear-gradient(180deg, #1a1a24, #14141c);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 58, 94, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(209, 26, 61, 0.15);
}
.device-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #0e0e15;
  border-bottom: 1px solid var(--border);
}
.device-dot { width: 11px; height: 11px; border-radius: 50%; background: #555; }
.device-dot.red    { background: #ff5f57; }
.device-dot.yellow { background: #febc2e; }
.device-dot.green  { background: #28c840; }
.device-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
}

.device-tabs {
  display: flex;
  gap: 0;
  background: #11111a;
  border-bottom: 1px solid var(--border);
}
.device-tabs .tab {
  flex: 1;
  text-align: center;
  padding: 11px 14px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  cursor: default;
}
.device-tabs .tab.active {
  color: var(--text);
  border-bottom-color: var(--accent-2);
}
.device-tabs .tab em {
  background: var(--accent);
  color: white;
  font-style: normal;
  padding: 1px 6px;
  border-radius: 10px;
  font-size: 10px;
  margin-left: 4px;
}

.device-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.device-body .field { display: flex; flex-direction: column; gap: 6px; }
.device-body .field label {
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.device-body .field.row2 {
  flex-direction: row;
  gap: 12px;
}
.device-body .field.row2 label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.combo-row { display: flex; gap: 6px; }
.input-pill {
  background: #0e0e15;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 13px;
  flex: 1;
}
.input-pill.mono {
  flex: 0 0 80px;
  font-family: ui-monospace, "Cascadia Code", monospace;
  text-align: center;
  color: var(--accent-2);
}
.mock-input {
  background: #0e0e15;
  border: 1px solid var(--border);
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
  width: 100%;
}

.image-drop {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: #0e0e15;
  border: 1px dashed var(--border);
  border-radius: 8px;
}
.img-thumb {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #2a2a38, #14141c);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 28px;
}
.muted-text { color: var(--muted); font-size: 12px; }
.muted-text.small { font-size: 11px; }

.wallet-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #0e0e15;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 13px;
}
.wallet-row.faded { opacity: 0.45; }
.wn {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.wn.dev {
  color: var(--accent-2);
}
.bal { color: var(--text); font-size: 12px; font-family: ui-monospace, monospace; }
.buy {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.08);
  padding: 3px 8px;
  border-radius: 5px;
}

.launch-btn-big {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border: 0;
  padding: 13px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: default;
  margin-top: 6px;
  box-shadow: 0 8px 22px rgba(209, 26, 61, 0.35);
}
.launch-btn-big.danger-btn {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}

/* ===== How it works ===== */
.how {
  padding: 80px 32px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.how h2, .features h2, .screenshots h2, .install h2, .pricing h2, .faq h2, .cta-bottom h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-lead {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.6;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px;
  position: relative;
}
.step-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-radius: 9px;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(209, 26, 61, 0.4);
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.step code {
  background: #0e0e15;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 12px;
}

/* ===== Features card refinement ===== */
.feature-icon-wrap {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(209, 26, 61, 0.18), rgba(255, 58, 94, 0.08));
  border: 1px solid rgba(255, 58, 94, 0.18);
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feature-icon { font-size: 22px; }
.feature code {
  background: var(--bg-2);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 12px;
}

/* ===== Screenshots ===== */
.screenshots {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.ss-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 12px;
}
.ss-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ss-head { padding: 0 4px; }
.ss-tag {
  display: inline-block;
  background: rgba(255, 58, 94, 0.12);
  color: var(--accent-2);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ss-head h4 { font-size: 18px; font-weight: 700; }
.axiom-card .ss-tag { background: rgba(46, 204, 113, 0.14); color: #2ecc71; }

/* Strategy mock */
.strategy-card {
  background: #0e0e15;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 14px;
  margin-bottom: 12px;
}
.strategy-card.faded { opacity: 0.55; }
.strat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}
.badge-live {
  background: rgba(255, 58, 94, 0.15);
  color: var(--accent-2);
  padding: 3px 9px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.badge-done {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  padding: 3px 9px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.strat-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 12px;
  margin-bottom: 12px;
  font-size: 12px;
}
.strat-stats > div { display: flex; flex-direction: column; gap: 2px; }
.strat-stats b { font-family: ui-monospace, monospace; }
.strat-stats .warn { color: #f39c12; }

.tape {
  background: #08080d;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 12px;
}
.tape-line { color: var(--muted); }
.tape-line.buy { color: #2ecc71; }
.tape-line.sell { color: #e74c3c; }
.tag {
  background: rgba(243, 156, 18, 0.18);
  color: #f39c12;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 9px;
  margin-left: 4px;
  letter-spacing: 0.5px;
}
.strat-actions { display: flex; gap: 8px; }
.mini-btn {
  flex: 1;
  background: #14141c;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 7px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: default;
}
.mini-btn.danger { background: rgba(231, 76, 60, 0.14); color: #e74c3c; border-color: rgba(231, 76, 60, 0.3); }
.strat-summary { margin-top: 4px; font-family: ui-monospace, monospace; }

/* Position row */
.position-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #0e0e15;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.pos-meta { display: flex; flex-direction: column; gap: 2px; }
.pos-symbol { font-weight: 700; font-size: 13px; }
.pos-amounts { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.pos-value { color: #2ecc71; font-family: ui-monospace, monospace; font-size: 13px; font-weight: 600; }
.pos-tokens { color: var(--muted); font-family: ui-monospace, monospace; font-size: 11px; }
.position-row .mini-btn { padding: 6px 12px; flex: 0; }

/* Axiom mockup */
.axiom-mock {
  background: #0a0e1a;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.3);
}
.axiom-bar {
  background: #060a14;
  padding: 12px 18px;
  border-bottom: 1px solid #1a2030;
  display: flex;
  align-items: center;
  gap: 22px;
}
.axiom-logo {
  font-size: 16px;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: 0.5px;
}
.axiom-tab {
  font-size: 12px;
  color: #6c7a8d;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.axiom-tab.active { color: #f0f0f5; }
.axiom-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border-bottom: 1px solid #141a28;
  font-size: 13px;
}
.axiom-coin {
  display: flex;
  align-items: center;
  gap: 12px;
}
.axiom-coin div { display: flex; flex-direction: column; gap: 1px; }
.axiom-img {
  width: 32px; height: 32px;
  background: #14141c;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px;
}
.axiom-mc { color: #4ade80; font-weight: 600; font-family: ui-monospace, monospace; }
.axiom-vol { color: #6c7a8d; font-size: 12px; font-family: ui-monospace, monospace; }
.vplus {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border: 0;
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: default;
  box-shadow: 0 4px 12px rgba(209, 26, 61, 0.35);
}
.axiom-floating {
  position: absolute;
  bottom: 22px;
  right: 22px;
}
.float-btn {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 8px 22px rgba(209, 26, 61, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* ===== Version cards (Lite vs Pro) ===== */
.version-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto 60px;
}
.version-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.version-card.pro {
  border-color: rgba(255, 58, 94, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 58, 94, 0.1), 0 12px 40px rgba(209, 26, 61, 0.18);
}
.version-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}
.version-tag.pro-tag {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.version-card h3 {
  font-size: 22px;
  margin-top: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lite-pill, .pro-pill {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 1px;
}
.lite-pill { background: rgba(46, 204, 113, 0.18); color: #2ecc71; }
.pro-pill  { background: rgba(255, 58, 94, 0.18); color: var(--accent-2); }
.version-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.version-feats {
  list-style: none;
  margin-bottom: 22px;
  padding: 0;
  flex-grow: 1;
}
.version-feats li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 13.5px;
  color: var(--muted);
}
.version-feats li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 700;
}
.version-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

.install-subhead {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin: 50px 0 22px;
  color: var(--text);
}
.install-subhead.pro-subhead { color: var(--accent-2); }
.install-steps.lite-steps {
  max-width: 760px;
  margin: 0 auto 30px;
}

@media (max-width: 760px) {
  .version-grid { grid-template-columns: 1fr; }
}

/* ===== Install ===== */
.install {
  padding: 80px 32px 80px;
  max-width: 920px;
  margin: 0 auto;
}
.download-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.download-main {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px !important;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
}
.dl-icon {
  font-size: 28px;
  line-height: 1;
}
.dl-stack { display: flex; flex-direction: column; gap: 2px; }
.dl-main { font-weight: 700; }
.dl-sub { font-size: 12px; opacity: 0.85; font-weight: 400; letter-spacing: 0.3px; }

.install-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: step-counter;
}
.install-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
}
.ins-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-radius: 9px;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(209, 26, 61, 0.4);
}
.ins-body h4 { font-size: 16px; margin-bottom: 6px; }
.ins-body p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.ins-body p + p { margin-top: 8px; }
.ins-body .hint { font-size: 12px; padding-top: 6px; }
.ins-body pre {
  background: #08080d;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 12px 14px;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 12.5px;
  margin: 10px 0;
  overflow-x: auto;
  color: #e0e0ea;
}
.ins-body code {
  background: var(--bg-2);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 12.5px;
  color: var(--accent-2);
}
.ins-body pre code { background: none; padding: 0; color: inherit; }
.install-helpline {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}
.install-helpline code { font-size: 12px; background: var(--bg-2); padding: 1px 5px; border-radius: 4px; }

/* ===== CTA card ===== */
.cta-bottom {
  padding: 80px 32px 100px;
}
.cta-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(209, 26, 61, 0.18), rgba(255, 58, 94, 0.06));
  border: 1px solid rgba(255, 58, 94, 0.3);
  border-radius: 18px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(209, 26, 61, 0.2);
}
.cta-card h2 { font-size: 32px; margin-bottom: 14px; letter-spacing: -0.5px; }
.cta-card p { color: var(--muted); margin-bottom: 28px; font-size: 16px; }

/* ===== Footer ===== */
.footer-content { flex-direction: column; gap: 18px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; }
.logo.small { width: 28px; height: 28px; font-size: 16px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-meta { font-size: 12px; color: var(--muted); }

/* ===== MOBILE ===== */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding: 50px 20px 60px; }
  .hero h1 { font-size: 40px; }
  .hero-visual { display: none; }
  nav { display: none; }
  .nav-cta { margin-left: auto; }
  .features, .pricing, .faq, .cta-bottom, .how, .screenshots, .install { padding: 60px 20px; }
  .features h2, .pricing h2, .faq h2, .cta-bottom h2, .how h2, .screenshots h2, .install h2 { font-size: 28px; }
  .steps { grid-template-columns: 1fr; }
  .ss-grid { grid-template-columns: 1fr; gap: 30px; }
  .install-steps li { grid-template-columns: 1fr; gap: 12px; }
  .ins-num { margin-bottom: 4px; }
  .download-main { padding: 14px 20px !important; flex-direction: column; gap: 8px; }
  .strat-stats { grid-template-columns: repeat(2, 1fr); }
  .axiom-vol { display: none; }
  .axiom-row { grid-template-columns: 1fr auto auto; gap: 10px; }
}
