:root {
  --bg: #f3f1eb;
  --surface: #ffffff;
  --surface-alt: #f7f8fb;
  --ink: #152236;
  --muted: #5b6778;
  --line: #d7dde7;
  --navy: #0f1b2d;
  --navy-soft: #172941;
  --accent: #b98332;
  --accent-soft: #efe4d2;
  --shadow: 0 24px 54px rgba(15, 27, 45, 0.08);
  --radius: 26px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(185, 131, 50, 0.08), transparent 24%),
    linear-gradient(180deg, #fcfbf8 0%, #f3f4f7 52%, #fbfaf7 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(calc(100% - 32px), 1320px);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(21, 34, 54, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #001a70;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.96rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #1c2430;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  padding: 0;
  background: transparent;
  color: #001a70 !important;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.24s ease;
}

.section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: start;
  padding: 82px 0 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.inverse {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 600;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 7vw, 5.6rem);
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.15rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.28rem;
}

p,
li,
label,
input,
select,
textarea {
  line-height: 1.65;
}

.hero-text,
.section-intro > p:last-child,
.service-card p,
.case-card p,
.why-card p,
.process-card p,
.insight-card p,
.about-copy p,
.contact-form label,
.contact-panel p {
  color: var(--muted);
}

.hero-text {
  max-width: 64ch;
  margin: 24px 0 0;
  font-size: 1.07rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 27, 45, 0.18);
}

.button-secondary,
.button-light {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof span,
.logo-band span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-card,
.service-card,
.case-card,
.why-card,
.process-card,
.insight-card,
.about-panel,
.extra-card,
.contact-form,
.contact-panel,
.cta-banner,
.credibility-strip {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 28px;
}

.hero-card-primary {
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15, 27, 45, 0.84), rgba(15, 27, 45, 0.96)),
    linear-gradient(135deg, rgba(185, 131, 50, 0.28), rgba(23, 41, 65, 0.22));
}

.hero-card-primary h2 {
  max-width: 11ch;
}

.hero-card-primary p:last-child {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
}

.hero-card-secondary > div {
  padding: 18px;
  border-radius: 20px;
  background: var(--surface-alt);
}

.stat-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-secondary strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Fraunces", serif;
  font-size: 2.3rem;
}

.hero-card-secondary p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  padding: 84px 0 48px;
}

.page-lead {
  max-width: 70ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.credibility-strip {
  padding: 24px;
  border-radius: 26px;
}

.logo-band,
.metric-band {
  display: grid;
  gap: 16px;
}

.logo-band {
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 20px;
}

.metric-band {
  grid-template-columns: repeat(3, 1fr);
}

.metric-band article {
  padding: 22px;
  border-radius: 22px;
  background: var(--surface-alt);
}

.metric-band strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Fraunces", serif;
  font-size: 2rem;
}

.metric-band span {
  color: var(--muted);
}

.services,
.case-studies,
.why-us,
.process,
.insights,
.about,
.extras,
.contact,
.overview-section,
.featured-section,
.preview-band,
.deep-grid,
.story-stack,
.timeline,
.article-grid,
.about-story,
.values-grid {
  padding: 56px 0;
}

.section-intro {
  margin-bottom: 28px;
}

.section-intro > p:last-child {
  margin-top: 14px;
  max-width: 68ch;
}

.service-grid,
.case-grid,
.why-grid,
.process-grid,
.insight-grid,
.extras-grid,
.overview-grid,
.content-grid,
.values-grid,
.article-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.case-grid,
.why-grid,
.insight-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.extras-grid {
  grid-template-columns: repeat(2, 1fr);
}

.overview-grid,
.content-grid,
.values-grid,
.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

.deep-grid,
.story-stack,
.timeline {
  display: grid;
  gap: 24px;
}

.service-card,
.case-card,
.why-card,
.process-card,
.insight-card,
.about-panel,
.extra-card,
.overview-card,
.feature-panel,
.detail-card,
.story-card,
.article-card {
  padding: 28px;
  border-radius: 26px;
}

.overview-card,
.feature-panel,
.detail-card,
.story-card,
.article-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.overview-card a,
.feature-panel a {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 700;
}

.feature-split,
.preview-band,
.story-grid {
  display: grid;
  gap: 22px;
}

.feature-split {
  grid-template-columns: repeat(3, 1fr);
}

.preview-band {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.preview-list {
  display: grid;
  gap: 18px;
}

.preview-list article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.preview-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.preview-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.timeline-item > span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 34px 0 52px;
  border-top: 1px solid rgba(21, 34, 54, 0.08);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.site-footer p {
  max-width: 56ch;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-content: start;
  justify-content: end;
}

.footer-links a {
  color: var(--ink);
  font-weight: 600;
}

.nav .is-current {
  color: var(--ink);
}

.service-index,
.case-tag,
.insight-type,
.process-card span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #946722;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.label {
  margin: 18px 0 4px;
  color: var(--ink) !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

li + li {
  margin-top: 10px;
}

.about-layout,
.contact-layout,
.cta-banner {
  display: grid;
  gap: 24px;
}

.about-layout {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.contact-layout {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 26px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(185, 131, 50, 0.2);
  border-color: rgba(185, 131, 50, 0.5);
}

.contact-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cta-banner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 34px;
  margin: 18px auto 34px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(15, 27, 45, 0.95), rgba(23, 41, 65, 0.92)),
    linear-gradient(135deg, rgba(185, 131, 50, 0.18), rgba(255, 255, 255, 0.05));
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.amx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4vw;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(21, 34, 54, 0.08);
}

