
.axolt {
  --axolt-red: #E3000B;
  --axolt-red-dark: #b50009;
  --axolt-red-light: #fff1f1;
  --axolt-dark: #1a1d26;
  --axolt-mid: #2d3142;
  --axolt-text: #1a1d26;
  --axolt-sub: #5a6070;
  --axolt-border: #e2e5eb;
  --axolt-surface: #f5f6f8;
  --axolt-white: #ffffff;
  --axolt-green: #0a7f4f;
  --axolt-green-bg: #f0faf5;
  --axolt-font: 'Open Sans', sans-serif;
  --axolt-serif: 'Open Sans', sans-serif;
}

.axolt body {
  font-family: var(--axolt-font);
  color: var(--axolt-text);
  background: var(--axolt-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.axolt .nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--axolt-white);
  border-bottom: 1px solid var(--axolt-border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.axolt .nav-logo {
  font-family: var(--axolt-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--axolt-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.axolt .nav-logo span { color: var(--axolt-red); }
.axolt .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.axolt .nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--axolt-sub);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.axolt .nav-links a:hover { color: var(--axolt-red); }
.axolt .nav-cta {
  background: var(--axolt-red);
  color: var(--axolt-white);
  font-family: var(--axolt-font);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.axolt .nav-cta:hover { background: var(--axolt-red-dark); }

/* HERO */
.axolt .hero {
  background: var(--axolt-dark);
  position: relative;
  overflow: hidden;
  padding: 96px 48px 80px;
}
.axolt .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.025) 0px,
    rgba(255,255,255,0.025) 1px,
    transparent 1px,
    transparent 80px
  );
  pointer-events: none;
}
.axolt .hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,0,11,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.axolt .hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.axolt .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,0,11,0.15);
  border: 1px solid rgba(227,0,11,0.4);
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.axolt .hero-badge i { font-size: 0.7rem; }
.axolt .hero-headline {
  font-family: var(--axolt-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--axolt-white);
  max-width: 780px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.axolt .hero-headline em {
  font-style: normal;
  color: var(--axolt-red);
}
.axolt .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.axolt .hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.axolt .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--axolt-red);
  color: var(--axolt-white);
  font-family: var(--axolt-font);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.axolt .btn-primary:hover { background: var(--axolt-red-dark); transform: translateY(-1px); }
.axolt .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--axolt-font);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.axolt .btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.axolt .hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.axolt .hero-stat-num {
  font-family: var(--axolt-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--axolt-white);
  line-height: 1;
}
.axolt .hero-stat-num span { color: var(--axolt-red); }
.axolt .hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

/* PROBLEM STRIP */
.axolt .problem-strip {
  background: var(--axolt-red);
  padding: 20px 48px;
}
.axolt .problem-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.axolt .problem-strip p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--axolt-white);
  letter-spacing: 0.01em;
}
.axolt .problem-strip i {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* SECTION WRAPPER */
.axolt .section {
  padding: 96px 48px;
}
.axolt .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.axolt .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--axolt-red);
  margin-bottom: 16px;
}
.axolt .section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--axolt-red);
}
.axolt .section-title {
  font-family: var(--axolt-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--axolt-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.axolt .section-sub {
  font-size: 1rem;
  color: var(--axolt-sub);
  max-width: 560px;
  line-height: 1.7;
}

/* PROBLEM / GAP */
.axolt .gap-section { background: var(--axolt-surface); }
.axolt .gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 52px;
  align-items: start;
}
.axolt .gap-col-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.axolt .gap-col-label.red { color: var(--axolt-red); }
.axolt .gap-col-label.green { color: var(--axolt-green); }
.axolt .gap-items { display: flex; flex-direction: column; gap: 12px; }
.axolt .gap-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--axolt-border);
  background: var(--axolt-white);
}
.axolt .gap-item.bad { border-left: 3px solid var(--axolt-red); }
.axolt .gap-item.good { border-left: 3px solid var(--axolt-green); }
.axolt .gap-item i { margin-top: 2px; flex-shrink: 0; font-size: 0.85rem; }
.axolt .gap-item.bad i { color: var(--axolt-red); }
.axolt .gap-item.good i { color: var(--axolt-green); }
.axolt .gap-item p { font-size: 0.9rem; color: var(--axolt-text); line-height: 1.5; }

