/*
 * Last modified: 09/11/2026 02:58 PM
 */

:root {
  --azt-ink: #0e1418;
  --azt-graphite: #1c2329;
  --azt-steel: #3a434b;
  --azt-fog: #6b747c;
  --azt-mist: #c9cdd1;
  --azt-paper: #f4f4f2;
  --azt-snow: #ffffff;
  --azt-blue: #2545ba;
  --azt-blue-hover: #1e3a9e;
  --azt-gold: #b8860b;
  --azt-on-ink: #ffffff;
  --azt-on-ink-2: #c3c8cc;
  --azt-border: #e4e5e3;
  --azt-border-ink: rgba(255, 255, 255, 0.14);
  --azt-font: "Segoe UI", "Helvetica Neue", system-ui, -apple-system, Arial, sans-serif;
  --azt-display: "Segoe UI", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --azt-mono: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
  --azt-max: 1280px;
  --azt-pad: 32px;
  --azt-r: 999px;
  --azt-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --azt-header: 72px;
}

html {
  scroll-behavior: smooth;
}

body.azt-body {
  margin: 0;
  background: var(--azt-paper);
  color: var(--azt-ink);
  font-family: var(--azt-font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.azt-skip {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 2000;
  background: var(--azt-blue);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
}

.azt-skip:focus {
  top: 16px;
}

a {
  color: var(--azt-blue);
}

a:hover {
  color: var(--azt-blue-hover);
}

img {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 2px solid var(--azt-gold);
  outline-offset: 3px;
}

.azt-wrap {
  width: min(var(--azt-max), calc(100% - (var(--azt-pad) * 2)));
  margin-inline: auto;
}

/* Header */
.azt-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: var(--azt-ink);
  border-bottom: 1px solid var(--azt-border-ink);
}

.admin-bar .azt-header {
  top: var(--wp-admin--admin-bar--height, 32px);
}

.azt-header__inner {
  min-height: var(--azt-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.azt-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.azt-logo:hover {
  color: #fff;
}

.azt-logo img {
  height: 40px;
  width: auto;
}

.azt-logo__text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azt-mist);
}

.azt-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.azt-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.azt-nav a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
}

.azt-nav a:hover,
.azt-nav .current-menu-item > a,
.azt-nav .current_page_item > a {
  color: #fff;
}

.azt-nav .current-menu-item > a,
.azt-nav .current_page_item > a {
  box-shadow: inset 0 -2px 0 #fff;
}

.azt-header__cta {
  margin-left: 8px;
}

.azt-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--azt-border-ink);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--azt-r);
}

/* Buttons */
.azt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--azt-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--azt-r);
  border: 1px solid transparent;
  transition: background 200ms var(--azt-ease), border-color 200ms var(--azt-ease), transform 200ms var(--azt-ease), color 200ms var(--azt-ease);
  cursor: pointer;
}

.azt-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.azt-btn--primary {
  background: var(--azt-blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 69, 186, 0.32);
}

.azt-btn--primary:hover,
.azt-btn--primary:focus-visible {
  background: var(--azt-blue-hover);
  color: #fff;
}

.azt-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.azt-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.azt-btn--ghost-dark {
  background: transparent;
  color: var(--azt-ink);
  border-color: var(--azt-mist);
}

.azt-btn--ghost-dark:hover {
  border-color: var(--azt-ink);
  color: var(--azt-ink);
}

.azt-btn--sm {
  padding: 11px 20px;
  font-size: 11px;
}

/* Type */
.azt-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azt-blue);
}

.azt-eyebrow--gold {
  color: var(--azt-gold);
}

.azt-eyebrow--on-ink {
  color: var(--azt-gold);
}

.azt-eyebrow__rule {
  width: 34px;
  height: 2px;
  background: currentColor;
  display: block;
  flex: 0 0 auto;
}

.azt-display {
  font-family: var(--azt-display);
  font-weight: 800;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 24px;
  text-wrap: balance;
}

