:root {
  --ar-landing-navy: #001f55;
  --ar-landing-blue: #0a4f9f;
  --ar-landing-ink: #06183d;
  --ar-landing-muted: #526175;
  --ar-landing-line: #dbe3ef;
  --ar-landing-soft: #f6f9fd;
  --ar-landing-card: #ffffff;
  --ar-landing-shadow: 0 16px 36px rgba(11, 32, 70, 0.11);
  --ar-landing-radius-lg: 18px;
  --ar-landing-radius-md: 12px;
  --ar-landing-inner: min(100% - 150px, 1280px);
}

.home {
  background: #ffffff;
}

.ar-landing {
  color: var(--ar-landing-ink);
  background: #ffffff;
  font-family: var(--platform-font-sans, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  overflow: hidden;
}

.ar-landing * {
  box-sizing: border-box;
}

.ar-landing a {
  color: inherit;
  text-decoration: none;
}

.ar-landing__symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ar-landing__inner {
  width: var(--ar-landing-inner);
  margin: 0 auto;
}

.ar-landing h1,
.ar-landing h2,
.ar-landing h3,
.ar-landing p {
  margin: 0;
}

.ar-landing h1,
.ar-landing h2 {
  color: #06163b;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.ar-landing-hero {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: #ffffff;
}

.ar-landing-hero::after {
  display: none;
}

.ar-landing-hero__media {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  height: clamp(390px, 36vw, 540px);
  overflow: hidden;
  z-index: 1;
  background: #eef3fa;
}

.ar-landing-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 68%, rgba(255,255,255,0.26) 100%);
}

.ar-landing-hero__slides {
  position: absolute;
  inset: 0;
}

.ar-landing-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 66% center;
  opacity: 0;
  filter: saturate(0.96) contrast(1.02);
  transition: opacity .36s ease;
}

.ar-landing-hero__image.is-active {
  opacity: 1;
}

.ar-landing-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .22s ease, background-color .22s ease, opacity .22s ease;
}

.ar-landing-chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: solid currentColor;
  border-width: 0 3px 3px 0;
  font-size: 0;
  line-height: 0;
}

.ar-landing-chevron--prev {
  transform: rotate(135deg);
}

.ar-landing-chevron--next {
  transform: rotate(-45deg);
}

.ar-landing-hero__nav .ar-landing-chevron {
  position: absolute;
  left: 50%;
  top: 50%;
}

.ar-landing-hero__nav--prev .ar-landing-chevron {
  transform: translate(-50%, -50%) rotate(135deg);
}

.ar-landing-hero__nav--next .ar-landing-chevron {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ar-landing-hero__nav:hover:not(:disabled) {
  background: transparent;
  transform: translateY(-50%) scale(1.08);
}

.ar-landing-hero__nav:disabled {
  color: rgba(255,255,255,0.46);
  background: transparent;
  box-shadow: none;
  cursor: default;
  opacity: .62;
}

.ar-landing-hero__nav--prev {
  left: 22px;
}

.ar-landing-hero__nav--next {
  right: 22px;
}

.ar-landing-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 8px 20px rgba(0, 31, 85, 0.12);
  transform: translateX(-50%);
}

.ar-landing-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0,31,85,0.32);
  cursor: pointer;
  transition: width .22s ease, background-color .22s ease, opacity .22s ease;
}

.ar-landing-hero__dot.is-active {
  width: 22px;
  background: var(--ar-landing-navy);
}

.ar-landing-hero__dot:disabled {
  cursor: default;
  opacity: .82;
}

.ar-landing-hero__accessible-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.ar-landing-section-intro__actions,
.ar-landing-banner__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.ar-landing-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}

.ar-landing-button--primary {
  color: #ffffff !important;
  background: var(--ar-landing-navy);
  border: 1px solid var(--ar-landing-navy);
  box-shadow: 0 10px 22px rgba(0, 31, 85, 0.16);
}

.ar-landing-button--secondary {
  color: var(--ar-landing-navy) !important;
  background: rgba(255,255,255,0.74);
  border: 1px solid #9eabbf;
}

.ar-landing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 31, 85, 0.2);
}

.ar-landing-category {
  min-width: 160px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #e0e6ef;
  border-radius: 12px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--ar-landing-shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ar-landing-categories {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 850px;
  margin-top: -84px;
  margin-bottom: 34px;
}

.ar-landing-category:hover {
  transform: translateY(-5px);
  border-color: #c8d4e5;
  box-shadow: 0 22px 44px rgba(11, 32, 70, 0.15);
}

.ar-landing-category__image {
  width: 78px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ar-landing-category__image img {
  max-width: 78px;
  max-height: 62px;
  object-fit: contain;
}

.ar-landing-category__title {
  color: var(--ar-landing-ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.ar-landing-arrow,
.ar-landing-inline-arrow {
  width: var(--service-icon-svg, 18px);
  height: var(--service-icon-svg, 18px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex: 0 0 auto;
  font-size: 0;
  line-height: 0;
}

.ar-landing-arrow::before,
.ar-landing-inline-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
}

.ar-landing-arrow {
  color: var(--ar-landing-navy);
}

.ar-landing-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  min-height: 62px;
  border-bottom: 1px solid var(--ar-landing-line);
  margin-bottom: 20px;
}

.ar-landing-trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #273a58;
  font-size: 12px;
  font-weight: 700;
}

.ar-landing-trust svg,
.ar-landing-feature-list svg,
.ar-landing-pillar svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--ar-landing-navy);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.ar-landing-trust svg {
  width: 23px;
  height: 23px;
}

.ar-landing-market {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.ar-landing-eyebrow {
  color: var(--ar-landing-blue);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}

.ar-landing-section-intro h2,
.ar-landing-row-header h2,
.ar-landing-banner h2,
.ar-landing-dealer-banner h2 {
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.02;
  margin-top: 12px;
}

.ar-landing-section-intro > p:not(.ar-landing-eyebrow),
.ar-landing-banner__copy > p:not(.ar-landing-eyebrow),
.ar-landing-dealer-banner__copy > p:not(.ar-landing-eyebrow) {
  margin-top: 22px;
  color: #455570;
  font-size: 14px;
  line-height: 1.72;
}

.ar-landing-section-intro__actions {
  margin-top: 28px;
  gap: 28px;
}

.ar-landing-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #064a9b !important;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: gap .22s ease, color .22s ease;
}

.ar-landing-text-link:hover {
  gap: 12px;
  color: var(--ar-landing-navy) !important;
}


.ar-landing-market__showcase {
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
}

.ar-landing-market__showcase::before {
  display: none;
}

.ar-landing-tabs {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(9, minmax(68px, 1fr));
  border-bottom: 1px solid var(--ar-landing-line);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  margin-bottom: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-inline: contain;
  overscroll-behavior-x: contain;
  contain: layout paint;
}


.ar-landing-tabs::-webkit-scrollbar,
.ar-landing-categories::-webkit-scrollbar,
.ar-landing-card-row::-webkit-scrollbar,
.ar-landing-diamonds__track::-webkit-scrollbar {
  display: none;
}

.ar-landing-tabs__item {
  position: relative;
  min-height: 44px;
  display: flex;
  scroll-snap-align: center;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 0;
  color: #233650;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  background: transparent;
  cursor: pointer;
}

.ar-landing-tabs__item:focus,
.ar-landing-tabs__item:active,
.ar-landing-tabs__item:focus-visible {
  outline: none;
  box-shadow: none;
}

.ar-landing-tabs__item::-moz-focus-inner {
  border: 0;
}

.ar-landing-tabs.is-dragging {
  cursor: grabbing;
}

.ar-landing-tabs.is-dragging .ar-landing-tabs__item {
  pointer-events: none;
}

.ar-landing-tabs__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: transparent;
}

