*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
.acme-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
}
@keyframes lov-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes lov-slide-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes lov-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.lov-anim-fade-in {
  animation: lov-fade-in 320ms ease-out both;
}
.lov-anim-slide-up {
  animation: lov-slide-up 360ms ease-out both;
}
@media (prefers-reduced-motion: reduce) {
  .lov-anim-fade-in,
  .lov-anim-slide-up,
  [class*="lov-anim-"] {
    animation: none !important;
    transition: none !important;
  }
}
.acme-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FBF8F3;
  border-bottom: 1px solid rgba(10, 34, 64, 0.07);
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-header[data-scrolled="true"] {
  background: #FBF8F3;
  border-bottom-color: rgba(10, 34, 64, 0.1);
  box-shadow: 0 8px 24px -22px rgba(10, 34, 64, 0.45);
}
.acme-nav {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  height: 68px;
  min-height: 68px;
  position: relative;
}
.acme-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #0A2240;
  margin-left: auto;
}
.acme-nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: 0.125rem;
  align-items: center;
}
.acme-nav-item {
  margin: 0;
  position: relative;
}
.acme-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0A2240;
  text-decoration: none;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.18s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-nav-link > span {
  position: relative;
  z-index: 1;
}
.acme-nav-link:hover,
.acme-nav-link:focus-visible {
  color: #8E6531;
  background: transparent;
  outline: none;
}
.acme-nav-link[data-active="true"] {
  color: #8E6531;
}
.acme-nav-caret {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.7;
  margin-left: 0.1rem;
}
.acme-nav-item-has-menu[data-open="true"] > .acme-nav-link-trigger .acme-nav-caret {
  transform: rotate(180deg);
  opacity: 1;
}
.acme-nav-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translate(-50%, -6px);
  min-width: 17rem;
  background: #FFFFFF;
  border: 1px solid #E6DCC6;
  border-radius: 12px;
  box-shadow: 0 24px 60px -28px rgba(10, 34, 64, 0.35);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 60;
}
.acme-nav-item-has-menu[data-open="true"] > .acme-nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.acme-nav-menu-inner {
  display: block;
}
.acme-nav-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.acme-nav-menu-list > li > a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  color: #0A2240;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.2s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-nav-menu-list > li > a:hover,
.acme-nav-menu-list > li > a:focus-visible {
  background: rgba(10, 34, 64, 0.06);
  color: #8E6531;
  outline: none;
}
.acme-nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 11.2px 62px 11.2px 24px;
  background: #0A2240;
  color: #FBF8F3;
  border: 1px solid transparent;
  border-radius: 100px;
  text-decoration: none;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 24px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 24px -14px rgba(10, 34, 64, 0.55);
  transition: box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-nav-cta-label {
  display: inline-block;
}
.acme-nav-cta-badge {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #B8894A;
  color: #0A2240;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}
.acme-nav-cta-badge svg {
  width: 14px;
  height: 14px;
  display: block;
}
.acme-nav-cta:hover {
  background: #17335A;
  box-shadow: 0 14px 36px -14px rgba(10, 34, 64, 0.55), 0 0 0 4px rgba(184, 137, 74, 0.18);
}
.acme-nav-cta:hover .acme-nav-cta-badge {
  background: #D4A968;
  transform: translateY(-50%) rotate(360deg);
}
.acme-nav-cta:active {
  transform: translateY(1px);
}
.acme-nav-cta:focus-visible {
  outline: 2px solid #B8894A;
  outline-offset: 3px;
}
.acme-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: 0;
  color: #0A2240;
  text-decoration: none;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}
.acme-brand-logo {
  display: block;
  height: 46px;
  max-height: 46px;
  width: auto;
  max-width: clamp(138px, 14vw, 178px);
  aspect-ratio: 1884 / 1338;
  object-fit: contain;
  object-position: center left;
  flex: 0 0 auto;
  background: transparent;
}
@media (max-width: 960px) {
  .acme-nav {
    height: 64px;
    min-height: 64px;
    gap: 1rem;
  }
  .acme-brand-logo {
    height: 42px;
    max-height: 42px;
    max-width: 154px;
  }
  .acme-nav-toggle {
    display: inline-flex;
  }
  .acme-nav-cta {
    margin-left: 0;
    padding: 0.35rem 3.25rem 0.35rem 1.1rem;
    font-size: 0.95rem;
    line-height: 1.35;
  }
  .acme-nav-cta-badge {
    width: 2.5rem;
    height: 2.5rem;
    right: 0;
  }
  .acme-nav-list {
    display: none;
    position: absolute;
    inset: calc(100% + 0.75rem) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    background: #FFFFFF;
    border: 1px solid #E6DCC6;
    border-radius: 12px;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  }
  .acme-nav-link {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    width: 100%;
    justify-content: space-between;
  }
  .acme-nav-link::before {
    display: none;
  }
  .acme-nav-link:hover,
  .acme-nav-link[data-active="true"] {
    background: rgba(10, 34, 64, 0.06);
  }
  .acme-nav[data-open="true"] .acme-nav-list {
    display: flex;
  }
  .acme-nav[data-open="true"] .acme-nav-toggle-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .acme-nav[data-open="true"] .acme-nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .acme-nav[data-open="true"] .acme-nav-toggle-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .acme-nav-item-has-menu {
    flex-direction: column;
    align-items: stretch;
  }
  .acme-nav-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    box-shadow: none;
    padding: 0 0.5rem;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: grid-template-rows 0.3s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .acme-nav-menu-inner {
    overflow: hidden;
    min-height: 0;
  }
  .acme-nav-item-has-menu[data-open="true"] > .acme-nav-menu {
    grid-template-rows: 1fr;
    padding: 0 0.5rem 0.5rem;
  }
}
@media (max-width: 520px) {
  .acme-nav {
    height: 58px;
    min-height: 58px;
  }
  .acme-brand-logo {
    height: 38px;
    max-height: 38px;
    max-width: 132px;
  }
  .acme-brand-word {
    display: none;
  }
  .acme-nav-cta .acme-nav-cta-label {
    display: none;
  }
  .acme-nav-cta {
    padding: 0.35rem;
  }
}
.acme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-btn:hover {
  transform: translateY(-1px);
}
.acme-btn:active {
  transform: translateY(0);
}
.acme-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 137, 74, 0.45);
}
.acme-btn[disabled],
.acme-btn.acme-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.acme-btn-primary {
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
  background: #0A2240;
  color: #FBF8F3;
  border-color: #0A2240;
}
.acme-btn-primary .acme-btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #B8894A;
  color: #0A2240;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-btn-primary:hover {
  background: #17335A;
  color: #FBF8F3;
  border-color: #17335A;
  box-shadow: 0 14px 40px -18px rgba(10, 34, 64, 0.55), 0 0 0 4px rgba(184, 137, 74, 0.18);
}
.acme-btn-primary:hover .acme-btn-badge {
  transform: rotate(-45deg);
  background: #D4A968;
  color: #0A2240;
}
.acme-btn-ghost {
  background: transparent;
  color: #0A2240;
  border-color: #D6C9AC;
}
.acme-btn-ghost:hover {
  background: rgba(10, 34, 64, 0.06);
  border-color: #0A2240;
  color: #0A2240;
}
.acme-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 731px;
  padding-block: 0 !important;
  display: flex;
  align-items: stretch;
  background: #FFFDF8;
  color: #0A2240;
}
.acme-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.acme-hero-atmosphere {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.acme-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 8;
  opacity: 0.008;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.35 0 0 0 0 0.20 0 0 0 0.85 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}