.azt-display--xl {
  font-size: clamp(40px, 6.2vw, 54px);
}

.azt-display--l {
  font-size: clamp(32px, 4.2vw, 46px);
}

.azt-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--azt-steel);
  max-width: 640px;
  margin: 0;
}

.azt-lead--on-ink {
  color: var(--azt-on-ink-2);
}

/* Sections */
.azt-section {
  padding: 96px 0;
}

.azt-section--paper {
  background: var(--azt-paper);
}

.azt-section--snow {
  background: var(--azt-snow);
}

.azt-section--ink {
  background: var(--azt-ink);
  color: #fff;
}

.azt-section--graphite {
  background: var(--azt-graphite);
  color: #fff;
}

.azt-quote {
  margin: 32px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--azt-gold);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: #fff;
}

/* Hero */
.azt-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(14, 20, 24, 0.96) 0%, rgba(14, 20, 24, 0.88) 42%, rgba(14, 20, 24, 0.55) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(184, 134, 11, 0.28), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(37, 69, 186, 0.35), transparent 45%),
    var(--azt-ink);
  overflow: hidden;
  color: #fff;
}

.azt-hero__inner {
  position: relative;
  padding: 60px 0 72px;
  width: min(var(--azt-max), calc(100% - (var(--azt-pad) * 2)));
  margin-inline: auto;
}

.azt-hero__copy {
  max-width: 700px;
}

.azt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

/* Proof */
.azt-proof {
  border-top: 1px solid var(--azt-border-ink);
  padding-top: 26px;
  margin-top: 72px;
}

.azt-proof__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azt-fog);
  margin-bottom: 18px;
}

.azt-proof__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.azt-proof__item {
  background: var(--azt-ink);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}

/* Cards */
.azt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.azt-card {
  display: block;
  background: var(--azt-snow);
  border: 1px solid var(--azt-mist);
  border-radius: 6px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(14, 20, 24, 0.06);
  transition: box-shadow 200ms var(--azt-ease), transform 200ms var(--azt-ease), border-color 200ms var(--azt-ease);
}

.azt-card:hover {
  color: inherit;
  border-color: var(--azt-blue);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(14, 20, 24, 0.12);
}

.azt-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.azt-card__num {
  font-family: var(--azt-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--azt-fog);
}

.azt-card__tick {
  width: 22px;
  height: 2px;
  background: var(--azt-blue);
}

.azt-card__icon {
  color: var(--azt-blue);
  font-size: 22px;
  margin-bottom: 12px;
}

.azt-card__title {
  font-family: var(--azt-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--azt-ink);
}

.azt-card__text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--azt-fog);
  margin: 0;
}

/* Offerings */
.azt-offer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.azt-offer__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: var(--azt-r);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 69, 186, 0.08);
  color: var(--azt-blue);
  font-size: 22px;
}

.azt-offer h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.azt-offer p {
  margin: 0;
  color: var(--azt-steel);
  font-size: 15px;
}