/* CHAIN SECTION */
.axolt .chain-section { background: var(--axolt-white); }
.axolt .chain {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.axolt .chain-step {
  flex: 1;
  padding: 32px 28px;
  background: var(--axolt-surface);
  border: 1px solid var(--axolt-border);
  position: relative;
  transition: transform 0.2s;
}
.axolt .chain-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 18px solid var(--axolt-border);
  z-index: 2;
}
.axolt .chain-step:not(:last-child)::before {
  content: '';
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 17px solid var(--axolt-surface);
  z-index: 3;
}
.axolt .chain-step.critical {
  background: var(--axolt-red);
  border-color: var(--axolt-red-dark);
}
.axolt .chain-step.critical::before { border-left-color: var(--axolt-red); }
.axolt .chain-num {
  font-family: var(--axolt-serif);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  margin-bottom: 8px;
}
.axolt .chain-step.critical .chain-num { color: rgba(255,255,255,0.2); }
.axolt .chain-icon { font-size: 1.4rem; color: var(--axolt-red); margin-bottom: 10px; }
.axolt .chain-step.critical .chain-icon { color: rgba(255,255,255,0.85); }
.axolt .chain-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--axolt-dark);
  margin-bottom: 6px;
}
.axolt .chain-step.critical .chain-title { color: var(--axolt-white); }
.axolt .chain-desc { font-size: 0.8rem; color: var(--axolt-sub); line-height: 1.5; }
.axolt .chain-step.critical .chain-desc { color: rgba(255,255,255,0.8); }

/* SCENARIOS */
.axolt .scenarios-section { background: var(--axolt-surface); }
.axolt .scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.axolt .scenario-card {
  background: var(--axolt-white);
  border: 1px solid var(--axolt-border);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.axolt .scenario-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.axolt .scenario-card.featured {
  border-color: var(--axolt-red);
  border-top-width: 3px;
}
.axolt .scenario-num {
  position: absolute;
  top: -1px;
  right: 20px;
  font-family: var(--axolt-serif);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  user-select: none;
}
.axolt .scenario-icon {
  width: 44px;
  height: 44px;
  background: var(--axolt-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--axolt-red);
  font-size: 1.1rem;
}
.axolt .scenario-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--axolt-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.axolt .scenario-body {
  font-size: 0.85rem;
  color: var(--axolt-sub);
  line-height: 1.6;
  margin-bottom: 20px;
}
.axolt .scenario-result {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--axolt-green);
  border-top: 1px solid var(--axolt-border);
  padding-top: 16px;
}
.axolt .scenario-result i { font-size: 0.85rem; }

/* HOW IT WORKS */
.axolt .howitworks-section { background: var(--axolt-white); }
.axolt .steps-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  margin-top: 52px;
  align-items: start;
}
.axolt .steps-list { display: flex; flex-direction: column; gap: 0; }
.axolt .step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--axolt-border);
  cursor: pointer;
  transition: background 0.15s;
}
.axolt .step-item:first-child { padding-top: 0; }
.axolt .step-item:last-child { border-bottom: none; }
.axolt .step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--axolt-surface);
  border: 2px solid var(--axolt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--axolt-sub);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.axolt .step-item.active .step-dot {
  background: var(--axolt-red);
  border-color: var(--axolt-red);
  color: white;
}
.axolt .step-content-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--axolt-sub);
  margin-bottom: 4px;
}
.axolt .step-item.active .step-content-label { color: var(--axolt-red); }
.axolt .step-content-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--axolt-dark);
  margin-bottom: 6px;
}
.axolt .step-content-desc {
  font-size: 0.85rem;
  color: var(--axolt-sub);
  line-height: 1.6;
  display: none;
}
.axolt .step-item.active .step-content-desc { display: block; }