.ar-landing-tabs__item.is-active::after {
  background: #064a9b;
}

.ar-landing-tabs__item.is-active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.5px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #064a9b;
  transform: translateX(-50%);
}

.ar-landing-diamonds,
.ar-landing-card-carousel {
  position: relative;
  padding: 22px 34px 0;
}

.ar-landing-diamonds__track,
.ar-landing-card-row {
  min-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.ar-landing-diamond-panel {
  display: none;
  gap: 10px;
  overflow-x: auto;
  padding-top: 16px;
  padding-bottom: 18px;
  margin-top: -16px;
  margin-bottom: -18px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.ar-landing-diamond-panel::-webkit-scrollbar {
  display: none;
}

.ar-landing-diamond-panel.is-dragging,
.ar-landing-card-row.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.ar-landing-diamond-panel,
.ar-landing-card-row {
  cursor: grab;
}

.ar-landing-diamond-panel a,
.ar-landing-card-row a {
  -webkit-user-drag: none;
  user-select: none;
}

.ar-landing-diamond-panel.is-active {
  display: flex;
}

.ar-landing-diamonds__track {
  overflow: visible;
}

.ar-landing-diamond-card {
  flex: 0 0 clamp(178px, 21vw, 210px);
}

.ar-landing-diamond-card--featured {
  flex-basis: clamp(208px, 24vw, 240px);
}

.ar-landing-diamond-card,
.ar-landing-product-card {
  border: 1px solid #dfe6f1;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(11, 32, 70, 0.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ar-landing-diamond-card:hover,
.ar-landing-product-card:hover {
  transform: translateY(-4px);
  border-color: #c7d4e6;
  box-shadow: 0 18px 34px rgba(11, 32, 70, 0.12);
}

.ar-landing-diamond-card {
  min-height: 276px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  overflow: hidden;
  position: relative;
  color: var(--ar-landing-ink);
  border-radius: 26px;
  border-color: rgba(11, 78, 162, 0.12);
  box-shadow: 0 14px 34px rgba(18, 51, 88, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,253,255,0.98));
}

.ar-landing-diamond-card--featured {
  min-height: 292px;
  color: #ffffff;
  border: 0;
  background: radial-gradient(circle at 72% 20%, rgba(255,255,255,0.35), transparent 20%), linear-gradient(135deg, #092242, #0b4ea2 65%, #257ad4);
  box-shadow: 0 24px 58px rgba(11, 78, 162, 0.24);
}

.ar-landing-diamond-card--featured::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -82px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
}

.ar-landing-diamond-card__top,
.ar-landing-diamond-card__visual,
.ar-landing-diamond-card__title,
.ar-landing-diamond-card__spec,
.ar-landing-diamond-card__metrics,
.ar-landing-diamond-card__price-row {
  position: relative;
  z-index: 1;
}

.ar-landing-diamond-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.ar-landing-diamond-card__label {
  color: var(--ar-landing-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ar-landing-diamond-card--featured .ar-landing-diamond-card__label {
  color: rgba(255,255,255,0.82);
}

.ar-landing-diamond-card__badge {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(11, 78, 162, 0.08);
  color: var(--ar-landing-navy);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.ar-landing-diamond-card--featured .ar-landing-diamond-card__badge {
  background: rgba(255,255,255,0.16);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
}

.ar-landing-diamond-card__visual {
  min-height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.ar-landing-diamond-card img {
  width: 72px;
  height: 68px;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 16px 22px rgba(11, 78, 162, 0.16));
}

.ar-landing-diamond-card--featured img {
  width: 86px;
  height: 82px;
  filter: drop-shadow(0 24px 34px rgba(2, 18, 40, 0.32));
}

.ar-landing-diamond-card strong,
.ar-landing-product-card strong {
  color: #0c2244;
  font-size: 13px;
  font-weight: 900;
}

.ar-landing-diamond-card__title {
  color: #102033;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.ar-landing-diamond-card--featured .ar-landing-diamond-card__title {
  color: #ffffff;
  font-size: 20px;
}

.ar-landing-diamond-card span,
.ar-landing-product-card span {
  color: #243852;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
}

.ar-landing-diamond-card__spec {
  margin-top: 8px;
  color: #5f7088 !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

.ar-landing-diamond-card--featured .ar-landing-diamond-card__spec {
  color: rgba(255,255,255,0.78) !important;
}

.ar-landing-diamond-card__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 13px 0;
}

.ar-landing-diamond-card__metric {
  min-width: 0;
  display: block;
  padding: 7px;
  border-radius: 13px;
  background: #f5f9ff;
  border: 1px solid rgba(11, 78, 162, 0.10);
}

.ar-landing-diamond-card--featured .ar-landing-diamond-card__metric {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

.ar-landing-diamond-card__metric em,
.ar-landing-diamond-card__price em {
  display: block;
  margin-bottom: 4px;
  color: #7890a8;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ar-landing-diamond-card--featured .ar-landing-diamond-card__metric em,
.ar-landing-diamond-card--featured .ar-landing-diamond-card__price em {
  color: rgba(255,255,255,0.62);
}

.ar-landing-diamond-card b,
.ar-landing-product-card b {
  color: #06183d;
  font-size: 14px;
  font-weight: 900;
}

.ar-landing-diamond-card__metric b {
  display: block;
  overflow: hidden;
  color: #102033;
  font-size: 11px;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ar-landing-diamond-card--featured .ar-landing-diamond-card__metric b {
  color: #ffffff;
}

.ar-landing-diamond-card__price-row {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(11, 78, 162, 0.10);
}

.ar-landing-diamond-card--featured .ar-landing-diamond-card__price-row {
  border-top-color: rgba(255,255,255,0.18);
}

.ar-landing-diamond-card__price b {
  color: #102033;
  font-size: 18px;
  letter-spacing: -.035em;
}

.ar-landing-diamond-card--featured .ar-landing-diamond-card__price b {
  color: #ffffff;
  font-size: 20px;
}

.ar-landing-diamond-card__view {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(11, 78, 162, 0.12);
  background: #ffffff;
  color: var(--ar-landing-blue) !important;
}

.ar-landing-diamond-card--featured .ar-landing-diamond-card__view {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.14);
  color: #ffffff !important;
}

.ar-landing-circle-nav {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ar-landing-navy);
  box-shadow: none;
  z-index: 5;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .22s ease, opacity .22s ease, color .22s ease;
}

.ar-landing-circle-nav--prev {
  left: 2px;
}

.ar-landing-circle-nav--next {
  right: 2px;
}

.ar-landing-circle-nav .ar-landing-chevron {
  width: 11px;
  height: 11px;
  border-width: 0 2.6px 2.6px 0;
}

.ar-landing-circle-nav:not(:disabled):hover {
  color: #003f8c;
  transform: translateY(-50%) scale(1.12);
}

.ar-landing-circle-nav:focus,
.ar-landing-circle-nav:active,
.ar-landing-circle-nav:focus-visible {
  outline: none;
  box-shadow: none;
}

.ar-landing-circle-nav::-moz-focus-inner {
  border: 0;
}

.ar-landing-circle-nav:disabled {
  color: rgba(0, 31, 85, 0.24);
  background: transparent;
  box-shadow: none;
  cursor: default;
  opacity: .72;
}

.ar-landing-market__all {
  margin-top: 20px;
}


.ar-landing-dealer-banner {
  display: grid;
  grid-template-columns: minmax(250px, 292px) minmax(420px, 520px) minmax(300px, 330px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 2.6vw, 36px);
  min-height: 274px;
  margin-bottom: 32px;
  padding: 22px 38px 22px 30px;
  overflow: hidden;
  border: 1px solid #dce6f2;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fbff 48%, #f4f8fd 100%);
  box-shadow: 0 16px 38px rgba(11, 32, 70, 0.075);
}

.ar-landing-dealer-banner__copy {
  min-width: 0;
  align-self: center;
  padding-left: 4px;
}

.ar-landing-dealer-banner h2 {
  max-width: 330px;
  font-size: clamp(28px, 1.82vw, 34px);
  line-height: 1.04;
  letter-spacing: -.025em;
}

.ar-landing-dealer-banner__copy > p:not(.ar-landing-eyebrow) {
  max-width: 286px;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.54;
}

.ar-landing-dealer-banner__actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.ar-landing-dealer-banner__actions .ar-landing-button {
  min-height: 34px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: .01em;
  box-shadow: 0 10px 22px rgba(0, 69, 148, 0.18);
}

.home .ar-landing-dealer-banner__actions .ar-landing-button.ar-ds-button {
  min-height: 34px;
  border-radius: 6px;
  padding-inline: 24px;
}

.ar-landing-dealer-banner__visual {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ar-landing-dealer-banner__visual img {
  display: block;
  width: min(100%, 520px);
  height: clamp(292px, 18.4vw, 318px);
  aspect-ratio: 760 / 390;
  object-fit: contain;
  object-position: center center;
  border-radius: 16px;
}

.ar-landing-dealer-benefits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  width: 100%;
  max-width: 330px;
  padding-left: 0;
  padding-right: 0;
}

.ar-landing-dealer-benefits__item {
  display: grid;
  grid-template-columns: 33px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: #1a2c49;
  min-width: 0;
}

.ar-landing-dealer-benefits__item > span:last-child {
  min-width: 0;
}

.ar-landing-dealer-benefits__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #0b4fa3;
  background: transparent;
}

.ar-landing-dealer-benefits__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.72;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ar-landing-dealer-benefits__item strong,
.ar-landing-dealer-benefits__item em {
  display: block;
  font-style: normal;
}

.ar-landing-dealer-benefits__item strong {
  color: #10213b;
  font-size: 13.5px;
  font-weight: 900;
  line-height: 1.16;
  overflow-wrap: normal;
}

.ar-landing-dealer-benefits__item em {
  margin-top: 5px;
  color: #455570;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: normal;
}

.ar-landing-banner {
  height: var(--card-height, clamp(176px, 11.5vw, 216px));
  min-height: 0;
  display: grid;
  /* The supplied widths are treated as proportional design weights so the row never overflows. */
  grid-template-columns: minmax(0, 35fr) minmax(0, 43fr) minmax(0, 31fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #d9e4f2;
  border-radius: var(--card-radius, 14px);
  background: linear-gradient(90deg, #fbfdff 0%, #eef5fe 100%);
  box-shadow: 0 var(--card-shadow-y, 14px) var(--card-shadow-blur, 36px) rgba(11, 32, 70, 0.075);
}

.ar-landing-banner--services {
  --card-width: var(--ar-landing-inner);
  --card-max-width: none;
  --card-height: 300px;
  --card-radius: 20px;
  --card-shadow-y: 31px;
  --card-shadow-blur: 49px;
  --copy-width: 35%;
  --services-width: 43%;
  --image-width: 31%;
  --copy-pad-x: 42px;
  --copy-pad-y: 28px;
  --title-size: 32px;
  --title-line: 1.04;
  --body-size: 15px;
  --body-width: 520px;
  --cta-width: 250px;
  --cta-height: 42px;
  --service-pad-x: 34px;
  --service-icon-size: 41px;
  --service-icon-svg: 36px;
  --service-title-size: 15px;
  --service-text-size: 12px;
  --service-gap: 16px;
  --image-position-x: 43%;
  --image-position-y: 37%;
  --image-scale: 1.18;
  --image-radius-right: 18px;
  --image-brightness: 1;
  --image-contrast: 1;
  --fade-width: 108px;
  --fade-start: rgba(238, 245, 254, 0.74);
  --fade-mid: rgba(238, 245, 254, 0.26);
  --fade-end: rgba(238, 245, 254, 0);
  width: var(--card-width);
  max-width: var(--card-max-width);
  margin-top: 30px;
  margin-right: auto;
  margin-bottom: 42px;
  margin-left: auto;
}

.ar-landing-banner__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--copy-pad-y, 18px) var(--copy-pad-x, 28px);
  background: linear-gradient(90deg, #fbfdff 0%, #f5f9ff 100%);
}

.ar-landing-banner__copy h2 {
  max-width: var(--body-width, 520px);
  font-size: var(--title-size, clamp(22px, 1.46vw, 29px));
  line-height: var(--title-line, 1.06);
  letter-spacing: -.028em;
}

.ar-landing-banner__copy > p:not(.ar-landing-eyebrow) {
  max-width: var(--body-width, 520px);
  margin-top: 10px;
  font-size: var(--body-size, 11.5px);
  line-height: 1.36;
}

.ar-landing-banner__copy .ar-landing-button {
  width: var(--cta-width, 190px);
  min-height: var(--cta-height, 32px);
  margin-top: 13px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 12px;
}

.ar-landing-banner__services {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  background: linear-gradient(180deg, rgba(239, 245, 253, 0.94) 0%, rgba(247, 250, 255, 0.98) 100%);
}

.ar-landing-banner__service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 11px var(--service-pad-x, 14px) 10px;
  text-align: center;
}

.ar-landing-banner__service-card:not(:last-child) {
  border-right: 1px solid #d6e1ef;
}

.ar-landing-banner__service-icon {
  width: var(--service-icon-size, 36px);
  height: var(--service-icon-size, 36px);
  display: inline-grid;
  place-items: center;
  margin-bottom: var(--service-gap, 8px);
  border: 1px solid rgba(32, 95, 206, 0.10);
  border-radius: 50%;
  background: rgba(7, 86, 188, 0.055);
  color: #0756bc;
}

.ar-landing-banner__service-icon svg {
  width: 18px;
  height: 18px;
}

.ar-landing-banner__service-card h3 {
  margin: 0 0 6px;
  color: #102c67;
  font-size: var(--service-title-size, clamp(12px, .78vw, 14px));
  line-height: 1.12;
  letter-spacing: -.02em;
}

.ar-landing-banner__service-card p {
  max-width: 142px;
  margin: 0;
  color: #34496d;
  font-size: var(--service-text-size, clamp(9.8px, .66vw, 11px));
  line-height: 1.32;
}

.ar-landing-banner__media {
  position: relative;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 var(--image-radius-right, 0) var(--image-radius-right, 0) 0;
  background: #dbe7f6;
}

.ar-landing-banner__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fade-width, clamp(64px, 16%, 118px));
  background: linear-gradient(90deg, var(--fade-start, rgba(238, 245, 254, 0.74)) 0%, var(--fade-mid, rgba(238, 245, 254, 0.26)) 50%, var(--fade-end, rgba(238, 245, 254, 0)) 100%);
  z-index: 1;
  pointer-events: none;
}

.ar-landing-banner__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position-x, 50%) var(--image-position-y, 50%);
  transform: scale(var(--image-scale, 1));
  transform-origin: var(--image-position-x, 50%) var(--image-position-y, 50%);
  filter: brightness(var(--image-brightness, 1)) contrast(var(--image-contrast, 1));
}

.ar-landing-row-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ar-landing-line);
}