.amx-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f1724;
}

.amx-logo {
  display: inline-block;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  background: transparent url("/htm-logo-v3.png") center/contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

.amx-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.amx-nav a {
  color: #1c2430;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.amx-contact-link {
  color: #001a70 !important;
}

.amx-location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f3f6ff;
  color: #001a70 !important;
}

.amx-location-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #001a70;
}

.amx-active {
  color: #001a70 !important;
}

.amx-hero,
.amx-capabilities,
.amx-work,
.amx-about-band,
.amx-insights,
.amx-contact-band {
  width: min(100%, 1920px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 4vw;
  padding-right: 4vw;
}

.amx-hero {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(420px, 0.92fr);
  gap: 56px;
  align-items: start;
  padding-top: 44px;
}

.amx-kicker {
  margin: 0 0 18px;
  color: #001a70;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.amx-hero h1,
.amx-section-head h2,
.amx-about-copy h2,
.amx-contact-copy h2 {
  font-family: "Playfair Display", serif;
  color: #111827;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.amx-hero h1 {
  max-width: 11.5ch;
  font-size: clamp(2.95rem, 4.4vw, 4.35rem);
}

.amx-hero-copy {
  padding-top: 18px;
}

.amx-hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
  color: #596475;
  font-size: 1.02rem;
  line-height: 1.78;
}

.amx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.amx-outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.amx-outcome-strip article,
.amx-next-step-card,
.amx-case-study-snapshot article,
.amx-assessment-panel,
.amx-assessment-result {
  border-radius: 16px;
  border: 1px solid rgba(15, 27, 45, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.amx-outcome-strip article,
.amx-case-study-snapshot article {
  padding: 18px 18px 16px;
}

.amx-outcome-strip strong,
.amx-case-study-snapshot strong {
  display: block;
  margin-bottom: 6px;
  color: #001a70;
  font-size: 1.2rem;
}

.amx-outcome-strip span,
.amx-case-study-snapshot span {
  color: #596475;
  font-size: 0.94rem;
  line-height: 1.6;
}

.amx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.amx-btn-dark {
  background: #001a70;
  color: #fff;
}

.amx-btn-light {
  background: #fff;
  border-color: rgba(0, 26, 112, 0.16);
  color: #001a70;
}

.amx-hero-insights {
  display: grid;
  gap: 20px;
  padding: 32px 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(15, 27, 45, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
}

.amx-outcome-strip-hero {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.amx-outcome-strip-hero article {
  padding: 16px 18px 14px;
}

.amx-hero-insight-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.amx-hero-insight-list li {
  margin: 0;
  border-top: 1px solid rgba(15, 27, 45, 0.08);
}

.amx-hero-insight-list li:first-child {
  border-top: 0;
}

.amx-hero-insight-list a {
  display: block;
  padding: 18px 0;
  color: #0f1724;
  font-weight: 600;
  line-height: 1.55;
  transition: color 0.2s ease, transform 0.2s ease;
}

.amx-hero-insight-list span {
  display: block;
  padding: 18px 0;
  color: #596475;
  line-height: 1.55;
}

.amx-hero-insight-list a:hover,
.amx-hero-insight-list a:focus-visible {
  color: #001a70;
  transform: translateX(2px);
}

.amx-section-head {
  width: 100%;
  max-width: 880px;
  margin: 0 0 42px;
  text-align: left;
}

.amx-capabilities .amx-section-head,
.amx-work .amx-section-head,
.amx-insights .amx-section-head {
  padding-left: 0;
}

.amx-section-head h2,
.amx-about-copy h2,
.amx-contact-copy h2 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.amx-capabilities,
.amx-work,
.amx-insights,
.amx-contact-band {
  padding-top: 96px;
}

.amx-insights-shell {
  width: min(1360px, 100%);
  margin: 0 auto;
  padding-inline: 4px;
}

.amx-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.amx-cap-card,
.amx-work-card,
.amx-article {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.amx-cap-image,
.amx-work-image {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.cap-1 { background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1300&q=80"); }
.cap-2 { background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1300&q=80"); }
.cap-3 { background-image: url("https://images.unsplash.com/photo-1518186285589-2f7649de83e0?auto=format&fit=crop&w=1300&q=80"); }
.cap-4 { background-image: url("https://images.unsplash.com/photo-1551650975-87deedd944c3?auto=format&fit=crop&w=1300&q=80"); }
.cap-5 { background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1300&q=80"); }
.cap-6 { background-image: url("https://images.unsplash.com/photo-1518773553398-650c184e0bb3?auto=format&fit=crop&w=1300&q=80"); }

.amx-cap-card h3,
.amx-work-card h3,
.amx-article h3 {
  padding: 28px 28px 0;
  color: #0f1724;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.amx-post-card-image {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(0, 26, 112, 0.08), rgba(0, 26, 112, 0.16)),
    #e7edf7 center/cover no-repeat;
}

.amx-cap-card ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0 28px;
}

.amx-cap-card li {
  padding: 10px 0;
  color: #586272;
  border-top: 1px solid rgba(21, 34, 54, 0.08);
}

.amx-cap-card a,
.amx-work-card a,
.amx-article a {
  display: inline-block;
  margin: 26px 28px 30px;
  color: #001a70;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.amx-work-grid,
.amx-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.work-1 { background-image: url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1300&q=80"); }
.work-2 { background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1300&q=80"); }
.work-3 { background-image: url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1300&q=80"); }

.amx-work-card p {
  padding: 14px 28px 0;
  color: #586272;
  line-height: 1.75;
}

.amx-proof-band,
.amx-why-htm-band,
.amx-assessment-layout {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
}

.amx-proof-band,
.amx-why-htm-band {
  padding-top: 96px;
}

.amx-proof-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #001a70;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.amx-about-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 40px;
  align-items: start;
  padding-top: 110px;
}

.amx-about-copy p:last-child {
  max-width: 56ch;
  color: #596475;
  line-height: 1.8;
}

.amx-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.amx-stats-grid article {
  padding: 34px 28px;
  border-radius: 12px;
  background: #f4f7fb;
}

.amx-stats-grid strong {
  display: block;
  font-family: "Playfair Display", serif;
  color: #001a70;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.amx-stats-grid span {
  display: block;
  margin-top: 14px;
  color: #4c5768;
  line-height: 1.7;
}

.amx-why-htm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.amx-why-htm-card {
  padding: 26px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.amx-why-htm-card p {
  color: #596475;
  line-height: 1.72;
}

.amx-article {
  padding-bottom: 6px;
}

.amx-article span {
  display: block;
  padding: 28px 28px 0;
  color: #001a70;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.amx-contact-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: 48px;
  align-items: start;
  padding-bottom: 96px;
}

.amx-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 36px;
  border-radius: 12px;
  background: #f4f7fb;
}

.amx-form textarea,
.amx-form button {
  grid-column: 1 / -1;
}

.amx-form input,
.amx-form textarea {
  border-radius: 4px;
  border: 1px solid rgba(21, 34, 54, 0.12);
  background: #fff;
}

.amx-next-step-card {
  margin: 24px 0;
  padding: 20px 22px;
}

.amx-next-step-card h3 {
  margin-bottom: 12px;
}

.amx-next-step-card ul {
  margin: 0;
  padding-left: 20px;
  color: #596475;
}

.amx-file-field {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border: 1px dashed rgba(0, 26, 112, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #0f1724;
  font-size: 0.88rem;
  font-weight: 600;
}

.amx-file-field input[type="file"] {
  padding: 0;
  border: 0;
  background: transparent;
}

.amx-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding: 34px 4vw 48px;
  border-top: 1px solid rgba(21, 34, 54, 0.08);
  color: #586272;
}

.amx-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  justify-content: end;
}

.amx-footer a {
  color: #001a70;
  font-weight: 700;
}

.amx-page-hero {
  padding: 72px 4vw 32px;
}

.amx-inner-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.amx-inner-image {
  min-height: 520px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.services-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 26, 112, 0.08), rgba(0, 26, 112, 0.18)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1500&q=80");
}

.industries-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 26, 112, 0.04), rgba(0, 26, 112, 0.2)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1500&q=80");
}

.work-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 26, 112, 0.06), rgba(0, 26, 112, 0.22)),
    url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1500&q=80");
}

.process-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 26, 112, 0.06), rgba(0, 26, 112, 0.18)),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1500&q=80");
}

.insights-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 26, 112, 0.08), rgba(0, 26, 112, 0.2)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1500&q=80");
}