.axolt .steps-visual {
  background: var(--axolt-dark);
  padding: 40px;
  position: sticky;
  top: 80px;
}
.axolt .visual-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.axolt .visual-flow { display: flex; flex-direction: column; gap: 12px; }
.axolt .flow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0.4;
  transition: opacity 0.3s;
}
.axolt .flow-row.active { opacity: 1; border-color: rgba(227,0,11,0.5); background: rgba(227,0,11,0.08); }
.axolt .flow-row i { color: var(--axolt-red); font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.axolt .flow-row.active i { color: #ff6b6b; }
.axolt .flow-text { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.4; }
.axolt .flow-row.active .flow-text { color: var(--axolt-white); }
.axolt .flow-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.axolt .flow-row.active .flow-badge { border-color: rgba(227,0,11,0.5); color: #ff8a8a; }

/* METRIC / READINESS SECTION */
.axolt .metric-section { background: var(--axolt-red-dark); }
.axolt .metric-header { max-width: 640px; margin-bottom: 60px; }
.axolt .metric-header .section-title { color: var(--axolt-white); }
.axolt .metric-header .section-sub { color: rgba(255,255,255,0.55); }
.axolt .metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.axolt .metric-cell {
  background: var(--axolt-red-light);
  padding: 36px 28px;
  transition: background 0.2s;
}
.axolt .metric-cell:hover { background: var(--axolt-red-light); }
.axolt .metric-cell-icon {
  width: 48px;
  height: 48px;
  background: rgba(227,0,11,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--axolt-red);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.axolt .metric-cell-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--axolt-dark);
  margin-bottom: 8px;
}
.axolt .metric-cell-desc {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.6;
}
.axolt .metric-checkmark {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #009688;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* IMPACT SECTION */
.axolt .impact-section { background: var(--axolt-white); }
.axolt .impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.axolt .impact-card {
  padding: 36px 32px;
  border: 1px solid var(--axolt-border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.axolt .impact-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.axolt .impact-icon {
  width: 52px;
  height: 52px;
  background: var(--axolt-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--axolt-red);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.axolt .impact-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--axolt-dark);
  margin-bottom: 6px;
}
.axolt .impact-body {
  font-size: 0.87rem;
  color: var(--axolt-sub);
  line-height: 1.6;
}

/* TRACKING VS ORCHESTRATION */
.axolt .orchestration-section { background: var(--axolt-surface); }
.axolt .orch-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}
.axolt .orch-card {
  padding: 40px;
  background: var(--axolt-white);
  border: 1px solid var(--axolt-border);
}
.axolt .orch-card.highlight {
  background: var(--axolt-dark);
  border-color: var(--axolt-dark);
}
.axolt .orch-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--axolt-sub);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.axolt .orch-card.highlight .orch-eyebrow { color: rgba(255,255,255,0.4); }
.axolt .orch-heading {
  font-family: var(--axolt-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--axolt-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.axolt .orch-card.highlight .orch-heading { color: var(--axolt-white); }
.axolt .orch-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--axolt-sub);
  margin-bottom: 28px;
  font-style: italic;
}
.axolt .orch-card.highlight .orch-question { color: rgba(255,255,255,0.5); }
.axolt .orch-items { display: flex; flex-direction: column; gap: 12px; }
.axolt .orch-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--axolt-text);
}
.axolt .orch-card.highlight .orch-item { color: rgba(255,255,255,0.8); }
.axolt .orch-item i { color: var(--axolt-sub); width: 16px; text-align: center; font-size: 0.85rem; }
.axolt .orch-card.highlight .orch-item i { color: var(--axolt-red); }

/* CTA SECTION */
.axolt .cta-section {
  background: var(--axolt-red-dark);
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}
.axolt .cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 40px
  );
}
.axolt .cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.axolt .cta-headline {
  font-family: var(--axolt-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--axolt-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.axolt .cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 480px;
}
.axolt .cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.axolt .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--axolt-white);
  color: var(--axolt-red);
  font-family: var(--axolt-font);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 14px 28px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.axolt .btn-white:hover { opacity: 0.92; transform: translateY(-1px); }
.axolt .btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.axolt .btn-ghost-white:hover { color: #fff; }

/* FOOTER */
.axolt .footer {
  background: var(--axolt-dark);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.axolt .footer-brand {
  font-family: var(--axolt-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--axolt-white);
}
.axolt .footer-brand span { color: var(--axolt-red); }
.axolt .footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.axolt .footer-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.axolt .footer-links a:hover { color: var(--axolt-white); }
.axolt .footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ANIMATIONS */
@keyframes axolt-fadeup {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.axolt .hero-badge { animation: axolt-fadeup 0.5s ease forwards; }
.axolt .hero-headline { animation: axolt-fadeup 0.55s 0.1s ease both; }
.axolt .hero-sub { animation: axolt-fadeup 0.55s 0.2s ease both; }
.axolt .hero-actions { animation: axolt-fadeup 0.55s 0.3s ease both; }
.axolt .hero-stats { animation: axolt-fadeup 0.55s 0.45s ease both; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .axolt .nav { padding: 0 24px; }
  .axolt .nav-links { display: none; }
  .axolt .section { padding: 64px 24px; }
  .axolt .hero { padding: 64px 24px; }
  .axolt .gap-grid { grid-template-columns: 1fr; }
  .axolt .chain { flex-direction: column; }
  .axolt .chain-step:not(:last-child)::after { display: none; }
  .axolt .chain-step:not(:last-child)::before { display: none; }
  .axolt .scenarios-grid { grid-template-columns: 1fr; }
  .axolt .steps-layout { grid-template-columns: 1fr; }
  .axolt .steps-visual { display: none; }
  .axolt .metric-grid { grid-template-columns: 1fr 1fr; }
  .axolt .impact-grid { grid-template-columns: 1fr; }
  .axolt .orch-compare { grid-template-columns: 1fr; }
  .axolt .cta-inner { grid-template-columns: 1fr; }
  .axolt .cta-actions { align-items: flex-start; }
  .axolt .hero-stats { flex-wrap: wrap; gap: 28px; }
  .axolt .footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .axolt .problem-strip { padding: 16px 24px; }
}
@media (max-width: 580px) {
  .axolt .metric-grid { grid-template-columns: 1fr; }
}