.ar-landing-products {
  position: relative;
  margin-bottom: 38px;
}

.ar-landing-card-row {
  display: flex;
  gap: 13px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: 8px;
  padding-bottom: 4px;
  margin-top: -8px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.ar-landing-card-row::-webkit-scrollbar {
  display: none;
}

.ar-landing-card-carousel {
  padding-top: 18px;
}

.ar-landing-card-row--five .ar-landing-product-card {
  flex: 0 0 calc((100% - 52px) / 5);
}

.ar-landing-card-row--six .ar-landing-product-card {
  flex: 0 0 calc((100% - 65px) / 6);
}

.ar-landing-product-card {
  min-width: 0;
  overflow: hidden;
  color: var(--ar-landing-ink);
  scroll-snap-align: start;
}

.ar-landing-product-card img {
  width: 100%;
  height: 118px;
  display: block;
  object-fit: cover;
  background: #f6f7f9;
}

.ar-landing-product-card strong,
.ar-landing-product-card span,
.ar-landing-product-card b {
  display: block;
  padding: 0 12px;
}

.ar-landing-product-card strong {
  padding-top: 12px;
  padding-bottom: 12px;
}

.ar-landing-product-card--tool {
  min-height: 180px;
  padding-bottom: 14px;
}

.ar-landing-product-card--tool img {
  height: 112px;
  object-fit: cover;
}

.ar-landing-product-card--tool strong {
  min-height: 38px;
  padding-bottom: 0;
}

.ar-landing-product-card--tool span {
  min-height: 16px;
  margin-top: 2px;
}

.ar-landing-product-card--tool b {
  margin-top: 6px;
}

.ar-landing-card-carousel .ar-landing-circle-nav {
  top: calc(50% + 9px);
}


.ar-landing-enterprise {
  display: grid;
  gap: 26px;
  margin-top: 0;
  margin-bottom: 44px;
}

.ar-landing-platform-card {
  overflow: hidden;
  border: 1px solid #e2e9f3;
  border-radius: var(--ar-landing-radius-lg);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(11, 32, 70, 0.07);
}

.ar-landing-platform-card {
  min-height: 240px;
  display: grid;
  grid-template-columns: minmax(250px, .92fr) minmax(270px, 1.05fr) minmax(250px, .78fr) 190px;
  align-items: center;
  background: linear-gradient(90deg, #ffffff 0%, #fbfdff 58%, #f7faff 100%);
}

.ar-landing-platform-card__intro,
.ar-landing-platform-card__help {
  padding: 38px 34px;
}

.ar-landing-platform-card__intro h2,
.ar-landing-platform-card__help h3,
.ar-landing-theia-card__copy h2 {
  color: #06163b;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.ar-landing-platform-card__intro h2,
.ar-landing-platform-card__help h3 {
  font-size: clamp(26px, 2.05vw, 34px);
  line-height: 1.05;
}

.ar-landing-platform-card__intro p,
.ar-landing-platform-card__help p,
.ar-landing-theia-card__copy p {
  margin-top: 12px;
  color: #42536c;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.ar-landing-platform-card__intro .ar-landing-button {
  margin-top: 30px;
}

.ar-landing-button--outline {
  min-height: 44px;
  color: var(--ar-landing-navy) !important;
  border: 1px solid rgba(0, 31, 85, 0.24);
  background: #ffffff;
  box-shadow: none;
}

.ar-landing-button--outline:hover {
  border-color: rgba(0, 31, 85, 0.42);
  background: #f8fbff;
}

.ar-landing-platform-card__devices {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px 18px 0;
}

.ar-landing-platform-card__devices img {
  width: min(100%, 390px);
  height: auto;
  display: block;
}

.ar-landing-platform-card__help {
  position: relative;
  min-height: 100%;
  border-left: 1px solid #dce6f2;
}

.ar-landing-platform-card__help ul {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ar-landing-platform-card__help li {
  position: relative;
  padding-left: 28px;
  color: #102544;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.ar-landing-platform-card__help li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .24em;
  width: 12px;
  height: 7px;
  border: solid var(--ar-landing-navy);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.ar-landing-platform-card__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 32px;
}

.ar-landing-platform-card__photo img {
  width: 166px;
  height: 166px;
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 14px 24px rgba(11, 32, 70, .12));
}

/* Theia showcase rules are defined once in the locked-overflow block below. */

.ar-landing-pillars {
  padding-bottom: 35px;
}

.ar-landing-pillars__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(219, 229, 242, .72);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 14px 34px rgba(7, 26, 57, .045);
}

.ar-landing-pillar {
  min-height: 92px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px 28px;
  border-left: 1px solid rgba(219, 229, 242, .82);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.ar-landing-pillar:first-child {
  border-left: 0;
}

.ar-landing-pillar svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.45;
  color: #071a39;
}

.ar-landing-pillar h3 {
  color: var(--ar-landing-ink);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -.015em;
}

.ar-landing-pillar p {
  color: #4a5c76;
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 600;
}

.ar-landing.is-enhanced [data-ar-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s ease, transform .58s ease;
}

.ar-landing.is-enhanced [data-ar-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  :root {
    --ar-landing-inner: min(100% - 80px, 1120px);
  }

  .ar-landing-hero__media {
    width: 100%;
  }

}

@media (max-width: 1080px) {
  :root {
    --ar-landing-inner: min(100% - 44px, 960px);
  }

  .ar-landing-categories {
    max-width: none;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
  }

  .ar-landing-market {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ar-landing-diamonds,
  .ar-landing-card-carousel {
    padding-left: 48px;
    padding-right: 48px;
  }

  .ar-landing-diamond-panel.is-active {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .ar-landing-diamonds {
    padding-top: 22px;
  }

  .ar-landing-diamond-card,
  .ar-landing-product-card {
    min-width: 190px;
    scroll-snap-align: start;
  }

  .ar-landing-card-row--five .ar-landing-product-card,
  .ar-landing-card-row--six .ar-landing-product-card {
    flex: 0 0 190px;
  }

  .ar-landing-dealer-banner {
    grid-template-columns: minmax(230px, .82fr) minmax(360px, 1.18fr);
    gap: 24px;
    min-height: 0;
    padding: 26px 32px;
  }

  .ar-landing-dealer-benefits {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
    max-width: none;
    padding: 22px 0 0;
    border-top: 1px solid #dbe5f2;
  }

  .ar-landing-banner {
    height: clamp(170px, 15.5vw, 206px);
    grid-template-columns: 31% 44% 25%;
  }

  .ar-landing-banner__copy {
    padding: var(--copy-pad-y, 16px) min(var(--copy-pad-x, 22px), 28px);
  }

  .ar-landing-banner__copy h2 {
    max-width: min(var(--body-width, 430px), 430px);
    font-size: min(var(--title-size, 25px), 25px);
  }

  .ar-landing-banner__copy > p:not(.ar-landing-eyebrow) {
    max-width: min(var(--body-width, 430px), 430px);
    margin-top: 8px;
    font-size: min(var(--body-size, 11px), 12px);
  }

  .ar-landing-banner__service-card {
    padding: 10px min(var(--service-pad-x, 10px), 18px);
  }

  .ar-landing-banner__service-icon {
    width: min(var(--service-icon-size, 34px), 38px);
    height: min(var(--service-icon-size, 34px), 38px);
  }

  .ar-landing-banner__service-card h3 {
    font-size: min(var(--service-title-size, 12px), 13px);
  }

  .ar-landing-banner__service-card p {
    max-width: 120px;
    font-size: min(var(--service-text-size, 9.8px), 10px);
  }

  .ar-landing-banner__media {
    min-height: 100%;
  }


  .ar-landing-platform-card {
    grid-template-columns: 1fr 1fr;
  }

  .ar-landing-platform-card__help {
    border-left: 0;
    border-top: 1px solid #dce6f2;
  }

  .ar-landing-platform-card__photo {
    justify-content: flex-start;
    padding: 26px 34px;
    border-top: 1px solid #dce6f2;
  }

  .ar-landing-pillars__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ar-landing-pillar:nth-child(odd) {
    border-left: 0;
  }

  .ar-landing-pillar:nth-child(n + 3) {
    border-top: 1px solid #dbe5f2;
  }
}

@media (max-width: 760px) {
  :root {
    --ar-landing-inner: min(100% - 28px, 620px);
  }

  .ar-landing-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding-bottom: 20px;
  }

  .ar-landing-hero::before,
  .ar-landing-hero::after {
    display: none;
  }

  .ar-landing-hero__media {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: clamp(220px, 55vw, 292px);
    z-index: 0;
  }

  .ar-landing-hero__media::before {
    background: linear-gradient(180deg, rgba(255,255,255,0) 62%, rgba(255,255,255,0.42) 100%);
  }

  .ar-landing-hero__image {
    object-position: 66% center;
  }

  .ar-landing-hero__nav {
    width: 40px;
    height: 40px;
  }

  .ar-landing-hero__nav .ar-landing-chevron {
    width: 10px;
    height: 10px;
    border-width: 0 2.5px 2.5px 0;
  }

  .ar-landing-hero__nav--prev {
    left: 14px;
  }

  .ar-landing-hero__nav--next {
    right: 14px;
  }

  .ar-landing-hero__dots {
    bottom: 12px;
    display: inline-flex;
  }

  .ar-landing-button {
    min-height: 46px;
    padding: 0 22px;
  }

  .ar-landing-categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    margin-top: 10px;
    padding: 0 0 14px;
  }

  .ar-landing-category {
    min-width: 152px;
    min-height: 136px;
    gap: 10px;
    scroll-snap-align: start;
  }

  .ar-landing-category__image {
    width: 72px;
    height: 50px;
  }

  .ar-landing-category__image img {
    max-width: 72px;
    max-height: 58px;
  }

  .ar-landing-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 8px;
    padding: 16px 0;
  }

  .ar-landing-trust__item {
    justify-content: flex-start;
    font-size: 12px;
  }

  .ar-landing-market {
    margin-bottom: 34px;
  }

  .ar-landing-market__showcase {
    min-width: 0;
    max-width: 100%;
    overflow: visible;
  }

  .ar-landing-section-intro h2,
  .ar-landing-row-header h2,
  .ar-landing-banner h2,
  .ar-landing-dealer-banner h2 {
    font-size: 31px;
  }

  .ar-landing-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    grid-template-columns: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
  }

  .ar-landing-tabs__item {
    flex: 0 0 86px;
    min-width: 86px;
    touch-action: pan-x;
  }

  .ar-landing-diamonds,
  .ar-landing-card-carousel {
    padding-left: 0;
    padding-right: 0;
  }

  .ar-landing-diamonds {
    padding-top: 22px;
  }

  .ar-landing-diamond-card,
  .ar-landing-product-card {
    min-width: 172px;
  }

  .ar-landing-card-row--five .ar-landing-product-card,
  .ar-landing-card-row--six .ar-landing-product-card {
    flex: 0 0 172px;
  }

  .ar-landing-diamond-card {
    min-height: 172px;
    padding: 15px 13px 13px;
  }

  .ar-landing-diamond-card,
  .ar-landing-diamond-card--featured {
    flex: 0 0 74%;
    min-width: 74%;
    min-height: 286px;
    padding: 14px;
  }

  .ar-landing-diamond-card--featured .ar-landing-diamond-card__title {
    font-size: 19px;
  }

  .ar-landing-diamond-card__metrics {
    gap: 7px;
  }

  .ar-landing-product-card strong,
  .ar-landing-product-card span,
  .ar-landing-product-card b {
    padding-left: 11px;
    padding-right: 11px;
  }

  .ar-landing-circle-nav {
    display: none;
  }

  .ar-landing-dealer-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 24px;
    margin-bottom: 34px;
  }

  .ar-landing-dealer-banner__copy {
    padding-left: 0;
  }

  .ar-landing-dealer-banner__copy > p:not(.ar-landing-eyebrow) {
    max-width: none;
  }

  .ar-landing-dealer-banner__visual {
    order: 2;
    padding: 2px 0 0;
  }

  .ar-landing-dealer-banner__visual img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 760 / 390;
    object-fit: contain;
  }

  .ar-landing-dealer-banner__actions {
    gap: 12px;
  }

  .ar-landing-dealer-banner__actions .ar-landing-button {
    width: 100%;
    min-height: 38px;
    border-radius: 6px;
  }

  .ar-landing-dealer-benefits {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 0 0;
    border-top: 1px solid #dbe5f2;
  }

  .ar-landing-dealer-benefits__item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
  }

  .ar-landing-dealer-benefits__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .ar-landing-dealer-benefits__item strong {
    font-size: 13px;
  }

  .ar-landing-dealer-benefits__item em {
    font-size: 12px;
  }

  .ar-landing-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ar-landing-banner__copy {
    grid-column: 1;
    grid-row: 1;
    padding: 28px 24px 20px;
  }

  .ar-landing-banner__copy .ar-landing-button {
    width: 100%;
  }

  .ar-landing-banner__services {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ar-landing-banner__service-card {
    padding: 20px 20px;
  }

  .ar-landing-banner__service-card:not(:last-child) {
    border-right: 0;
  }

  .ar-landing-banner__service-card:nth-child(odd) {
    border-right: 1px solid #d6e1ef;
  }

  .ar-landing-banner__service-card:nth-child(n + 3) {
    border-top: 1px solid #d6e1ef;
  }

  .ar-landing-banner__media {
    grid-column: 1;
    grid-row: 3;
    min-height: 260px;
  }

  .ar-landing-banner__media::before {
    inset: 0 0 auto 0;
    width: auto;
    height: 60px;
    background: linear-gradient(180deg, rgba(233, 241, 251, 0.68) 0%, rgba(233, 241, 251, 0.18) 50%, rgba(233, 241, 251, 0) 100%);
  }

  .ar-landing-banner__media img {
    object-position: var(--image-position-x, 50%) var(--image-position-y, 50%);
  }

  .ar-landing-banner__services {
    gap: 0;
    padding: 0;
  }

  .ar-landing-row-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .ar-landing-product-card img,
  .ar-landing-product-card--tool img {
    height: 112px;
  }

  .ar-landing-pillars__grid {
    grid-template-columns: 1fr;
  }

  .ar-landing-pillar,
  .ar-landing-pillar:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid #dbe5f2;
    padding: 20px 22px;
  }

  .ar-landing-pillar:first-child {
    border-top: 0;
  }


  .ar-landing-enterprise {
    gap: 16px;
    margin-bottom: 32px;
  }

  .ar-landing-platform-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ar-landing-platform-card__intro,
  .ar-landing-platform-card__help {
    padding: 28px 24px;
  }

  .ar-landing-platform-card__intro h2,
  .ar-landing-platform-card__help h3 {
    font-size: 29px;
  }

  .ar-landing-platform-card__devices {
    padding: 0 16px 10px;
  }

  .ar-landing-platform-card__devices img {
    width: min(100%, 340px);
  }

  .ar-landing-platform-card__help,
  .ar-landing-platform-card__photo {
    border-top: 1px solid #dce6f2;
  }

  .ar-landing-platform-card__photo {
    padding: 22px 24px 28px;
    justify-content: center;
  }

  .ar-landing-platform-card__photo img {
    width: 150px;
    height: 150px;
  }

  .ar-landing-products {
    margin-bottom: 32px;
  }

  .ar-landing-card-row {
    padding: 14px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ar-landing *,
  .ar-landing [data-ar-reveal] {
    transition: none !important;
    animation: none !important;
  }

  .ar-landing.is-enhanced [data-ar-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* V3007: Theia feature alignment polish. Keeps the approved gradient, portrait and desktop coordinates, while giving all capability cards the same icon/title/body row rhythm so Smart Search no longer sits lower than the adjacent features. */
/* V1981: Theia gradient seam polish. Keeps the V1980 CTA, portrait, text and feature positioning unchanged while using additional intermediate color stops so the blue panel fades into the light feature area without a hard vertical band. */
.ar-landing-theia-showcase {
  margin-top: 18px;
  margin-bottom: 34px;
}

.ar-landing-theia-card {
  --card-width: 1276px;
  --card-height: 300px;
  --card-radius: 18px;
  --blue-break: 40%;
  --blend-end: 58%;
  --portrait-slot-width: 290px;
  --portrait-slot-height: 215px;
  --portrait-x: 0px;
  --portrait-y: -114px;
  --portrait-width: 290px;
  --portrait-scale: 1.13;
  --text-x: 327px;
  --text-y: 30px;
  --text-width: 380px;
  --features-x: 700px;
  --features-y: 70px;
  --features-width: 510px;
  position: relative;
  isolation: isolate;
  width: min(100%, var(--card-width));
  height: var(--card-height);
  min-height: var(--card-height);
  overflow: visible;
  display: block;
  border-color: #dfe7f2;
  border-radius: var(--card-radius);
  background:
    linear-gradient(90deg, rgba(4, 19, 50, .14) 0%, rgba(6, 27, 68, .09) 38%, rgba(20, 46, 84, .045) 52%, rgba(255,255,255,0) 72%),
    linear-gradient(90deg, #061f50 0%, #082657 30%, #173866 42%, #4f6686 54%, #a8b8ca 66%, #eef5ff 78%, #ffffff 100%);
  box-shadow: 0 16px 42px rgba(11, 32, 70, 0.08);
}

.ar-landing-theia-card__portrait {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--portrait-slot-width);
  min-width: var(--portrait-slot-width);
  height: var(--portrait-slot-height);
  min-height: var(--portrait-slot-height);
  margin: 0;
  overflow: visible;
  z-index: 2;
  border-top-left-radius: var(--card-radius);
  border-bottom-left-radius: var(--card-radius);
}

.ar-landing-theia-card__portrait img {
  position: absolute;
  left: var(--portrait-x);
  top: var(--portrait-y);
  width: var(--portrait-width);
  height: auto;
  max-width: none;
  min-width: 0;
  display: block;
  transform: scale(var(--portrait-scale));
  transform-origin: left top;
}

.ar-landing-theia-card__portrait::after {
  content: "";
  position: absolute;
  inset: 0 -36px 0 auto;
  width: 92px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6, 31, 80, 0) 0%, rgba(8, 39, 91, .70) 45%, rgba(10, 45, 102, 0) 100%);
  z-index: 3;
}