.about-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 26, 112, 0.08), rgba(0, 26, 112, 0.2)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1500&q=80");
}

.contact-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 26, 112, 0.06), rgba(0, 26, 112, 0.16)),
    url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1500&q=80");
}

.careers-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 26, 112, 0.06), rgba(0, 26, 112, 0.2)),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1500&q=80");
}

.amx-page-hero h1 {
  max-width: 10.5ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 5.8vw, 4.85rem);
  line-height: 1;
  color: #111827;
  letter-spacing: -0.05em;
}

.amx-page-text {
  max-width: 62ch;
  margin: 24px 0 0;
  color: #596475;
  font-size: 1rem;
  line-height: 1.8;
}

.amx-page-section {
  padding-top: 24px;
  padding-bottom: 96px;
}

.amx-industries-grid,
.amx-process-stack,
.amx-careers-wrap,
.amx-locations {
  padding-left: 4vw;
  padding-right: 4vw;
}

.amx-industries-grid,
.amx-role-grid,
.amx-locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.amx-industry-card,
.amx-role-card,
.amx-location-card,
.amx-process-row {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
}

.amx-industry-card,
.amx-role-card,
.amx-location-card {
  padding: 36px 32px;
}

.amx-industry-card span,
.amx-process-row span,
.amx-role-card span {
  color: #001a70;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.amx-industry-card h3,
.amx-role-card h3,
.amx-location-card h3 {
  margin-top: 18px;
  color: #0f1724;
  font-size: 1.6rem;
  line-height: 1.1;
}

.amx-industry-card p,
.amx-role-card p,
.amx-location-card p,
.amx-process-row p {
  margin: 16px 0 0;
  color: #586272;
  line-height: 1.75;
}

.amx-process-stack {
  display: grid;
  gap: 24px;
  padding-bottom: 96px;
}

.amx-process-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  padding: 36px 34px;
}