/* About split */
.azt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.azt-split__panel {
  background: var(--azt-graphite);
  color: #fff;
  min-height: 280px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.azt-split__panel h3 {
  font-family: var(--azt-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.azt-split__panel p {
  margin: 0;
  color: var(--azt-on-ink-2);
}

/* Articles */
.azt-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.azt-post-card time {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azt-fog);
  margin-bottom: 8px;
}

.azt-entry h2 {
  font-family: var(--azt-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.1;
  margin: 36px 0 16px;
}

.azt-entry h3,
.azt-entry h4 {
  font-family: var(--azt-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  margin: 28px 0 12px;
}

.azt-entry p {
  margin: 0 0 20px;
}

.azt-entry img {
  height: auto;
  margin: 8px 0 24px;
}

.azt-entry hr {
  border: 0;
  border-top: 1px solid var(--azt-border);
  margin: 32px 0;
}

.azt-entry ul {
  padding-left: 1.2em;
  margin: 0 0 20px;
}

.azt-entry li {
  margin-bottom: 8px;
}

.azt-entry h1 {
  font-family: var(--azt-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 16px;
}

.azt-entry .azt-meta {
  color: var(--azt-fog);
  font-size: 14px;
  margin-bottom: 28px;
}

.azt-entry .azt-meta .cat-links,
.single-post .meta-category,
.azt-entry a[rel="category tag"] {
  /* Hide "General Information" category chrome from the old theme. */
}

.azt-entry .cat-links {
  display: none;
}

/* Contact email */
.azt-contact-mail {
  margin-top: 40px;
}

.azt-contact-mail__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azt-gold);
  margin: 0 0 10px;
}

.azt-contact-mail__address {
  margin: 0;
}

.azt-contact-mail__link {
  display: inline-block;
  font-family: var(--azt-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--azt-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--azt-gold);
}

.azt-contact-mail__link:hover,
.azt-contact-mail__link:focus-visible {
  color: var(--azt-blue);
  border-bottom-color: var(--azt-blue);
}

.azt-contact-articles {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--azt-border);
}

/* Footer */
.azt-footer {
  background: var(--azt-ink);
  color: var(--azt-on-ink-2);
  padding: 56px 0 32px;
  font-size: 14px;
}

.azt-footer a {
  color: #fff;
  text-decoration: none;
}

.azt-footer a:hover {
  text-decoration: underline;
}

.azt-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.azt-footer__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azt-fog);
  margin: 0 0 16px;
}

.azt-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.azt-footer li {
  margin-bottom: 8px;
}

.azt-footer__legal {
  border-top: 1px solid var(--azt-border-ink);
  padding-top: 20px;
  font-size: 13px;
  color: var(--azt-fog);
}

.azt-footer-widgets {
  margin-top: 24px;
}

.azt-footer-widget + .azt-footer-widget {
  margin-top: 20px;
}

.azt-footer-widget__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azt-fog);
  margin: 0 0 16px;
}

.azt-footer-widget p:last-child {
  margin-bottom: 0;
}

/* SiteBot */
#wpsb-launcher {
  background: var(--azt-blue) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  box-shadow: 0 6px 18px rgba(37, 69, 186, 0.32) !important;
}
.wpsb-msg.wpsb-bot, .wpsb-msg.wpsb-bot a {
  color: #000;
}
.wpsb-msg.wpsb-user {
  color: #00008b;
}
/* Listing */
.azt-page-hero {
  background: var(--azt-ink);
  color: #fff;
  padding: 60px 0 64px;
}

.azt-list article + article {
  border-top: 1px solid var(--azt-border);
  padding-top: 28px;
  margin-top: 28px;
}

.azt-list h2 {
  font-family: var(--azt-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 28px;
  margin: 0 0 8px;
}

.azt-list h2 a {
  color: var(--azt-ink);
  text-decoration: none;
}

.azt-muted {
  color: var(--azt-fog);
}

/* Homepage delivery pipeline (section-specific; does not alter global tokens) */
.azt-delivery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.azt-delivery__copy .azt-lead {
  max-width: 36em;
}

.azt-delivery-pipe {
  position: relative;
  padding: 0;
}

.azt-delivery-pipe__rail {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 2px;
  pointer-events: none;
}

.azt-delivery-pipe__line {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(58, 67, 75, 0.28);
}

.azt-delivery-pipe__dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--azt-gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.18), 0 0 12px rgba(184, 134, 11, 0.55);
  animation: azt-delivery-travel-x 10s linear infinite;
}