.acme-hero-world {
  position: absolute;
  z-index: 2;
  top: -53px;
  right: -10px;
  width: 760px;
  height: 760px;
  pointer-events: none;
}
.acme-hero-orbits,
.acme-hero-icons {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.acme-hero-orbits-back {
  z-index: 1;
}
.acme-hero-orbits-front {
  z-index: 5;
}
.acme-hero-icons {
  z-index: 6;
}
.acme-hero-orbit {
  transform-box: view-box;
  transform-origin: 380px 380px;
}
.acme-hero-orbit-1 {
  transform: rotate(-13deg);
}
.acme-hero-orbit-2 {
  transform: rotate(18deg);
}
.acme-hero-globe {
  position: absolute;
  z-index: 3;
  top: 114px;
  left: 158px;
  width: 490px;
  height: 490px;
  display: grid;
  place-items: center;
}
.acme-hero-globe-aura {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 253, 245, 0.32) 0%, rgba(255, 243, 214, 0.25) 32%, rgba(237, 190, 110, 0.26) 56%, rgba(230, 163, 67, 0.13) 78%, rgba(230, 163, 67, 0) 100%);
  opacity: 0.9;
}
.acme-hero-globe-core {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 22%, rgba(255, 255, 249, 0.3) 0%, rgba(255, 255, 249, 0.11) 20%, rgba(255, 255, 249, 0) 44%), radial-gradient(circle at 66% 70%, rgba(226, 166, 76, 0.2) 0%, rgba(226, 166, 76, 0.09) 42%, rgba(226, 166, 76, 0) 72%), radial-gradient(circle at 49% 49%, rgba(197, 188, 169, 0.4) 0%, rgba(125, 115, 96, 0.48) 61%, rgba(57, 52, 44, 0.68) 100%);
  box-shadow: inset 26px 26px 72px rgba(255, 255, 255, 0.32), inset -46px -38px 90px rgba(28, 25, 22, 0.42), inset 0 0 0 1px rgba(255, 250, 235, 0.55), 0 22px 72px rgba(184, 137, 74, 0.24);
}
.acme-hero-globe-core::before,
.acme-hero-globe-core::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.acme-hero-globe-core::before {
  z-index: 2;
  background: radial-gradient(circle at 28% 19%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.075) 24%, rgba(255, 255, 255, 0) 48%), linear-gradient(125deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 43%, rgba(48, 40, 34, 0.3) 100%);
  mix-blend-mode: screen;
}
.acme-hero-globe-core::after {
  z-index: 3;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.16), inset 0 0 112px rgba(39, 34, 30, 0.34);
}
.acme-hero-globe-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.acme-hero-icon {
  transform-box: view-box;
  transform-origin: 380px 380px;
}
.acme-hero-icon-upright {
  transform-box: fill-box;
  transform-origin: center;
}
.acme-hero-icon-chip {
  fill: rgba(255, 252, 244, 0.9);
  stroke: rgba(184, 137, 74, 0.38);
  stroke-width: 0.85;
  filter: none;
}
.acme-hero-icon-glyph {
  opacity: 0.9;
  stroke-width: 1.15;
}
.acme-hero-icon-1 {
  transform: rotate(196deg);
}
.acme-hero-icon-2 {
  transform: rotate(270deg);
}
.acme-hero-icon-3 {
  transform: rotate(318deg);
}
.acme-hero-icon-4 {
  transform: rotate(160deg);
}
.acme-hero-icon-5 {
  transform: rotate(24deg);
}
.acme-hero-icon-6 {
  transform: rotate(92deg);
}
.acme-hero-icon-1 .acme-hero-icon-upright {
  transform: rotate(-196deg);
}
.acme-hero-icon-2 .acme-hero-icon-upright {
  transform: rotate(-270deg);
}
.acme-hero-icon-3 .acme-hero-icon-upright {
  transform: rotate(-318deg);
}
.acme-hero-icon-4 .acme-hero-icon-upright {
  transform: rotate(-160deg);
}
.acme-hero-icon-5 .acme-hero-icon-upright {
  transform: rotate(-24deg);
}
.acme-hero-icon-6 .acme-hero-icon-upright {
  transform: rotate(-92deg);
}
.acme-hero-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
  position: relative;
  z-index: 9;
  padding-block: 111px 36px;
}
.acme-hero-content {
  width: 565px;
  max-width: 565px;
  display: flex;
  flex-direction: column;
}
.acme-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin: 0 0 31px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #22344F;
}
.acme-hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #B8894A;
  box-shadow: 0 0 0 3px rgba(184, 137, 74, 0.16), 0 0 12px rgba(184, 137, 74, 0.36);
}
.acme-hero-title,
h1.acme-hero-title,
.acme-hero-content > .acme-hero-title {
  margin: 0;
  max-width: 565px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 60px;
  letter-spacing: -1.1px;
  font-weight: 500;
  color: #0A2240;
  text-wrap: balance;
}
.acme-hero-title br {
  display: inline;
}
.acme-hero-title-accent {
  color: #B8894A;
  font-family: inherit;
  font-weight: inherit;
}
.acme-hero-lede {
  margin: 26px 0 0;
  max-width: 535px;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 29px;
  font-weight: 500;
  color: #54627A;
}
.acme-hero-cta {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 35px;
}
.acme-hero-cta .acme-btn {
  min-height: 45px;
  font-size: 13px;
  font-weight: 700;
}
.acme-hero-cta .acme-btn-primary {
  padding: 0.38rem 0.38rem 0.38rem 1.35rem;
  min-width: 221px;
  box-shadow: 0 18px 34px -18px rgba(10, 34, 64, 0.72), 0 5px 12px -6px rgba(10, 34, 64, 0.36);
}
.acme-hero-cta .acme-btn-primary .acme-btn-badge {
  width: 34px;
  height: 34px;
}
.acme-hero-cta .acme-btn-ghost {
  min-width: 127px;
  color: #0A2240;
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(214, 201, 172, 0.72);
}
.acme-hero-meta {
  display: grid;
  grid-template-columns: 162px 142px 142px;
  gap: 45px;
  max-width: 532px;
  margin: 43px 0 0;
  padding: 31px 0 0;
  border-top: 1px solid rgba(214, 201, 172, 0.72);
}
.acme-hero-meta-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.acme-hero-meta-item + .acme-hero-meta-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  bottom: 7px;
  width: 1px;
  background: rgba(214, 201, 172, 0.58);
}
.acme-hero-meta dt {
  order: 2;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  color: #69758A;
}
.acme-hero-meta dd {
  order: 1;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #0A2240;
}
.acme-hero-meta dd span {
  color: #B8894A;
  margin-left: 1px;
}
.acme-hero.acme-block-hero {
  padding-block: 0 !important;
}
@media (max-width: 1024px) {
  .acme-hero {
    min-height: 720px;
  }
  .acme-hero-inner {
    padding: 88px clamp(24px, 5vw, 48px) 44px;
  }
  .acme-hero-world {
    top: 118px;
    right: -215px;
    width: 680px;
    height: 680px;
    opacity: 0.72;
  }
  .acme-hero-globe {
    top: 102px;
    left: 135px;
    width: 425px;
    height: 425px;
  }
  .acme-hero-content {
    width: 540px;
    max-width: 540px;
  }
  .acme-hero-title,
  h1.acme-hero-title,
  .acme-hero-content > .acme-hero-title {
    max-width: 500px;
    font-size: 48px;
    line-height: 53px;
    letter-spacing: -0.8px;
    font-weight: 500;
  }
  .acme-hero-lede {
    max-width: 500px;
    font-size: 16px;
    line-height: 28px;
  }
  .acme-hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
}
@media (max-width: 720px) {
  .acme-hero {
    min-height: 760px;
  }
  .acme-hero-inner {
    padding: 66px 20px 34px;
  }
  .acme-hero-world {
    top: 292px;
    right: -375px;
    width: 720px;
    height: 720px;
    opacity: 0.42;
  }
  .acme-hero-globe {
    top: 130px;
    left: 158px;
    width: 400px;
    height: 400px;
  }
  .acme-hero-content {
    width: auto;
    max-width: 100%;
  }
  .acme-hero-eyebrow {
    margin-bottom: 22px;
    font-size: 13px;
  }
  .acme-hero-title,
  h1.acme-hero-title,
  .acme-hero-content > .acme-hero-title {
    max-width: 360px;
    font-size: 38px;
    line-height: 43px;
    letter-spacing: -0.5px;
    font-weight: 500;
  }
  .acme-hero-lede {
    margin-top: 20px;
    max-width: 345px;
    font-size: 15px;
    line-height: 25px;
  }
  .acme-hero-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 27px;
    max-width: 310px;
  }
  .acme-hero-cta .acme-btn {
    width: 100%;
    justify-content: center;
  }
  .acme-hero-meta {
    grid-template-columns: 1fr;
    gap: 17px;
    max-width: 310px;
    margin-top: 32px;
    padding-top: 24px;
  }
  .acme-hero-meta-item + .acme-hero-meta-item::before {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .acme-hero-globe-aura,
  .acme-hero-eyebrow-dot,
  .acme-hero-icon,
  .acme-hero-icon-upright,
  .acme-hero-orbit {
    animation: none !important;
  }
}
.acme-about {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0;
  background: #FBF8F3;
  overflow: hidden;
}
.acme-about-inner {
  position: relative;
}
.acme-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2vw, 32px);
  align-items: start;
}
/* Reveal on scroll */
[data-about-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-about-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-about-reveal="right"] {
  transition-delay: 0.12s;
}
/* Eyebrow */
.acme-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B8894A;
  margin: 0 0 1.5rem;
}
.acme-about-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #B8894A;
  box-shadow: 0 0 0 4px rgba(184, 137, 74, 0.15);
}
.acme-about-eyebrow-alt {
  margin-top: 2rem;
}
/* Heading */
.acme-about-heading {
  color: #0A2240;
  margin: 0 0 clamp(32px, 5vw, 56px);
  max-width: 22ch;
}
.acme-about-heading-em {
  font-style: normal;
  color: #B8894A;
  font-weight: 700;
}
/* Figure with custom mask */
.acme-about-figure {
  position: relative;
  margin: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-about-figure-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: visible;
}
.acme-about-figure-svg {
  width: 93%;
  height: 93%;
  margin: 6% 0 0 0;
  display: block;
  filter: drop-shadow(0 2px 3px rgba(10, 34, 64, 0.14)) drop-shadow(0 18px 28px rgba(10, 34, 64, 0.12));
  opacity: 0;
  transform: translateY(20px);
  animation: acme-about-figure-reveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s forwards;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, filter, opacity;
}
.acme-about-figure:hover .acme-about-figure-svg {
  transform: scale(1.02);
  filter: drop-shadow(0 3px 5px rgba(10, 34, 64, 0.18)) drop-shadow(0 26px 40px rgba(10, 34, 64, 0.16));
}
.acme-about-figure-overlay {
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.acme-about-figure:hover .acme-about-figure-overlay {
  opacity: 0.78;
}
@keyframes acme-about-figure-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.acme-about-figure-img {
  filter: contrast(1.08) saturate(1.06) sepia(0.04) brightness(1.02);
}
/* Right column text */
.acme-about-lede {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.05rem, 1.3rem, 1.25rem);
  line-height: 1.55;
  color: #0A2240;
  font-weight: 500;
  margin: 0 0 1.5rem;
  max-width: 42ch;
}
.acme-about-body {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.7;
  color: #4A5A75;
  margin: 0;
  max-width: 46ch;
}
/* Feature rows */
.acme-about-features {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #E6DCC6;
}
.acme-about-feature {
  border-bottom: 1px solid #E6DCC6;
}
.acme-about-feature-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  padding: clamp(22px, 3vw, 30px) clamp(14px, 2vw, 20px);
  text-decoration: none;
  color: #0A2240;
  overflow: hidden;
  text-align: left;
  border-radius: 12px;
  transition: color 250ms cubic-bezier(0.22, 1, 0.36, 1), background-color 250ms cubic-bezier(0.22, 1, 0.36, 1), padding-left 250ms cubic-bezier(0.22, 1, 0.36, 1);
}
/* Subtle highlight wash */
.acme-about-feature-row::after {
  content: "";
  position: absolute;
  inset: 4px 0;
  background: linear-gradient(90deg, rgba(184, 137, 74, 0.06), rgba(184, 137, 74, 0));
  border-radius: 12px;
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}
/* Animated bottom divider */
.acme-about-feature-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, #B8894A 0%, rgba(184, 137, 74, 0.4) 60%, rgba(184, 137, 74, 0) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.acme-about-feature-index,
.acme-about-feature-title,
.acme-about-feature-arrow {
  position: relative;
  z-index: 1;
}
.acme-about-feature-row:hover,
.acme-about-feature-row:focus-visible {
  color: #0A2240;
  padding-left: clamp(20px, 2.6vw, 28px);
  outline: none;
}
.acme-about-feature-row:hover::after,
.acme-about-feature-row:focus-visible::after {
  opacity: 1;
}
.acme-about-feature-row:hover::before,
.acme-about-feature-row:focus-visible::before {
  transform: scaleX(1);
}
.acme-about-feature-index {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #B8894A;
  min-width: 32px;
}
.acme-about-feature-title {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: inherit;
  text-align: left;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-width: 0;
}
.acme-about-feature-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #E6DCC6;
  color: #4A5A75;
  background: transparent;
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), background-color 250ms cubic-bezier(0.22, 1, 0.36, 1), color 250ms cubic-bezier(0.22, 1, 0.36, 1), border-color 250ms cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}
.acme-about-feature-row:hover .acme-about-feature-arrow,
.acme-about-feature-row:focus-visible .acme-about-feature-arrow {
  background: #0A2240;
  color: #FBF8F3;
  border-color: #0A2240;
  transform: translate(3px, -3px);
}
/* Responsive */
@media (max-width: 1024px) {
  .acme-about {
    padding: clamp(56px, 8vw, 96px) 0;
  }
  .acme-about-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 32px);
  }
  .acme-about-heading {
    max-width: none;
  }
  .acme-about-left {
    max-width: none;
    margin: 0;
    width: 100%;
  }
  .acme-about-right {
    max-width: 640px;
    margin: 0;
    width: 100%;
  }
  .acme-about-figure {
    margin: -24px 0 0;
  }
  .acme-about-figure-frame {
    aspect-ratio: 1 / 1;
    width: 296px;
    max-width: 100%;
    margin: 0;
  }
  .acme-about-figure-svg {
    width: 100%;
    height: 100%;
    margin: 0;
    display: block;
  }
  .acme-about-lede {
    max-width: none;
  }
  .acme-about-body {
    max-width: none;
  }
}
@media (max-width: 720px) {
  .acme-about-feature-index {
    display: none;
  }
  .acme-about-feature-row {
    grid-template-columns: 1fr auto;
  }
  .acme-about-figure {
    margin: -20px 0 0;
  }
  .acme-about-figure-frame {
    width: 250px;
    max-width: 100%;
    margin: 0;
  }
  .acme-about-figure-svg {
    width: 100%;
    height: 100%;
    margin: 0;
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-about-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .acme-about-figure {
    transition: none;
  }
}
.acme-approach {
  position: relative;
  padding: clamp(80px, 11vw, 140px) 0;
  background: #04060F;
  color: #F2ECDD;
  overflow: hidden;
  isolation: isolate;
}
/* Layer 1: obsidian base with restrained mesh of ambient light */
.acme-approach-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(42% 34% at 12% 8%, rgba(201, 168, 106, 0.16), transparent 68%), /* cool sapphire fill, top-right */ radial-gradient(40% 38% at 92% 14%, rgba(62, 107, 168, 0.14), transparent 70%), /* deep indigo ambient, mid */ radial-gradient(55% 45% at 60% 55%, rgba(27, 43, 92, 0.55), transparent 72%), /* champagne floor pool, bottom-right */ radial-gradient(50% 34% at 82% 100%, rgba(184, 137, 74, 0.12), transparent 72%), /* teal whisper, bottom-left */ radial-gradient(45% 32% at 12% 96%, rgba(42, 106, 130, 0.1), transparent 74%), /* refined vertical wash: obsidian to onyx */ linear-gradient(168deg, #0C1730 0%, #070C1A 50%, #04060F 100%);
}
/* Layer 2: aurora band, sweeping diagonal glass highlight */
.acme-approach-bg::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0) 38%, rgba(184, 137, 74, 0.05) 47%, rgba(255, 255, 255, 0.07) 50%, rgba(74, 123, 200, 0.05) 53%, rgba(255, 255, 255, 0) 62%, transparent 100%);
  mix-blend-mode: screen;
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
}
/* Layer 3: vignette + fine grain for tactile glass feel */
.acme-approach-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 100% at 50% 50%, transparent 48%, rgba(0, 0, 0, 0.55) 100%), /* top hairline sheen */ linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 2px), /* bottom hairline sheen */ linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, transparent 2px), /* subtle noise */ repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 3px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.006) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
/* Blurred ambient orbs, the frosted lights behind the glass */
.acme-approach-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
}
.acme-approach-bg-glow-a {
  top: -20%;
  left: -14%;
  width: 52vw;
  height: 52vw;
  max-width: 820px;
  max-height: 820px;
  background: radial-gradient(circle, rgba(184, 137, 74, 0.42), transparent 66%);
}
.acme-approach-bg-glow-b {
  bottom: -26%;
  right: -16%;
  width: 58vw;
  height: 58vw;
  max-width: 880px;
  max-height: 880px;
  background: radial-gradient(circle, rgba(62, 107, 168, 0.4), transparent 66%);
}
.acme-approach-bg-glow-c {
  top: 38%;
  left: 46%;
  width: 34vw;
  height: 34vw;
  max-width: 540px;
  max-height: 540px;
  background: radial-gradient(circle, rgba(107, 74, 158, 0.22), transparent 70%);
  opacity: 0.5;
}
/* Layer 4: SVG curve, refined premium sheen */
.acme-approach-bg-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  mix-blend-mode: screen;
}
.acme-approach-inner {
  position: relative;
}
/* Reveal */
[data-approach-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-approach-reveal].is-in {
  opacity: 1;
  transform: none;
}
/* Header */
.acme-approach-head {
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.acme-approach-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D4A968;
  margin: 0 0 1.5rem;
}
.acme-approach-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #B8894A;
  box-shadow: 0 0 0 4px rgba(184, 137, 74, 0.18);
}
.acme-approach-heading {
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}
.acme-approach-heading-em {
  font-style: normal;
  color: #D4A968;
  font-weight: 700;
}
.acme-approach-lede {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 1.3rem, 1.15rem);
  line-height: 1.65;
  color: rgba(242, 236, 221, 0.78);
  margin: 0 auto;
  max-width: 58ch;
}
/* Cards */
.acme-approach-cards {
  list-style: none;
  margin: 0 0 clamp(56px, 7vw, 88px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.acme-approach-card {
  display: flex;
}
.acme-approach-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 20px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: inherit;
  overflow: hidden;
  backdrop-filter: blur(8px) saturate(120%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px -22px rgba(0, 0, 0, 0.6);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1), background 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
/* premium ambient gold glow on hover */
.acme-approach-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 0%, rgba(184, 137, 74, 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
/* fine top hairline for premium finish */
.acme-approach-card-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 137, 74, 0.55), transparent);
  opacity: 0.55;
  pointer-events: none;
}
.acme-approach-card-inner > * {
  position: relative;
  z-index: 1;
}
.acme-approach-card-inner:hover,
.acme-approach-card-inner:focus-within {
  transform: translateY(-6px);
  border-color: rgba(184, 137, 74, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 50px -22px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(184, 137, 74, 0.22), 0 0 70px -22px rgba(184, 137, 74, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 60%, rgba(255, 255, 255, 0.01) 100%);
}
.acme-approach-card-inner:hover::before,
.acme-approach-card-inner:focus-within::before {
  opacity: 1;
}
.acme-approach-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(184, 137, 74, 0.18), rgba(184, 137, 74, 0.08));
  border: 1px solid rgba(184, 137, 74, 0.32);
  color: #D4A968;
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), background 250ms cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-approach-card-inner:hover .acme-approach-card-icon {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(184, 137, 74, 0.26), rgba(184, 137, 74, 0.12));
}
.acme-approach-card-title {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0 0 10px;
  /* force uniform 2-line height across all cards */
  min-height: calc(1.3em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.acme-approach-card-desc {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.925rem;
  line-height: 1.55;
  color: rgba(242, 236, 221, 0.72);
  margin: 0 0 14px;
  /* force uniform 4-line height across all cards */
  min-height: calc(1.55em * 4);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.acme-approach-card-divider {
  display: block;
  height: 1px;
  width: 28px;
  background: rgba(184, 137, 74, 0.55);
  margin: auto 0 0.75rem;
  transition: width 400ms cubic-bezier(0.22, 1, 0.36, 1), background 250ms cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-approach-card-inner:hover .acme-approach-card-divider {
  width: 100%;
  background: linear-gradient(90deg, #B8894A, rgba(184, 137, 74, 0));
}
.acme-approach-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(242, 236, 221, 0.6);
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), color 250ms cubic-bezier(0.22, 1, 0.36, 1), background-color 250ms cubic-bezier(0.22, 1, 0.36, 1), border-color 250ms cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-approach-card-inner:hover .acme-approach-card-arrow {
  color: #070C1A;
  background: #B8894A;
  border-color: #B8894A;
  transform: translate(2px, -2px);
}
/* Foot */
.acme-approach-foot {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.acme-approach-foot-note {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(242, 236, 221, 0.75);
  margin: 0 0 clamp(28px, 3vw, 40px);
}
.acme-approach-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 20px 14px 26px;
  background: #B8894A;
  color: #070C1A;
  border-radius: 999px;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 12px 30px -12px rgba(184, 137, 74, 0.6);
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1), background-color 250ms cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-approach-cta:hover {
  transform: translateY(-2px);
  background: #D4A968;
  box-shadow: 0 18px 40px -12px rgba(184, 137, 74, 0.7);
}
.acme-approach-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #070C1A;
  color: #B8894A;
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-approach-cta:hover .acme-approach-cta-arrow {
  transform: translate(2px, -2px);
}
/* Responsive */
@media (max-width: 1024px) {
  .acme-approach-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .acme-approach-cards {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-approach-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .acme-approach-card-inner,
  .acme-approach-card-inner:hover {
    transform: none;
    transition: none;
  }
}
.acme-trust {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
  background: #FBF8F3;
  overflow: hidden;
}
.acme-trust-inner {
  position: relative;
}
.acme-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr) minmax(0, 0.95fr);
  gap: clamp(20px, 2.4vw, 36px);
  align-items: start;
}
/* Reveal */
[data-trust-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-trust-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-trust-reveal="right"] {
  transition-delay: 0.12s;
}
[data-trust-reveal="up"] {
  transition-delay: 0.06s;
}
[data-trust-reveal="stagger"] {
  transition-delay: calc(0.08s * var(--i, 0) + 0.18s);
}
/* ============ LEFT COLUMN ============ */
.acme-trust-col-lead {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.acme-trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font: 600 12px/1 "Figtree", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8E6531;
  margin: 0;
}
.acme-trust-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B8894A;
  box-shadow: 0 0 0 3px rgba(184, 137, 74, 0.18);
}
.acme-trust-heading {
  margin: 0;
  color: #0A2240;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.acme-trust-lede {
  margin: 0;
  color: #4A5A75;
  font: 400 clamp(15px, 1.05vw, 16px)/1.7 "Figtree", system-ui, -apple-system, sans-serif;
  max-width: 42ch;
}
.acme-trust-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.acme-trust-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #FFFFFF;
  border: 1px solid #E6DCC6;
  border-radius: 14px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-trust-feature:hover {
  transform: translateY(-2px);
  border-color: #D6C9AC;
  box-shadow: 0 12px 32px -20px rgba(10, 34, 64, 0.3);
}
.acme-trust-feature-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(184, 137, 74, 0.12);
  color: #8E6531;
}
.acme-trust-feature-icon svg {
  width: 20px;
  height: 20px;
}
.acme-trust-feature-body {
  min-width: 0;
}
.acme-trust-feature-title {
  margin: 0 0 2px;
  font: 600 15px/1.35 "Manrope", system-ui, -apple-system, sans-serif;
  color: #0A2240;
}
.acme-trust-feature-desc {
  margin: 0;
  font: 400 13px/1.5 "Figtree", system-ui, -apple-system, sans-serif;
  color: #4A5A75;
}
/* ============ CENTER: HERO IMAGE ============ */
.acme-trust-col-hero {
  display: block;
}
.acme-trust-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #F3ECDE;
}
.acme-trust-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.acme-trust-figure-hero {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  box-shadow: 0 30px 60px -40px rgba(10, 34, 64, 0.4);
}
/* ============ RIGHT COLUMN ============ */
.acme-trust-col-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.acme-trust-side-title {
  margin: 0;
  font: 700 clamp(20px, 1.6vw, 24px)/1.25 "Manrope", system-ui, -apple-system, sans-serif;
  color: #0A2240;
  letter-spacing: -0.005em;
  max-width: 18ch;
}
.acme-trust-side-desc {
  margin: 0;
  font: 400 14px/1.65 "Figtree", system-ui, -apple-system, sans-serif;
  color: #4A5A75;
  max-width: 32ch;
}
.acme-trust-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 22px;
  background: #0A2240;
  color: #FBF8F3;
  border-radius: 999px;
  font: 600 14px/1 "Figtree", system-ui, -apple-system, sans-serif;
  text-decoration: none;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 4px;
}
.acme-trust-cta:hover {
  background: #17335A;
  transform: translateY(-1px);
}
.acme-trust-cta-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(184, 137, 74, 0.9);
  color: #0A2240;
  display: grid;
  place-items: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-trust-cta-arrow svg {
  width: 12px;
  height: 12px;
}
.acme-trust-cta:hover .acme-trust-cta-arrow {
  transform: translateX(3px);
}
.acme-trust-figure-side {
  margin-top: 1rem;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  box-shadow: 0 20px 40px -30px rgba(10, 34, 64, 0.35);
}
.acme-trust-figure-mask {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.acme-trust-figure-mask .acme-trust-figure-svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* ============ TABLET ============ */
@media (max-width: 1024px) {
  .acme-trust-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
  }
  .acme-trust-col-lead {
    grid-column: 1 / -1;
  }
  .acme-trust-col-hero {
    grid-column: 1 / 2;
  }
  .acme-trust-col-side {
    grid-column: 2 / 3;
    justify-content: flex-start;
    align-self: stretch;
  }
  .acme-trust-figure-hero {
    aspect-ratio: 3 / 4;
  }
  .acme-trust-col-side .acme-trust-figure-side {
    margin-top: auto;
    aspect-ratio: 25 / 24;
    width: 250px;
    max-width: 100%;
    align-self: flex-start;
    transform: none;
    transform-origin: left bottom;
  }
}
/* ============ MOBILE ============ */
@media (max-width: 720px) {
  .acme-trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .acme-trust-col-lead,
  .acme-trust-col-hero,
  .acme-trust-col-side {
    grid-column: 1 / -1;
  }
  .acme-trust-figure-hero {
    aspect-ratio: 16 / 10;
  }
  .acme-trust-figure-side {
    aspect-ratio: 16 / 10;
  }
  .acme-trust-heading {
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-trust-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .acme-trust-feature {
    transition: none;
  }
  .acme-trust-cta {
    transition: none;
  }
}
.acme-network {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0;
  background: #04060F;
  color: #EAF0FA;
  overflow: hidden;
  isolation: isolate;
}
/* dark-bg-gr: Layer 1, obsidian base with ambient mesh */
.acme-network-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(42% 34% at 12% 8%, rgba(201, 168, 106, 0.16), transparent 68%), radial-gradient(40% 38% at 92% 14%, rgba(62, 107, 168, 0.14), transparent 70%), radial-gradient(55% 45% at 60% 55%, rgba(27, 43, 92, 0.55), transparent 72%), radial-gradient(50% 34% at 82% 100%, rgba(184, 137, 74, 0.12), transparent 72%), radial-gradient(45% 32% at 12% 96%, rgba(42, 106, 130, 0.1), transparent 74%), linear-gradient(168deg, #0C1730 0%, #070C1A 50%, #04060F 100%);
}
/* dark-bg-gr: Layer 2, diagonal aurora sweep */
.acme-network-bg::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0) 38%, rgba(184, 137, 74, 0.05) 47%, rgba(255, 255, 255, 0.07) 50%, rgba(74, 123, 200, 0.05) 53%, rgba(255, 255, 255, 0) 62%, transparent 100%);
  mix-blend-mode: screen;
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
}
/* dark-bg-gr: Layer 3, vignette + hairline sheens + grain */
.acme-network-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 100% at 50% 50%, transparent 48%, rgba(0, 0, 0, 0.55) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 2px), linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, transparent 2px), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 3px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.006) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
/* dark-bg-gr: blurred ambient orbs */
.acme-network-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
}
.acme-network-glow-a {
  top: -20%;
  left: -14%;
  width: 52vw;
  height: 52vw;
  max-width: 820px;
  max-height: 820px;
  background: radial-gradient(circle, rgba(184, 137, 74, 0.42), transparent 66%);
}
.acme-network-glow-b {
  bottom: -26%;
  right: -16%;
  width: 58vw;
  height: 58vw;
  max-width: 880px;
  max-height: 880px;
  background: radial-gradient(circle, rgba(62, 107, 168, 0.4), transparent 66%);
}
.acme-network-glow-c {
  top: 38%;
  left: 46%;
  width: 34vw;
  height: 34vw;
  max-width: 540px;
  max-height: 540px;
  background: radial-gradient(circle, rgba(107, 74, 158, 0.22), transparent 70%);
  opacity: 0.5;
}
.acme-network-vignette {
  display: none;
}
.acme-network-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  mix-blend-mode: screen;
}
.acme-network-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 112px);
}
/* ============ TOP ============ */
.acme-network-top {
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.acme-network-intro {
  display: flex;
  flex-direction: column;
}
.acme-network-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4A968;
}
.acme-network-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B8894A;
  box-shadow: 0 0 0 4px rgba(184, 137, 74, 0.18);
}
.acme-network-heading {
  margin: 0 0 0.75rem;
  color: #EAF0FA;
  max-width: 24ch;
}
.acme-network-lede {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.55;
  color: #A9B7CE;
  max-width: 46ch;
}
/* ============ STATS ============ */
.acme-network-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2vw, 28px);
  align-items: stretch;
}
.acme-network-stat {
  list-style: none;
  display: flex;
}
.acme-network-stat-card {
  position: relative;
  width: 100%;
  min-height: 204px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.2vw, 32px);
  border-radius: 20px;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.035) 45%, rgba(255, 255, 255, 0.012) 100%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(0, 0, 0, 0.22), 0 1px 2px rgba(0, 0, 0, 0.28), 0 20px 48px -28px rgba(0, 0, 0, 0.72), 0 40px 90px -50px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  /* Soft internal lighting: top-left key light */
  /* Mouse-follow spotlight */
  /* Ensure children stack over lighting layers */
}
.acme-network-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(130% 95% at 0% 0%, rgba(255, 255, 255, 0.11), transparent 55%), radial-gradient(120% 90% at 100% 100%, rgba(184, 137, 74, 0.07), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.acme-network-stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(240px 240px at 50% 0%, rgba(184, 137, 74, 0.18), transparent 62%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}
.acme-network-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 137, 74, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(0, 0, 0, 0.22), 0 32px 66px -22px rgba(0, 0, 0, 0.72), 0 0 0 1px rgba(184, 137, 74, 0.24), 0 0 44px -6px rgba(184, 137, 74, 0.24);
}
.acme-network-stat-card:hover::after {
  opacity: 1;
}
.acme-network-stat-card > * {
  position: relative;
  z-index: 1;
}
.acme-network-stat-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #D4A968;
  background: linear-gradient(180deg, rgba(184, 137, 74, 0.18), rgba(184, 137, 74, 0.05));
  border: 1px solid rgba(184, 137, 74, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 6px 16px -8px rgba(184, 137, 74, 0.34);
}
.acme-network-stat-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}
.acme-network-stat-value {
  margin-top: auto;
  padding-top: clamp(28px, 3vw, 44px);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 3.8rem, 3.3rem);
  line-height: 0.95;
  letter-spacing: -0.028em;
  color: #EAF0FA;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "lnum";
  text-shadow: 0 1px 24px rgba(184, 137, 74, 0.12);
  display: block;
}
.acme-network-stat-divider {
  display: block;
  margin: 14px 0 12px;
  height: 1px;
  width: 56px;
  background: linear-gradient(90deg, rgba(184, 137, 74, 0.85) 0%, rgba(184, 137, 74, 0.35) 55%, transparent 100%);
}
.acme-network-stat-label {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  color: #A9B7CE;
  letter-spacing: 0.03em;
  line-height: 1.45;
}
/* ============ BOTTOM ============ */
.acme-network-bottom {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
}
.acme-network-partners-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 520px;
}
.acme-network-partners-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 137, 74, 0.32), transparent);
}
.acme-network-partners-eyebrow {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #D4A968;
  white-space: nowrap;
}
.acme-network-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 960px;
}
.acme-network-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #EAF0FA;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 2px 10px -6px rgba(0, 0, 0, 0.4);
  cursor: default;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1), color 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  /* Illumination wash on hover */
}
.acme-network-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 140% at 50% 0%, rgba(184, 137, 74, 0.2), transparent 65%);
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: -1;
}
.acme-network-pill > * {
  position: relative;
  z-index: 1;
}
.acme-network-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 137, 74, 0.55);
  color: #FFFFFF;
  background: linear-gradient(180deg, rgba(184, 137, 74, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 14px 34px -14px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(184, 137, 74, 0.28), 0 0 28px -4px rgba(184, 137, 74, 0.32);
}
.acme-network-pill:hover::before {
  opacity: 1;
}
.acme-network-pill:hover .acme-network-pill-icon {
  color: #B8894A;
  transform: translateX(2px) scale(1.06);
}
.acme-network-pill-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: #D4A968;
  transition: color 0.32s cubic-bezier(0.22, 1, 0.36, 1), transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-network-pill-icon svg {
  width: 18px;
  height: 18px;
}
/* CTA (left column) */
.acme-network-cta {
  margin-top: clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.acme-network-cta-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(184, 137, 74, 0.55);
}
.acme-network-cta-note {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: #A9B7CE;
  opacity: 0.85;
}
/* ============ REVEAL ============ */
[data-net-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 100ms);
  will-change: opacity, transform;
}
[data-net-reveal].is-in {
  opacity: 1;
  transform: none;
}
/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .acme-network-top {
    grid-template-columns: 1fr;
    gap: clamp(36px, 6vw, 56px);
  }
  .acme-network-heading {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .acme-network-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .acme-network-stat-card {
    min-height: 168px;
    padding: 16px;
    border-radius: 16px;
  }
  .acme-network-stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .acme-network-stat-icon svg {
    width: 16px;
    height: 16px;
  }
  .acme-network-stat-value {
    padding-top: 18px;
    font-size: clamp(1.8rem, 7vw, 2.25rem);
  }
  .acme-network-stat-divider {
    width: 40px;
    margin: 10px 0 8px;
  }
  .acme-network-stat-label {
    font-size: 0.76rem;
    line-height: 1.35;
  }
  .acme-network-pill {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-net-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.acme-block-strategic-partnerships {
  position: relative;
  background: #FBF8F3;
  padding: clamp(80px, 11vw, 140px) 0;
  overflow: hidden;
}
.acme-block-strategic-partnerships .acme-sp-inner {
  position: relative;
  z-index: 1;
}
.acme-block-strategic-partnerships .acme-sp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 900px) {
  .acme-block-strategic-partnerships .acme-sp-grid {
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    gap: clamp(1.5rem, 3vw, 2.75rem);
  }
}
@media (min-width: 1200px) {
  .acme-block-strategic-partnerships .acme-sp-grid {
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    gap: clamp(1.5rem, 2.5vw, 3rem);
  }
}
.acme-block-strategic-partnerships .acme-sp-lead,
.acme-block-strategic-partnerships .acme-sp-cards {
  min-width: 0;
}
.acme-block-strategic-partnerships .acme-sp-lead {
  position: relative;
}
@media (min-width: 900px) {
  .acme-block-strategic-partnerships .acme-sp-lead {
    padding-top: 1rem;
  }
}
.acme-block-strategic-partnerships .acme-sp-lead-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.acme-block-strategic-partnerships .acme-sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B8894A;
}
.acme-block-strategic-partnerships .acme-sp-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #B8894A;
  box-shadow: 0 0 0 4px rgba(184, 137, 74, 0.12);
}
.acme-block-strategic-partnerships .acme-sp-heading {
  margin: 0 0 0.75rem;
  max-width: 20ch;
  color: #0A2240;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  letter-spacing: -0.016em;
  text-wrap: balance;
}
@media (min-width: 900px) {
  .acme-block-strategic-partnerships .acme-sp-heading {
    max-width: 22ch;
  }
}
@media (min-width: 1200px) {
  .acme-block-strategic-partnerships .acme-sp-heading {
    max-width: 24ch;
  }
}
.acme-block-strategic-partnerships .acme-sp-heading-em {
  color: #B8894A;
  font-style: normal;
  font-weight: inherit;
  white-space: nowrap;
}
.acme-block-strategic-partnerships .acme-sp-rule {
  display: block;
  width: 44px;
  height: 2px;
  margin: 0 0 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #B8894A 0%, rgba(184, 137, 74, 0.55) 55%, rgba(184, 137, 74, 0) 100%);
  opacity: 0.95;
}
.acme-block-strategic-partnerships .acme-sp-lede {
  margin: 0 0 1rem;
  max-width: 38ch;
  color: #4A5A75;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.55;
  text-wrap: pretty;
}
@media (min-width: 900px) {
  .acme-block-strategic-partnerships .acme-sp-lede {
    max-width: 32ch;
  }
}
.acme-block-strategic-partnerships .acme-sp-cta-row {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1rem);
  flex-wrap: wrap;
  margin-top: 0;
}
.acme-block-strategic-partnerships .acme-sp-cta {
  margin: 0;
}
.acme-block-strategic-partnerships .acme-sp-cta-note {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(74, 90, 117, 0.78);
}
.acme-block-strategic-partnerships .acme-sp-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .acme-block-strategic-partnerships .acme-sp-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 2.4vw, 2rem);
  }
}
@media (min-width: 900px) {
  .acme-block-strategic-partnerships .acme-sp-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: clamp(2rem, 2.2vw, 2rem);
  }
}
.acme-block-strategic-partnerships .acme-sp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 192px;
  padding: clamp(0.875rem, 1.3vw, 1.125rem) clamp(1.125rem, 2vw, 1.5rem) clamp(0.875rem, 1.35vw, 1.125rem);
  background: radial-gradient(120% 90% at 0% 0%, rgba(10, 34, 64, 0.04) 0%, transparent 55%), radial-gradient(90% 70% at 100% 100%, rgba(184, 137, 74, 0.03) 0%, transparent 60%), linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 100%);
  border: 1px solid rgba(230, 220, 198, 0.38);
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 1px 2px rgba(10, 34, 64, 0.02), 0 2px 5px -3px rgba(10, 34, 64, 0.06), 0 14px 32px -26px rgba(10, 34, 64, 0.14);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.acme-block-strategic-partnerships .acme-sp-card::before,
.acme-block-strategic-partnerships .acme-sp-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-block-strategic-partnerships .acme-sp-card::before {
  top: -30%;
  right: -20%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(10, 34, 64, 0.08) 0%, transparent 70%);
  opacity: 0.8;
}
.acme-block-strategic-partnerships .acme-sp-card::after {
  bottom: -35%;
  left: -15%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(184, 137, 74, 0.07) 0%, transparent 70%);
  opacity: 0.75;
}
.acme-block-strategic-partnerships .acme-sp-card:hover::before {
  transform: translate(-8px, 8px) scale(1.06);
  opacity: 1;
}
.acme-block-strategic-partnerships .acme-sp-card:hover::after {
  transform: translate(8px, -8px) scale(1.08);
  opacity: 1;
}
.acme-block-strategic-partnerships .acme-sp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 201, 172, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset, 0 2px 6px -2px rgba(10, 34, 64, 0.1), 0 28px 56px -26px rgba(10, 34, 64, 0.28), 0 10px 22px -14px rgba(10, 34, 64, 0.16);
}
.acme-block-strategic-partnerships .acme-sp-card:hover .acme-sp-logo {
  transform: scale(1.04);
}
.acme-block-strategic-partnerships .acme-sp-card:hover .acme-sp-open {
  background: #0A2240;
  color: #ffffff;
  border-color: #0A2240;
  transform: scale(1.06);
  box-shadow: 0 10px 22px -10px rgba(10, 34, 64, 0.42);
}
.acme-block-strategic-partnerships .acme-sp-card:hover .acme-sp-open svg {
  transform: translate(1px, -1px);
}
.acme-block-strategic-partnerships .acme-sp-card:hover .acme-sp-bloom {
  transform: scale(1.06);
  opacity: 0.85;
}
.acme-block-strategic-partnerships .acme-sp-card:focus-within {
  border-color: rgba(184, 137, 74, 0.55);
}
.acme-block-strategic-partnerships .acme-sp-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  z-index: 2;
}
.acme-block-strategic-partnerships .acme-sp-card-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.42;
}
.acme-block-strategic-partnerships .acme-sp-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85) inset, 0 0 0 1px rgba(10, 34, 64, 0.06), 0 5px 14px -10px rgba(10, 34, 64, 0.24);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.acme-block-strategic-partnerships .acme-sp-titles {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.acme-block-strategic-partnerships .acme-sp-name {
  margin: 0;
  color: #0A2240;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.017em;
  line-height: 1.2;
}
.acme-block-strategic-partnerships .acme-sp-name small {
  display: inline;
  margin-left: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A5A75;
  letter-spacing: 0;
}
.acme-block-strategic-partnerships .acme-sp-category {
  margin: 3px 0 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.008em;
  text-transform: none;
  color: rgba(74, 90, 117, 0.82);
}
.acme-block-strategic-partnerships .acme-sp-desc {
  margin: 0.5rem 0 0;
  padding: 0 56px 0 0;
  max-width: none;
  color: rgba(10, 34, 64, 0.68);
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.9125rem;
  line-height: 1.55;
  letter-spacing: 0.003em;
  text-wrap: pretty;
  position: relative;
  z-index: 2;
}
.acme-block-strategic-partnerships .acme-sp-open {
  position: absolute;
  right: clamp(1.125rem, 1.8vw, 1.5rem);
  bottom: clamp(1.125rem, 1.8vw, 1.5rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  color: #0A2240;
  border: 1px solid rgba(10, 34, 64, 0.12);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 2px 6px -2px rgba(10, 34, 64, 0.1), 0 1px 2px rgba(10, 34, 64, 0.06);
  transition: background-color 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.acme-block-strategic-partnerships .acme-sp-open svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.acme-block-strategic-partnerships .acme-sp-open:hover {
  background: #0A2240;
  color: #ffffff;
  border-color: #0A2240;
  transform: scale(1.06);
  box-shadow: 0 10px 22px -10px rgba(10, 34, 64, 0.42);
}
.acme-block-strategic-partnerships .acme-sp-open:hover svg {
  transform: translate(1px, -1px);
}
.acme-block-strategic-partnerships .acme-sp-open:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 137, 74, 0.45), 0 2px 6px -2px rgba(10, 34, 64, 0.1);
}
.acme-block-strategic-partnerships .acme-sp-bloom {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  opacity: 0.7;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="navy"] .acme-sp-card-head {
  color: #0A2240;
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="navy"] .acme-sp-logo {
  background: rgba(10, 34, 64, 0.1);
  color: #0A2240;
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="navy"] .acme-sp-bloom {
  background: radial-gradient(circle at 30% 30%, rgba(10, 34, 64, 0.14), rgba(10, 34, 64, 0) 70%);
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="violet"] .acme-sp-card-head {
  color: #6E56CF;
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="violet"] .acme-sp-logo {
  background: rgba(110, 86, 207, 0.12);
  color: #4B37A6;
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="violet"] .acme-sp-bloom {
  background: radial-gradient(circle at 30% 30%, rgba(110, 86, 207, 0.14), rgba(110, 86, 207, 0) 70%);
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="sage"] .acme-sp-card-head {
  color: #3FA687;
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="sage"] .acme-sp-logo {
  background: rgba(63, 166, 135, 0.14);
  color: #2E7A62;
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="sage"] .acme-sp-bloom {
  background: radial-gradient(circle at 30% 30%, rgba(63, 166, 135, 0.14), rgba(63, 166, 135, 0) 70%);
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="gold"] .acme-sp-card-head {
  color: #B8894A;
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="gold"] .acme-sp-logo {
  background: rgba(184, 137, 74, 0.16);
  color: #8E6531;
}
.acme-block-strategic-partnerships .acme-sp-card[data-tone="gold"] .acme-sp-bloom {
  background: radial-gradient(circle at 30% 30%, rgba(184, 137, 74, 0.18), rgba(184, 137, 74, 0) 70%);
}
.acme-portfolio {
  position: relative;
  padding: clamp(80px, 11vw, 140px) 0;
  background: #04060F;
  color: #F2ECDD;
  overflow: hidden;
  isolation: isolate;
}
/* dark-bg-gr: Layer 1 obsidian mesh */
.acme-portfolio-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(42% 34% at 12% 8%, rgba(201, 168, 106, 0.16), transparent 68%), radial-gradient(40% 38% at 92% 14%, rgba(62, 107, 168, 0.14), transparent 70%), radial-gradient(55% 45% at 60% 55%, rgba(27, 43, 92, 0.55), transparent 72%), radial-gradient(50% 34% at 82% 100%, rgba(184, 137, 74, 0.12), transparent 72%), radial-gradient(45% 32% at 12% 96%, rgba(42, 106, 130, 0.1), transparent 74%), linear-gradient(168deg, #0C1730 0%, #070C1A 50%, #04060F 100%);
}
/* dark-bg-gr: Layer 2 aurora sweep */
.acme-portfolio-bg::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0) 38%, rgba(184, 137, 74, 0.05) 47%, rgba(255, 255, 255, 0.07) 50%, rgba(74, 123, 200, 0.05) 53%, rgba(255, 255, 255, 0) 62%, transparent 100%);
  mix-blend-mode: screen;
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
}
/* dark-bg-gr: Layer 3 vignette + grain */
.acme-portfolio-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 100% at 50% 50%, transparent 48%, rgba(0, 0, 0, 0.55) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 2px), linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, transparent 2px), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 3px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.006) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.acme-portfolio-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  pointer-events: none;
}
.acme-portfolio-glow-a {
  top: -20%;
  left: -14%;
  width: 52vw;
  height: 52vw;
  max-width: 820px;
  max-height: 820px;
  background: radial-gradient(circle, rgba(184, 137, 74, 0.42), transparent 66%);
}
.acme-portfolio-glow-b {
  bottom: -26%;
  right: -16%;
  width: 58vw;
  height: 58vw;
  max-width: 880px;
  max-height: 880px;
  background: radial-gradient(circle, rgba(62, 107, 168, 0.4), transparent 66%);
}
.acme-portfolio-glow-c {
  top: 38%;
  left: 46%;
  width: 34vw;
  height: 34vw;
  max-width: 540px;
  max-height: 540px;
  background: radial-gradient(circle, rgba(107, 74, 158, 0.22), transparent 70%);
  opacity: 0.5;
}
.acme-portfolio-inner {
  position: relative;
  z-index: 1;
}
/* ========== Header ========== */
.acme-portfolio-head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.acme-portfolio-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D4A968;
  margin: 0 0 1.5rem;
}
.acme-portfolio-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #B8894A;
  box-shadow: 0 0 0 4px rgba(184, 137, 74, 0.18);
}
.acme-portfolio-heading {
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}
.acme-portfolio-heading-em {
  font-style: normal;
  color: #D4A968;
  font-weight: 700;
}
.acme-portfolio-lede {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 1.3rem, 1.15rem);
  line-height: 1.65;
  color: rgba(242, 236, 221, 0.78);
  margin: 0 auto;
  max-width: 58ch;
}
/* ========== Filters ========== */
.acme-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  max-width: 960px;
}
.acme-portfolio-pill {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: rgba(242, 236, 221, 0.82);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-portfolio-pill:hover {
  color: #FFFFFF;
  border-color: rgba(184, 137, 74, 0.45);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 20px -10px rgba(184, 137, 74, 0.4);
}
.acme-portfolio-pill-active {
  color: #04060F;
  background: linear-gradient(180deg, #D4A968, #B8894A);
  border-color: #B8894A;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 10px 26px -10px rgba(184, 137, 74, 0.55);
}
.acme-portfolio-pill-active:hover {
  color: #04060F;
  transform: translateY(-1px);
}
/* ========== Slider ========== */
.acme-portfolio-slider {
  position: relative;
}
.acme-portfolio-viewport {
  overflow: hidden;
  padding: 6px 4px 24px;
  margin: 0 -4px;
}
.acme-portfolio-track {
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.acme-portfolio-card {
  flex: 0 0 calc((100% - clamp(18px, 2vw, 28px) * 2) / 3);
  display: flex;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-portfolio-card[hidden] {
  display: none;
}
.acme-portfolio-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 60%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 40px -24px rgba(0, 0, 0, 0.65);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-portfolio-card-inner:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(184, 137, 74, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 30px 60px -22px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(184, 137, 74, 0.2), 0 0 60px -18px rgba(184, 137, 74, 0.4);
}
/* Cover */
.acme-portfolio-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-portfolio-card-inner:hover .acme-portfolio-cover {
  transform: scale(1.04);
}
.acme-portfolio-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 20% 20%, rgba(255, 255, 255, 0.14), transparent 60%), radial-gradient(80% 80% at 100% 100%, rgba(0, 0, 0, 0.4), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.acme-portfolio-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mix-blend-mode: overlay;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}
.acme-portfolio-cover[data-cover="a"] {
  background: linear-gradient(135deg, #17335A 0%, #0A2240 55%, #061634 100%);
}
.acme-portfolio-cover[data-cover="b"] {
  background: linear-gradient(135deg, #2A6A82 0%, #17335A 60%, #06131F 100%);
}
.acme-portfolio-cover[data-cover="c"] {
  background: linear-gradient(135deg, #6B4A9E 0%, #1B2B5C 60%, #0A1024 100%);
}
.acme-portfolio-cover[data-cover="d"] {
  background: linear-gradient(135deg, #C9A86A 0%, #8E6531 50%, #2A1B0B 100%);
}
.acme-portfolio-cover[data-cover="e"] {
  background: linear-gradient(135deg, #3E6BA8 0%, #1B2B5C 55%, #050B1E 100%);
}
.acme-portfolio-cover[data-cover="f"] {
  background: linear-gradient(135deg, #D4A968 0%, #B8894A 45%, #3A2B15 100%);
}
.acme-portfolio-cover[data-cover="g"] {
  background: linear-gradient(135deg, #17335A 0%, #2A6A82 55%, #0A1E3B 100%);
}
.acme-portfolio-cover[data-cover="h"] {
  background: linear-gradient(135deg, #8E6531 0%, #17335A 55%, #050D22 100%);
}
.acme-portfolio-logo {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  color: #04060F;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 24px -12px rgba(0, 0, 0, 0.65);
}
/* Body */
.acme-portfolio-body {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 20px;
  gap: 12px;
  flex: 1;
}
.acme-portfolio-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.acme-portfolio-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(184, 137, 74, 0.14);
  color: #D4A968;
  border: 1px solid rgba(184, 137, 74, 0.3);
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.acme-portfolio-stage {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 236, 221, 0.6);
}
.acme-portfolio-name {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
  color: #FFFFFF;
  margin: 2px 0 0;
  letter-spacing: -0.01em;
}
.acme-portfolio-desc {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.925rem;
  line-height: 1.55;
  color: rgba(242, 236, 221, 0.74);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.acme-portfolio-cta {
  margin-top: 6px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: gap 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-portfolio-cta svg {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-portfolio-card-inner:hover .acme-portfolio-cta {
  background: #B8894A;
  border-color: #B8894A;
  color: #04060F;
  gap: 12px;
}
.acme-portfolio-card-inner:hover .acme-portfolio-cta svg {
  transform: translate(2px, -2px);
}
/* ========== Nav ========== */
.acme-portfolio-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: clamp(24px, 3vw, 40px);
}
.acme-portfolio-arrow {
  appearance: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 24px -14px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-portfolio-arrow:hover {
  background: #B8894A;
  border-color: #B8894A;
  color: #04060F;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(184, 137, 74, 0.55);
}
.acme-portfolio-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.acme-portfolio-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1), width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-portfolio-dot-active {
  background: #B8894A;
  width: 24px;
}
/* ========== Reveal ========== */
[data-portfolio-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-portfolio-reveal].is-in {
  opacity: 1;
  transform: none;
}
/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .acme-portfolio-card {
    flex-basis: calc((100% - clamp(18px, 2vw, 28px)) / 2);
  }
}
@media (max-width: 640px) {
  .acme-portfolio-card {
    flex-basis: 100%;
  }
  .acme-portfolio-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }
  .acme-portfolio-pill {
    flex: 0 0 auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-portfolio-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .acme-portfolio-track {
    transition: none;
  }
  .acme-portfolio-card-inner,
  .acme-portfolio-card-inner:hover {
    transform: none;
    transition: none;
  }
}
.acme-faq {
  position: relative;
  padding: clamp(80px, 11vw, 160px) 0;
  background: #FFFFFF;
  color: #0A2240;
  overflow: hidden;
  isolation: isolate;
}
/* Soft ambient depth on white */
.acme-faq-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.acme-faq-bg-glow {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
}
.acme-faq-bg-glow-a {
  width: 640px;
  height: 640px;
  top: -220px;
  left: -160px;
  background: radial-gradient(closest-side, rgba(184, 137, 74, 0.1), transparent 70%);
}
.acme-faq-bg-glow-b {
  width: 720px;
  height: 720px;
  bottom: -260px;
  right: -200px;
  background: radial-gradient(closest-side, rgba(10, 34, 64, 0.08), transparent 70%);
}
.acme-faq-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
}
/* Header */
.acme-faq-header {
  text-align: center;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.acme-faq-eyebrow {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #B8894A;
}
.acme-faq-title {
  margin: 0;
  color: #0A2240;
}
.acme-faq-lede {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.55;
  color: #4A5A75;
  max-width: 560px;
}
/* Search */
.acme-faq-search {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.acme-faq-search-field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E6DCC6;
  border-radius: 999px;
  padding: 0 18px;
  box-shadow: 0 1px 2px rgba(10, 34, 64, 0.03);
  transition: border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-faq-search-field:focus-within {
  border-color: rgba(184, 137, 74, 0.55);
  box-shadow: 0 0 0 4px rgba(184, 137, 74, 0.12);
}
.acme-faq-search-icon {
  display: inline-flex;
  color: #4A5A75;
  margin-right: 10px;
}
.acme-faq-search-input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 14px 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: #0A2240;
}
.acme-faq-search-input::placeholder {
  color: #4A5A75;
}
.acme-faq-search-clear {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #4A5A75;
  background: rgba(10, 34, 64, 0.06);
  transition: background-color 0.2s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-faq-search-clear:hover {
  background: rgba(10, 34, 64, 0.12);
  color: #0A2240;
}
.acme-faq-search-empty {
  margin: 4px 0 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: #4A5A75;
}
.acme-faq-item[hidden] {
  display: none;
}
/* Accordion list */
.acme-faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.acme-faq-item {
  background: #FFFFFF;
  border: 1px solid #E6DCC6;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(10, 34, 64, 0.03);
  transition: background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-faq-item:hover {
  background: rgba(184, 137, 74, 0.03);
  border-color: rgba(184, 137, 74, 0.45);
  box-shadow: 0 10px 30px -18px rgba(10, 34, 64, 0.22), 0 2px 4px rgba(10, 34, 64, 0.04);
}
.acme-faq-item.is-open {
  background: #FFFFFF;
  border-color: rgba(184, 137, 74, 0.55);
  box-shadow: 0 14px 36px -20px rgba(10, 34, 64, 0.22), 0 2px 6px rgba(10, 34, 64, 0.05);
}
/* Question button */
.acme-faq-q {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 22px 28px;
  cursor: pointer;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.4;
  font-weight: 600;
  color: #0A2240;
  letter-spacing: -0.005em;
}
.acme-faq-q:focus-visible {
  outline: 2px solid #B8894A;
  outline-offset: 2px;
  border-radius: 18px;
}
.acme-faq-q-text {
  flex: 1;
}
/* Icon */
.acme-faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #E6DCC6;
  background: rgba(184, 137, 74, 0.04);
  color: #B8894A;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-faq-item:hover .acme-faq-icon {
  background: rgba(184, 137, 74, 0.1);
  border-color: rgba(184, 137, 74, 0.45);
  transform: rotate(90deg);
}
.acme-faq-item.is-open .acme-faq-icon {
  background: #0A2240;
  border-color: #0A2240;
  color: #FBF8F3;
  transform: rotate(45deg);
}
/* Answer panel: smooth height + opacity */
.acme-faq-a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.42s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-faq-item.is-open .acme-faq-a {
  opacity: 1;
}
.acme-faq-a-inner {
  padding: 0 28px 24px;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #4A5A75;
}
.acme-faq-a-inner p {
  margin: 0;
}
/* CTA */
.acme-faq-cta {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}
.acme-faq-cta-card {
  width: 100%;
  max-width: 640px;
  padding: 40px 44px 44px;
  border-radius: 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF7F0 100%);
  border: 1px solid #E6DCC6;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 12px 32px -20px rgba(10, 34, 64, 0.18);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.acme-faq-cta-heading {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0A2240;
}
.acme-faq-cta-lede {
  margin: 0;
  max-width: 44ch;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #4A5A75;
}
.acme-faq-cta-actions {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.acme-faq-cta-btn {
  align-self: center;
}
.acme-faq-cta-secondary {
  margin: 20px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  color: #4A5A75;
}
.acme-faq-cta-secondary-lede {
  color: #4A5A75;
}
.acme-faq-cta-secondary-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #B8894A;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-faq-cta-secondary-link svg {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-faq-cta-secondary-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 14px;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-faq-cta-secondary-link:hover {
  color: #B8894A;
}
.acme-faq-cta-secondary-link:hover::after {
  transform: scaleX(1);
}
.acme-faq-cta-secondary-link:hover svg {
  transform: translateX(3px);
}
.acme-faq-cta-secondary-link:focus-visible {
  outline: none;
}
.acme-faq-cta-secondary-link:focus-visible::after {
  transform: scaleX(1);
}
@media (max-width: 720px) {
  .acme-faq-cta {
    margin-top: 56px;
  }
  .acme-faq-cta-card {
    padding: 32px 24px 34px;
    border-radius: 20px;
  }
  .acme-faq-cta-heading {
    font-size: 1.3125rem;
  }
  .acme-faq-cta-actions {
    gap: 14px;
  }
}
/* Scroll reveal */
[data-faq-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--acme-faq-delay, 0ms);
}
[data-faq-reveal].is-in {
  opacity: 1;
  transform: none;
}
/* Responsive */
@media (max-width: 1024px) {
  .acme-faq-q {
    padding: 20px 22px;
    font-size: 1rem;
  }
  .acme-faq-a-inner {
    padding: 0 22px 22px;
  }
}
@media (max-width: 720px) {
  .acme-faq-list {
    gap: 12px;
  }
  .acme-faq-item {
    border-radius: 16px;
  }
  .acme-faq-q {
    padding: 18px 18px;
    gap: 16px;
  }
  .acme-faq-icon {
    width: 32px;
    height: 32px;
  }
  .acme-faq-a-inner {
    padding: 0 18px 20px;
  }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-faq-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .acme-faq-item,
  .acme-faq-icon,
  .acme-faq-a {
    transition: none;
  }
}
.acme-site-footer {
  position: relative;
  background: #FBF8F3;
  color: #0A2240;
  padding-block: 6rem 1.5rem;
  border-top: 1px solid #E6DCC6;
  overflow: hidden;
}
.acme-site-footer::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 60vmin;
  height: 60vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 137, 74, 0.22) 0%, rgba(184, 137, 74, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.acme-site-footer-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 4rem;
  padding-bottom: 4rem;
  z-index: 1;
}
.acme-site-footer-lede {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.acme-site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #0A2240;
  text-decoration: none;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.acme-site-footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #B8894A 0%, #8E6531 100%);
  color: #FBF8F3;
  box-shadow: 0 6px 20px -8px rgba(184, 137, 74, 0.6);
}
.acme-site-footer-tag {
  max-width: 26rem;
  margin: 0;
  color: #4A5A75;
  font-size: 0.95rem;
  line-height: 1.55;
}
.acme-site-footer-mail {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  border: 1px solid #E6DCC6;
  border-radius: 999px;
  color: #0A2240;
  text-decoration: none;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-site-footer-mail-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #F3ECDE;
  color: #B8894A;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-site-footer-mail:hover {
  border-color: rgba(184, 137, 74, 0.45);
  color: #D4A968;
}
.acme-site-footer-mail:hover .acme-site-footer-mail-arrow {
  transform: rotate(-45deg);
  background: #B8894A;
  color: #FBF8F3;
}
.acme-site-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.acme-site-footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.acme-site-footer-col-title {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7A879C;
}
.acme-site-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.acme-site-footer-col ul li a {
  display: inline-flex;
  align-items: center;
  color: #4A5A75;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  transition: color 0.2s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.acme-site-footer-col ul li a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 1px;
  background: #B8894A;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-site-footer-col ul li a:hover {
  color: #0A2240;
}
.acme-site-footer-col ul li a:hover::after {
  width: 14px;
}
.acme-site-footer-col-plain li {
  color: #4A5A75;
  font-size: 0.95rem;
}
.acme-site-footer-base {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
  padding-top: 1.5rem;
  border-top: 1px solid #E6DCC6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.acme-site-footer-copy {
  color: #7A879C;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.acme-site-footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
.acme-site-footer-legal a {
  color: #4A5A75;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-site-footer-legal a:hover {
  color: #0A2240;
}
.acme-site-footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}
.acme-site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid #E6DCC6;
  border-radius: 50%;
  color: #4A5A75;
  transition: color 0.2s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.acme-site-footer-social a:hover {
  color: #FBF8F3;
  border-color: #B8894A;
  background: #B8894A;
}
@media (max-width: 900px) {
  .acme-site-footer {
    padding-block: 4rem 1.5rem;
  }
  .acme-site-footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .acme-site-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .acme-site-footer-base {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }
  .acme-site-footer-legal {
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .acme-site-footer-cols {
    grid-template-columns: 1fr;
  }
}
.acme-block-hero {
  padding-block: 120px;
}
@media (max-width: 1024px) {
  .acme-block-hero {
    padding-block: 100px;
  }
}
@media (max-width: 720px) {
  .acme-block-hero {
    padding-block: 60px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-style: normal;
  color: #0A2240;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.5rem, 1.75rem + 3.75vw, 4rem);
  line-height: 1.125;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 35px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (max-width: 1279px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 1024px) {
  h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 720px) {
  h2 {
    font-size: 25px;
    line-height: 34px;
  }
}
h3 {
  font-size: clamp(1.375rem, 1.2rem + 0.9vw, 1.75rem);
  line-height: 1.25;
  font-weight: 700;
}
p {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.55;
  font-weight: 400;
  margin: 0 0 1rem;
}
body {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  background: #FBF8F3;
  color: #0A2240;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.55;
  font-weight: 400;
}