.amx-process-row h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  color: #111827;
  line-height: 1;
}

.amx-contact-page-band {
  padding-top: 24px;
}

.amx-email-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.amx-email-list a,
.amx-location-card a,
.amx-footer p a {
  color: #001a70;
  font-weight: 700;
  word-break: break-word;
}

.amx-locations {
  padding-bottom: 96px;
}

.amx-role-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.amx-job-search {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.amx-job-search-copy h2 {
  max-width: 12ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: #111827;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.amx-job-search-controls {
  display: grid;
  gap: 12px;
}

.amx-job-search-input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(21, 34, 54, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #0f1724;
  font-size: 1rem;
}

.amx-job-search-results,
.amx-job-search-empty {
  margin: 0;
  color: #596475;
  line-height: 1.7;
}

.amx-job-search-empty {
  margin-top: 12px;
}

.amx-role-card[hidden] {
  display: none !important;
}

.amx-filter-pill {
  padding: 14px 22px;
  border: 1px solid rgba(0, 26, 112, 0.14);
  border-radius: 999px;
  background: #f3f6ff;
  color: #001a70;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.amx-filter-pill.is-active {
  background: #001a70;
  border-color: #001a70;
  color: #fff;
}

.amx-role-meta {
  margin-top: 18px;
  color: #001a70;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.amx-role-card a {
  display: inline-block;
  margin-top: 24px;
  color: #001a70;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.amx-insight-meta {
  margin-top: 18px;
  color: #001a70;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amx-insight-excerpt {
  margin-top: 14px;
  color: #586272;
  line-height: 1.75;
}

.amx-post-card-image + span {
  display: inline-block;
  margin: 24px 28px 0;
}

.amx-article .amx-insight-meta,
.amx-article .amx-insight-excerpt {
  padding: 0 28px;
}

.amx-post-shell {
  padding: 0 4vw 96px;
}

.amx-post-hero {
  padding: 56px 4vw 24px;
}

.amx-post-hero-copy {
  width: min(920px, 100%);
}

.amx-post-hero h1 {
  max-width: 13ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.1rem, 5.4vw, 4.7rem);
  line-height: 1;
  color: #111827;
  letter-spacing: -0.05em;
}

.amx-post-hero .amx-page-text {
  max-width: 60ch;
  margin-top: 22px;
}

.amx-post-hero .amx-role-meta {
  margin-top: 22px;
}

.amx-post-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 38px;
  padding: 34px 32px;
  background: #fff;
  border: 1px solid rgba(21, 34, 54, 0.08);
  border-radius: 12px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
}

.amx-post-meta {
  display: grid;
  gap: 18px;
  align-content: start;
}

.amx-post-content {
  display: grid;
  gap: 24px;
}

.amx-post-feature-image {
  min-height: 360px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 26, 112, 0.08), rgba(0, 26, 112, 0.16)),
    #e7edf7 center/cover no-repeat;
}

.amx-post-excerpt {
  color: #0f1724;
  font-size: 1.2rem;
  line-height: 1.8;
}

.amx-post-body {
  display: grid;
  gap: 18px;
}

.amx-post-body h2,
.amx-post-body h3 {
  color: #111827;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.amx-post-body h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.amx-post-body h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.amx-post-body p {
  margin: 0;
  color: #586272;
  line-height: 1.9;
}

.amx-post-body ul {
  margin: 0;
  padding-left: 24px;
  color: #586272;
  line-height: 1.9;
}

.amx-post-body blockquote {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid #001a70;
  background: #f4f7fb;
  border-radius: 0 10px 10px 0;
}

.amx-post-body blockquote p {
  color: #233246;
}

.amx-post-body a {
  color: #001a70;
  text-decoration: underline;
}

.amx-post-meta {
  padding-top: 8px;
}

.amx-admin-main {
  padding-bottom: 96px;
}