.ar-landing-theia-card__copy {
  position: absolute;
  left: var(--text-x);
  top: var(--text-y);
  z-index: 4;
  width: var(--text-width);
  padding: 0;
}

.ar-landing-theia-card__badge {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(178, 211, 255, .86);
  font-size: 10px;
  letter-spacing: .18em;
}

.ar-landing-theia-card__copy h2 {
  margin-top: 7px;
  color: #ffffff;
  font-size: clamp(27px, 2vw, 36px);
  line-height: 1.02;
}

.ar-landing-theia-card__copy h2 span {
  color: #ffffff;
}

.ar-landing-theia-card__copy p {
  max-width: 342px;
  margin-top: 11px;
  color: rgba(255,255,255,.82);
  font-size: 12.5px;
  line-height: 1.46;
}

.home .ar-landing-theia-card .ar-landing-button--light.ar-ds-button {
  min-height: 38px;
  margin-top: 14px;
  padding: 0 23px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.92);
  color: #06163b !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
}

.home .ar-landing-theia-card .ar-landing-button--light.ar-ds-button:hover,
.home .ar-landing-theia-card .ar-landing-button--light.ar-ds-button:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #06163b !important;
}

.ar-landing-theia-card__divider {
  position: absolute;
  left: calc(var(--features-x) - 34px);
  top: 70px;
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(26, 70, 132, .16), transparent);
}

