
:root {
  --azure: #007fff;
  --bg: #f6f9fc;
  --bg-alt: #F6F8FB;
  --bg-white: #FFFFFF;
  --blue: #1b5faa;
  --blue-dark: #1554A8;
  --blue-tint: #EAF2FE;
  --border: #E3E8EF;
  --card: #ffffff;
  --foot: #232323;
  --foot2: #151515;
  --green: #5cb85c;
  --green-d: #449d44;
  --green-dark: #0e8a5f;
  --ink: #1d2b3a;  /* redefined in source: #333 -> #1d2b3a -- kept last (actual rendered value) */
  --ipx-blue: #007fff;
  --ipx-body: #333333;
  --ipx-green: #0e8a5f;
  --ipx-ink: #22344d;
  --ipx-line: #e3e9f1;
  --ipx-max: 1080px;
  --ipx-mkt: #007fff;
  --ipx-mkt-dark: #0062cc;
  --ipx-mkt2: #125580;
  --ipx-mkt2-dark: #0c3a58;
  --ipx-mute: #67707c;
  --ipx-navy: #39618e;
  --ipx-orange: #f0ad4e;
  --ipx-orange-dark: #eea236;
  --ipx-paper: #ffffff;
  --ipx-radius: 14px;
  --ipx-wash: #f5f8fc;
  --line: #dfe7ef;  /* redefined in source: #e3e9f1 -> #dfe7ef -- kept last (actual rendered value) */
  --maxw: 1180px;
  --mut: #5a6b7d;  /* redefined in source: #777 -> #5a6b7d -- kept last (actual rendered value) */
  --navy: #0e2a47;
  --navy-2: #123564;
  --orange: #f0ad4e;
  --orange-d: #ec971f;
  --rad: 14px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(11,37,69,.08);
  --shadow-lg: 0 12px 40px rgba(11,37,69,.14);
  --steel: #39618e;
  --teal: #12B5A6;
  --teal-tint: #E7F9F6;
  --text: #1B2430;
  --text-muted: #5B6675;
  --wash: #f5f8fc;
}