.amx-admin-shell {
  padding: 0 4vw 96px;
}

.amx-admin-access,
.amx-admin-panel {
  background: #fff;
  border: 1px solid rgba(21, 34, 54, 0.08);
  border-radius: 12px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
}

.amx-admin-access {
  display: grid;
  gap: 22px;
  padding: 34px 32px;
  margin-bottom: 30px;
}

.amx-admin-key-row,
.amx-admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.amx-admin-key-row .amx-job-search-input {
  flex: 1 1 320px;
}

.amx-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
}

.amx-admin-grid-secondary {
  margin-top: 30px;
}

.amx-admin-panel {
  padding: 34px 32px;
}

.amx-admin-panel-head {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 24px;
}

.amx-admin-panel-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #111827;
  line-height: 1.04;
}

.amx-admin-form {
  display: grid;
  gap: 16px;
}

.amx-admin-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.amx-admin-toolbar .amx-kicker {
  margin-right: 6px;
}

.amx-admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.amx-admin-form input,
.amx-admin-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 34, 54, 0.12);
  border-radius: 8px;
  padding: 16px 18px;
  font: inherit;
  color: #0f1724;
  background: #fff;
}

.amx-admin-preview {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  border-radius: 12px;
  background: #f8fafc;
}

.amx-admin-preview .amx-post-body p:first-child {
  margin-top: 0;
}

.amx-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.amx-pagination .amx-btn {
  min-height: 50px;
  padding: 0 22px;
}

.amx-admin-jobs {
  display: grid;
  gap: 16px;
}

.amx-admin-job-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(21, 34, 54, 0.08);
  border-radius: 10px;
  background: #f8fafc;
}

.amx-admin-job-copy span {
  color: #001a70;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.amx-admin-job-copy h3 {
  margin-top: 14px;
  color: #111827;
  font-size: 1.45rem;
  line-height: 1.08;
}

.amx-admin-job-copy p:last-child {
  margin-top: 12px;
  color: #586272;
  line-height: 1.7;
}

.amx-admin-job-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.amx-breadcrumbs {
  width: min(1180px, calc(100% - 72px));
  margin: 42px auto 0;
  color: #667184;
  font-size: 0.9rem;
}

.amx-breadcrumbs a {
  color: #001a70;
}

.amx-breadcrumbs span {
  margin: 0 8px;
}

.amx-service-layout,
.amx-resource-layout {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
}

.amx-service-main,
.amx-resource-main {
  display: grid;
  gap: 24px;
}

.amx-service-section,
.amx-resource-section,
.amx-service-aside,
.amx-service-cta,
.amx-service-faq,
.amx-resource-card,
.amx-link-band,
.amx-lead-band {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 27, 45, 0.08);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.amx-service-section,
.amx-resource-section,
.amx-service-faq,
.amx-link-band,
.amx-lead-band {
  padding: 34px;
}

.amx-service-section h2,
.amx-resource-section h2,
.amx-service-faq h2,
.amx-link-band h2,
.amx-lead-band h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.amx-service-section h3,
.amx-resource-section h3 {
  margin: 18px 0 10px;
  color: #111827;
  font-size: 1.2rem;
}

.amx-service-section p,
.amx-resource-section p,
.amx-service-aside p,
.amx-service-faq p,
.amx-service-faq li,
.amx-link-band p,
.amx-lead-band p {
  color: #596475;
  line-height: 1.78;
}

.amx-service-section ul,
.amx-resource-section ul,
.amx-service-faq ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #596475;
}

.amx-service-section li,
.amx-resource-section li,
.amx-service-faq li {
  margin-bottom: 8px;
}

.amx-service-aside {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 24px;
  display: grid;
  gap: 18px;
}

.amx-service-toc h3,
.amx-service-cta h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.amx-service-toc a {
  display: block;
  padding: 10px 0;
  color: #233247;
  font-weight: 600;
  border-bottom: 1px solid rgba(15, 27, 45, 0.08);
}

.amx-service-toc a:last-child {
  border-bottom: 0;
}

.amx-service-cta {
  padding: 24px;
  background: linear-gradient(180deg, #12295e 0%, #0f1b2d 100%);
  color: #fff;
}

.amx-service-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.amx-service-cta h3 {
  color: #fff;
}

.amx-service-cta .amx-form {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  box-shadow: none;
}

.amx-service-cta .amx-form input,
.amx-service-cta .amx-form textarea {
  width: 100%;
}

.amx-service-cta .amx-form button {
  width: 100%;
  margin-top: 4px;
}

.amx-products-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.amx-products-status-card,
.amx-product-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.amx-products-status-card span,
.amx-product-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: #001a70;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.amx-products-status-card strong {
  display: block;
  margin-bottom: 10px;
  color: #111827;
  font-size: 1.15rem;
  line-height: 1.3;
}

.amx-products-status-card p,
.amx-product-card p,
.amx-products-note p {
  margin: 0;
  color: #586272;
}

