.axolt *, .axolt *::before, .axolt *::after { box-sizing: border-box; }
.axolt html { scroll-behavior: smooth; }
.axolt body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.axolt { /* namespace wrapper all styles scoped inside */ }
.axolt .wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== NAV ===== */
.axolt .axolt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
}
.axolt .axolt-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.axolt .axolt-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.axolt .axolt-logo span { color: var(--red); }
.axolt .axolt-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.axolt .axolt-nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--sub);
  text-decoration: none;
  transition: color .15s;
}
.axolt .axolt-nav-links a:hover { color: var(--text); }
.axolt .axolt-nav-cta {
  background: var(--red);
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.axolt .axolt-nav-cta:hover { background: var(--red-dark) !important; color: #fff !important; }

/* ===== HERO ===== */
.axolt .hero {
  background: #1a1414;
  color: #fff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.axolt .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 90% 20%, rgba(227,0,11,.12) 0%, transparent 65%);
  pointer-events: none;
}
.axolt .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.axolt .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,0,11,.15);
  border: 1px solid rgba(227,0,11,.3);
  color: #ff6b73;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.axolt .hero h1 {
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  color: #fff;
  max-width: 14ch;
}
.axolt .hero h1 .vs { color: var(--red); }
.axolt .hero-sub {
  font-size: clamp(16px, 2.2vw, 18px);
  color: #9ba4b8;
  max-width: 58ch;
  margin: 18px 0 30px;
  line-height: 1.7;
}
.axolt .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.axolt .btn-red {
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 7px;
  text-decoration: none;
  transition: background .15s, transform .15s;
  display: inline-block;
}
.axolt .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.axolt .btn-outline {
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.25);
  text-decoration: none;
  transition: border-color .15s, background .15s;
  display: inline-block;
}
.axolt .btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.05); }

/* Hero arch diagram */
.axolt .hero-arch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.axolt .arch-panel {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 22px 24px 24px;
  background: rgba(255,255,255,.03);
}
.axolt .arch-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.axolt .arch-label.red { color: var(--red); }
.axolt .arch-label.muted { color: #6b7a96; }
.axolt .arch-unit {
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.axolt .arch-unit.unified {
  background: linear-gradient(130deg, var(--red) 0%, #8B0006 100%);
  color: #fff;
}
.axolt .arch-unit.crm {
  background: rgba(155,164,184,.12);
  color: #c4cdd9;
  border: 1px solid rgba(155,164,184,.2);
  margin-bottom: 6px;
}
.axolt .arch-unit.mrp {
  background: rgba(155,164,184,.12);
  color: #c4cdd9;
  border: 1px solid rgba(155,164,184,.2);
  margin-top: 6px;
}
.axolt .arch-connector {
  text-align: center;
  font-size: 11px;
  color: #6b7a96;
  padding: 5px 0;
  font-weight: 600;
  letter-spacing: .06em;
}
.axolt .arch-note {
  font-size: 13px;
  color: #7a8499;
  margin-top: 12px;
  line-height: 1.55;
}

/* Hero bottom bar */
.axolt .hero-strip {
  background: var(--red);
  margin-top: 36px;
  padding: 14px 28px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.axolt .hero-strip-item {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .92;
}
.axolt .hero-strip-item i { font-size: 14px; }
.axolt .hero-red-bar {
  background: var(--red);
  height: 4px;
  width: 100%;
}

/* ===== SECTIONS ===== */
.axolt .section { padding: 72px 0; }
.axolt .section.alt { background: var(--card); }
.axolt .section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}
.axolt .section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--text);
}
.axolt .section-lead {
  font-size: 17px;
  color: var(--sub);
  max-width: 62ch;
  line-height: 1.7;
  margin: 0 0 32px;
}

/* ===== COMPARISON TABLE ===== */
.axolt .tablewrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  margin-top: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.axolt table { border-collapse: collapse; width: 100%; min-width: 640px; }
.axolt th, .axolt td {
  text-align: left;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: top;
  line-height: 1.5;
}
.axolt thead th {
  font-size: 13px;
  font-weight: 700;
  background: var(--dark);
  color: #fff;
  border-bottom: none;
  letter-spacing: .01em;
}
.axolt thead th:first-child { background: var(--dark2); color: #9ba4b8; }
.axolt thead th.col-axolt { background: var(--red); }
.axolt tbody tr:last-child td { border-bottom: none; }
.axolt .row-label { font-weight: 700; font-size: 13px; color: var(--text); width: 26%; }
.axolt .col-axolt { background: rgba(227,0,11,.03); }
.axolt .td-muted { color: var(--sub); }
.axolt .td-yes { color: var(--green); font-weight: 700; }
.axolt .td-mark { font-size: 12px; color: var(--sub); display: block; margin-top: 2px; font-weight: 400; }
.axolt tbody tr:hover { background: rgba(227,0,11,.015); }
.axolt tbody tr:hover .col-axolt { background: rgba(227,0,11,.05); }

/* ===== FEATURE GRID ===== */
.axolt .feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.axolt .feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}
.axolt .section.alt .feat-card { background: var(--bg); }
.axolt .feat-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}
.axolt .feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.3;
}
.axolt .feat-card p {
  font-size: 14px;
  color: var(--sub);
  margin: 0;
  line-height: 1.65;
}
.axolt .feat-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(227,0,11,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 16px;
}