.ar-landing-theia-card__features {
  position: absolute;
  left: var(--features-x);
  top: var(--features-y);
  width: var(--features-width);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  padding: 0;
}

.ar-landing-theia-card__features article {
  min-height: 138px;
  padding: 0 18px;
  border-left: 1px solid #dbe5f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ar-landing-theia-card__features article:first-child {
  border-left: 0;
}

.ar-landing-theia-card__features svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  stroke: #0a4f9f;
  stroke-width: 1.9;
  flex: 0 0 42px;
  filter: drop-shadow(0 10px 18px rgba(10, 79, 159, .13));
}

.ar-landing-theia-card__features h3 {
  min-height: 34px;
  margin-top: 12px;
  color: #06163b;
  font-size: 13px;
  line-height: 1.22;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ar-landing-theia-card__features p {
  min-height: 48px;
  max-width: 136px;
  margin-top: 6px;
  color: #42536c;
  font-size: 11.5px;
  line-height: 1.38;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}



/* V1987: Theia responsive hardening. Keeps the approved wide-desktop manual composition, adds a dedicated tablet/narrow-desktop layout so absolute feature coordinates cannot overflow the card, and clips mobile side/bottom bleed while preserving the intentional top portrait overflow. */
@media (min-width: 761px) and (max-width: 1275px) {
  .ar-landing-theia-card {
    --card-width: 100%;
    width: 100%;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(252px, var(--portrait-slot-width)) minmax(320px, 1fr);
    grid-template-areas:
      "theiaPortrait theiaCopy"
      "theiaFeatures theiaFeatures";
    column-gap: clamp(26px, 4vw, 52px);
    row-gap: 0;
    align-items: end;
    overflow: visible;
    background:
      linear-gradient(90deg, rgba(4, 19, 50, .12) 0%, rgba(6, 27, 68, .08) 42%, rgba(20, 46, 84, .035) 58%, rgba(255,255,255,0) 78%),
      linear-gradient(90deg, #061f50 0%, #082657 34%, #173866 50%, #6f83a0 66%, #eef5ff 84%, #ffffff 100%);
  }

  .ar-landing-theia-card__portrait {
    grid-area: theiaPortrait;
    position: relative;
    left: auto;
    bottom: auto;
    align-self: end;
    width: var(--portrait-slot-width);
    min-width: 0;
    height: var(--portrait-slot-height);
    min-height: var(--portrait-slot-height);
    overflow: visible;
  }

  .ar-landing-theia-card__copy {
    grid-area: theiaCopy;
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, var(--text-width));
    align-self: center;
    padding: clamp(28px, 4vw, 42px) clamp(28px, 4vw, 46px) clamp(26px, 4vw, 38px) 0;
  }

  .ar-landing-theia-card__divider {
    display: none;
  }

  .ar-landing-theia-card__features {
    grid-area: theiaFeatures;
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 24px clamp(18px, 3vw, 34px) 26px;
    border-top: 1px solid #e3ebf6;
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    background: rgba(255, 255, 255, .96);
  }

  .ar-landing-theia-card__features article {
    min-height: 118px;
    padding: 0 clamp(10px, 2vw, 18px);
  }
}

/* V1986: mobile-only Theia CTA containment polish. Desktop values stay unchanged; extends the blue card background just enough to keep the mobile Ask Theia CTA fully inside the blue panel instead of straddling the white feature area. */
@media (max-width: 760px) {
  .ar-landing-theia-showcase {
    margin-top: 18px;
    margin-bottom: 32px;
    padding-top: 18px;
  }

  .ar-landing-theia-card {
    --card-width: 100%;
    --card-height: auto;
    --portrait-slot-width: min(100%, 360px);
    --portrait-slot-height: clamp(222px, 58vw, 278px);
    --portrait-x: clamp(-6px, -1vw, 0px);
    --portrait-y: clamp(-44px, -8vw, -26px);
    --portrait-width: clamp(300px, 84vw, 370px);
    --portrait-scale: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    padding-top: var(--portrait-slot-height);
    overflow: visible;
    clip-path: inset(-72px 0 0 0 round 18px);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(10, 30, 66, .10);
  }

  .ar-landing-theia-card::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    height: calc(var(--portrait-slot-height) + 318px);
    border-radius: 18px 18px 0 0;
    background:
      radial-gradient(circle at 78% 18%, rgba(91, 140, 207, .14), transparent 28%),
      linear-gradient(180deg, #061f50 0%, #082a60 64%, #082a60 100%);
    pointer-events: none;
  }

  .ar-landing-theia-card__portrait {
    left: 0;
    top: 0;
    bottom: auto;
    width: var(--portrait-slot-width);
    min-width: 0;
    height: var(--portrait-slot-height);
    min-height: var(--portrait-slot-height);
    overflow: visible;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 0;
    z-index: 2;
  }

  .ar-landing-theia-card__portrait img {
    left: var(--portrait-x);
    top: var(--portrait-y);
    width: var(--portrait-width);
    height: auto;
    transform: scale(var(--portrait-scale));
    transform-origin: left top;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, .72) 88%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, .72) 88%, rgba(0, 0, 0, 0) 100%);
  }

  .ar-landing-theia-card__portrait::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(42vw, 178px);
    pointer-events: none;
    background: linear-gradient(90deg, rgba(8, 42, 96, 0) 0%, rgba(8, 42, 96, .30) 46%, rgba(8, 42, 96, 0) 100%);
  }

  .ar-landing-theia-card__portrait::after {
    display: none;
  }

  .ar-landing-theia-card__copy {
    position: relative;
    z-index: 3;
    left: auto;
    top: auto;
    width: auto;
    max-width: 430px;
    padding: 12px 28px 30px;
    background: transparent;
  }

  .ar-landing-theia-card__badge {
    color: rgba(184, 215, 255, .88);
    font-size: 11px;
    letter-spacing: .18em;
  }

  .ar-landing-theia-card__copy h2 {
    margin-top: 10px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.04;
  }

  .ar-landing-theia-card__copy p {
    max-width: 342px;
    margin-top: 14px;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    line-height: 1.55;
  }

  .home .ar-landing-theia-card .ar-landing-button--light.ar-ds-button {
    min-width: 164px;
    min-height: 44px;
    margin-top: 16px;
    padding: 0 24px;
    border-radius: 6px;
    color: #06163b !important;
    background: #ffffff;
  }

  .ar-landing-theia-card__divider {
    display: none;
  }

  .ar-landing-theia-card__features {
    position: relative;
    z-index: 4;
    left: auto;
    top: auto;
    width: auto;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 26px 20px 30px;
    border-top: 1px solid #e8eef6;
    border-radius: 0 0 18px 18px;
    background: #ffffff;
  }

  .ar-landing-theia-card__features article {
    min-height: 142px;
    padding: 16px 12px;
    border-left: 0;
    border-top: 1px solid #e7edf5;
  }

  .ar-landing-theia-card__features article:nth-child(-n+2) {
    border-top: 0;
  }

  .ar-landing-theia-card__features article:nth-child(even) {
    border-left: 1px solid #e7edf5;
  }

  .ar-landing-theia-card__features svg {
    width: 46px;
    height: 46px;
    padding: 11px;
    border-radius: 50%;
  }

  .ar-landing-theia-card__features h3 {
    min-height: 0;
    font-size: 15px;
  }

  .ar-landing-theia-card__features p {
    min-height: 0;
    max-width: 150px;
    font-size: 13px;
    line-height: 1.38;
  }
}