.amx-products-status-card [data-tone="success"] {
  color: #15613f;
}

.amx-products-status-card [data-tone="error"] {
  color: #8a1f17;
}

.amx-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.amx-product-card h3 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 1.45rem;
  line-height: 1.08;
}

.amx-product-card ul,
.amx-products-two-col ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #4f6281;
}

.amx-product-card li,
.amx-products-two-col li {
  margin-bottom: 10px;
}

.amx-product-coming-soon {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 26, 112, 0.08);
  color: #001a70;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.amx-products-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.amx-products-two-col article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 27, 45, 0.08);
}

.amx-products-two-col h3 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 1.2rem;
}

.amx-products-note {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
  padding: 0;
  background: transparent;
}

.amx-product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 26px;
  width: min(100% - 40px, 1240px);
  margin: 0 auto 72px;
}

.amx-product-main,
.amx-product-sidebar {
  display: grid;
  gap: 24px;
}

.amx-product-panel {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.amx-section-head-left {
  text-align: left;
  margin-bottom: 18px;
}

.amx-product-form {
  display: grid;
  gap: 14px;
}

.amx-product-form label {
  display: grid;
  gap: 8px;
  color: #111827;
  font-weight: 600;
}

.amx-product-form input,
.amx-product-form select,
.amx-product-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 27, 45, 0.12);
  background: #fff;
  color: #111827;
  font: inherit;
}

.amx-product-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.amx-product-form-wide {
  grid-column: 1 / -1;
}

.amx-product-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.amx-product-auth-divider {
  position: relative;
  margin: 18px 0 6px;
  text-align: center;
}

.amx-product-auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(15, 27, 45, 0.12);
}

.amx-product-auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.94);
  color: #586272;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.amx-product-social-actions .amx-btn {
  flex: 1 1 220px;
}

.amx-product-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.amx-product-stat {
  padding: 20px;
  border-radius: 20px;
  background: rgba(240, 244, 255, 0.72);
  border: 1px solid rgba(0, 26, 112, 0.08);
}

.amx-product-stat span {
  display: block;
  margin-bottom: 8px;
  color: #586272;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.amx-product-stat strong {
  color: #111827;
  font-size: 2rem;
  line-height: 1;
}

.amx-bill-list {
  display: grid;
  gap: 18px;
}

.amx-bill-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(244, 247, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.amx-bill-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.amx-bill-card-head h3 {
  margin-bottom: 6px;
  color: #111827;
  font-size: 1.2rem;
}

.amx-bill-card-head p {
  margin: 0;
  color: #586272;
}

.amx-bill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.amx-bill-badge[data-tone="success"] {
  background: rgba(21, 97, 63, 0.12);
  color: #15613f;
}

.amx-bill-badge[data-tone="warning"] {
  background: rgba(163, 82, 21, 0.12);
  color: #a35215;
}

.amx-bill-badge[data-tone="error"] {
  background: rgba(138, 31, 23, 0.12);
  color: #8a1f17;
}

.amx-bill-badge[data-tone="neutral"] {
  background: rgba(0, 26, 112, 0.08);
  color: #001a70;
}

.amx-bill-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
}

.amx-bill-meta div {
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.amx-bill-meta dt {
  margin-bottom: 6px;
  color: #586272;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.amx-bill-meta dd {
  margin: 0;
  color: #111827;
  font-weight: 600;
}

.amx-bill-note {
  margin: 18px 0 0;
  color: #4f6281;
}

.amx-habit-card.is-done {
  background: rgba(231, 246, 238, 0.88);
  border-color: rgba(21, 97, 63, 0.14);
}

.amx-habit-guidance {
  margin-top: 0;
}

.amx-habit-guidance article {
  min-width: 0;
}

.amx-product-empty {
  padding: 20px;
  border-radius: 22px;
  background: rgba(244, 247, 255, 0.72);
  border: 1px dashed rgba(0, 26, 112, 0.16);
}

.amx-product-empty h3 {
  margin-bottom: 10px;
  color: #111827;
}

.amx-product-empty p {
  margin: 0;
  color: #586272;
}

.amx-products-checklist {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #4f6281;
}

.amx-products-checklist li {
  margin-bottom: 10px;
}

.amx-product-surface {
  background:
    radial-gradient(circle at top right, rgba(0, 26, 112, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef3fb 54%, #f8fbff 100%);
}

.amx-product-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4vw;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 27, 45, 0.08);
}

.amx-product-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #0f1724;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.amx-product-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.amx-product-nav a {
  color: #233247;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.amx-product-nav .amx-product-backlink {
  color: #001a70;
}

.amx-product-catalog,
.amx-product-auth-layout,
.amx-product-app-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.amx-product-catalog {
  padding: 56px 0 72px;
}

.amx-product-catalog-hero,
.amx-product-auth-intro,
.amx-product-app-intro {
  margin-bottom: 28px;
}