/* ===== HONEST VIEW ===== */
.axolt .honest-block {
  border-left: 3px solid var(--border);
  background: var(--bg);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin-top: 22px;
}
.axolt .honest-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}
.axolt .honest-block p {
  font-size: 14px;
  color: var(--sub);
  margin: 0;
  line-height: 1.7;
}

/* ===== DECISION COLS ===== */
.axolt .decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.axolt .dec-col {
  border-radius: 12px;
  padding: 28px 30px;
}
.axolt .dec-col.axolt-col {
  background: var(--dark);
  color: #fff;
}
.axolt .dec-col.katana-col {
  background: var(--card);
  border: 1px solid var(--border);
}
.axolt .dec-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.axolt .axolt-col .dec-pill {
  background: rgba(227,0,11,.2);
  color: #ff6b73;
}
.axolt .katana-col .dec-pill {
  background: var(--bg);
  color: var(--sub);
}
.axolt .dec-col h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 14px;
}
.axolt .axolt-col h3 { color: #fff; }
.axolt .katana-col h3 { color: var(--text); }
.axolt .dec-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.axolt .dec-col li {
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.axolt .dec-col li:last-child { border-bottom: none; padding-bottom: 0; }
.axolt .axolt-col li { color: #c4cdd9; border-color: rgba(255,255,255,.08); }
.axolt .katana-col li { color: var(--sub); border-color: var(--border); }
.axolt .dec-col li i {
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 13px;
}
.axolt .axolt-col li i { color: var(--red); }
.axolt .katana-col li i { color: #5a6070; }

/* ===== FAQ ===== */
.axolt .faq-list { margin-top: 24px; border-top: 1px solid var(--border); }
details {
  border-bottom: 1px solid var(--border);
}
.axolt summary {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
  user-select: none;
}
.axolt summary::-webkit-details-marker { display: none; }
.axolt summary::after {
  content: '\002B';
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.axolt details[open] summary::after { content: '\2212'; }
.axolt details p {
  font-size: 15px;
  color: var(--sub);
  margin: 0 0 20px;
  line-height: 1.7;
  max-width: 74ch;
}

/* ===== FINAL CTA ===== */
.axolt .final-cta {
  background: var(--dark);
  color: #fff;
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.axolt final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 50% 100%, rgba(227,0,11,.18) 0%, transparent 65%);
  pointer-events: none;
}
.axolt .final-cta .section-eyebrow { color: #ff8a8f; }
.axolt .final-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 auto 16px;
  max-width: 20ch;
  line-height: 1.1;
}
.axolt .final-cta p {
  font-size: 17px;
  color: #9ba4b8;
  max-width: 50ch;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.axolt .axolt-footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 32px 28px;
  text-align: center;
}
.axolt .axolt-footer p {
  font-size: 12px;
 color: #cbd2e0;
  margin: 0;
  line-height: 1.7;
  max-width: 80ch;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
 .axolt .hero-arch, .feat-grid, .decision-grid { grid-template-columns: 1fr; }
  .axolt .hero-strip { gap: 20px; }
  .axolt .section { padding: 54px 0; }
  .axolt .axolt-nav-links { display: none; }
}
@media (prefers-reduced-motion: reduce) { .axolt *, .axolt *::before, .axolt *::after { transition: none !important; } }