/* V2003: solutions card typography polish with mobile Tools crop guardrail. Keep the approved Tools image/crop and shared media rhythm, while reducing solution card titles to the same restrained editorial scale used by the rest of the landing page. */
.ar-landing-solutions {
  margin-top: 52px;
  margin-bottom: 54px;
}

.ar-landing-solutions__header {
  max-width: 1060px;
  margin: 0 auto 34px;
  text-align: center;
}

.ar-landing-solutions__eyebrow {
  color: #064fbd;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .34em;
}

.ar-landing-solutions__header h2 {
  margin-top: 12px;
  color: #061333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 84px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

.ar-landing-solutions__header p:not(.ar-landing-solutions__eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: #273247;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.42;
  letter-spacing: -.025em;
}

.ar-landing-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.ar-landing-solution-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5ebf4;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(11, 32, 70, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.ar-landing-solution-card:hover,
.ar-landing-solution-card:focus-visible {
  border-color: #d5dfed;
  box-shadow: 0 22px 48px rgba(11, 32, 70, .12);
  transform: translateY(-2px);
}

.ar-landing-solution-card__media {
  position: relative;
  display: block;
  height: clamp(265px, 23.5vw, 360px);
  overflow: hidden;
  background: #eef2f7;
}

.ar-landing-solution-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.20) 42%, rgba(255,255,255,.58) 82%, #ffffff 100%);
}