.amx-product-catalog-hero h1,
.amx-product-auth-intro h1,
.amx-product-app-intro h1 {
  max-width: 10.5ch;
  font-family: "Playfair Display", serif;
  color: #111827;
  font-size: clamp(2.85rem, 4.8vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.amx-product-catalog-hero .amx-page-text,
.amx-product-auth-intro .amx-page-text,
.amx-product-app-intro .amx-page-text {
  max-width: 62ch;
}

.amx-product-card-live {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.96));
}

.amx-product-card-actions {
  margin-top: 22px;
}

.amx-product-card-note {
  margin-top: 12px;
  color: #5b6778;
  font-size: 0.92rem;
}

.amx-product-auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  gap: 28px;
  align-items: start;
  padding: 56px 0 72px;
}

.amx-product-app-layout {
  padding: 34px 0 72px;
}

.amx-product-app-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

.amx-product-app-actions {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.amx-product-session-chip {
  min-width: 260px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.amx-product-session-chip span {
  display: block;
  margin-bottom: 6px;
  color: #586272;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.amx-product-session-chip strong {
  display: block;
  color: #111827;
  font-size: 1rem;
  word-break: break-word;
}

.amx-product-auth-page:not(.amx-product-auth-resolved) .amx-product-panel {
  opacity: 0.4;
}

.amx-product-app-page main {
  visibility: hidden;
  opacity: 0;
}

.amx-product-app-page.amx-auth-ready main {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.16s ease;
}

.amx-service-cta .amx-btn,
.amx-lead-band .amx-btn,
.amx-link-band .amx-btn {
  margin-top: 10px;
}

.amx-case-study-snapshot,
.amx-assessment-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 26px;
}

.amx-assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  padding-bottom: 72px;
}

.amx-assessment-panel,
.amx-assessment-result {
  padding: 28px;
}

.amx-assessment-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.amx-assessment-form label {
  display: grid;
  gap: 8px;
  color: #111827;
  font-weight: 600;
}

.amx-assessment-form select,
.amx-assessment-form input[type="range"] {
  width: 100%;
}

.amx-assessment-form span[data-assessment-value] {
  color: #596475;
  font-weight: 500;
}

.amx-assessment-result > strong[data-assessment-score] {
  display: block;
  margin: 8px 0 4px;
  color: #001a70;
  font-size: clamp(3rem, 8vw, 4.8rem);
  line-height: 1;
}

.amx-assessment-result > span[data-assessment-tier] {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
}

.amx-assessment-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.amx-service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.amx-proof-grid,
.amx-resource-grid,
.amx-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.amx-proof-card,
.amx-resource-card,
.amx-link-card {
  padding: 22px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15, 27, 45, 0.08);
}

.amx-proof-card strong,
.amx-resource-card strong,
.amx-link-card strong {
  display: block;
  margin-bottom: 10px;
  color: #0f1b2d;
  font-size: 1.1rem;
}

.amx-service-faq article {
  padding: 18px 0;
  border-top: 1px solid rgba(15, 27, 45, 0.08);
}

.amx-service-faq article:first-of-type {
  border-top: 0;
  padding-top: 8px;
}

.amx-service-faq h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1.14rem;
}

.amx-service-hero-note {
  margin-top: 16px;
  color: #5d6a7e;
  font-size: 0.96rem;
}

.amx-lead-band,
.amx-link-band {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 72px;
}

.amx-content-grid {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 24px;
}

.amx-article-card,
.amx-side-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.amx-article-card h2,
.amx-side-card h3 {
  margin-bottom: 16px;
}

.amx-article-card p,
.amx-side-card p,
.amx-side-card li {
  color: #596475;
}

.amx-ai-terms-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 26, 112, 0.1), rgba(0, 26, 112, 0.16)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1500&q=80");
}

.amx-glossary-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.amx-glossary-index a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(18, 35, 97, 0.14);
  background: rgba(245, 247, 252, 0.96);
  color: #122361;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.amx-glossary-section {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 48px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 27, 45, 0.08);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  padding: 34px;
}

.amx-glossary-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.amx-glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.amx-glossary-entry {
  border: 1px solid rgba(18, 35, 97, 0.12);
  border-radius: 22px;
  padding: 22px;
  background: rgba(248, 250, 255, 0.96);
}

.amx-glossary-entry h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.amx-glossary-entry p {
  margin-bottom: 10px;
  color: #596475;
  line-height: 1.72;
}

.amx-glossary-example {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 35, 97, 0.1);
  color: #122361;
  font-weight: 600;
}

.amx-resource-card p,
.amx-link-card p {
  margin-bottom: 16px;
  color: #596475;
}