/* ============================================================
   BASE STYLES (no media query)
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*,*::before,*::after {
  box-sizing: border-box;
}

.badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.band {
  background: linear-gradient(135deg, var(--steel) 0%, #2c4c73 55%, #1f3a5c 100%);
  color: #fff;
  border-radius: 12px;
  padding: 42px 46px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 30px;
  align-items: center;
}

.band .big {
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.band .big small {
  font-size: 16px;
  font-weight: 600;
  color: #bcd0e8;
}

.band .right {
  text-align: center;
}

.band .right .oms-btn {
  margin-top: 16px;
}

.band h2 {
  color: #fff;
}

.band p {
  color: #d7e3f2;
  font-size: 16px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-blue {
  background: var(--azure);
  border-color: #0072e6;
  color: #fff;
}

.btn-blue:hover {
  background: #0068d6;
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--steel);
}

.btn-ghost:hover {
  border-color: var(--azure);
  color: var(--azure);
}

.btn-green {
  background: var(--green);
  border-color: #4cae4c;
  color: #fff;
}

.btn-green:hover {
  background: var(--green-d);
}

.btn-orange {
  background: var(--orange);
  border-color: #eea236;
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-d);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(30,111,217,.35);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn:hover {
  transform: translateY(-1px);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 2px 6px rgba(34,52,77,.04);
}

.card .ic {
  margin-bottom: 14px;
}

.card p {
  color: #54627a;
  font-size: 15px;
}

.center {
  text-align: center;
}

.center .sub {
  margin: 0 auto;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: #3c4a61;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azure);
  background: rgba(0,127,255,.08);
  border: 1px solid rgba(0,127,255,.18);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.faq {
  max-width: 860px;
  margin: 34px auto 0;
}

.figure {
  margin: 0;
}

.figure svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(34,52,77,.10));
}

/* final cta */
.final {
  background: linear-gradient(180deg, #eef4fb, #fff);
}

.final .inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.flogo {
  height: 40px;
  margin-bottom: 14px;
}

.flow {
  stroke-dasharray: 6 7;
  animation: flow 1.6s linear infinite;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 36px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.hero {
  background: linear-gradient(180deg, #fff 0%, #eef4fb 100%);
  border-bottom: 1px solid var(--line);
  padding-top: 24px;
}

.hero .lede {
  margin: 18px 0 24px;
  font-size: 17.5px;
  color: #44526a;
  max-width: 56ch;
}

.hero .lede b {
  color: #22344d;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 58px;
}

.hero h1 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.16;
  font-weight: 700;
  color: #22344d;
  letter-spacing: -.5px;
}

.ipx a {
  color: var(--ipx-blue);
  text-decoration: none;
}

.ipx a:focus-visible,.ipx-btn:focus-visible {
  outline: 3px solid var(--ipx-mkt);
  outline-offset: 2px;
  border-radius: 4px;
}

.ipx a:hover {
  text-decoration: underline;
}

.ipx h1 {
  margin: 0 0 12px;
  color: var(--ipx-ink);
  font-weight: 700;
  font-size: clamp(28px,4.4vw,42px);
  line-height: 1.16;
  letter-spacing: -.02em;
}

.ipx h1 em {
  font-style: normal;
  color: var(--ipx-mkt-dark);
}

.ipx h2.ipx-h2 {
  margin: 0 0 10px;
  color: var(--ipx-navy);
  font-weight: 700;
  font-size: clamp(24px,3vw,30px);
  line-height: 1.25;
  letter-spacing: -.01em;
}

.ipx h3.ipx-q {
  margin: 0 0 8px;
  color: var(--ipx-ink);
  font-size: 19px;
  line-height: 1.4;
}

.ipx h3.ipx-q a.ipx-anchor {
  color: inherit;
}

.ipx h3.ipx-q a.ipx-anchor:hover {
  text-decoration: none;
  color: var(--ipx-mkt-dark);
}

.ipx-a li {
  margin: 0 0 6px;
}

.ipx-a p {
  margin: 0 0 12px;
  max-width: 78ch;
}

.ipx-a ul,.ipx-a ol {
  margin: 0 0 12px;
  padding-left: 22px;
  max-width: 74ch;
}

.ipx-badge {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  padding: 12px 14px;
}

.ipx-badge b {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.ipx-badge small {
  color: var(--mut);
}

.ipx-badge-usa {
  background-image: url('https://infiplex.com/utilities/file_library/img/knowledgebase/badge-usa-flag-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ipx-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin: 6px 0 26px;
}

.ipx-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.ipx-badges b {
  display: block;
  color: var(--ipx-ink);
  font-size: 14px;
}

.ipx-badges li {
  background: #fff;
  border: 1px solid var(--ipx-line);
  border-left: 4px solid var(--ipx-mkt);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13.5px;
  line-height: 1.35;
  box-shadow: 0 1px 2px rgba(14,42,71,.05);
}

.ipx-band {
  margin: 44px 0 0;
  background: linear-gradient(120deg,var(--ipx-navy),var(--ipx-ink));
  color: #fff;
  border-radius: var(--ipx-radius);
}

.ipx-band .ipx-btn {
  background: #fff;
  color: var(--ipx-navy)!important;
  border-color: #fff;
}

.ipx-band .ipx-btn-band-secondary {
  background: transparent;
  color: #fff!important;
  border-color: rgba(255,255,255,.55);
}

.ipx-band .ipx-btn-band-secondary:hover {
  border-color: #fff;
}

.ipx-band .ipx-cta-row {
  margin: 0;
}

.ipx-band h2 {
  margin: 0 0 6px;
  font-size: 24px;
  color: #fff;
}

.ipx-band p {
  margin: 0;
  color: #dbe7f4;
  max-width: 56ch;
}

.ipx-band-in {
  padding: 34px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ipx-body {
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-btn` found in the source — kept all below, review before shipping */
.ipx-btn-v1 {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 9px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.ipx-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  padding: 12px 24px;
  border: 1px solid transparent;
}

.ipx-btn-ghost {
  border-color: var(--ipx-line);
  color: var(--ipx-navy)!important;
  background: #fff;
}

.ipx-btn-ghost:hover {
  border-color: var(--ipx-navy);
  text-decoration: none;
}

.ipx-btn-p {
  background: var(--green);
  color: #fff;
}

.ipx-btn-p:hover {
  background: var(--green-d);
  color: #fff;
  text-decoration: none;
}

.ipx-btn-primary {
  background: var(--ipx-orange);
  color: #fff!important;
  border-color: var(--ipx-orange-dark);
}

.ipx-btn-primary:hover {
  filter: brightness(1.06);
  text-decoration: none;
}

.ipx-btn-s {
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.ipx-btn-s:hover {
  background: #eaf2fb;
  text-decoration: none;
}

.ipx-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .15s, transform .15s;
}

.ipx-card b {
  color: var(--navy);
  font-size: 14px;
  text-align: center;
}

.ipx-card img {
  width: 100%;
  max-width: 170px;
  height: auto;
  align-self: center;
}

.ipx-card small {
  color: var(--mut);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: 11px;
}

.ipx-card:hover {
  box-shadow: 0 6px 18px rgba(14,42,71,.12);
  transform: translateY(-2px);
}

.ipx-crumbs {
  font-size: 13.5px;
  color: var(--ipx-mute);
  padding: 14px 0 0;
}

.ipx-crumbs li+li::before {
  content: "\203A";
  margin-right: 6px;
  color: #aab4c0;
}

.ipx-crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.ipx-cta-band {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: var(--rad);
  padding: 30px 26px;
  margin: 34px 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ipx-cta-band h2 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 21px;
}

.ipx-cta-band p {
  margin: 0;
  color: #d7e6f6;
  max-width: 60ch;
}

.ipx-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 6px 0 22px;
}

.ipx-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 4px 0 20px;
}

/* diagram */
.ipx-diagram {
  background: #fff;
  border: 1px solid var(--ipx-line);
  border-radius: var(--ipx-radius);
  padding: 18px 18px 8px;
  margin: 18px 0 6px;
  box-shadow: 0 2px 10px rgba(14,42,71,.06);
}

.ipx-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}

.ipx-disc {
  font-size: 12.5px;
  color: #7d8792;
}

.ipx-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 18px 0 8px;
}

.ipx-duo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ecosystem */
.ipx-eco {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin: 16px 0 8px;
  padding: 0;
  list-style: none;
}

.ipx-eco b {
  display: block;
  color: var(--ipx-ink);
  margin-bottom: 3px;
}

.ipx-eco li {
  background: var(--ipx-wash);
  border: 1px solid var(--ipx-line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14.5px;
}

.ipx-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ipx-navy);
  margin: 0 0 6px;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-faq` found in the source — kept all below, review before shipping */
.ipx-faq-1 {
  margin: 10px 0 6px;
}

.ipx-faq {
  border-top: 1px solid var(--ipx-line);
  margin-top: 18px;
}

.ipx-fcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 4px solid var(--blue);
}

.ipx-fcard h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
}

.ipx-fcard img {
  max-width: 150px;
  height: auto;
  align-self: flex-start;
}

.ipx-fcard p {
  margin: 0;
  color: #33475c;
  font-size: 14px;
  flex: 1;
}

.ipx-feat {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin: 8px 0 8px;
}

.ipx-feats {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.ipx-feats h3 {
  margin: 0 0 6px;
  color: var(--ipx-navy);
  font-weight: 600;
  font-size: 16.8px;
}

.ipx-feats li {
  background: var(--ipx-paper);
  border: 1px solid var(--ipx-line);
  border-radius: 12px;
  padding: 16px 18px;
  border-top: 4px solid var(--ipx-mkt-dark);
}

.ipx-feats p {
  margin: 0;
  color: var(--ipx-body);
  font-size: 15.2px;
}

.ipx-figcap {
  font-size: 13px;
  color: var(--ipx-mute);
  margin: 10px 4px 8px;
}

.ipx-filterbar {
  position: sticky;
  top: 0;
  background: var(--bg);
  padding: 14px 0 10px;
  z-index: 5;
  border-bottom: 1px solid var(--line);
}

.ipx-flinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}

.ipx-flinks a {
  text-decoration: none;
  color: var(--blue);
}

.ipx-flinks a:hover {
  text-decoration: underline;
}

.ipx-glance {
  background: var(--ipx-navy);
  color: #e8f0f9;
  border-radius: var(--ipx-radius);
  padding: 22px 24px 14px;
  box-shadow: 0 10px 26px rgba(14,42,71,.22);
}

.ipx-glance h2 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #fff;
  letter-spacing: .02em;
}

.ipx-glance p.ipx-gsub {
  margin: 0 0 12px;
  font-size: 12.5px;
  color: #9db8d4;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.ipx-glance-k {
  color: #a9c2dd;
  font-size: 13.5px;
}

.ipx-glance-list {
  margin: 0;
}

.ipx-glance-logo {
  display: block;
  max-width: 132px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0 0 16px;
}

.ipx-glance-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.ipx-glance-v {
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-size: 13.5px;
  text-align: right;
}

.ipx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 13px;
  margin: 18px 0 6px;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-hero` found in the source — kept all below, review before shipping */
.ipx-hero {
  padding: 34px 0 8px;
}

.ipx-hero-2 {
  padding: 26px 0 8px;
  border-bottom: 4px solid var(--ipx-mkt);
  background: linear-gradient(180deg,#fff 0%,var(--ipx-wash) 100%);
}

.ipx-hero-diagram {
  margin: 0;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
}

.ipx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(260px,1fr);
  gap: 34px;
  align-items: start;
}

.ipx-hero-media {
  width: 100%;
  border-radius: var(--rad);
  border: 1px solid var(--line);
  margin: 6px 0 8px;
  display: block;
}

.ipx-hero-photo {
  margin: 0;
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
}

.ipx-hero-split {
  align-items: stretch;
  margin: 10px 0 4px;
}

.ipx-hero:first-child {
  padding-top: 4px;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-kicker` found in the source — kept all below, review before shipping */
.ipx-kicker {
  display: inline-block;
  background: #e3edf8;
  color: var(--blue);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.ipx-kicker2 {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ipx-mkt-dark);
  border: 1px solid var(--ipx-mkt);
  border-radius: 999px;
  padding: 4px 12px;
  background: #fff;
  margin: 0 0 14px;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-lede` found in the source — kept all below, review before shipping */
.ipx-lede {
  font-size: 17.5px;
  max-width: 70ch;
  color: #33475c;
  margin: 0 0 18px;
}

.ipx-lede2 {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ipx-body);
  max-width: 62ch;
  margin: 0 0 18px;
}

/* bridge hub: partner logo grid */
.ipx-logos {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin: 16px 0 8px;
  padding: 0;
  list-style: none;
}

.ipx-logos a {
  display: block;
  color: var(--ipx-ink);
  font-weight: 600;
  font-size: 13.5px;
  padding: 12px 10px 12px;
  text-decoration: none;
}

.ipx-logos a:hover {
  color: var(--ipx-mkt-dark);
}

.ipx-logos a:hover span {
  text-decoration: underline;
}

.ipx-logos img {
  display: block;
  width: 100%;
  max-width: 132px;
  height: auto;
  margin: 0 auto 8px;
}

.ipx-logos li {
  background: #fff;
  border: 1px solid var(--ipx-line);
  border-radius: 10px;
  text-align: center;
}

.ipx-logos.ipx-logos-3 {
  grid-template-columns: repeat(3,1fr);
}

.ipx-none {
  display: none;
  color: var(--mut);
  padding: 26px 0;
  text-align: center;
  font-size: 15px;
}

.ipx-notes {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 24px 26px;
  margin: 14px 0;
}

.ipx-notes h3 {
  margin: 18px 0 6px;
  color: var(--navy);
  font-size: 15px;
}

.ipx-notes h3:first-child {
  margin-top: 0;
}

.ipx-notes p {
  margin: 0 0 4px;
  color: #5a6b7d;
  font-size: 13.5px;
}

.ipx-price-card.popular {
  border: 2px solid var(--green);
}

/* --- Pricing-specific components --- */
.ipx-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 12px 0 6px;
}

.ipx-price-grid .ipx-pricing-card {
  margin: 0;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-pricing-body` found in the source — kept all below, review before shipping */
.ipx-pricing-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ipx-pricing-body2 {
  padding: 22px 26px;
}

.ipx-pricing-body .links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.ipx-pricing-body .links a {
  color: var(--blue);
  text-decoration: none;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-pricing-body li` found in the source — kept all below, review before shipping */
.ipx-pricing-body li {
  margin: 0 0 8px;
  color: #33475c;
  font-size: 14px;
}

.ipx-pricing-body2 li {
  margin: 0 0 8px;
  color: #33475c;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-pricing-body ul` found in the source — kept all below, review before shipping */
.ipx-pricing-body ul {
  margin: 0 0 16px;
  padding: 0 0 0 20px;
  flex: 1;
}

.ipx-pricing-body2 ul {
  margin: 0 0 18px;
  padding: 0 0 0 20px;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-pricing-card` found in the source — kept all below, review before shipping */
.ipx-pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ipx-pricing-card2 {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
  margin: 10px 0 8px;
}

.ipx-pricing-foot {
  color: var(--mut);
  font-size: 12.5px;
  margin-top: 10px;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-pricing-head` found in the source — kept all below, review before shipping */
.ipx-pricing-head {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  color: #fff;
  padding: 22px 24px;
}

.ipx-pricing-head2 {
  background: linear-gradient(120deg,var(--navy),var(--blue));
  color: #fff;
  padding: 22px 26px;
}

.ipx-pricing-head .ipx-kicker {
  background: rgba(255,255,255,.18);
  color: #fff;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-pricing-head .price` found in the source — kept all below, review before shipping */
.ipx-pricing-head .price {
  font-size: 34px;
  font-weight: 700;
  margin: 6px 0 0;
}

.ipx-pricing-head .price2 {
  font-size: 38px;
  font-weight: 700;
  margin: 6px 0 0;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-pricing-head .price span` found in the source — kept all below, review before shipping */
.ipx-pricing-head .price span {
  font-size: 14px;
  font-weight: 400;
  color: #d7e6f6;
}

.ipx-pricing-head .price2 span {
  font-size: 15px;
  font-weight: 400;
  color: #d7e6f6;
}

.ipx-prog-fact {
  margin-top: auto;
  font-size: 13.5px;
  background: var(--ipx-wash);
  border: 1px solid var(--ipx-line);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--ipx-ink);
}

.ipx-prog-fact b {
  color: var(--ipx-mkt-dark);
}

.ipx-prog-for {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--ipx-mute);
  letter-spacing: .02em;
}

.ipx-prog-for b {
  color: var(--ipx-mkt-dark);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12px;
}

.ipx-prog-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
}

.ipx-prog-logo {
  display: block;
  max-width: 150px;
  height: auto;
  background: var(--ipx-wash);
  border: 1px solid var(--ipx-line);
  border-radius: 10px;
  padding: 8px 12px;
  margin: 0 0 14px;
}

/* bridge hub: program router cards */
.ipx-progs {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin: 18px 0 8px;
  padding: 0;
  list-style: none;
}

.ipx-progs h3 {
  margin: 0 0 4px;
  color: var(--ipx-ink);
  font-size: 19px;
}

.ipx-progs p {
  margin: 0 0 12px;
  font-size: 15px;
}

.ipx-progs>li {
  background: #fff;
  border: 1px solid var(--ipx-line);
  border-top: 4px solid var(--ipx-mkt);
  border-radius: var(--ipx-radius);
  padding: 20px 22px 18px;
  box-shadow: 0 1px 2px rgba(14,42,71,.05);
  display: flex;
  flex-direction: column;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-qa` found in the source — kept all below, review before shipping */
.ipx-qa {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px 20px 14px;
  margin: 0 0 12px;
}

.ipx-qa2 {
  padding: 22px 0 6px;
  border-bottom: 1px solid var(--ipx-line);
}

.ipx-qa a {
  color: var(--blue);
}

.ipx-qa h3 {
  color: var(--navy);
  font-size: 16px;
  margin: 14px 0 6px;
}

.ipx-qa p {
  margin: 8px 0;
  color: #33475c;
}

.ipx-search {
  width: 100%;
  max-width: 460px;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 10px;
}

.ipx-search:focus {
  outline: none;
  border-color: var(--blue);
}

.ipx-sec-intro {
  max-width: 74ch;
  margin: 0 0 8px;
}

.ipx-section {
  padding: 40px 0 8px;
}

.ipx-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
  margin: 6px 0;
}

.ipx-split img {
  width: 100%;
  height: auto;
  display: block;
}

.ipx-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 20px 18px 18px;
  position: relative;
  counter-increment: ipxstep;
}

.ipx-step h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 16px;
}

.ipx-step p {
  margin: 0;
  color: #33475c;
  font-size: 14px;
}

.ipx-step:before {
  content: counter(ipxstep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}

/* --- New components for this page, built on the same tokens --- */
.ipx-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 16px;
  margin: 8px 0 8px;
  counter-reset: ipxstep;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-sub` found in the source — kept all below, review before shipping */
.ipx-sub {
  color: var(--mut);
  max-width: 75ch;
  margin: 0 0 18px;
}

.ipx-sub2 {
  color: var(--mut);
  max-width: 75ch;
  margin: 0 0 14px;
}

.ipx-sub:last-of-type {
  margin-bottom: 18px;
}

.ipx-tab {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.ipx-tab.ipx-on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.ipx-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ipx-tag-popular {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .6px;
  z-index: 2;
}

.ipx-teaser {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  display: grid;
  gap: 10px;
}

.ipx-teaser a {
  display: block;
  padding: 13px 16px;
  color: var(--ipx-navy);
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}

.ipx-teaser a::before {
  content: "Q:\00a0";
  color: var(--ipx-mkt-dark);
  font-weight: 800;
}

.ipx-teaser a:hover {
  color: var(--ipx-mkt-dark);
}

.ipx-teaser li {
  background: var(--ipx-paper);
  border: 1px solid var(--ipx-line);
  border-radius: 10px;
}

/* toc */
.ipx-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 4px;
  padding: 0;
  list-style: none;
}

.ipx-toc .n {
  background: var(--ipx-mkt-dark);
  color: #fff;
  border-radius: 999px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.ipx-toc a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ipx-wash);
  border: 1px solid var(--ipx-line);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ipx-navy);
}

.ipx-toc a:hover {
  border-color: var(--ipx-mkt);
  text-decoration: none;
}

.ipx-trustrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin: 18px 0 10px;
}

.ipx-trustrow img {
  max-height: 64px;
  width: auto;
}

.ipx-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin: 6px 0 4px;
}

/* ⚠ CONFLICT: 2 differing versions of `.ipx-wrap` found in the source — kept all below, review before shipping */
.ipx-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.ipx-wrap2 {
  max-width: var(--ipx-max);
  margin: 0 auto;
  padding: 0 22px;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.oms-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14px;
  color: #22344d;
  box-shadow: 0 2px 6px rgba(34,52,77,.05);
}

/* buttons (bootstrap-flavored, matching current site) */
.oms-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .15s, transform .15s;
}

.oms-btn .fa {
  margin-left: 6px;
}

.oms-btn:hover {
  transform: translateY(-1px);
}

.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.partner-card .links {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.partner-card .links a {
  color: var(--blue);
  text-decoration: none;
}

.partner-card .price {
  font-weight: 700;
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 12px;
}

.partner-card h3 {
  font-size: 17px;
  margin-bottom: 2px;
}

.partner-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ---------- Partner program cards ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-featured {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.plan-featured .links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.plan-featured .plan-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin-bottom: 16px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.plan-featured .price {
  font-weight: 700;
  color: var(--navy);
  font-size: 26px;
  margin-bottom: 12px;
}

.plan-featured .price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-featured .ribbon {
  position: absolute;
  top: 14px;
  right: -34px;
  transform: rotate(45deg);
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 40px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.plan-featured h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.plan-featured p.desc {
  color: var(--text-muted);
  font-size: 15px;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* ---------- Featured plan cards ---------- */
.plan-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-featured.is-highlight {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-lg);
}

.pulse {
  animation: pulse 2.4s ease-in-out infinite;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--steel);
  color: #fff;
  padding: 8px 14px;
  z-index: 99;
}

.skip:focus {
  left: 8px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split .sub {
  margin-bottom: 8px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat-card .desc {
  font-size: 14px;
  color: var(--text-muted);
}

.stat-card .num {
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 4px;
}

/* ---------- Stat badges ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sub {
  color: #54627a;
  max-width: 74ch;
  font-size: 16.5px;
}

.tab-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ---------- Tabs ---------- */
.tab-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.table-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ---------- Comparison table ---------- */
.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.top {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.top .wrap {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 74px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}

.trust {
  margin-top: 22px;
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--mut);
  font-weight: 600;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust svg {
  flex: none;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}

@keyframes flow {
  to {
    stroke-dashoffset: -26;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: .35;
  }
  50% {
    opacity: 1;
  }
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:focus-visible, summary:focus-visible, .oms-btn:focus-visible {
  outline: 3px solid var(--azure);
  outline-offset: 2px;
}

a:hover {
  text-decoration: underline;
}

blockquote.quote {
  border-left: 4px solid var(--azure);
  background: #fff;
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(34,52,77,.06);
  font-size: 16.5px;
  color: #3c4a61;
  max-width: 860px;
  margin: 30px auto 0;
}

blockquote.quote footer {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--steel);
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  background: #fff;
}

body.ipx {
  margin: 0;
  background: var(--ipx-paper);
}

body.ipx,.ipx-wrap {
  color: var(--ipx-body);
  font: 16px/1.65 "Open Sans",Arial,sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.ipx-body {
  margin: 0;
  background: var(--bg);
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

details .a {
  padding: 0 22px 20px;
  color: #54627a;
  font-size: 15.5px;
}

details[open] summary::after {
  transform: rotate(45deg);
}

footer.site {
  background: var(--foot);
  color: #c9c9c9;
  font-size: 14px;
}

footer.site .base {
  border-top: 1px solid #3a3a3a;
  background: var(--foot2);
  padding: 16px 0;
  font-size: 13px;
  color: #9a9a9a;
  display: block;
}

footer.site .base .wrap {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

footer.site .cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 54px 0 40px;
}

footer.site .post span {
  display: block;
  font-size: 12px;
  color: #8b8b8b;
}

footer.site a {
  color: #c9c9c9;
}

footer.site a:hover {
  color: #fff;
}

footer.site h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
  font-weight: 600;
}

footer.site li {
  margin-bottom: 8px;
}

footer.site ul {
  list-style: none;
}

h1.ipx-h1 {
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.2;
  margin: 14px 0 12px;
  color: var(--navy);
  font-weight: 700;
}

h1.ipx-h1 em {
  color: var(--blue);
  font-style: normal;
}

h2 {
  font-size: clamp(23px, 2.6vw, 30px);
  color: var(--steel);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}

h2.ipx-h2 {
  font-size: clamp(23px, 3vw, 30px);
  color: var(--navy);
  margin: 34px 0 8px;
  font-weight: 700;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  color: #22344d;
  margin-bottom: 8px;
}

/* ⚠ CONFLICT: 2 differing versions of `html` found in the source — kept all below, review before shipping */
html1 {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

img {
  max-width: 100%;
  height: auto;
}

nav.main {
  margin-left: auto;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}

nav.main a {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 11px;
  border-radius: 4px;
}

nav.main a.login {
  border: 1px solid var(--line);
  margin-left: 6px;
}

nav.main a:hover {
  background: var(--wash);
  text-decoration: none;
  color: var(--azure);
}

/* ⚠ CONFLICT: 2 differing versions of `section` found in the source — kept all below, review before shipping */
section1 {
  padding: 70px 0;
}

/* ---------- Section shells ---------- */
section {
  padding: 20px 0;
}

/* ⚠ CONFLICT: 2 differing versions of `section.alt` found in the source — kept all below, review before shipping */
section.alt {
  background: var(--wash);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

section2.alt {
  background: var(--bg-alt);
}

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #22344d;
  padding: 18px 52px 18px 22px;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 12px;
  font-size: 26px;
  color: var(--azure);
  font-weight: 300;
  transition: transform .2s;
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 640px;
}

table.compare tbody tr:last-child td {
  border-bottom: none;
}

table.compare tbody tr:nth-child(even) {
  background: var(--bg-alt);
}

table.compare td.cta {
  text-align: center;
}

table.compare td.yes {
  color: var(--teal);
  font-weight: 700;
}

table.compare td:first-child {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

table.compare th, table.compare td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}

table.compare thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

table.compare thead th:first-child {
  border-top-left-radius: var(--radius);
}

table.compare thead th:last-child {
  border-top-right-radius: var(--radius);
}

ul.checks {
  list-style: none;
  margin-top: 14px;
}

ul.checks li {
  padding: 7px 0 7px 32px;
  position: relative;
  color: #44526a;
  font-size: 15.5px;
}

ul.checks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 16px;
  width: 9px;
  height: 5px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
}

ul.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--azure);
  background: radial-gradient(circle at 35% 35%, #3f9cff, var(--azure));
}

/* ============================================================
   ACCESSIBILITY: prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion:no-preference) {
  .flow, .pulse {
    animation: none;
  }

  .oms-btn:hover {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }

}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

}

/* ============================================================
   MEDIA QUERY: max-width 960px
   ============================================================ */
@media (max-width:960px) {
  .band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .grid3 {
    grid-template-columns: 1fr 1fr;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  footer.site .cols {
    grid-template-columns: 1fr 1fr;
  }

}

/* ============================================================
   MEDIA QUERY: max-width 900px
   ============================================================ */
@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ipx-eco {
    grid-template-columns: repeat(2,1fr);
  }

  .ipx-logos {
    grid-template-columns: repeat(2,1fr);
  }

  .ipx-logos.ipx-logos-3 {
    grid-template-columns: repeat(2,1fr);
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .plan-featured-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ============================================================
   MEDIA QUERY: max-width 840px
   ============================================================ */
@media (max-width:840px) {
  .ipx-glance {
    order: -1;
  }

  .ipx-hero-grid {
    grid-template-columns: 1fr;
  }

}

/* ============================================================
   MEDIA QUERY: max-width 760px
   ============================================================ */
@media (max-width:760px) {
  .ipx-hero-photo {
    max-height: 220px;
  }

  .ipx-progs {
    grid-template-columns: 1fr;
  }

  .ipx-split {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 105px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .utility-bar .wrap {
    justify-content: center;
  }

}

/* ============================================================
   MEDIA QUERY: max-width 700px
   ============================================================ */
@media (max-width:700px) {
  .ipx-duo {
    grid-template-columns: 1fr;
  }

  .ipx-two-col {
    grid-template-columns: 1fr;
  }

}

/* ============================================================
   MEDIA QUERY: max-width 640px
   ============================================================ */
@media (max-width:640px) {
  .grid3, .grid2, footer.site .cols {
    grid-template-columns: 1fr;
  }

  .ipx-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  nav.main {
    gap: 0;
  }

  nav.main a {
    font-size: 13px;
    padding: 7px 8px;
  }

  section {
    padding: 52px 0;
  }

}

/* ============================================================
   MEDIA QUERY: max-width 520px
   ============================================================ */
@media (max-width:520px) {
  .ipx-eco {
    grid-template-columns: 1fr;
  }

}