.ar-landing-solution-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.002);
}

.ar-landing-solution-card--tools .ar-landing-solution-card__media {
  height: clamp(265px, 23.5vw, 360px);
  overflow: hidden;
  background: linear-gradient(180deg, #f5f6f8 0%, #ffffff 100%);
}

.ar-landing-solution-card--tools .ar-landing-solution-card__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18%;
  pointer-events: none;
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.42) 58%,
    #fff 100%
  );
}

.ar-landing-solution-card--tools .ar-landing-solution-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
  transform: translate(-6px, -9px) scale(1.05);
  transform-origin: center center;
}

.ar-landing-solution-card--diamonds .ar-landing-solution-card__media img,
.ar-landing-solution-card--jewelry .ar-landing-solution-card__media img {
  object-position: center 26%;
}

.ar-landing-solution-card__body {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 40px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #fbfdff 100%);
}

.ar-landing-solution-card__body strong {
  color: #061333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 1.9vw, 31px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.ar-landing-solution-card__rule {
  width: 38px;
  height: 2px;
  margin-top: 22px;
  background: #064fbd;
}

.ar-landing-solution-card__text {
  max-width: 320px;
  margin-top: 22px;
  color: #233049;
  font-size: 17px;
  line-height: 1.54;
  letter-spacing: -.018em;
}