.amx-service-listing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.amx-path-grid,
.amx-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.amx-path-card,
.amx-package-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.amx-path-card span,
.amx-package-card span {
  display: inline-block;
  color: #001a70;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.amx-path-card h3,
.amx-package-card h3 {
  margin: 14px 0 10px;
  color: #111827;
  font-size: 1.4rem;
  line-height: 1.18;
}

.amx-path-card p,
.amx-package-card p {
  color: #596475;
  line-height: 1.72;
}

.amx-path-card a,
.amx-package-card a {
  display: inline-block;
  margin-top: 18px;
  color: #001a70;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.amx-price-tag {
  display: block;
  margin-top: 16px;
  color: #0f1b2d;
  font-weight: 800;
}

.amx-inline-form {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  margin-top: 24px;
}

.amx-inline-form .amx-btn {
  width: 100%;
}

.amx-service-listing article {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.amx-service-listing h3 {
  margin-bottom: 10px;
  color: #111827;
  font-size: 1.42rem;
}

.amx-service-listing p {
  color: #596475;
  line-height: 1.72;
}

.amx-service-listing ul {
  margin: 16px 0 18px;
  padding-left: 20px;
  color: #596475;
}

.amx-service-listing li {
  margin-bottom: 8px;
}

.amx-service-listing a,
.amx-resource-card a,
.amx-link-card a {
  color: #001a70;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

@media (max-width: 960px) {
  .amx-hero,
  .amx-inner-hero,
  .amx-capability-grid,
  .amx-work-grid,
  .amx-about-band,
  .amx-insights-grid,
  .amx-contact-band,
  .amx-stats-grid,
  .amx-form,
  .amx-post-layout,
  .amx-admin-grid,
  .amx-admin-form-grid,
  .amx-industries-grid,
  .amx-role-grid,
  .amx-locations,
  .amx-service-layout,
  .amx-resource-layout,
  .amx-proof-grid,
  .amx-resource-grid,
  .amx-link-grid,
  .amx-glossary-grid,
  .amx-service-listing,
  .amx-path-grid,
  .amx-package-grid,
  .amx-outcome-strip,
  .amx-why-htm-grid,
  .amx-case-study-snapshot,
  .amx-assessment-layout,
  .amx-assessment-metrics {
    grid-template-columns: 1fr;
  }

  .amx-job-search {
    grid-template-columns: 1fr;
  }

  .amx-inline-form {
    grid-template-columns: 1fr;
  }

  .amx-products-status,
  .amx-products-grid,
  .amx-products-two-col,
  .amx-product-auth-layout {
    grid-template-columns: 1fr;
  }

  .amx-product-shell {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1240px);
    margin-bottom: 56px;
  }

  .amx-product-form-grid,
  .amx-product-stats,
  .amx-bill-meta {
    grid-template-columns: 1fr;
  }

  .amx-nav {
    position: fixed;
    top: 84px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.menu-open .amx-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-block;
  }

  .amx-product-topbar {
    padding: 16px 12px;
  }

  .amx-product-nav {
    position: fixed;
    top: 84px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.menu-open .amx-product-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .amx-hero {
    padding-top: 24px;
  }

  .amx-hero-copy {
    padding-top: 0;
  }

  .amx-hero h1 {
    max-width: 10.5ch;
    font-size: 3rem;
  }

  .amx-hero-insights {
    padding: 26px 24px 22px;
  }

  .amx-page-hero {
    padding-top: 52px;
  }

  .amx-product-catalog,
  .amx-product-auth-layout,
  .amx-product-app-layout {
    width: min(100% - 24px, 1180px);
  }

  .amx-product-app-intro {
    display: grid;
    grid-template-columns: 1fr;
  }

  .amx-product-app-actions {
    justify-items: start;
  }

  .amx-product-session-chip {
    min-width: 0;
    width: 100%;
  }

  .amx-page-hero h1 {
    font-size: 3rem;
    max-width: 9ch;
  }

  .amx-process-row {
    grid-template-columns: 1fr;
  }

  .amx-inner-image {
    min-height: 380px;
  }

  .amx-breadcrumbs,
  .amx-service-layout,
  .amx-resource-layout,
  .amx-lead-band,
  .amx-link-band,
  .amx-glossary-section,
  .amx-proof-band,
  .amx-why-htm-band,
  .amx-assessment-layout {
    width: min(100% - 24px, 1180px);
  }

  .amx-glossary-index {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .amx-service-aside {
    position: static;
  }

  .amx-footer {
    grid-template-columns: 1fr;
  }

  .amx-footer div {
    justify-content: start;
  }
}

@media (max-width: 1100px) {
  .hero,
  .about-layout,
  .contact-layout,
  .cta-banner,
  .feature-split,
  .preview-band,
  .overview-grid,
  .content-grid,
  .values-grid,
  .article-grid,
  .story-grid,
  .site-footer,
  .service-grid,
  .case-grid,
  .why-grid,
  .process-grid,
  .insight-grid,
  .extras-grid,
  .logo-band,
  .metric-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(calc(100% - 20px), 1320px);
  }

  .header {
    padding: 16px 0;
  }

  .nav {
    position: fixed;
    inset: 82px 10px auto;
    display: grid;
    gap: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-block;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 66px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-card-secondary {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .button {
    width: 100%;
  }

  h1 {
    max-width: 10.5ch;
  }
}
