:root {
  --axis-accent: #1f45ff;
  --axis-ink: #0e1533;
  --axis-line: rgba(14, 21, 51, .12);
}

axis-site-header,
axis-site-footer { display: block; }

axis-primary-cta { display: inline-flex; }

.axis-shell-header {
  align-items: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--axis-line);
  border-radius: 999px;
  box-shadow: 0 18px 54px rgba(14, 21, 51, .08);
  display: flex;
  justify-content: space-between;
  margin: 0 auto 56px;
  max-width: 1120px;
  padding: 10px 12px 10px 18px;
  position: sticky;
  top: 16px;
  z-index: 20;
}

.axis-shell-header a,
.axis-shell-footer a,
.axis-shell-cta { color: inherit; text-decoration: none; }

.axis-shell-brand { align-items: center; display: inline-flex; gap: 12px; min-height: 44px; }
.axis-shell-brand span {
  background: var(--axis-accent);
  border-radius: 12px;
  color: #fff;
  display: grid;
  font-size: 12px;
  height: 34px;
  place-items: center;
  width: 34px;
}
.axis-shell-brand strong { font-size: 16px; letter-spacing: .01em; }
.axis-shell-nav { align-items: center; display: flex; gap: 4px; }
.axis-shell-nav a {
  align-items: center;
  border-radius: 999px;
  color: rgba(14, 21, 51, .66);
  display: inline-flex;
  font-size: 13px;
  min-height: 44px;
  padding: 10px 14px;
}
.axis-shell-nav a:hover,
.axis-shell-nav a[aria-current="page"] { background: rgba(31, 69, 255, .1); color: var(--axis-accent); }

.axis-shell-cta {
  align-items: center;
  border: 1px solid var(--axis-line);
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.axis-shell-cta:hover { box-shadow: 0 12px 30px rgba(14, 21, 51, .14); transform: translateY(-2px); }
.axis-shell-cta--primary { background: var(--axis-accent); border-color: var(--axis-accent); color: #fff; }
.axis-shell-cta--secondary { background: #fff; color: var(--axis-ink); }

.axis-shell-footer {
  align-items: end;
  border-top: 1px solid var(--axis-line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1120px;
  padding: 32px 0 48px;
}
.axis-shell-footer > div { display: grid; gap: 5px; }
.axis-shell-footer-brand { align-items: center; display: inline-flex; font-size: 16px; font-weight: 700; min-height: 44px; }
.axis-shell-footer > div span,
.axis-shell-footer small { color: rgba(14, 21, 51, .52); font-size: 11px; }
.axis-shell-footer nav { align-items: center; display: flex; gap: 4px; }
.axis-shell-footer nav a { font-size: 12px; min-height: 44px; padding: 13px 9px; }
.axis-shell-footer nav a[aria-current="page"] { color: var(--axis-accent); }
.axis-shell-footer small { grid-column: 1 / -1; }

@media (max-width: 720px) {
  .axis-shell-header { align-items: flex-start; border-radius: 24px; flex-direction: column; gap: 12px; margin-bottom: 28px; padding: 16px; top: 8px; }
  .axis-shell-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .axis-shell-nav a { justify-content: center; padding: 10px 8px; }
  .axis-shell-footer { align-items: start; grid-template-columns: 1fr; padding: 28px 0 48px; }
  .axis-shell-footer nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .axis-shell-footer small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .axis-shell-cta { transition: none; }
}