.azt-delivery-pipe__stages {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.azt-delivery-pipe__stage {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.azt-delivery-pipe__node {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--azt-snow);
  border: 1px solid var(--azt-mist);
  color: var(--azt-blue);
  font-size: 20px;
  box-shadow: 0 1px 2px rgba(14, 20, 24, 0.06);
  animation: azt-delivery-glow 10s ease-in-out infinite;
}

.azt-delivery-pipe__stage:nth-child(1) .azt-delivery-pipe__node {
  animation-delay: 0s;
}

.azt-delivery-pipe__stage:nth-child(2) .azt-delivery-pipe__node {
  animation-delay: 2.5s;
}

.azt-delivery-pipe__stage:nth-child(3) .azt-delivery-pipe__node {
  animation-delay: 5s;
}

.azt-delivery-pipe__stage:nth-child(4) .azt-delivery-pipe__node {
  animation-delay: 7.5s;
}

.azt-delivery-pipe__stage:nth-child(5) .azt-delivery-pipe__node {
  animation-delay: 9.2s;
}

.azt-delivery-pipe__loop {
  position: absolute;
  font-size: 44px;
  color: var(--azt-gold);
  opacity: 0.28;
  animation: azt-delivery-spin 14s linear infinite;
}

.azt-delivery-pipe__node > i:last-child {
  position: relative;
  z-index: 1;
}

.azt-delivery-pipe__label {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--azt-steel);
  max-width: 9.5em;
}

@keyframes azt-delivery-travel-x {
  0% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

@keyframes azt-delivery-travel-y {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

@keyframes azt-delivery-glow {
  0%,
  12%,
  100% {
    color: var(--azt-blue);
    border-color: var(--azt-mist);
    box-shadow: 0 1px 2px rgba(14, 20, 24, 0.06);
    transform: scale(1);
  }

  4%,
  8% {
    color: var(--azt-gold);
    border-color: var(--azt-gold);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.12), 0 0 18px rgba(184, 134, 11, 0.28);
    transform: scale(1.06);
  }
}

@keyframes azt-delivery-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .azt-proof__grid,
  .azt-cards,
  .azt-offer,
  .azt-posts {
    grid-template-columns: repeat(2, 1fr);
  }

  .azt-split,
  .azt-footer__grid,
  .azt-delivery__grid {
    grid-template-columns: 1fr;
  }

  .azt-delivery-pipe {
    max-width: 420px;
  }

  .azt-delivery-pipe__rail {
    top: 32px;
    bottom: 32px;
    left: 32px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .azt-delivery-pipe__line {
    width: 2px;
    height: 100%;
  }

  .azt-delivery-pipe__dot {
    top: 0;
    left: 50%;
    margin-top: -4px;
    margin-left: -4px;
    animation-name: azt-delivery-travel-y;
  }

  .azt-delivery-pipe__stages {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .azt-delivery-pipe__stage {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .azt-delivery-pipe__node {
    flex: 0 0 64px;
  }

  .azt-delivery-pipe__label {
    margin-top: 0;
    max-width: none;
  }
}

@media (max-width: 760px) {
  :root {
    --azt-pad: 20px;
  }

  .azt-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .azt-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--azt-ink);
    border-bottom: 1px solid var(--azt-border-ink);
    padding: 12px 20px 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .azt-header.is-open .azt-nav {
    display: flex;
  }

  .azt-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .azt-header__cta {
    margin: 12px 0 0;
  }

  .azt-section {
    padding: 60px 0;
  }

  .azt-hero__inner {
    padding-top: 60px;
  }

  .azt-proof__grid,
  .azt-cards,
  .azt-offer,
  .azt-posts {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  /*
   * Delivery pipeline, reduced motion: hide the traveling pulse and
   * show every stage in a completed static state.
   */
  .azt-delivery-pipe__dot {
    display: none;
  }

  .azt-delivery-pipe__node {
    color: var(--azt-blue);
    border-color: var(--azt-blue);
    box-shadow: 0 1px 2px rgba(14, 20, 24, 0.06);
    transform: none;
  }

  .azt-delivery-pipe__loop {
    opacity: 0.4;
    transform: none;
  }

  .azt-delivery-pipe__stage--loop .azt-delivery-pipe__node {
    color: var(--azt-gold);
    border-color: var(--azt-gold);
  }
}