.ar-landing-solution-card__link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 28px;
  color: #064fbd;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: gap .22s ease, color .22s ease;
}

.ar-landing-solution-card:hover .ar-landing-solution-card__link,
.ar-landing-solution-card:focus-visible .ar-landing-solution-card__link {
  gap: 20px;
  color: var(--ar-landing-navy);
}

@media (max-width: 1080px) {
  .ar-landing-solutions {
    margin-top: 42px;
    margin-bottom: 42px;
  }

  .ar-landing-solutions__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ar-landing-solution-card {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .ar-landing-solution-card__media {
    height: clamp(300px, 52vw, 410px);
  }

  .ar-landing-solution-card__body {
    min-height: 0;
    padding: 30px 34px 30px;
  }
}

@media (max-width: 760px) {
  .ar-landing-solutions {
    margin-top: 34px;
    margin-bottom: 34px;
  }

  .ar-landing-solutions__header {
    margin-bottom: 24px;
  }

  .ar-landing-solutions__eyebrow {
    font-size: 11px;
    letter-spacing: .26em;
  }

  .ar-landing-solutions__header h2 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.02;
  }

  .ar-landing-solutions__header p:not(.ar-landing-solutions__eyebrow) {
    font-size: 16px;
    line-height: 1.5;
  }

  .ar-landing-solution-card__media {
    height: clamp(240px, 70vw, 330px);
  }

  .ar-landing-solution-card__body {
    padding: 26px 24px 28px;
  }

  .ar-landing-solution-card__body strong {
    font-size: 26px;
  }

  .ar-landing-solution-card__text {
    font-size: 15.5px;
  }

  .ar-landing-solution-card__link {
    font-size: 15px;
  }

  .ar-landing-solution-card--tools .ar-landing-solution-card__media img {
    object-fit: cover;
    object-position: 50% 30%;
    transform: translate(-6px, 0) scale(1.03);
    transform-origin: center center;
  }
}
