@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../vendor/roboto/roboto-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../vendor/roboto/roboto-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #110d07;
  --blue: #005692;
  --blue-bright: #005692;
  --sky: #e7e6e7;
  --line: #005692;
  --gold: #ffc04d;
  --mint: #005692;
  --violet: #919499;
  --magenta: #005692;
  --deep: #110d07;
  --navy: #005692;
  --muted: #5f6368;
  --panel: #ffffff;
  --shadow: 0 28px 70px rgba(17, 13, 7, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Roboto, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  background: #ffffff;
}

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

.section-squares {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-squares span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  background: var(--square-color, var(--blue));
  opacity: 0.28;
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.62), 6px 8px 22px rgba(25, 185, 255, 0.18);
  transform: translate3d(0, 0, 0) rotate(0deg);
  animation: ambientSquareDrift calc(var(--d, 10s) * 0.58) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}

.section-squares span:nth-child(5n + 1) {
  --square-color: #030b2d;
}

.section-squares span:nth-child(5n + 2) {
  --square-color: #7357ff;
}

.section-squares span:nth-child(5n + 3) {
  --square-color: #a9b7d4;
}

.section-squares span:nth-child(5n + 4) {
  --square-color: #19b9ff;
}

.section-squares span:nth-child(5n) {
  --square-color: #36e2c2;
}

.square-burst {
  position: absolute;
  z-index: 1;
  width: 86px;
  height: 86px;
  pointer-events: none;
}

.square-burst span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--burst-color);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.78), 8px 10px 28px rgba(25, 185, 255, 0.22);
  opacity: 0;
  transform: translate(calc(var(--start-x) - 50%), calc(var(--start-y) - 50%)) scale(0.72);
  animation: squareBurst 2.65s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  animation-delay: var(--burst-delay, 0s);
}

.square-burst span:nth-child(1) {
  --burst-color: #36e2c2;
  --start-x: -12px;
  --start-y: -12px;
  --burst-x: -42px;
  --burst-y: -34px;
}

.square-burst span:nth-child(2) {
  --burst-color: #7357ff;
  --start-x: 8px;
  --start-y: -12px;
  --burst-x: 40px;
  --burst-y: -38px;
  animation-delay: calc(var(--burst-delay, 0s) + 0.04s);
}

.square-burst span:nth-child(3) {
  --burst-color: #ffffff;
  --start-x: -12px;
  --start-y: 8px;
  --burst-x: -38px;
  --burst-y: 36px;
  animation-delay: calc(var(--burst-delay, 0s) + 0.08s);
}

.square-burst span:nth-child(4) {
  --burst-color: #19b9ff;
  --start-x: 8px;
  --start-y: 8px;
  --burst-x: 44px;
  --burst-y: 40px;
  animation-delay: calc(var(--burst-delay, 0s) + 0.12s);
}

.square-burst-stats {
  right: clamp(32px, 9vw, 160px);
  top: 8px;
  --burst-delay: -0.4s;
}

.square-burst-solutions {
  right: clamp(28px, 7vw, 132px);
  top: 142px;
  --burst-delay: -1.3s;
}

.stats,
.about-section,
.contact-section,
.site-footer {
  position: relative;
  overflow: hidden;
}

.hero-content,
.solution-tabs,
.solutions-inner,
.about-inner,
.contact-inner,
.footer-inner,
.stat-card {
  position: relative;
  z-index: 3;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 106px;
  padding: 18px clamp(24px, 7.5vw, 164px);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(1.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), 0 18px 46px rgba(25, 185, 255, 0.08);
  transition: background 240ms ease, box-shadow 240ms ease, min-height 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 90px;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(25px) saturate(1.38);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25), 0 18px 46px rgba(3, 11, 45, 0.13);
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: clamp(132px, 12vw, 188px);
  line-height: 0;
  transform-origin: 50% 50%;
  transition: filter 240ms ease;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: 50% 50%;
  animation: logoIdle 5.2s ease-in-out infinite;
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.25, 1.4);
}

.logo::after {
  position: absolute;
  right: -9px;
  top: 16%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 0 rgba(25, 185, 255, 0.34);
  content: "";
  opacity: 0;
  transform: scale(0.6);
  animation: logoSignal 3.2s ease-in-out infinite;
  pointer-events: none;
}

.logo:hover {
  filter: drop-shadow(0 10px 18px rgba(0, 95, 159, 0.18));
}

.logo:hover img {
  transform: translateY(-3px) scale(1.045) rotate(-1deg);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  font-size: 17px;
  line-height: 24px;
  font-weight: 800;
}

.main-nav > a,
.nav-dropdown > summary {
  position: relative;
  padding: 10px 0;
}

.main-nav > a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--blue-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown[open] > summary,
.nav-dropdown.is-active > summary {
  color: var(--blue);
}

.nav-dropdown[open] > summary::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  display: none;
  width: min(360px, 80vw);
  max-height: min(68vh, 520px);
  padding: 12px;
  border: 1px solid rgba(0, 95, 159, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 68px rgba(4, 35, 73, 0.16);
  backdrop-filter: blur(22px);
  overflow-y: auto;
  transform: translateX(-50%);
}

.nav-submenu-compact {
  width: 290px;
}

.nav-dropdown[open] > .nav-submenu {
  display: grid;
}

.nav-submenu a {
  display: block;
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-submenu a:hover,
.nav-submenu a.is-active {
  color: var(--blue);
  background: rgba(14, 155, 232, 0.09);
  transform: translateX(3px);
}

@media (min-width: 1121px) {
  .main-nav {
    align-self: stretch;
  }

  .nav-dropdown {
    position: static;
    display: flex;
    align-items: center;
  }

  .nav-submenu,
  .nav-submenu-compact {
    position: absolute;
    top: 100%;
    left: clamp(24px, 7.5vw, 164px);
    right: clamp(24px, 7.5vw, 164px);
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: auto;
    max-height: min(72vh, 620px);
    padding: 1px;
    border: 1px solid rgba(126, 205, 255, 0.24);
    border-radius: 0 0 8px 8px;
    background: rgba(126, 205, 255, 0.2);
    box-shadow: 0 34px 80px rgba(0, 12, 25, 0.34);
    backdrop-filter: blur(24px) saturate(1.2);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-12px) scale(0.99);
    transform-origin: 50% 0;
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .nav-submenu::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 112px;
    height: 3px;
    background: linear-gradient(90deg, var(--mint), var(--blue-bright), var(--violet));
    box-shadow: 0 0 24px rgba(54, 226, 194, 0.44);
    content: "";
    pointer-events: none;
  }

  .nav-submenu a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 82px;
    padding: 18px 54px 18px 22px;
    border-radius: 3px;
    color: rgba(241, 249, 255, 0.9);
    background: rgba(5, 27, 44, 0.98);
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    transition:
      color 180ms ease,
      background 180ms ease,
      box-shadow 180ms ease;
  }

  .nav-submenu a::after {
    position: absolute;
    right: 22px;
    top: 50%;
    color: var(--blue-bright);
    content: "\2192";
    font-size: 23px;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 180ms ease, color 180ms ease;
  }

  .nav-submenu a:hover,
  .nav-submenu a.is-active {
    color: #ffffff;
    background: #0b304a;
    box-shadow: inset 3px 0 0 #36e2c2;
    transform: none;
  }

  .nav-submenu a:hover::after,
  .nav-submenu a.is-active::after {
    color: #36e2c2;
    transform: translate(5px, -50%);
  }

  .nav-dropdown[open] > .nav-submenu,
  .nav-dropdown:hover > .nav-submenu,
  .nav-dropdown:focus-within > .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}

.contact-button,
.primary-hero-button,
.outline-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
  min-height: 74px;
  border-radius: 22px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  overflow: hidden;
}

.button-arrow {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  stroke: currentColor;
  stroke-width: 4.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
  fill: none;
}

.contact-button {
  align-self: center;
  width: 172px;
  height: 58px;
  min-height: 58px;
  padding: 0 19px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright) 54%, #0aa6d7);
  box-shadow: 0 16px 34px rgba(0, 120, 255, 0.28), 0 0 28px rgba(54, 226, 194, 0.12);
  transform: translateY(0);
}

.contact-button::before {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -70%;
  width: 48%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 28%,
    rgba(255, 255, 255, 0.58) 50%,
    rgba(255, 255, 255, 0.08) 72%,
    transparent 100%
  );
  content: "";
  transform: skewX(-18deg);
  animation: buttonGlare 2.8s ease-in-out infinite;
  pointer-events: none;
}

.contact-button span,
.contact-button .button-arrow {
  position: relative;
  z-index: 1;
}

.primary-hero-button:hover,
.outline-button:hover,
.hero-actions .wp-block-button__link:hover {
  transform: scale(1.025);
}

.contact-button:hover {
  box-shadow: 0 22px 42px rgba(0, 120, 255, 0.34), 0 0 36px rgba(54, 226, 194, 0.2);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(circle at 86% 14%, rgba(25, 185, 255, 0.32), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(115, 87, 255, 0.16), transparent 32%),
    radial-gradient(circle at 24% 22%, rgba(54, 226, 194, 0.12), transparent 32%),
    linear-gradient(108deg, #fbfdff 0%, #e9f7ff 52%, #d9efff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(25, 185, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 185, 255, 0.075) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  opacity: 0.48;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.78) 54%, transparent 100%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -18%;
  top: -26%;
  z-index: 0;
  width: 66vw;
  max-width: 1040px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 185, 255, 0.16), rgba(115, 87, 255, 0.08) 42%, transparent 68%),
    conic-gradient(from 120deg, rgba(54, 226, 194, 0.2), transparent, rgba(217, 70, 239, 0.12), transparent, rgba(25, 185, 255, 0.18));
  content: "";
  filter: blur(1px);
  opacity: 0.86;
  pointer-events: none;
}

.hero-world {
  position: absolute;
  right: clamp(-330px, -16vw, -180px);
  top: -40px;
  z-index: 1;
  width: min(1275px, 81vw);
  min-width: 936px;
  aspect-ratio: 1;
  pointer-events: none;
}

.world-disc {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.a360-map {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 260ms ease;
}

.hero-world.is-map-ready .a360-map {
  opacity: 1;
}

.hero-world.is-map-ready .world-disc {
  display: none;
}

.world-disc img {
  position: absolute;
  left: -6%;
  top: 21.4%;
  width: 112%;
  height: 57.2%;
  object-fit: fill;
  opacity: 0.2;
  filter: brightness(0) saturate(100%) invert(47%) sepia(98%) saturate(1499%) hue-rotate(168deg) brightness(96%) contrast(94%);
}

.city-layer {
  position: absolute;
  left: -6%;
  top: 21.4%;
  width: 112%;
  height: 57.2%;
  -webkit-mask-image: url("../images/continents.svg");
  mask-image: url("../images/continents.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.city-marker {
  position: absolute;
  display: block;
  left: var(--x);
  top: var(--y);
  width: 9px;
  height: 9px;
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.74), 3px 3px 0 rgba(6, 9, 74, 0.08);
}

.marker-black {
  background: #030b2d;
}

.marker-gray-dark {
  background: #7357ff;
}

.marker-gray-light {
  background: #a9b7d4;
}

.marker-blue {
  background: #19b9ff;
}

.marker-navy {
  background: #36e2c2;
}

.hero-arc {
  position: absolute;
  left: 38%;
  bottom: -39%;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(212, 233, 252, 0.52);
}

.orbit-planet {
  position: absolute;
  right: clamp(70px, 10vw, 190px);
  top: 124px;
  z-index: 1;
  width: min(620px, 44vw);
  min-width: 390px;
  aspect-ratio: 1;
  opacity: 0.48;
  filter: drop-shadow(0 30px 70px rgba(0, 95, 159, 0.14));
  pointer-events: none;
}

.orbit-planet svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.planet-glow {
  fill: rgba(255, 255, 255, 0.46);
  stroke: rgba(14, 155, 232, 0.16);
  stroke-width: 3;
}

.planet-sea {
  fill: rgba(222, 240, 255, 0.68);
  stroke: rgba(0, 95, 159, 0.18);
  stroke-width: 2;
}

.planet-map {
  transform-origin: 310px 310px;
  animation: planetSpin 28s linear infinite;
}

.continent {
  fill: rgba(0, 95, 159, 0.16);
  stroke: rgba(0, 95, 159, 0.3);
  stroke-width: 2;
}

.continent-b,
.continent-c {
  fill: rgba(14, 155, 232, 0.14);
}

.map-node {
  fill: var(--blue);
  transform-box: fill-box;
  transform-origin: center;
  animation: mapNodePulse 2.4s ease-in-out infinite;
}

.node-b,
.node-d,
.node-f {
  fill: #0a0a0a;
}

.node-c,
.node-e,
.node-h {
  fill: var(--blue-bright);
}

.node-b {
  animation-delay: 0.25s;
}

.node-c {
  animation-delay: 0.5s;
}

.node-d {
  animation-delay: 0.75s;
}

.node-e {
  animation-delay: 1s;
}

.node-f {
  animation-delay: 1.25s;
}

.node-g {
  animation-delay: 1.5s;
}

.node-h {
  animation-delay: 1.75s;
}

.planet-lat,
.planet-ring {
  fill: none;
  stroke: rgba(0, 95, 159, 0.15);
  stroke-width: 2;
}

.planet-ring {
  stroke: rgba(14, 155, 232, 0.18);
  stroke-dasharray: 10 18;
  transform-origin: 310px 310px;
  animation: orbitDash 18s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  max-width: 1630px;
  margin: 0 auto;
  padding: clamp(124px, 13vh, 156px) clamp(24px, 7.5vw, 146px) clamp(58px, 8vh, 92px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 1080px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  margin-bottom: 18px;
  padding: 0 16px;
  border: 1px solid rgba(25, 185, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  box-shadow: 0 16px 42px rgba(25, 185, 255, 0.13);
  backdrop-filter: blur(14px);
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 0 rgba(25, 185, 255, 0.46);
  animation: liveDotPulse 1.7s ease-out infinite;
}

.hero h1 {
  margin: 0 0 28px;
  font-size: 60px;
  line-height: 75px;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.hero h1 .hero-line {
  display: inline;
  background-image: linear-gradient(90deg, var(--blue-bright), var(--mint), var(--violet));
  background-repeat: no-repeat;
  background-position: 0 0.9em;
  background-size: 0% 6px;
  animation: underlineIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero h1 .hero-line:nth-child(2) {
  animation-delay: 180ms;
}

.hero h1 .hero-line:nth-child(3) {
  animation-delay: 300ms;
}

.hero h1 .word {
  display: inline-block;
  background: none;
  will-change: transform, opacity;
}

.hero p {
  max-width: 980px;
  margin: 0 0 34px;
  color: var(--ink);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.primary-hero-button,
.outline-button {
  width: 306px;
  height: 56px;
  min-height: 56px;
  padding: 0 20px;
  border: 2px solid rgba(25, 185, 255, 0.72);
  border-radius: 12px;
  color: #0b0b18;
  background: rgba(255, 255, 255, 0.65);
}

.primary-hero-button {
  border-color: var(--blue);
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright) 56%, var(--mint));
  box-shadow: 0 22px 50px rgba(0, 120, 255, 0.3), 0 0 32px rgba(54, 226, 194, 0.16);
}

.primary-hero-button::before {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -72%;
  width: 48%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.56), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: buttonGlare 3s ease-in-out infinite;
  pointer-events: none;
}

.primary-hero-button span,
.primary-hero-button .button-arrow {
  position: relative;
  z-index: 1;
}

.hero-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 10px;
  max-width: 720px;
}

.hero-capabilities span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(25, 185, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 38px rgba(25, 185, 255, 0.1);
  backdrop-filter: blur(13px);
  color: var(--ink);
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
}

.hero-capabilities i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(25, 185, 255, 0.14);
}

.hero-capabilities span:nth-child(2) i {
  background: var(--blue);
}

.hero-capabilities span:nth-child(3) i {
  background: var(--violet);
}

.hero-capabilities span:nth-child(4) i {
  background: var(--mint);
}

.primary-hero-button:hover,
.outline-button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 20px 40px rgba(0, 120, 255, 0.28), 0 0 30px rgba(115, 87, 255, 0.18);
}

.float-square {
  position: absolute;
  z-index: 1;
  display: block;
  width: 18px;
  height: 18px;
  background: #0a0a0a;
  animation: floatSquare 6s ease-in-out infinite;
}

.square-a {
  top: 20%;
  left: 25.5%;
  background: var(--blue);
}

.square-b {
  top: 43%;
  right: 43%;
  background: #ced3dd;
  animation-delay: 1.1s;
}

.square-c {
  bottom: 28%;
  right: 47%;
  animation-delay: 2.1s;
}

.square-d {
  top: 19%;
  right: 10%;
  width: 14px;
  height: 14px;
  background: #0b0b0b;
  animation-delay: 1.7s;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  perspective: 1200px;
}


.pixel-cluster {
  position: absolute;
  top: -28px;
  right: 8%;
  display: grid;
  grid-template-columns: repeat(4, 18px);
  gap: 6px;
  transform: rotate(1deg);
}

.pixel-cluster span {
  width: 18px;
  height: 18px;
  background: #181818;
  animation: pixelBlink 3.4s ease-in-out infinite;
}

.pixel-cluster span:nth-child(3),
.pixel-cluster span:nth-child(6) {
  background: #9099a7;
}

.pixel-cluster span:nth-child(7),
.pixel-cluster span:nth-child(9),
.pixel-cluster span:nth-child(10) {
  background: var(--blue);
}

.pixel-cluster span:nth-child(4),
.pixel-cluster span:nth-child(8),
.pixel-cluster span:nth-child(11) {
  background: #cbd2dc;
}

.pixel-cluster span:nth-child(5),
.pixel-cluster span:nth-child(9) {
  margin-left: 24px;
}

.laptop {
  --float-x: 0px;
  --float-y: 0px;
  --intro-x: 0px;
  --intro-y: 0px;
  --intro-rotate: 13deg;
  position: absolute;
  right: -7%;
  top: 50%;
  width: min(520px, 37vw);
  min-width: 340px;
  transform: translateX(calc(var(--float-x) + var(--intro-x)))
    translateY(calc(-50% + var(--float-y) + var(--intro-y))) rotateX(58deg) rotateZ(var(--intro-rotate));
  transform-style: preserve-3d;
  animation: laptopFloat 5.5s ease-in-out infinite;
}

.laptop-screen {
  position: relative;
  z-index: 2;
  width: 78%;
  aspect-ratio: 1.56;
  margin-left: 10%;
  padding: 16px;
  border: 17px solid #191919;
  border-radius: 16px 16px 8px 8px;
  background: #123957;
  box-shadow: 0 26px 54px rgba(5, 20, 34, 0.28);
  transform: rotateX(-64deg) translateZ(120px);
  overflow: hidden;
}

.laptop-screen::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.2), transparent 34%),
    radial-gradient(circle at 10% 25%, rgba(74, 201, 255, 0.28), transparent 26%);
  content: "";
  pointer-events: none;
}

.dashboard {
  position: relative;
  display: grid;
  grid-template-rows: 38px 1fr;
  height: 100%;
  padding: 12px;
  border-radius: 9px;
  background: #07243a;
  overflow: hidden;
}

.dash-top {
  display: grid;
  grid-template-columns: 1fr 28px 28px 28px;
  align-items: center;
  gap: 8px;
}

.dash-top strong {
  color: #62e2ff;
  font-size: 26px;
}

.dash-top span {
  height: 12px;
  border-radius: 999px;
  background: #1f6f96;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.dash-card {
  position: relative;
  border: 1px solid rgba(98, 226, 255, 0.32);
  border-radius: 8px;
  background: rgba(8, 45, 70, 0.88);
  overflow: hidden;
}

.dash-card.wide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px;
}

.dash-card.wide i {
  border-radius: 5px;
  background: linear-gradient(180deg, #49d3ff, #0e83d6);
  transform-origin: bottom;
  animation: barRise 2.2s ease-in-out infinite;
}

.dash-card.wide i:nth-child(2) {
  animation-delay: 0.2s;
}

.dash-card.wide i:nth-child(3) {
  animation-delay: 0.4s;
}

.dash-card.wide i:nth-child(4) {
  animation-delay: 0.6s;
}

.dash-card.list {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 16px;
}

.dash-card.list b {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #40d6ff, #f8b744);
  animation: lineScan 2.8s ease-in-out infinite;
}

.dash-card.chart {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  padding: 16px;
}

.dash-card.chart span,
.dash-card.bars span {
  display: block;
  border-radius: 999px;
  background: #f8b744;
}

.dash-card.chart span {
  width: 18%;
  animation: chartPulse 2.7s ease-in-out infinite;
}

.dash-card.bars {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 16px;
}

.dash-card.bars span {
  height: 12px;
  background: #39d3ff;
  animation: lineScan 3s ease-in-out infinite reverse;
}

.laptop-base {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 230px;
  margin-top: -76px;
  border-radius: 16px 16px 28px 28px;
  background: linear-gradient(145deg, #d8d8d8, #8f8f8f);
  box-shadow: 26px 34px 38px rgba(0, 0, 0, 0.18);
  transform: translateZ(8px);
}

.keyboard {
  position: absolute;
  left: 16%;
  top: 34px;
  display: grid;
  width: 68%;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
}

.keyboard span {
  height: 17px;
  border-radius: 3px;
  background: #535353;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.trackpad {
  position: absolute;
  left: 21%;
  bottom: 24px;
  width: 28%;
  height: 74px;
  border-radius: 5px;
  background: rgba(180, 180, 180, 0.85);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.screen-spark {
  position: absolute;
  z-index: 4;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  filter: blur(2px);
  animation: sparkMove 3.8s ease-in-out infinite;
}

.orbit-planet,
.orbit-planet *,
.float-square,
.hero-visual,
.hero-visual *,
.laptop,
.laptop *,
.pixel-cluster span,
.dash-card.wide i,
.dash-card.list b,
.dash-card.chart span,
.dash-card.bars span,
.screen-spark {
  animation: none !important;
  transition: none !important;
}

.hero-visual.reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.orbit-planet,
.orbit-planet *,
.float-square,
.hero-visual,
.hero-visual * {
  opacity: 1 !important;
  visibility: visible !important;
}

.screen-spark {
  display: none;
}

.spark-one {
  top: 26%;
  right: 18%;
}

.spark-two {
  right: 11%;
  bottom: 23%;
  animation-delay: 1.2s;
}

.stats {
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 14%, rgba(115, 87, 255, 0.28), transparent 30%),
    radial-gradient(circle at 14% 84%, rgba(54, 226, 194, 0.16), transparent 34%),
    linear-gradient(rgba(80, 189, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 189, 255, 0.065) 1px, transparent 1px),
    linear-gradient(118deg, #030b2d 0%, #06184a 58%, #062f62 100%);
  background-size: 72px 72px, 72px 72px, auto;
  padding: 94px clamp(24px, 7.5vw, 162px) 104px;
}

.stats::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(54, 226, 194, 0.09) 8% 8.08%, transparent 8.08% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%, rgba(0, 0, 0, 0.24));
  content: "";
  pointer-events: none;
}

.stats::after {
  position: absolute;
  top: 0;
  left: -36%;
  z-index: 2;
  width: 36%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint) 35%, var(--blue-bright) 62%, var(--violet) 82%, transparent);
  content: "";
  animation: statsSignalRail 7.5s ease-in-out infinite;
  pointer-events: none;
}

.stats-inner {
  position: relative;
  z-index: 3;
  max-width: 1560px;
  margin: 0 auto;
}

.stats-intro {
  display: grid !important;
  grid-template-areas:
    "label label"
    "title copy";
  grid-template-columns: minmax(520px, 1.15fr) minmax(340px, 0.72fr);
  grid-template-rows: auto auto;
  gap: 22px clamp(48px, 7vw, 118px);
  align-items: end;
  margin-bottom: 52px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(126, 205, 255, 0.2);
}

.stats-label {
  grid-area: label;
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  margin: 0;
  border-color: rgba(54, 226, 194, 0.48);
  border-radius: 4px;
  color: #8effe8;
  background: linear-gradient(90deg, rgba(54, 226, 194, 0.12), rgba(25, 185, 255, 0.08));
  letter-spacing: 0.05em;
}

.stats-intro h2 {
  grid-area: title;
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  max-width: 840px;
  color: #f5fbff;
  font-size: 58px;
  line-height: 66px;
  font-weight: 800;
  letter-spacing: -1.1px;
}

.stats-intro p {
  grid-area: copy;
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  max-width: 540px;
  color: rgba(223, 241, 252, 0.72);
  font-size: 19px;
  line-height: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid rgba(126, 205, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(25, 185, 255, 0.22), rgba(115, 87, 255, 0.16), rgba(54, 226, 194, 0.18));
  box-shadow: 0 36px 88px rgba(0, 0, 0, 0.3), 0 0 60px rgba(25, 185, 255, 0.08);
  overflow: hidden;
}

.stat-card {
  --stat-accent: #19b9ff;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto 1fr auto;
  justify-items: start;
  align-content: stretch;
  min-height: 318px;
  padding: 34px 34px 30px;
  border: 0;
  border-radius: 4px;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--stat-accent) 16%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(8, 33, 70, 0.98), rgba(3, 11, 45, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(126, 205, 255, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  overflow: hidden;
}

.stat-card:nth-child(2) {
  --stat-accent: #7357ff;
}

.stat-card:nth-child(3) {
  --stat-accent: #36e2c2;
}

.stat-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 82px;
  height: 3px;
  background: var(--stat-accent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--stat-accent) 62%, transparent);
  content: "";
}

.stat-card::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: var(--shine-x, -70%);
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(126, 205, 255, 0.11), transparent);
  content: "";
  transform: skewX(-18deg);
  pointer-events: none;
}

.stat-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px color-mix(in srgb, var(--stat-accent) 38%, transparent),
    0 24px 54px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 0 0 22px;
  color: var(--stat-accent);
  font-size: 38px;
  font-weight: 900;
  filter: drop-shadow(0 0 16px color-mix(in srgb, var(--stat-accent) 32%, transparent));
}

.rotate-icon {
  border: 5px solid var(--stat-accent);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  animation: rotateSoft 5s linear infinite;
}

.star-icon {
  font-size: 66px;
  animation: starGlow 1.15s ease-in-out infinite;
}

.card-icon {
  position: relative;
  width: 70px;
  height: 52px;
  border: 8px solid var(--gold);
  border-radius: 7px;
  transform-style: preserve-3d;
  animation: cardFlip 2.4s ease-in-out infinite;
}

.card-icon::before {
  position: absolute;
  left: -8px;
  top: 13px;
  width: calc(100% + 16px);
  height: 8px;
  background: var(--gold);
  content: "";
}

.team-icon {
  width: 58px;
  height: 58px;
  border: 4px solid var(--stat-accent);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
}

.stat-card strong,
.stats .stat-card .stat-number {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin: 0;
  color: #f5fbff;
  font-size: clamp(58px, 5vw, 82px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.stats .stat-card > p:not(.stat-tag) {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  margin: 38px 0 0;
  color: rgba(235, 247, 255, 0.84);
  text-align: left;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

.stats .stat-card .stat-tag {
  grid-column: 1 / -1;
  grid-row: 4;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 20px 0 0;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--stat-accent) 42%, transparent);
  border-radius: 3px;
  color: var(--stat-accent);
  background: color-mix(in srgb, var(--stat-accent) 8%, transparent);
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-anchor {
  position: relative;
  top: -118px;
  display: block;
  height: 0;
}

.solutions-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(25, 185, 255, 0.3), transparent 30%),
    radial-gradient(circle at 76% 66%, rgba(217, 70, 239, 0.12), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(54, 226, 194, 0.18), transparent 34%),
    linear-gradient(135deg, #030b2d 0%, #06184a 48%, #062f62 100%);
  color: #ffffff;
}

.solutions-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(234, 245, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 245, 255, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.solution-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 28px clamp(24px, 5vw, 84px) 0;
  background: transparent;
}

.solution-tab {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 18px 24px;
  border: 1px solid rgba(126, 205, 255, 0.18);
  border-radius: 3px 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-family: inherit;
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  background: rgba(5, 27, 44, 0.72);
  backdrop-filter: blur(18px);
  cursor: pointer;
  overflow: hidden;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.solution-tab::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--blue-bright), var(--violet));
  content: "";
  transition: right 220ms ease;
}

.solution-tab:hover,
.solution-tab.is-active {
  color: #ffffff;
  border-color: rgba(25, 185, 255, 0.58);
  background: linear-gradient(135deg, rgba(0, 120, 255, 0.24), rgba(115, 87, 255, 0.18), rgba(11, 48, 74, 0.92));
}

.solution-tab.is-active::after {
  right: 0;
}

.solution-tab:focus-visible,
.module-item:focus-visible {
  outline: 2px solid #8effe8;
  outline-offset: -3px;
}

.solutions-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 84px) 104px;
}

.about-section h2,
.contact-section h2 {
  margin: 0;
  font-size: 60px;
  line-height: 75px;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.solutions-heading {
  max-width: 1220px;
}

.solutions-heading .section-label {
  border-color: rgba(54, 226, 194, 0.38);
  border-radius: 4px;
  color: #8effe8;
  background: linear-gradient(90deg, rgba(54, 226, 194, 0.12), rgba(25, 185, 255, 0.08));
  letter-spacing: 0.04em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid rgba(14, 155, 232, 0.34);
  border-radius: 999px;
  color: #8ee6ff;
  background: rgba(14, 155, 232, 0.08);
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.solutions-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 58px;
  line-height: 66px;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.solutions-section .solutions-heading > p:not(.section-label) {
  max-width: 880px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 21px;
  line-height: 32px;
}

.platform-ecosystem {
  display: grid;
  grid-template-columns: minmax(400px, 0.88fr) minmax(500px, 1.12fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: stretch;
  margin-top: 48px;
}

.a360-icon-ribbon {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 780px;
  margin: 0 0 32px;
}

.a360-icon-ribbon span {
  display: grid;
  place-items: center;
  min-height: 76px;
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 8px;
  color: #005692;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 192, 77, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 253, 0.88));
  box-shadow: 0 18px 44px rgba(0, 86, 146, 0.08);
}

.a360-icon-ribbon span:nth-child(even) {
  color: #ffc04d;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 192, 77, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(0, 86, 146, 0.92), rgba(17, 13, 7, 0.92));
}

.a360-icon-ribbon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: square;
  stroke-linejoin: round;
}

.module-list {
  position: relative;
  display: grid;
  gap: 1px;
  align-content: start;
  padding: 1px;
  border: 1px solid rgba(126, 205, 255, 0.18);
  border-radius: 8px;
  background: rgba(126, 205, 255, 0.16);
  overflow: hidden;
}

.module-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 16px 20px;
  border: 0;
  border-radius: 3px;
  color: #ffffff;
  text-align: left;
  background: rgba(5, 27, 44, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.module-item:hover,
.module-item.is-active {
  background: linear-gradient(90deg, rgba(0, 120, 255, 0.26), rgba(5, 27, 44, 0.96));
  box-shadow: inset 3px 0 0 var(--mint), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 34px rgba(25, 185, 255, 0.08);
}

.module-index {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(99, 235, 206, 0.34);
  border-radius: 3px;
  color: #8effe8;
  background: linear-gradient(135deg, rgba(54, 226, 194, 0.12), rgba(25, 185, 255, 0.08));
  font-size: 13px;
  font-weight: 900;
}

.module-item strong,
.module-item small {
  display: block;
}

.module-item strong {
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
}

.module-item small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 20px;
}

.solution-panel {
  border: 1px solid rgba(234, 245, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 14%, rgba(115, 87, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(10, 45, 92, 0.97), rgba(3, 11, 45, 0.97));
  padding: 44px 42px;
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.3), 0 0 48px rgba(25, 185, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.platform-panel {
  position: relative;
  overflow: hidden;
}

.platform-panel::before {
  position: absolute;
  top: 0;
  right: -26%;
  width: 64%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(25, 185, 255, 0.16), rgba(217, 70, 239, 0.08), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: panelScan 4.2s ease-in-out infinite;
}

.platform-panel::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 116px;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--blue-bright), var(--violet));
  box-shadow: 0 0 28px rgba(54, 226, 194, 0.45);
  content: "";
}

.panel-status,
.platform-panel h3,
.platform-panel p,
.platform-panel ul,
.transaction-flow {
  position: relative;
  z-index: 1;
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #8effe8;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.platform-panel h3 {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 50px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.platform-panel p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 31px;
}

.solution-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-panel li {
  position: relative;
  margin: 0 0 15px;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 30px;
}

.solution-panel li::before {
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #36e2c2;
  content: "";
}

.transaction-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.transaction-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(99, 235, 206, 0.24);
  border-radius: 3px;
  color: #ffffff;
  background: rgba(54, 226, 194, 0.07);
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
}

.transaction-flow i {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(14, 155, 232, 0.2), rgba(142, 230, 255, 0.72));
  overflow: hidden;
}

.transaction-flow i::after {
  position: absolute;
  inset: -2px 100% -2px -30%;
  background: linear-gradient(90deg, transparent, #8ee6ff, transparent);
  content: "";
  animation: flowRail 1.8s ease-in-out infinite;
}

.about-section {
  background:
    radial-gradient(circle at 92% 16%, rgba(25, 185, 255, 0.14), transparent 28%),
    radial-gradient(circle at 72% 74%, rgba(115, 87, 255, 0.08), transparent 32%),
    radial-gradient(circle at 10% 88%, rgba(54, 226, 194, 0.09), transparent 30%),
    #ffffff;
  padding: 94px clamp(24px, 7.5vw, 162px) 104px;
}

.about-inner,
.contact-inner,
.footer-inner {
  max-width: 1640px;
  margin: 0 auto;
}

.about-heading {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
  margin-bottom: 54px;
}

.about-heading .section-label {
  justify-self: start;
  color: var(--blue);
  background: linear-gradient(90deg, rgba(25, 185, 255, 0.08), rgba(54, 226, 194, 0.07));
}

.about-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 58px;
  line-height: 68px;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.about-heading p {
  margin: 0;
  color: rgba(6, 9, 74, 0.72);
  font-size: 21px;
  line-height: 33px;
}

.contact-section h2 {
  text-align: right;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.about-card {
  position: relative;
  min-height: 272px;
  border: 1px solid rgba(25, 185, 255, 0.17);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.86)),
    radial-gradient(circle at 86% 10%, rgba(25, 185, 255, 0.14), transparent 36%),
    radial-gradient(circle at 10% 92%, rgba(115, 87, 255, 0.08), transparent 34%);
  padding: 44px 44px 46px;
  box-shadow: 0 28px 74px rgba(3, 11, 45, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.about-card::before {
  position: absolute;
  right: -28px;
  top: -28px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(115, 87, 255, 0.16);
  border-radius: 24px;
  content: "";
  transform: rotate(12deg);
}

.about-card:hover {
  transform: translateY(-7px);
  border-color: rgba(25, 185, 255, 0.45);
  box-shadow: 0 34px 84px rgba(3, 11, 45, 0.14), 0 0 42px rgba(25, 185, 255, 0.08);
}

.about-section .about-card > .about-card-index {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 0 28px;
  border-radius: 5px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 16px 34px rgba(0, 120, 255, 0.24), 0 0 22px rgba(54, 226, 194, 0.12);
  font-size: 14px;
  line-height: 18px;
  font-weight: 900;
}

.about-card h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 28px;
  line-height: 34px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.about-card p {
  margin: 0;
  color: rgba(6, 9, 74, 0.72);
  font-size: 20px;
  line-height: 30px;
}

.about-section .about-inner > .about-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  margin: 56px 0 0;
  padding: 28px 34px;
  border: 1px solid rgba(25, 185, 255, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(115, 87, 255, 0.2), transparent 36%),
    linear-gradient(135deg, #030b2d, #06184a 62%, #062f62);
  color: #ffffff;
  box-shadow: 0 30px 78px rgba(3, 11, 45, 0.18), 0 0 46px rgba(25, 185, 255, 0.09);
}

.about-proof span {
  color: #8effe8;
  font-size: 32px;
  line-height: 38px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.about-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 30px;
}

.contact-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 12%, rgba(217, 70, 239, 0.12), transparent 30%),
    radial-gradient(circle at 14% 88%, rgba(54, 226, 194, 0.16), transparent 34%),
    linear-gradient(rgba(80, 189, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 189, 255, 0.06) 1px, transparent 1px),
    linear-gradient(118deg, #030b2d 0%, #06184a 60%, #062f62 100%);
  background-size: 64px 64px, 64px 64px, auto;
  padding: 78px clamp(24px, 7.5vw, 162px) 92px;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 42%, rgba(0, 0, 0, 0.2));
  content: "";
  pointer-events: none;
}

.contact-heading {
  display: grid;
  grid-template-areas:
    "label label"
    "title copy";
  grid-template-columns: minmax(440px, 1.05fr) minmax(340px, 0.72fr);
  grid-template-rows: auto auto;
  gap: 18px clamp(42px, 6vw, 88px);
  align-items: end;
  margin-bottom: 38px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(126, 205, 255, 0.2);
}

.contact-section .contact-inner > .contact-heading {
  margin: 0 0 38px;
}

.contact-heading .section-label {
  grid-area: label;
  grid-column: 1 / -1;
  grid-row: 1;
  width: max-content;
  max-width: 100%;
  margin: 0;
  justify-self: start;
  border-color: rgba(54, 226, 194, 0.4);
  border-radius: 4px;
  color: #8effe8;
  background: linear-gradient(90deg, rgba(54, 226, 194, 0.12), rgba(25, 185, 255, 0.08));
  letter-spacing: 0.04em;
}

.contact-heading h2 {
  grid-area: title;
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: #f5fbff;
  text-align: left;
  font-size: clamp(42px, 4.2vw, 54px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.contact-heading p {
  grid-area: copy;
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: rgba(223, 241, 252, 0.72);
  font-size: 18px;
  line-height: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(480px, 1.22fr);
  gap: 24px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 28px;
  border: 1px solid rgba(126, 205, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(115, 87, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(8, 33, 70, 0.98), rgba(3, 11, 45, 0.98));
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.27), 0 0 46px rgba(25, 185, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.contact-form::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 104px;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--blue-bright), var(--violet));
  box-shadow: 0 0 26px rgba(54, 226, 194, 0.42);
  content: "";
}

.form-heading {
  display: grid;
  gap: 3px;
  margin-bottom: 7px;
}

.form-heading strong {
  color: #f5fbff;
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.form-heading span {
  color: rgba(223, 241, 252, 0.58);
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(126, 205, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  line-height: 22px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input {
  height: 50px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 112px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(223, 241, 252, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--mint);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(54, 226, 194, 0.12);
}

.send-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  justify-self: start;
  width: 128px;
  min-height: 50px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  line-height: 22px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.send-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 120, 255, 0.3), 0 0 26px rgba(54, 226, 194, 0.14);
}

.send-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.a360-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: #8effe8;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.contact-side {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 220px auto;
  gap: 12px;
}

.contact-photo {
  grid-column: 1 / -1;
  margin: 0;
}

.contact-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 2.4;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 62px rgba(4, 35, 73, 0.14);
}

.contact-direct,
.contact-response {
  border: 1px solid rgba(126, 205, 255, 0.18);
  border-radius: 6px;
  background: rgba(3, 11, 45, 0.96);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.contact-direct {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 20px;
}

.contact-direct-label {
  color: #8effe8;
  font-size: 13px;
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-direct a {
  color: #ffffff;
  font-size: 16px;
  line-height: 23px;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-direct a:hover {
  color: #8effe8;
  transform: translateX(4px);
}

.contact-response {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  align-items: start;
  padding: 20px;
  background: linear-gradient(135deg, rgba(0, 120, 255, 0.18), rgba(3, 11, 45, 0.98));
}

.contact-response > span,
.contact-response > p:first-child strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  color: var(--deep);
  background: #8effe8;
  font-weight: 900;
}

.contact-response p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 22px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(25, 185, 255, 0.26), transparent 28%),
    radial-gradient(circle at 86% 90%, rgba(115, 87, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #030b2d 0%, #06184a 54%, #062f62 100%);
  color: #ffffff;
  padding: 58px clamp(24px, 7.5vw, 162px) 34px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto) minmax(240px, auto);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
}

.footer-brand {
  max-width: 670px;
}

.footer-logo {
  display: inline-flex;
  width: 152px;
  line-height: 0;
  filter: brightness(0) invert(1);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand p {
  margin: 34px 0 0;
  font-size: 30px;
  line-height: 42px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.footer-badges a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid rgba(142, 230, 255, 0.22);
  border-radius: 999px;
  color: #8ee6ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  line-height: 18px;
  font-weight: 900;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.footer-badges a:hover,
.footer-badges a:focus-visible {
  border-color: rgba(142, 230, 255, 0.58);
  color: #ffffff;
  background: rgba(0, 86, 146, 0.34);
  transform: translateY(-2px);
}

.footer-badges a:focus-visible {
  outline: 2px solid #ffc04d;
  outline-offset: 2px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 15px;
  font-style: normal;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 36px;
  font-weight: 800;
}

.footer-links a,
.footer-contact a {
  color: #ffffff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  opacity: 0.92;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-policy-links {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px 22px;
  max-width: 1640px;
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-policy-links strong {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1640px;
  margin: 26px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

.gsap-ready .reveal,
.gsap-ready .stat-card {
  transition: none;
}

.gsap-ready .hero h1 .hero-line {
  animation: none;
  background-size: 100% 6px;
}

.gsap-ready .planet-map,
.gsap-ready .planet-ring,
.gsap-ready .map-node,
.gsap-ready .float-square,
.gsap-ready .laptop,
.gsap-ready .pixel-cluster span,
.gsap-ready .dash-card.wide i,
.gsap-ready .dash-card.list b,
.gsap-ready .dash-card.chart span,
.gsap-ready .dash-card.bars span,
.gsap-ready .screen-spark,
.gsap-ready .rotate-icon,
.gsap-ready .star-icon,
.gsap-ready .card-icon {
  animation: none;
}

@keyframes ambientSquareDrift {
  0% {
    opacity: 0.16;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.84);
  }
  48% {
    opacity: 0.34;
  }
  100% {
    opacity: 0.24;
    transform: translate3d(calc(var(--dx) * 1.22), calc(var(--dy) * 1.22), 0) rotate(18deg) scale(1.18);
  }
}

@keyframes buttonGlare {
  0%,
  42% {
    left: -72%;
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  72%,
  100% {
    left: 128%;
    opacity: 0;
  }
}

@keyframes liveDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 155, 232, 0.42);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(14, 155, 232, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(14, 155, 232, 0);
  }
}

@keyframes panelScan {
  0%,
  46% {
    transform: translateX(-18%) skewX(-18deg);
    opacity: 0;
  }
  58% {
    opacity: 1;
  }
  82%,
  100% {
    transform: translateX(128%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes flowRail {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(260%);
  }
}

@keyframes statsSignalRail {
  0%,
  18% {
    opacity: 0;
    transform: translateX(0);
  }
  28% {
    opacity: 1;
  }
  72% {
    opacity: 1;
  }
  82%,
  100% {
    opacity: 0;
    transform: translateX(380%);
  }
}

@keyframes squareBurst {
  0% {
    opacity: 0;
    transform: translate(calc(var(--start-x) - 50%), calc(var(--start-y) - 50%)) scale(0.62) rotate(0deg);
  }
  12%,
  24% {
    opacity: 0.86;
    transform: translate(calc(var(--start-x) - 50%), calc(var(--start-y) - 50%)) scale(1) rotate(0deg);
  }
  62% {
    opacity: 0.92;
    transform: translate(var(--burst-x), var(--burst-y)) scale(1.12) rotate(16deg);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--burst-x) * 1.18), calc(var(--burst-y) * 1.18)) scale(0.74) rotate(28deg);
  }
}

@keyframes underlineIn {
  to {
    background-size: 100% 6px;
  }
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.55);
    opacity: 1;
  }
}

@keyframes logoIdle {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.012);
  }
}

@keyframes logoSignal {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.6);
    box-shadow: 0 0 0 0 rgba(14, 155, 232, 0.28);
  }
  42% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(14, 155, 232, 0.28);
  }
  72% {
    opacity: 0;
    transform: scale(1.18);
    box-shadow: 0 0 0 15px rgba(14, 155, 232, 0);
  }
}

@keyframes floatSquare {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(12px, -18px, 0) rotate(18deg);
  }
}

@keyframes planetSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mapNodePulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.72);
  }
  50% {
    opacity: 1;
    transform: scale(1.42);
  }
}

@keyframes orbitDash {
  to {
    stroke-dashoffset: -180;
  }
}

@keyframes laptopFloat {
  0%,
  100% {
    transform: translateY(-50%) rotateX(58deg) rotateZ(13deg) translate3d(0, 0, 0);
  }
  50% {
    transform: translateY(-54%) rotateX(58deg) rotateZ(13deg) translate3d(0, -8px, 10px);
  }
}

@keyframes pixelBlink {
  0%,
  100% {
    opacity: 0.85;
  }
  45% {
    opacity: 0.32;
  }
  65% {
    opacity: 1;
  }
}

@keyframes barRise {
  0%,
  100% {
    transform: scaleY(0.45);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes lineScan {
  0%,
  100% {
    transform: scaleX(0.55);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes chartPulse {
  0%,
  100% {
    height: 38%;
  }
  50% {
    height: 86%;
  }
}

@keyframes rotateSoft {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cardFlip {
  0%,
  100% {
    transform: rotateY(0deg) rotateZ(0deg);
    filter: drop-shadow(0 0 0 rgba(255, 192, 77, 0));
  }
  45% {
    transform: rotateY(180deg) rotateZ(3deg);
    filter: drop-shadow(0 0 18px rgba(255, 192, 77, 0.34));
  }
  70% {
    transform: rotateY(360deg) rotateZ(0deg);
  }
}

@keyframes starGlow {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 192, 77, 0));
  }
  50% {
    transform: scale(1.22) rotate(8deg);
    filter: drop-shadow(0 0 22px rgba(255, 192, 77, 0.62));
  }
}

@keyframes sparkMove {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  45% {
    opacity: 1;
    transform: translate(-24px, -18px) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .section-squares span {
    transform: none !important;
  }

  .square-burst span {
    opacity: 0.28 !important;
    transform: translate(calc(var(--start-x) - 50%), calc(var(--start-y) - 50%)) !important;
  }
}

@media (max-width: 1120px) {
  .section-squares span {
    opacity: 0.2;
  }

  .section-squares span:nth-child(n + 13) {
    display: none;
  }

  .square-burst {
    transform: scale(0.86);
    transform-origin: center;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 86px;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 2px solid rgba(0, 95, 159, 0.28);
    border-radius: 14px;
    background: #ffffff;
  }

  .nav-toggle span {
    display: block;
    height: 3px;
    border-radius: 999px;
    background: var(--ink);
  }

  .main-nav,
  .contact-button {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .contact-button {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    max-height: calc(100vh - 190px);
    overflow-y: auto;
  }

  .site-header.is-open .main-nav > a,
  .site-header.is-open .nav-dropdown,
  .site-header.is-open .nav-dropdown > summary {
    width: 100%;
  }

  .site-header.is-open .main-nav > a,
  .site-header.is-open .nav-dropdown > summary {
    min-height: 46px;
    padding: 11px 13px;
    border-radius: 8px;
  }

  .site-header.is-open .nav-dropdown > summary:hover,
  .site-header.is-open .main-nav > a:hover {
    background: rgba(14, 155, 232, 0.08);
  }

  .site-header.is-open .nav-submenu {
    position: static;
    width: 100%;
    max-height: none;
    margin: 2px 0 8px;
    padding: 5px 8px 7px 16px;
    border: 0;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: none;
    transform: none;
  }

  .site-header.is-open .nav-submenu a {
    font-size: 14px;
  }

  .site-header.is-open .contact-button {
    width: 100%;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-world {
    right: -430px;
    top: 205px;
    width: 1065px;
    min-width: 0;
    opacity: 0.55;
  }

  .orbit-planet {
    right: -160px;
    top: 220px;
    width: 620px;
    opacity: 0.32;
  }

  .hero-visual {
    min-height: 380px;
  }

  .laptop {
    left: 50%;
    right: auto;
    width: min(610px, 88vw);
    transform: translateX(calc(-50% + var(--float-x) + var(--intro-x)))
      translateY(calc(-50% + var(--float-y) + var(--intro-y))) rotateX(58deg) rotateZ(var(--intro-rotate));
  }

  @keyframes laptopFloat {
    0%,
    100% {
      transform: translate(-50%, -50%) rotateX(58deg) rotateZ(13deg) translate3d(0, 0, 0);
    }
    50% {
      transform: translate(-50%, -54%) rotateX(58deg) rotateZ(13deg) translate3d(0, -8px, 10px);
    }
  }

  .stats-grid,
  .stats-intro {
    grid-template-columns: 1fr;
  }

  .stats-intro {
    grid-template-areas:
      "label"
      "title"
      "copy";
    grid-template-rows: auto auto auto;
  }

  .stats-intro h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .stats-intro p {
    grid-column: 1;
    grid-row: 3;
  }

  .solution-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-tab {
    border-radius: 3px;
  }

  .platform-ecosystem,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .module-list {
    min-height: 0;
  }

  .solution-panel {
    max-width: none;
  }

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

  .about-heading,
  .about-proof {
    grid-template-columns: 1fr;
  }

  .about-heading h2,
  .contact-heading h2 {
    text-align: left;
  }

  .contact-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "copy";
    grid-template-rows: auto auto auto;
  }

  .contact-heading h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .contact-heading p {
    grid-column: 1;
    grid-row: 3;
  }

  .contact-photo {
    max-width: 520px;
  }
}

@media (max-width: 700px) {
  .section-squares span {
    width: calc(var(--s) * 0.75);
    height: calc(var(--s) * 0.75);
    opacity: 0.16;
  }

  .section-squares span:nth-child(n + 9) {
    display: none;
  }

  .square-burst {
    width: 66px;
    height: 66px;
    opacity: 0.72;
  }

  .square-burst span {
    width: 12px;
    height: 12px;
  }

  .square-burst-stats {
    right: 16px;
    top: 4px;
  }

  .square-burst-solutions {
    right: 12px;
    top: 112px;
  }

  .site-header {
    padding: 14px 20px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-content {
    padding: 108px 20px 58px;
  }

  .hero-world {
    right: -440px;
    top: 420px;
    width: 795px;
    opacity: 0.42;
  }

  .city-marker {
    width: 7px;
    height: 7px;
  }

  .orbit-planet {
    right: -245px;
    top: 430px;
    width: 520px;
    min-width: 0;
    opacity: 0.26;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.8px;
  }

  .hero h1 .hero-line {
    background-position: 0 0.93em;
    background-size: 0% 4px;
  }

  .gsap-ready .hero h1 .hero-line {
    background-size: 100% 4px;
  }

  .float-square {
    display: none;
  }

  .hero p {
    font-size: 18px;
    line-height: 27px;
  }

  .outline-button {
    width: 100%;
    min-width: 0;
  }

  .hero-kicker {
    min-height: 34px;
    padding: 0 13px;
    font-size: 12px;
    line-height: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  .primary-hero-button,
  .outline-button {
    width: 100%;
    min-width: 0;
  }

  .hero-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .hero-capabilities span {
    min-height: 44px;
    padding: 0 11px;
    font-size: 13px;
    line-height: 18px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .pixel-cluster {
    right: 0;
    grid-template-columns: repeat(4, 14px);
    gap: 5px;
  }

  .pixel-cluster span {
    width: 14px;
    height: 14px;
  }

  .laptop {
    min-width: 300px;
  }

  .laptop-screen {
    padding: 9px;
    border-width: 11px;
  }

  .laptop-base {
    height: 160px;
    margin-top: -52px;
  }

  .keyboard {
    top: 26px;
    gap: 4px;
  }

  .keyboard span {
    height: 12px;
  }

  .trackpad {
    height: 48px;
  }

  .stats {
    gap: 20px;
    padding: 38px 20px 58px;
  }

  .stats-intro {
    gap: 18px;
    margin-bottom: 28px;
  }

  .stats-intro h2 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.14;
    letter-spacing: -0.8px;
  }

  .stats-intro p {
    font-size: 18px;
    line-height: 28px;
  }

  .stats-grid {
    gap: 20px;
  }

  .stat-card {
    min-height: 250px;
    padding: 28px 24px 26px;
    border-radius: 4px;
  }

  .section-anchor {
    top: -92px;
  }

  .solution-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 20px 0;
  }

  .solution-tab {
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 95, 159, 0.2);
    font-size: 18px;
    line-height: 22px;
  }

  .solutions-inner,
  .about-section,
  .contact-section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .solutions-inner {
    padding-top: 50px;
    padding-bottom: 62px;
  }

  .solutions-heading h2,
  .about-heading h2,
  .contact-heading h2 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.8px;
  }

  .solutions-heading p,
  .about-heading p,
  .contact-heading p {
    font-size: 18px;
    line-height: 28px;
  }

  .platform-ecosystem {
    gap: 30px;
    margin-top: 36px;
  }

  .module-list {
    gap: 1px;
  }

  .module-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    min-height: 76px;
    padding: 13px 14px;
    border-radius: 3px;
  }

  .module-index {
    width: 38px;
    height: 38px;
    border-radius: 3px;
  }

  .module-item strong {
    font-size: 17px;
    line-height: 22px;
  }

  .module-item small {
    font-size: 13px;
    line-height: 18px;
  }

  .solution-panel {
    border-radius: 8px;
    padding: 30px 24px;
  }

  .platform-panel h3 {
    font-size: 31px;
    line-height: 38px;
  }

  .platform-panel p {
    font-size: 18px;
    line-height: 28px;
  }

  .solution-panel li,
  .about-card p {
    font-size: 18px;
    line-height: 27px;
  }

  .transaction-flow {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .transaction-flow i {
    width: 2px;
    height: 22px;
    justify-self: center;
  }

  .about-section {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .about-heading {
    gap: 22px;
    margin-bottom: 34px;
  }

  .about-card-grid {
    gap: 18px;
  }

  .about-card {
    min-height: 0;
    border-radius: 18px;
    padding: 28px 24px;
  }

  .about-card h3 {
    font-size: 23px;
    line-height: 29px;
  }

  .about-proof {
    gap: 12px;
    padding: 24px;
    border-radius: 18px;
  }

  .about-proof span {
    font-size: 27px;
    line-height: 33px;
  }

  .about-proof p {
    font-size: 18px;
    line-height: 27px;
  }

  .contact-section {
    padding-top: 48px;
    padding-bottom: 74px;
  }

  .contact-heading {
    gap: 22px;
    margin-bottom: 32px;
  }

  .contact-layout {
    gap: 30px;
    margin-top: 0;
  }

  .contact-form {
    border-radius: 8px;
    padding: 24px 22px;
  }

  .form-heading strong {
    font-size: 24px;
    line-height: 30px;
  }

  .contact-form input {
    height: 50px;
  }

  .contact-form textarea {
    min-height: 110px;
  }

  .send-button {
    width: 100%;
  }

  .contact-photo img {
    border-radius: 8px;
    min-height: 200px;
  }

  .contact-direct,
  .contact-response {
    border-radius: 6px;
  }

  .contact-side {
    grid-template-columns: 1fr;
    grid-template-rows: 200px auto auto;
  }

  .contact-photo {
    grid-column: 1;
  }

  .contact-direct {
    padding: 22px;
  }

  .contact-direct a {
    font-size: 18px;
    line-height: 26px;
  }

  .site-footer {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .footer-logo {
    width: 126px;
  }

  .footer-brand p {
    margin-top: 26px;
    font-size: 24px;
    line-height: 34px;
  }

  .footer-contact strong {
    font-size: 26px;
    line-height: 32px;
  }

  .footer-links strong {
    font-size: 26px;
    line-height: 32px;
  }

  .footer-policy-links {
    display: grid;
    gap: 8px;
    margin-top: 30px;
    padding-top: 18px;
  }

  .footer-policy-links a {
    font-size: 13px;
    line-height: 19px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    margin-top: 34px;
  }
}

/* Inner content pages */
.a360-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 8%, rgba(14, 155, 232, 0.12), transparent 28%),
    linear-gradient(180deg, #f4f9ff 0%, #ffffff 42%);
}

.a360-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 490px;
  padding: 188px clamp(24px, 7.5vw, 162px) 86px;
  background:
    linear-gradient(rgba(14, 155, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 155, 232, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
}

.a360-page-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -38vw;
  width: min(760px, 56vw);
  aspect-ratio: 1;
  border: 1px solid rgba(14, 155, 232, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(14, 155, 232, 0.035), 0 0 0 140px rgba(14, 155, 232, 0.025);
}

.a360-page-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1180px;
}

.a360-page-hero h1 {
  max-width: 1080px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 6vw, 86px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.a360-page-lead {
  max-width: 820px;
  margin: 26px 0 0;
  color: rgba(6, 9, 74, 0.7);
  font-size: 22px;
  line-height: 34px;
}

.a360-page-content {
  position: relative;
  z-index: 3;
  padding: 88px clamp(24px, 7.5vw, 162px) 116px;
}

.a360-page-content .wp-block-post-content {
  margin: 0 auto;
}

.a360-page-content .wp-block-post-content > * {
  margin-block-start: 0;
  margin-block-end: 26px;
}

.a360-page-content h2 {
  margin-top: 62px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.6px;
  scroll-margin-top: 130px;
}

.a360-page-content h3 {
  margin-top: 42px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.a360-page-content p,
.a360-page-content li {
  color: rgba(6, 9, 74, 0.78);
  font-size: 20px;
  line-height: 1.65;
}

.a360-page-content ul {
  padding-left: 24px;
}

.a360-page-content a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(14, 155, 232, 0.38);
  text-underline-offset: 4px;
}

@media (max-width: 700px) {
  .a360-page-hero {
    min-height: 430px;
    padding: 152px 20px 64px;
  }

  .a360-page-hero h1 {
    font-size: 46px;
  }

  .a360-page-lead {
    font-size: 18px;
    line-height: 28px;
  }

  .a360-page-content {
    padding: 62px 20px 82px;
  }

  .a360-page-content p,
  .a360-page-content li {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* A360 Payment Suite product page */
.a360-suite-body .site-header,
.a360-suite-body .site-header.is-scrolled,
.a360-suite-body .site-header.is-open {
  background: rgba(3, 11, 45, 0.76);
  box-shadow: 0 1px 0 rgba(126, 205, 255, 0.16), 0 18px 46px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(24px) saturate(1.35);
}

.a360-suite-body .logo img {
  filter: brightness(0) invert(1);
}

.a360-suite-body .main-nav > a,
.a360-suite-body .nav-dropdown > summary {
  color: rgba(245, 251, 255, 0.88);
}

.a360-suite-body .main-nav > a:hover,
.a360-suite-body .main-nav > a.is-active,
.a360-suite-body .nav-dropdown[open] > summary,
.a360-suite-body .nav-dropdown.is-active > summary {
  color: #8effe8;
}

.a360-suite-page {
  background: #f5faff;
}

.a360-suite-hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(115, 87, 255, 0.28), transparent 30%),
    radial-gradient(circle at 14% 86%, rgba(54, 226, 194, 0.16), transparent 34%),
    linear-gradient(rgba(80, 189, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 189, 255, 0.065) 1px, transparent 1px),
    linear-gradient(118deg, #030b2d 0%, #06184a 58%, #062f62 100%);
  background-size: 64px 64px, 64px 64px, auto;
}

.a360-suite-hero::before {
  position: absolute;
  top: 0;
  left: -36%;
  z-index: 2;
  width: 36%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint) 35%, var(--blue-bright) 62%, var(--violet) 82%, transparent);
  content: "";
  animation: statsSignalRail 7.5s ease-in-out infinite;
  pointer-events: none;
}

.a360-suite-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(3, 11, 45, 0.12), transparent 52%, rgba(217, 70, 239, 0.06));
  content: "";
  pointer-events: none;
}

.a360-suite-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  max-width: 1560px;
  min-height: 700px;
  margin: 0 auto;
  padding: 164px clamp(24px, 5vw, 84px) 72px;
}

.a360-suite-hero-copy {
  position: relative;
  z-index: 3;
}

.a360-suite-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 22px;
  padding: 0 12px;
  border: 1px solid rgba(54, 226, 194, 0.42);
  border-radius: 4px;
  color: #8effe8;
  background: linear-gradient(90deg, rgba(54, 226, 194, 0.12), rgba(25, 185, 255, 0.08));
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.a360-suite-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #f5fbff;
  font-size: clamp(54px, 5vw, 78px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.a360-suite-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 690px;
  margin-top: 42px;
  padding: 1px;
  border: 1px solid rgba(126, 205, 255, 0.24);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(25, 185, 255, 0.22), rgba(115, 87, 255, 0.14), rgba(54, 226, 194, 0.16));
  overflow: hidden;
}

.a360-suite-capabilities span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 3px;
  color: rgba(245, 251, 255, 0.82);
  background: rgba(3, 11, 45, 0.88);
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
}

.a360-suite-system {
  position: relative;
  min-height: 470px;
}

.a360-suite-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(126, 205, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.a360-suite-ring-one {
  width: 390px;
  height: 390px;
}

.a360-suite-ring-two {
  width: 300px;
  height: 300px;
  border-color: rgba(54, 226, 194, 0.16);
}

.a360-suite-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(99, 235, 206, 0.52);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(0, 120, 255, 0.42), rgba(3, 11, 45, 0.98));
  box-shadow: 0 0 0 10px rgba(54, 226, 194, 0.05), 0 0 42px rgba(25, 185, 255, 0.13), 0 28px 64px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  animation: suiteCorePulse 3.4s ease-in-out infinite;
}

.a360-suite-core strong {
  color: #8effe8;
  font-size: 34px;
  line-height: 40px;
  font-weight: 800;
}

.a360-suite-core small {
  color: rgba(245, 251, 255, 0.68);
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.a360-suite-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 126px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--suite-node-color);
  border-radius: 4px;
  color: #ffffff;
  background: rgba(3, 11, 45, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
}

.a360-suite-node-issuing {
  --suite-node-color: rgba(54, 226, 194, 0.64);
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
}

.a360-suite-node-acquiring {
  --suite-node-color: rgba(75, 188, 255, 0.68);
  right: 1%;
  top: 50%;
  transform: translateY(-50%);
}

.a360-suite-node-secure {
  --suite-node-color: rgba(115, 87, 255, 0.72);
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
}

.a360-suite-node-processing {
  --suite-node-color: rgba(255, 192, 77, 0.68);
  left: 1%;
  top: 50%;
  transform: translateY(-50%);
}

.a360-suite-rail {
  position: absolute;
  z-index: 1;
  display: block;
  background: linear-gradient(90deg, rgba(25, 185, 255, 0.12), var(--mint), var(--blue-bright), rgba(115, 87, 255, 0.22));
  background-size: 220% 100%;
  animation: suiteRailFlow 2.4s linear infinite;
}

.a360-suite-rail-north,
.a360-suite-rail-south {
  left: calc(50% - 1px);
  width: 2px;
  height: 30%;
}

.a360-suite-rail-north {
  top: 15%;
}

.a360-suite-rail-south {
  bottom: 15%;
}

.a360-suite-rail-east,
.a360-suite-rail-west {
  top: calc(50% - 1px);
  width: 30%;
  height: 2px;
}

.a360-suite-rail-east {
  right: 14%;
}

.a360-suite-rail-west {
  left: 14%;
}

.a360-suite-overview {
  position: relative;
  overflow: hidden;
  padding: 88px clamp(24px, 7.5vw, 162px) 110px;
  background:
    radial-gradient(circle at 88% 14%, rgba(25, 185, 255, 0.1), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(115, 87, 255, 0.08), transparent 32%),
    linear-gradient(rgba(25, 185, 255, 0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 185, 255, 0.048) 1px, transparent 1px),
    #f5faff;
  background-size: 64px 64px, 64px 64px, auto;
}

.a360-suite-overview-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.a360-suite-section-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.a360-suite-section-heading .section-label {
  flex: 0 0 auto;
  margin: 0;
  border-radius: 4px;
  color: var(--blue);
  background: rgba(14, 155, 232, 0.08);
  letter-spacing: 0;
}

.a360-suite-section-heading > span:last-child {
  width: 100%;
  height: 1px;
  background: rgba(0, 95, 159, 0.18);
}

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

.a360-suite-copy-grid > p,
.a360-suite-copy-grid > ul {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 34px 34px 36px;
  border: 1px solid rgba(0, 95, 159, 0.16);
  border-radius: 6px;
  color: rgba(6, 9, 74, 0.76);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 58px rgba(4, 35, 73, 0.08);
  font-size: 18px;
  line-height: 1.62;
}

.a360-suite-copy-grid > p::before,
.a360-suite-copy-grid > ul::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 82px;
  height: 3px;
  background: var(--blue-bright);
  content: "";
}

.a360-suite-copy-grid > ul {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 42px;
  list-style: none;
}

.a360-suite-copy-grid > ul li {
  margin: 0;
}

.a360-suite-copy-grid > ul a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 18px 48px 18px 22px;
  border: 1px solid rgba(0, 95, 159, 0.14);
  border-radius: 6px;
  color: #06094a;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 255, 0.9));
  box-shadow: 0 18px 34px rgba(4, 35, 73, 0.07);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.a360-suite-copy-grid > ul a::after {
  position: absolute;
  right: 20px;
  color: var(--blue);
  content: "\2192";
  font-size: 24px;
  line-height: 1;
}

.a360-suite-copy-grid > ul a:hover {
  border-color: rgba(54, 226, 194, 0.5);
  color: var(--blue);
  box-shadow: 0 24px 46px rgba(4, 35, 73, 0.12);
  transform: translateY(-3px);
}

.a360-suite-copy-grid > p:first-child {
  grid-column: 1 / -1;
  padding: 42px;
  border-color: rgba(126, 205, 255, 0.2);
  color: rgba(245, 251, 255, 0.88);
  background:
    radial-gradient(circle at 88% 16%, rgba(115, 87, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #030b2d, #06184a 66%, #062f62);
  box-shadow: 0 30px 72px rgba(3, 11, 45, 0.18), 0 0 42px rgba(25, 185, 255, 0.08);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 500;
}

.a360-suite-copy-grid > p:first-child::before {
  width: 116px;
  background: linear-gradient(90deg, var(--mint), var(--blue-bright), var(--violet));
}

.a360-suite-copy-grid > p:nth-child(2)::before {
  background: #36e2c2;
}

.a360-suite-copy-grid > p:nth-child(3)::before {
  background: #ffc04d;
}

.a360-suite-copy-grid > p:nth-child(4) {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 34px 38px;
  border-color: rgba(54, 226, 194, 0.26);
  color: rgba(245, 251, 255, 0.88);
  background: #061d31;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 700;
}

.a360-suite-copy-grid > p:nth-child(4)::before {
  background: #36e2c2;
}

@keyframes suiteRailFlow {
  0% {
    background-position: 220% 0;
    opacity: 0.34;
  }
  50% {
    opacity: 1;
  }
  100% {
    background-position: -220% 0;
    opacity: 0.34;
  }
}

@keyframes suiteCorePulse {
  0%,
  100% {
    box-shadow: 0 0 0 10px rgba(54, 226, 194, 0.04), 0 28px 64px rgba(0, 0, 0, 0.32);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(54, 226, 194, 0.015), 0 28px 64px rgba(0, 0, 0, 0.32);
  }
}

@media (max-width: 1100px) {
  .a360-suite-hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 154px;
  }

  .a360-suite-hero h1 {
    max-width: 820px;
    font-size: 64px;
  }

  .a360-suite-system {
    width: min(100%, 620px);
    min-height: 430px;
    margin: 0 auto;
  }

  .a360-suite-copy-grid {
    grid-template-columns: 1fr;
  }

  .a360-suite-copy-grid > p,
  .a360-suite-copy-grid > ul,
  .a360-suite-copy-grid > p:first-child,
  .a360-suite-copy-grid > p:nth-child(4) {
    grid-column: 1;
  }

  .a360-suite-copy-grid > ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .a360-suite-body .nav-toggle {
    border-color: rgba(126, 205, 255, 0.3);
    background: rgba(5, 27, 44, 0.92);
  }

  .a360-suite-body .nav-toggle span {
    background: #ffffff;
  }

  .a360-suite-hero {
    min-height: 0;
  }

  .a360-suite-hero-layout {
    min-height: 0;
    padding: 146px 20px 58px;
  }

  .a360-suite-hero h1 {
    font-size: 46px;
    line-height: 1.08;
  }

  .a360-suite-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }

  .a360-suite-system {
    min-height: 330px;
  }

  .a360-suite-ring-one {
    width: 286px;
    height: 286px;
  }

  .a360-suite-ring-two {
    width: 220px;
    height: 220px;
  }

  .a360-suite-core {
    width: 112px;
    height: 112px;
  }

  .a360-suite-core strong {
    font-size: 28px;
    line-height: 34px;
  }

  .a360-suite-node {
    min-width: 96px;
    min-height: 42px;
    padding: 0 10px;
    font-size: 12px;
  }

  .a360-suite-overview {
    padding: 56px 20px 72px;
  }

  .a360-suite-copy-grid {
    gap: 14px;
  }

  .a360-suite-copy-grid > p,
  .a360-suite-copy-grid > ul,
  .a360-suite-copy-grid > p:first-child,
  .a360-suite-copy-grid > p:nth-child(4) {
    padding: 26px 24px 28px;
    font-size: 18px;
    line-height: 1.58;
  }

  .a360-suite-copy-grid > ul {
    gap: 12px;
  }

  .a360-suite-copy-grid > ul a {
    min-height: 68px;
    font-size: 16px;
  }
}

/* Space ink / coral-violet palette experiment */
body {
  color: #ffffff;
  background: #0a0e1a;
}

.site-header,
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(10, 14, 26, 0.62);
  box-shadow: 0 1px 0 rgba(255, 51, 102, 0.18), 0 20px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px) saturate(1.28);
}

.logo img {
  filter: brightness(0) invert(1);
}

.main-nav > a,
.nav-dropdown > summary {
  color: rgba(255, 255, 255, 0.82);
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-dropdown[open] > summary,
.nav-dropdown.is-active > summary {
  color: #ff6f96;
}

.nav-submenu {
  border-color: rgba(255, 51, 102, 0.24);
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 58, 237, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(18, 23, 42, 0.98), rgba(10, 14, 26, 0.98));
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.46);
}

.nav-submenu::before,
.stats::after,
.solution-tab::after,
.platform-panel::after,
.contact-form::before,
.a360-suite-hero::before,
.a360-suite-copy-grid > p:first-child::before,
.a360-suite-copy-grid > ul::before {
  background: linear-gradient(90deg, #ff3366, #ff6f96, #7c3aed);
  box-shadow: 0 0 28px rgba(255, 51, 102, 0.45);
}

.nav-submenu a {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(10, 14, 26, 0.76);
}

.nav-submenu a::after,
.a360-suite-copy-grid > ul a::after {
  color: #ff6f96;
}

.nav-submenu a:hover,
.nav-submenu a.is-active,
.module-item:hover,
.module-item.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, rgba(255, 51, 102, 0.26), rgba(124, 58, 237, 0.18));
  box-shadow: inset 3px 0 0 #ff3366, 0 0 34px rgba(255, 51, 102, 0.12);
}

.contact-button,
.primary-hero-button,
.send-button,
.hero-actions .a360-primary-button .wp-block-button__link {
  color: #ffffff;
  background: linear-gradient(135deg, #ff3366, #ff6f96 48%, #7c3aed);
  box-shadow: 0 22px 52px rgba(255, 51, 102, 0.32), 0 0 40px rgba(124, 58, 237, 0.2);
}

.outline-button,
.hero-actions .wp-block-button__link {
  border-color: rgba(255, 51, 102, 0.54);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.contact-button:hover,
.primary-hero-button:hover,
.outline-button:hover,
.send-button:hover,
.hero-actions .wp-block-button__link:hover {
  background: linear-gradient(135deg, #7c3aed, #ff3366);
  box-shadow: 0 24px 56px rgba(124, 58, 237, 0.32), 0 0 44px rgba(255, 51, 102, 0.22);
}

.hero,
.about-section,
.a360-suite-overview,
.a360-page-content {
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 51, 102, 0.18), transparent 28%),
    radial-gradient(circle at 16% 84%, rgba(124, 58, 237, 0.2), transparent 34%),
    linear-gradient(rgba(255, 51, 102, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.052) 1px, transparent 1px),
    #0a0e1a;
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
}

.hero::before {
  background-image:
    linear-gradient(rgba(255, 51, 102, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
}

.hero::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 51, 102, 0.18), rgba(124, 58, 237, 0.1) 42%, transparent 68%),
    conic-gradient(from 120deg, rgba(255, 51, 102, 0.2), transparent, rgba(124, 58, 237, 0.18), transparent);
}

.hero-kicker,
.section-label,
.stats-label,
.solutions-heading .section-label,
.contact-heading .section-label,
.a360-suite-kicker {
  border-color: rgba(255, 51, 102, 0.42);
  color: #ff9ab3;
  background: linear-gradient(90deg, rgba(255, 51, 102, 0.13), rgba(124, 58, 237, 0.1));
  box-shadow: 0 14px 34px rgba(255, 51, 102, 0.11);
}

.hero h1,
.stats-intro h2,
.solutions-heading h2,
.about-heading h2,
.contact-heading h2,
.a360-suite-hero h1,
.a360-page-hero h1 {
  color: #ffffff;
}

.hero h1 .hero-line {
  background-image: linear-gradient(90deg, #ff3366, #ff6f96, #7c3aed);
}

.hero p,
.hero-capabilities span,
.about-heading p,
.about-card p,
.a360-page-content p,
.a360-page-content li,
.a360-suite-copy-grid > p,
.a360-suite-copy-grid > ul {
  color: rgba(255, 255, 255, 0.74);
}

.hero-capabilities span,
.about-card,
.a360-suite-copy-grid > p,
.a360-suite-copy-grid > ul,
.a360-suite-copy-grid > ul a {
  border-color: rgba(255, 51, 102, 0.2);
  background:
    radial-gradient(circle at 90% 12%, rgba(124, 58, 237, 0.13), transparent 36%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.hero-capabilities i,
.live-dot {
  background: #ff3366;
  box-shadow: 0 0 0 5px rgba(255, 51, 102, 0.16), 0 0 22px rgba(255, 51, 102, 0.32);
}

.hero-capabilities span:nth-child(2) i,
.hero-capabilities span:nth-child(3) i,
.hero-capabilities span:nth-child(4) i {
  background: #7c3aed;
}

.city-marker,
.section-squares span {
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.72), 0 0 22px rgba(255, 51, 102, 0.18);
}

.marker-black,
.section-squares span:nth-child(5n + 1) {
  background: #ffffff;
}

.marker-gray-dark,
.section-squares span:nth-child(5n + 2) {
  background: #ff3366;
}

.marker-gray-light,
.section-squares span:nth-child(5n + 3) {
  background: #ff9ab3;
}

.marker-blue,
.section-squares span:nth-child(5n + 4) {
  background: #7c3aed;
}

.marker-navy,
.section-squares span:nth-child(5n) {
  background: #c4b5fd;
}

.stats,
.solutions-section,
.contact-section,
.site-footer,
.a360-suite-hero,
.a360-page-hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 51, 102, 0.2), transparent 30%),
    radial-gradient(circle at 14% 86%, rgba(124, 58, 237, 0.24), transparent 34%),
    linear-gradient(rgba(255, 51, 102, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.052) 1px, transparent 1px),
    #0a0e1a;
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.stats::before,
.solutions-section::before,
.contact-section::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%, rgba(0, 0, 0, 0.24));
}

.stats-intro,
.contact-heading {
  border-bottom-color: rgba(255, 51, 102, 0.24);
}

.stats-intro p,
.solutions-section .solutions-heading > p:not(.section-label),
.platform-panel p,
.solution-panel li,
.contact-heading p,
.about-proof p,
.contact-response p {
  color: rgba(255, 255, 255, 0.72);
}

.stats-grid,
.module-list,
.a360-suite-capabilities {
  border-color: rgba(255, 51, 102, 0.22);
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.24), rgba(124, 58, 237, 0.22));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.35), 0 0 60px rgba(255, 51, 102, 0.08);
}

.stat-card,
.module-item,
.solution-panel,
.contact-form,
.contact-direct,
.contact-response,
.about-section .about-inner > .about-proof,
.a360-suite-core,
.a360-suite-capabilities span,
.a360-suite-node {
  border-color: rgba(255, 51, 102, 0.2);
  background:
    radial-gradient(circle at 88% 12%, rgba(124, 58, 237, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(18, 23, 42, 0.96), rgba(10, 14, 26, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stat-card {
  --stat-accent: #ff3366;
}

.stat-card:nth-child(2) {
  --stat-accent: #7c3aed;
}

.stat-card:nth-child(3) {
  --stat-accent: #ff6f96;
}

.stat-icon,
.stats .stat-card .stat-tag,
.module-index,
.panel-status,
.contact-direct-label,
.form-status,
.a360-suite-core strong {
  color: #ff9ab3;
}

.module-index,
.contact-response > span,
.contact-response > p:first-child strong {
  background: linear-gradient(135deg, #ff3366, #7c3aed);
  color: #ffffff;
}

.solution-tab {
  border-color: rgba(255, 51, 102, 0.18);
  color: rgba(255, 255, 255, 0.68);
  background: rgba(18, 23, 42, 0.72);
}

.solution-tab:hover,
.solution-tab.is-active {
  border-color: rgba(255, 51, 102, 0.52);
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.22), rgba(124, 58, 237, 0.2));
}

.solution-panel li::before,
.transaction-flow span {
  background: #ff3366;
}

.transaction-flow span {
  border-color: rgba(255, 51, 102, 0.24);
  color: #ffffff;
  background: rgba(255, 51, 102, 0.08);
}

.transaction-flow i {
  background: linear-gradient(90deg, rgba(255, 51, 102, 0.22), rgba(124, 58, 237, 0.7));
}

.transaction-flow i::after {
  background: linear-gradient(90deg, transparent, #ff9ab3, transparent);
}

.about-card::before {
  border-color: rgba(124, 58, 237, 0.26);
}

.about-card:hover,
.a360-suite-copy-grid > ul a:hover {
  border-color: rgba(255, 51, 102, 0.48);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.28), 0 0 44px rgba(255, 51, 102, 0.14);
}

.about-section .about-card > .about-card-index {
  background: linear-gradient(135deg, #ff3366, #7c3aed);
  box-shadow: 0 18px 38px rgba(255, 51, 102, 0.28);
}

.about-card h3,
.platform-panel h3,
.form-heading strong,
.a360-suite-copy-grid > ul a,
.a360-suite-copy-grid > p:first-child,
.a360-suite-copy-grid > p:nth-child(4),
.a360-page-content h2,
.a360-page-content h3 {
  color: #ffffff;
}

.about-proof span {
  color: #ff9ab3;
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(255, 51, 102, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff3366;
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.14);
}

.contact-direct a:hover {
  color: #ff9ab3;
}

.a360-suite-ring {
  border-color: rgba(255, 51, 102, 0.18);
}

.a360-suite-ring-two {
  border-color: rgba(124, 58, 237, 0.24);
}

.a360-suite-rail {
  background: linear-gradient(90deg, rgba(255, 51, 102, 0.16), #ff3366, #7c3aed);
}

.hero-world {
  filter: drop-shadow(0 34px 86px rgba(124, 58, 237, 0.22));
}

.hero-world .world-disc img {
  opacity: 0.28;
  filter: brightness(0) saturate(100%) invert(35%) sepia(88%) saturate(2630%) hue-rotate(246deg) brightness(92%) contrast(98%);
}

.hero-world .a360-map {
  filter:
    drop-shadow(0 0 28px rgba(255, 51, 102, 0.16))
    drop-shadow(0 0 52px rgba(124, 58, 237, 0.16));
}

/* A360 brand standards final override */
body {
  color: #110d07;
  background: #ffffff;
}

.site-header,
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(0, 86, 146, 0.12), 0 18px 48px rgba(17, 13, 7, 0.08);
  backdrop-filter: blur(24px) saturate(1.1);
}

.logo img,
.a360-suite-body .logo img {
  filter: none;
}

.main-nav > a,
.nav-dropdown > summary {
  color: #110d07;
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-dropdown[open] > summary,
.nav-dropdown.is-active > summary {
  color: #005692;
}

.nav-submenu {
  border-color: rgba(0, 86, 146, 0.18);
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 86, 146, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(231, 230, 231, 0.96));
  box-shadow: 0 34px 84px rgba(17, 13, 7, 0.16);
}

.nav-submenu::before,
.stats::after,
.solution-tab::after,
.platform-panel::after,
.contact-form::before,
.a360-suite-hero::before,
.a360-suite-copy-grid > p:first-child::before,
.a360-suite-copy-grid > ul::before {
  background: linear-gradient(90deg, #110d07, #919499, #005692);
  box-shadow: 0 0 24px rgba(0, 86, 146, 0.22);
}

.nav-submenu a {
  color: #110d07;
  background: rgba(255, 255, 255, 0.72);
}

.nav-submenu a::after,
.a360-suite-copy-grid > ul a::after {
  color: #005692;
}

.nav-submenu a:hover,
.nav-submenu a.is-active,
.module-item:hover,
.module-item.is-active {
  color: #ffffff;
  background: #005692;
  box-shadow: inset 3px 0 0 #110d07, 0 18px 36px rgba(0, 86, 146, 0.16);
}

.contact-button,
.primary-hero-button,
.send-button,
.hero-actions .a360-primary-button .wp-block-button__link {
  color: #ffffff;
  background: linear-gradient(135deg, #005692, #00436f);
  box-shadow: 0 20px 46px rgba(0, 86, 146, 0.24);
}

.outline-button,
.hero-actions .wp-block-button__link {
  border-color: #005692;
  color: #110d07;
  background: rgba(255, 255, 255, 0.74);
}

.contact-button:hover,
.primary-hero-button:hover,
.outline-button:hover,
.send-button:hover,
.hero-actions .wp-block-button__link:hover {
  color: #ffffff;
  background: #110d07;
  box-shadow: 0 20px 44px rgba(17, 13, 7, 0.22);
}

.hero,
.about-section,
.a360-suite-overview,
.a360-page-content {
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 86, 146, 0.14), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(145, 148, 153, 0.16), transparent 34%),
    linear-gradient(rgba(0, 86, 146, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.045) 1px, transparent 1px),
    #ffffff;
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
}

.hero::before {
  background-image:
    linear-gradient(rgba(0, 86, 146, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.055) 1px, transparent 1px);
}

.hero::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 86, 146, 0.14), rgba(231, 230, 231, 0.2) 42%, transparent 68%),
    conic-gradient(from 120deg, rgba(0, 86, 146, 0.16), transparent, rgba(145, 148, 153, 0.14), transparent);
}

.hero-kicker,
.section-label,
.stats-label,
.solutions-heading .section-label,
.contact-heading .section-label,
.a360-suite-kicker {
  border-color: rgba(0, 86, 146, 0.24);
  color: #005692;
  background: rgba(0, 86, 146, 0.075);
  box-shadow: none;
}

.hero h1,
.about-heading h2,
.a360-page-content h2,
.a360-page-content h3 {
  color: #110d07;
}

.stats-intro h2,
.solutions-heading h2,
.contact-heading h2,
.a360-suite-hero h1,
.a360-page-hero h1,
.platform-panel h3,
.form-heading strong,
.a360-suite-copy-grid > p:first-child,
.a360-suite-copy-grid > p:nth-child(4) {
  color: #ffffff;
}

.hero h1 .hero-line {
  background-image: linear-gradient(90deg, #005692, #005692);
}

.hero p,
.hero-capabilities span,
.about-heading p,
.about-card p,
.a360-page-content p,
.a360-page-content li,
.a360-suite-copy-grid > p,
.a360-suite-copy-grid > ul {
  color: rgba(17, 13, 7, 0.72);
}

.hero-capabilities span,
.about-card,
.a360-suite-copy-grid > p,
.a360-suite-copy-grid > ul,
.a360-suite-copy-grid > ul a {
  border-color: rgba(0, 86, 146, 0.16);
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 86, 146, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 68px rgba(17, 13, 7, 0.08);
  backdrop-filter: blur(10px);
}

.hero-capabilities i,
.live-dot {
  background: #005692;
  box-shadow: 0 0 0 5px rgba(0, 86, 146, 0.13);
}

.hero-capabilities span:nth-child(2) i,
.hero-capabilities span:nth-child(3) i,
.hero-capabilities span:nth-child(4) i {
  background: #919499;
}

.city-marker,
.section-squares span {
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.72), 0 0 18px rgba(0, 86, 146, 0.12);
}

.marker-black,
.section-squares span:nth-child(5n + 1) {
  background: #110d07;
}

.marker-gray-dark,
.section-squares span:nth-child(5n + 2) {
  background: #919499;
}

.marker-gray-light,
.section-squares span:nth-child(5n + 3) {
  background: #e7e6e7;
}

.marker-blue,
.section-squares span:nth-child(5n + 4),
.marker-navy,
.section-squares span:nth-child(5n) {
  background: #005692;
}

.stats,
.solutions-section,
.contact-section,
.site-footer,
.a360-suite-hero,
.a360-page-hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 86, 146, 0.28), transparent 30%),
    radial-gradient(circle at 14% 86%, rgba(145, 148, 153, 0.14), transparent 34%),
    linear-gradient(rgba(231, 230, 231, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 230, 231, 0.055) 1px, transparent 1px),
    #110d07;
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.stats::before,
.solutions-section::before,
.contact-section::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%, rgba(0, 0, 0, 0.22));
}

.stats-intro,
.contact-heading {
  border-bottom-color: rgba(231, 230, 231, 0.2);
}

.stats-intro p,
.solutions-section .solutions-heading > p:not(.section-label),
.platform-panel p,
.solution-panel li,
.contact-heading p,
.about-proof p,
.contact-response p {
  color: rgba(255, 255, 255, 0.72);
}

.stats-grid,
.module-list,
.a360-suite-capabilities {
  border-color: rgba(231, 230, 231, 0.18);
  background: rgba(231, 230, 231, 0.16);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
}

.stat-card,
.module-item,
.solution-panel,
.contact-form,
.contact-direct,
.contact-response,
.about-section .about-inner > .about-proof,
.a360-suite-core,
.a360-suite-capabilities span,
.a360-suite-node {
  border-color: rgba(231, 230, 231, 0.18);
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 86, 146, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(0, 86, 146, 0.88), rgba(17, 13, 7, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stat-card {
  --stat-accent: #005692;
}

.stat-card:nth-child(2) {
  --stat-accent: #919499;
}

.stat-card:nth-child(3) {
  --stat-accent: #e7e6e7;
}

.stat-icon,
.stats .stat-card .stat-tag,
.module-index,
.panel-status,
.contact-direct-label,
.form-status,
.a360-suite-core strong {
  color: #e7e6e7;
}

.module-index,
.contact-response > span,
.contact-response > p:first-child strong,
.about-section .about-card > .about-card-index {
  background: #005692;
  color: #ffffff;
}

.solution-tab {
  border-color: rgba(231, 230, 231, 0.18);
  color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 86, 146, 0.24);
}

.solution-tab:hover,
.solution-tab.is-active {
  border-color: rgba(231, 230, 231, 0.42);
  background: #005692;
}

.solution-panel li::before,
.transaction-flow span {
  background: #005692;
}

.transaction-flow span {
  border-color: rgba(231, 230, 231, 0.24);
  color: #ffffff;
  background: rgba(0, 86, 146, 0.34);
}

.transaction-flow i {
  background: linear-gradient(90deg, rgba(231, 230, 231, 0.16), rgba(0, 86, 146, 0.7));
}

.transaction-flow i::after {
  background: linear-gradient(90deg, transparent, #e7e6e7, transparent);
}

.about-card::before {
  border-color: rgba(0, 86, 146, 0.16);
}

.about-card:hover,
.a360-suite-copy-grid > ul a:hover {
  border-color: rgba(0, 86, 146, 0.38);
  box-shadow: 0 34px 84px rgba(17, 13, 7, 0.13);
}

.about-card h3,
.a360-suite-copy-grid > ul a {
  color: #110d07;
}

.about-proof span {
  color: #e7e6e7;
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(231, 230, 231, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e7e6e7;
  box-shadow: 0 0 0 3px rgba(231, 230, 231, 0.12);
}

.contact-direct a:hover {
  color: #e7e6e7;
}

.a360-suite-ring {
  border-color: rgba(231, 230, 231, 0.18);
}

.a360-suite-ring-two {
  border-color: rgba(0, 86, 146, 0.3);
}

.a360-suite-rail {
  background: linear-gradient(90deg, rgba(231, 230, 231, 0.14), #e7e6e7, #005692);
}

.hero-world {
  filter: drop-shadow(0 34px 86px rgba(0, 86, 146, 0.18));
}

.hero-world .world-disc img {
  opacity: 0.24;
  filter: brightness(0) saturate(100%) invert(28%) sepia(67%) saturate(1899%) hue-rotate(177deg) brightness(88%) contrast(101%);
}

.hero-world .a360-map {
  filter:
    drop-shadow(0 0 28px rgba(0, 86, 146, 0.14))
    drop-shadow(0 0 52px rgba(17, 13, 7, 0.08));
}

/* Warm accent layer: A360 corporate colors + premium gold */
.nav-submenu::before,
.stats::after,
.solution-tab::after,
.platform-panel::after,
.contact-form::before,
.a360-suite-hero::before,
.a360-suite-copy-grid > p:first-child::before,
.a360-suite-copy-grid > ul::before {
  background: linear-gradient(90deg, #005692, #ffc04d, #005692);
  box-shadow: 0 0 24px rgba(255, 192, 77, 0.28);
}

.contact-button,
.primary-hero-button,
.send-button,
.hero-actions .a360-primary-button .wp-block-button__link {
  background: linear-gradient(135deg, #005692 0%, #005692 72%, #ffc04d 140%);
  box-shadow: 0 20px 46px rgba(0, 86, 146, 0.24), 0 0 34px rgba(255, 192, 77, 0.12);
}

.contact-button:hover,
.primary-hero-button:hover,
.outline-button:hover,
.send-button:hover,
.hero-actions .wp-block-button__link:hover {
  background: linear-gradient(135deg, #110d07, #005692 78%, #ffc04d 145%);
  box-shadow: 0 20px 44px rgba(17, 13, 7, 0.22), 0 0 34px rgba(255, 192, 77, 0.16);
}

.hero,
.about-section,
.a360-suite-overview,
.a360-page-content {
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 86, 146, 0.14), transparent 30%),
    radial-gradient(circle at 14% 84%, rgba(255, 192, 77, 0.11), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(145, 148, 153, 0.14), transparent 34%),
    linear-gradient(rgba(0, 86, 146, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.045) 1px, transparent 1px),
    #ffffff;
  background-size: auto, auto, auto, 58px 58px, 58px 58px, auto;
}

.hero h1 .hero-line {
  background-image: linear-gradient(90deg, #005692, #ffc04d);
}

.hero-kicker,
.section-label,
.stats-label,
.solutions-heading .section-label,
.contact-heading .section-label,
.a360-suite-kicker {
  border-color: rgba(0, 86, 146, 0.24);
  color: #005692;
  background: linear-gradient(90deg, rgba(0, 86, 146, 0.075), rgba(255, 192, 77, 0.12));
}

.hero-capabilities i,
.live-dot,
.marker-blue,
.section-squares span:nth-child(5n + 4),
.marker-navy,
.section-squares span:nth-child(5n) {
  background: #ffc04d;
}

.hero-capabilities i,
.live-dot {
  box-shadow: 0 0 0 5px rgba(255, 192, 77, 0.16), 0 0 22px rgba(255, 192, 77, 0.2);
}

.hero-capabilities span:nth-child(2) i {
  background: #005692;
}

.hero-capabilities span:nth-child(3) i {
  background: #919499;
}

.hero-capabilities span:nth-child(4) i {
  background: #ffc04d;
}

.stats,
.solutions-section,
.contact-section,
.site-footer,
.a360-suite-hero,
.a360-page-hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 86, 146, 0.28), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(255, 192, 77, 0.13), transparent 30%),
    radial-gradient(circle at 14% 86%, rgba(145, 148, 153, 0.14), transparent 34%),
    linear-gradient(rgba(231, 230, 231, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 230, 231, 0.055) 1px, transparent 1px),
    #110d07;
  background-size: auto, auto, auto, 64px 64px, 64px 64px, auto;
}

.stat-card:nth-child(2) {
  --stat-accent: #ffc04d;
}

.stat-card:nth-child(3) {
  --stat-accent: #e7e6e7;
}

.stat-icon,
.stats .stat-card .stat-tag,
.panel-status,
.contact-direct-label,
.form-status,
.a360-suite-core strong,
.about-proof span {
  color: #ffc04d;
}

.module-index,
.contact-response > span,
.contact-response > p:first-child strong,
.about-section .about-card > .about-card-index {
  background: linear-gradient(135deg, #005692, #005692 72%, #ffc04d 132%);
}

.solution-tab:hover,
.solution-tab.is-active {
  color: #ffffff;
  border-color: rgba(255, 192, 77, 0.38);
  background: linear-gradient(135deg, #005692, #00436f);
}

.solution-panel li::before,
.transaction-flow span {
  background: #ffc04d;
}

.transaction-flow span {
  color: #110d07;
  border-color: rgba(255, 192, 77, 0.34);
  background: rgba(255, 192, 77, 0.88);
}

.transaction-flow i {
  background: linear-gradient(90deg, rgba(231, 230, 231, 0.16), rgba(255, 192, 77, 0.74));
}

.transaction-flow i::after {
  background: linear-gradient(90deg, transparent, #ffc04d, transparent);
}

.about-card:hover,
.a360-suite-copy-grid > ul a:hover {
  border-color: rgba(255, 192, 77, 0.44);
  box-shadow: 0 34px 84px rgba(17, 13, 7, 0.13), 0 0 34px rgba(255, 192, 77, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffc04d;
  box-shadow: 0 0 0 3px rgba(255, 192, 77, 0.14);
}

.contact-direct a:hover {
  color: #ffc04d;
}

.a360-suite-rail {
  background: linear-gradient(90deg, rgba(231, 230, 231, 0.14), #ffc04d, #005692);
}

/* Non-payment menu pages */
.a360-menu-page {
  background: #ffffff;
}

.a360-menu-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 86, 146, 0.28), transparent 32%),
    radial-gradient(circle at 16% 82%, rgba(255, 192, 77, 0.13), transparent 30%),
    linear-gradient(rgba(231, 230, 231, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 230, 231, 0.052) 1px, transparent 1px),
    #110d07;
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.a360-menu-page-service .a360-menu-hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 192, 77, 0.14), transparent 28%),
    linear-gradient(118deg, rgba(0, 86, 146, 0.32), transparent 46%),
    linear-gradient(rgba(231, 230, 231, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 230, 231, 0.05) 1px, transparent 1px),
    #110d07;
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
}

.a360-menu-page-partners .a360-menu-hero {
  background:
    radial-gradient(circle at 76% 38%, rgba(0, 86, 146, 0.34), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(255, 192, 77, 0.12), transparent 30%),
    #110d07;
}

.a360-menu-page-about .a360-menu-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(145, 148, 153, 0.18), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(0, 86, 146, 0.24), transparent 32%),
    linear-gradient(rgba(231, 230, 231, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 230, 231, 0.05) 1px, transparent 1px),
    #110d07;
  background-size: auto, auto, 68px 68px, 68px 68px, auto;
}

.a360-menu-hero::before {
  position: absolute;
  top: 0;
  left: -36%;
  z-index: 2;
  width: 36%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #005692 28%, #ffc04d 62%, transparent);
  content: "";
  animation: statsSignalRail 7.5s ease-in-out infinite;
  pointer-events: none;
}

.a360-menu-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(17, 13, 7, 0.08), transparent 54%, rgba(0, 86, 146, 0.08));
  content: "";
  pointer-events: none;
}

.a360-menu-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  max-width: 1560px;
  min-height: 680px;
  margin: 0 auto;
  padding: 164px clamp(24px, 5vw, 84px) 72px;
}

.a360-menu-hero-copy h1 {
  max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(54px, 5vw, 78px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.a360-menu-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 42px;
  padding: 1px;
  border: 1px solid rgba(231, 230, 231, 0.18);
  border-radius: 6px;
  background: rgba(231, 230, 231, 0.16);
  overflow: hidden;
}

.a360-menu-chips span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(0, 86, 146, 0.32);
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
}

.a360-menu-visual {
  position: relative;
  min-height: 470px;
}

.a360-service-visual {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 38px;
  border: 1px solid rgba(231, 230, 231, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 192, 77, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(0, 86, 146, 0.78), rgba(17, 13, 7, 0.88));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.a360-service-visual > strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 34px;
  font-weight: 900;
}

.a360-service-rail {
  position: relative;
  display: grid;
  gap: 14px;
}

.a360-service-rail::before {
  position: absolute;
  left: 22px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(#005692, #ffc04d, #005692);
  content: "";
}

.a360-service-rail span {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 70px;
  padding: 12px 18px;
  border: 1px solid rgba(231, 230, 231, 0.16);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(17, 13, 7, 0.54);
  font-weight: 800;
}

.a360-service-rail b {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 5px;
  color: #110d07;
  background: #ffc04d;
  font-size: 14px;
}

.a360-partner-visual {
  min-height: 510px;
}

.a360-menu-ring,
.a360-menu-core,
.a360-menu-orbit,
.a360-menu-node {
  position: absolute;
}

.a360-menu-ring {
  left: 50%;
  top: 50%;
  border: 1px solid rgba(231, 230, 231, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.a360-menu-ring-one {
  width: 410px;
  height: 410px;
}

.a360-menu-ring-two {
  width: 288px;
  height: 288px;
  border-color: rgba(0, 86, 146, 0.34);
}

.a360-menu-core {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(255, 192, 77, 0.42);
  border-radius: 8px;
  color: #ffc04d;
  background: linear-gradient(145deg, rgba(0, 86, 146, 0.84), rgba(17, 13, 7, 0.94));
  box-shadow: 0 0 0 12px rgba(255, 192, 77, 0.04), 0 28px 64px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  font-size: 30px;
  font-weight: 900;
  animation: a360PartnerCorePulse 4.8s ease-in-out infinite;
  z-index: 2;
}

.a360-menu-core img {
  width: 94px;
  height: auto;
  filter: brightness(0) invert(1);
}

.a360-menu-orbit {
  left: 50%;
  top: 50%;
  width: 410px;
  height: 410px;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;
  animation: a360PartnerOrbit 30s linear infinite;
  z-index: 1;
}

.a360-menu-node {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transform-origin: center;
  white-space: nowrap;
}

.a360-menu-node > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border: 1px solid rgba(231, 230, 231, 0.26);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 86, 146, 0.5), rgba(17, 13, 7, 0.34));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  animation: a360PartnerCounterOrbit 30s linear infinite, a360PartnerNodeBreath 3.8s ease-in-out infinite;
}

.a360-menu-node-1 {
  left: 50%;
  top: 2%;
  transform: translateX(-50%);
}

.a360-menu-node-2 {
  right: 4%;
  top: 24%;
}

.a360-menu-node-3 {
  right: 4%;
  bottom: 24%;
}

.a360-menu-node-4 {
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
}

.a360-menu-node-5 {
  left: 4%;
  bottom: 24%;
}

.a360-menu-node-6 {
  left: 4%;
  top: 24%;
}

@keyframes a360PartnerOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes a360PartnerCounterOrbit {
  from {
    transform: rotate(0deg);
  }

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

@keyframes a360PartnerNodeBreath {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  }

  50% {
    box-shadow: 0 22px 54px rgba(0, 86, 146, 0.34), 0 0 0 7px rgba(255, 192, 77, 0.08);
  }
}

@keyframes a360PartnerCorePulse {
  0%,
  100% {
    box-shadow: 0 0 0 12px rgba(255, 192, 77, 0.04), 0 28px 64px rgba(0, 0, 0, 0.32);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(255, 192, 77, 0.08), 0 32px 74px rgba(0, 86, 146, 0.38);
  }
}

.a360-partner-logo-section {
  position: relative;
  overflow: hidden;
  padding: 84px clamp(24px, 7.5vw, 162px) 96px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 192, 77, 0.1), transparent 30%),
    radial-gradient(circle at 92% 70%, rgba(0, 86, 146, 0.18), transparent 32%),
    linear-gradient(rgba(0, 86, 146, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.045) 1px, transparent 1px),
    #ffffff;
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
}

.a360-partner-logo-section::before {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 86, 146, 0.28), rgba(255, 192, 77, 0.42), transparent);
  content: "";
}

.a360-partner-logo-inner {
  position: relative;
  z-index: 1;
  max-width: 1560px;
  margin: 0 auto;
}

.a360-partner-logo-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(360px, 0.78fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: 42px;
}

.a360-partner-logo-heading .section-label {
  justify-self: start;
}

.a360-partner-logo-heading h2 {
  margin: 0;
  color: #110d07;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.a360-partner-logo-heading p {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
  color: rgba(17, 13, 7, 0.68);
  font-size: 20px;
  line-height: 1.55;
}

.a360-partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.a360-partner-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 166px;
  padding: 30px;
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 253, 0.9)),
    radial-gradient(circle at 88% 12%, rgba(255, 192, 77, 0.16), transparent 30%);
  box-shadow: 0 26px 70px rgba(0, 86, 146, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.a360-partner-logo-card::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #005692, #ffc04d);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.a360-partner-logo-card img {
  display: block;
  width: min(78%, 260px);
  max-height: 86px;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.02);
}

.a360-partner-logo-card:hover {
  border-color: rgba(0, 86, 146, 0.32);
  box-shadow: 0 32px 90px rgba(0, 86, 146, 0.14), 0 0 0 1px rgba(255, 192, 77, 0.18);
  transform: translateY(-6px);
}

.a360-partner-logo-card:hover::after {
  opacity: 1;
}

.a360-about-visual {
  display: grid;
  align-content: center;
  gap: 28px;
}

.a360-about-visual > strong {
  color: #ffc04d;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.a360-about-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.a360-about-signal-grid span {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(231, 230, 231, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 192, 77, 0.12), transparent 36%),
    rgba(0, 86, 146, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.a360-about-signal-grid b {
  color: #ffffff;
  font-size: 32px;
  line-height: 38px;
  font-weight: 900;
}

.a360-about-signal-grid small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.a360-menu-content {
  position: relative;
  overflow: hidden;
  padding: 88px clamp(24px, 7.5vw, 162px) 110px;
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 86, 146, 0.08), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(255, 192, 77, 0.08), transparent 30%),
    linear-gradient(rgba(0, 86, 146, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.a360-menu-content-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.a360-menu-content-inner .a360-suite-section-heading {
  margin-bottom: clamp(42px, 4vw, 68px);
}

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

.a360-menu-copy-grid > p,
.a360-menu-copy-grid > ul,
.a360-menu-copy-grid > h2 {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 34px 34px 36px;
  border: 1px solid rgba(0, 86, 146, 0.15);
  border-radius: 6px;
  color: rgba(17, 13, 7, 0.74);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 192, 77, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 58px rgba(17, 13, 7, 0.07);
  font-size: 18px;
  line-height: 1.62;
}

.a360-menu-copy-grid > h2 {
  min-height: 0;
  color: #005692;
  font-size: 28px;
  line-height: 34px;
  font-weight: 900;
}

.a360-menu-copy-grid > p:first-child {
  grid-column: 1 / -1;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 192, 77, 0.12), transparent 34%),
    linear-gradient(135deg, #110d07, #005692);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 500;
}

.a360-menu-copy-grid > ul {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 34px;
  list-style: none;
}

.a360-menu-copy-grid li {
  margin: 0;
}

.a360-menu-copy-grid a {
  color: #005692;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .a360-menu-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 154px;
  }

  .a360-menu-visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .a360-menu-copy-grid {
    grid-template-columns: 1fr;
  }

  .a360-partner-logo-heading,
  .a360-partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a360-partner-logo-heading p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .a360-menu-hero {
    min-height: 0;
  }

  .a360-menu-hero-layout {
    min-height: 0;
    padding: 146px 20px 58px;
  }

  .a360-menu-hero-copy h1 {
    font-size: 46px;
    line-height: 1.08;
  }

  .a360-menu-chips,
  .a360-about-signal-grid,
  .a360-menu-copy-grid > ul {
    grid-template-columns: 1fr;
  }

  .a360-menu-content {
    padding: 56px 20px 72px;
  }

  .a360-icon-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .a360-partner-logo-section {
    padding: 54px 20px 62px;
  }

  .a360-partner-logo-heading,
  .a360-partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .a360-partner-logo-heading {
    margin-bottom: 26px;
  }

  .a360-partner-logo-heading p {
    grid-column: auto;
    font-size: 18px;
  }

  .a360-partner-logo-card {
    min-height: 132px;
    padding: 22px;
  }

  .a360-menu-copy-grid > p,
  .a360-menu-copy-grid > ul,
  .a360-menu-copy-grid > h2,
  .a360-menu-copy-grid > p:first-child {
    padding: 26px 24px 28px;
    font-size: 18px;
    line-height: 1.58;
  }

  .a360-menu-content-inner .a360-suite-section-heading {
    margin-bottom: 34px;
  }

  .a360-partner-visual {
    min-height: 380px;
  }

  .a360-menu-ring-one {
    width: 300px;
    height: 300px;
  }

  .a360-menu-orbit {
    width: 300px;
    height: 300px;
  }

  .a360-menu-ring-two {
    width: 220px;
    height: 220px;
  }

  .a360-menu-core {
    width: 112px;
    height: 112px;
    font-size: 24px;
  }

  .a360-menu-core img {
    width: 74px;
  }

  .a360-menu-node {
    font-size: 12px;
  }

  .a360-menu-node > span {
    padding: 8px 12px;
  }
}

/* Home about intro spacing */
.about-section .about-inner > .about-heading {
  margin-bottom: clamp(82px, 7vw, 118px);
}

@media (max-width: 900px) {
  .about-section .about-inner > .about-heading {
    margin-bottom: 56px;
  }
}

.hero::after {
  display: none;
  content: none;
}

.stats-intro .stats-label {
  grid-area: label;
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  margin: 0;
}

.stats-intro > p:not(.stats-label) {
  grid-area: copy;
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 980px) {
  .stats-intro > p:not(.stats-label) {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (max-width: 700px) {
  .about-section .about-inner > .about-heading {
    margin-bottom: 44px;
  }
}

/* Keep geographic location markers hidden; the rotating globe is the only globe animation. */
.city-layer {
  display: none;
}

.hero h1 .hero-line,
.gsap-ready .hero h1 .hero-line {
  background-image: none;
  background-size: 0 0;
}

.hero-copy > p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

@media (max-width: 700px) {
  .hero-copy > p {
    text-align: left;
    hyphens: none;
  }
}

/* Phase 2: light product and company pages with portfolio visuals. */
.a360-suite-body,
.a360-suite-page,
.a360-menu-page {
  color: #110d07;
  background: #f7fbfe;
}

.a360-suite-body .site-header,
.a360-suite-body .site-header.is-scrolled,
.a360-suite-body .site-header.is-open {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1px 0 rgba(0, 86, 146, 0.12), 0 18px 46px rgba(0, 86, 146, 0.08);
  backdrop-filter: blur(24px) saturate(1.2);
}

.a360-suite-body .logo img {
  filter: none;
}

.a360-suite-body .main-nav > a,
.a360-suite-body .nav-dropdown > summary {
  color: rgba(17, 13, 7, 0.82);
}

.a360-suite-body .main-nav > a:hover,
.a360-suite-body .main-nav > a.is-active,
.a360-suite-body .nav-dropdown[open] > summary,
.a360-suite-body .nav-dropdown.is-active > summary {
  color: #005692;
}

.a360-suite-hero,
.a360-menu-hero,
.a360-menu-page-service .a360-menu-hero,
.a360-menu-page-partners .a360-menu-hero,
.a360-menu-page-about .a360-menu-hero {
  color: #110d07;
  background:
    radial-gradient(circle at 82% 18%, rgba(14, 155, 232, 0.15), transparent 30%),
    radial-gradient(circle at 16% 84%, rgba(255, 192, 77, 0.12), transparent 28%),
    linear-gradient(rgba(0, 86, 146, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.052) 1px, transparent 1px),
    linear-gradient(120deg, #ffffff 0%, #f4f9fd 58%, #eaf5fc 100%);
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.a360-suite-hero::after,
.a360-menu-hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 54%, rgba(0, 86, 146, 0.04));
}

.a360-suite-hero h1,
.a360-menu-hero-copy h1 {
  color: #110d07;
}

.a360-suite-kicker {
  border-color: rgba(0, 86, 146, 0.24);
  color: #005692;
  background: linear-gradient(90deg, rgba(0, 86, 146, 0.08), rgba(255, 192, 77, 0.13));
  box-shadow: none;
}

.a360-suite-capabilities,
.a360-menu-chips {
  border-color: rgba(0, 86, 146, 0.16);
  background: rgba(0, 86, 146, 0.1);
  box-shadow: 0 20px 48px rgba(0, 86, 146, 0.08);
}

.a360-suite-capabilities span,
.a360-menu-chips span {
  color: #005692;
  background: rgba(255, 255, 255, 0.92);
}

.a360-suite-ring,
.a360-menu-ring {
  border-color: rgba(0, 86, 146, 0.2);
}

.a360-suite-ring-two,
.a360-menu-ring-two {
  border-color: rgba(255, 192, 77, 0.34);
}

.a360-suite-core,
.a360-menu-core {
  border-color: rgba(0, 86, 146, 0.28);
  color: #005692;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(220, 239, 250, 0.96));
  box-shadow: 0 0 0 12px rgba(0, 86, 146, 0.04), 0 28px 64px rgba(0, 86, 146, 0.14);
}

.a360-suite-core strong {
  color: #005692;
}

.a360-suite-core small {
  color: rgba(17, 13, 7, 0.58);
}

.a360-menu-core img {
  filter: none;
}

.a360-suite-node {
  border-color: rgba(0, 86, 146, 0.25);
  color: #005692;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(0, 86, 146, 0.1);
}

.a360-suite-rail {
  background: linear-gradient(90deg, rgba(0, 86, 146, 0.12), #005692, #ffc04d, rgba(0, 86, 146, 0.16));
}

.a360-service-visual,
.a360-about-signal-grid span {
  border-color: rgba(0, 86, 146, 0.17);
  color: #110d07;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 192, 77, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 72px rgba(0, 86, 146, 0.1);
}

.a360-service-visual > strong,
.a360-about-visual > strong,
.a360-about-signal-grid b {
  color: #005692;
}

.a360-about-signal-grid small {
  color: rgba(17, 13, 7, 0.6);
}

.a360-service-rail span {
  border-color: rgba(0, 86, 146, 0.14);
  color: #110d07;
  background: #f5faff;
}

.a360-service-rail b {
  color: #ffffff;
  background: #005692;
}

.a360-menu-node {
  color: #005692;
}

.a360-menu-node > span {
  border-color: rgba(0, 86, 146, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(0, 86, 146, 0.1);
}

.a360-suite-overview,
.a360-menu-content {
  background:
    radial-gradient(circle at 88% 14%, rgba(0, 86, 146, 0.08), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(255, 192, 77, 0.07), transparent 30%),
    linear-gradient(rgba(0, 86, 146, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.a360-suite-copy-grid > p,
.a360-suite-copy-grid > ul,
.a360-suite-copy-grid > p:first-child,
.a360-suite-copy-grid > p:nth-child(4),
.a360-menu-copy-grid > p,
.a360-menu-copy-grid > ul,
.a360-menu-copy-grid > h2,
.a360-menu-copy-grid > p:first-child {
  border-color: rgba(0, 86, 146, 0.15);
  color: rgba(17, 13, 7, 0.74);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 192, 77, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 58px rgba(0, 86, 146, 0.08);
}

.a360-menu-copy-grid > h2 {
  color: #005692;
}

.a360-suite-copy-grid > ul a {
  border-color: rgba(0, 86, 146, 0.14);
  color: #005692;
  background: #f5faff;
}

.a360-portfolio-visual-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 6vw, 96px) clamp(24px, 7.5vw, 162px);
  background:
    radial-gradient(circle at 86% 12%, rgba(14, 155, 232, 0.1), transparent 28%),
    linear-gradient(rgba(0, 86, 146, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.035) 1px, transparent 1px),
    #f7fbfe;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.a360-portfolio-visual {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(12px, 1.6vw, 22px);
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 90px rgba(0, 86, 146, 0.12);
  overflow: hidden;
}

.a360-portfolio-visual::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #005692, #0e9be8 58%, #ffc04d);
  content: "";
}

.a360-portfolio-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.a360-portfolio-visual:hover img {
  transform: scale(1.012);
}

@media (max-width: 700px) {
  .a360-suite-hero,
  .a360-menu-hero {
    min-height: 0;
  }

  .a360-suite-capabilities,
  .a360-menu-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a360-portfolio-visual-section {
    padding: 42px 16px;
  }

  .a360-portfolio-visual {
    padding: 8px;
  }
}

/* Coded A360 Payment Suite architecture diagram. */
.a360-coded-diagram-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 6vw, 96px) clamp(20px, 4vw, 76px);
  background:
    radial-gradient(circle at 88% 12%, rgba(14, 155, 232, 0.1), transparent 28%),
    linear-gradient(rgba(0, 86, 146, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.035) 1px, transparent 1px),
    #f7fbfe;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.a360-architecture {
  max-width: 1320px;
  margin: 0 auto;
  color: #061d31;
}

.a360-architecture-heading {
  margin-bottom: 28px;
  text-align: center;
}

.a360-architecture-heading h2 {
  margin: 0;
  color: #063f7c;
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-architecture-heading p {
  margin: 8px 0 0;
  color: rgba(6, 29, 49, 0.68);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.4;
}

.a360-architecture-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.a360-architecture-touchpoints {
  order: 1;
}

.a360-architecture-core {
  order: 2;
}

.a360-architecture-integrations {
  order: 3;
}

.a360-architecture svg {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a360-architecture-icon-sprite {
  position: absolute;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden;
  pointer-events: none;
}

.a360-architecture-core,
.a360-architecture-edge,
.a360-deployment-layer {
  border: 1px solid rgba(0, 86, 146, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 64px rgba(0, 86, 146, 0.09);
}

.a360-architecture-core {
  position: relative;
  padding: 12px;
  overflow: hidden;
}

.a360-architecture-bar,
.a360-architecture-edge h3,
.a360-architecture-layer h4,
.a360-deployment-layer h3 {
  position: relative;
  margin: 0;
  color: #ffffff;
  background: linear-gradient(90deg, #063f7c, #005692);
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-architecture-bar {
  margin-bottom: 12px;
  padding: 10px 16px;
  border-radius: 5px;
  overflow: hidden;
}

.a360-architecture-bar::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: a360ArchitectureSignal 6s ease-in-out infinite;
}

.a360-domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.a360-domain {
  --domain-color: #005692;
  --domain-soft: rgba(0, 86, 146, 0.055);
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--domain-color) 64%, transparent);
  border-radius: 7px;
  background: linear-gradient(180deg, var(--domain-soft), rgba(255, 255, 255, 0.98) 40%);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.a360-domain:hover {
  box-shadow: 0 18px 42px color-mix(in srgb, var(--domain-color) 16%, transparent);
  transform: translateY(-4px);
}

.a360-domain h4 {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 58px;
  margin: 0;
  padding: 11px 15px;
  color: #ffffff;
  background: var(--domain-color);
  font-size: 15px;
  line-height: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-domain h4 svg {
  width: 27px;
  height: 27px;
  margin-right: 2px;
}

.a360-domain h4 b {
  flex: 0 0 auto;
}

.a360-domain ul,
.a360-architecture-edge ul,
.a360-architecture-layer ul,
.a360-deployment-layer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.a360-domain ul {
  display: grid;
  gap: 9px;
  padding: 17px 16px 19px;
}

.a360-domain li {
  position: relative;
  min-height: 20px;
  padding-left: 29px;
  color: rgba(6, 29, 49, 0.82);
  font-size: 14px;
  line-height: 20px;
}

.a360-domain li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  border: 2px solid var(--domain-color);
  border-radius: 5px;
  background: color-mix(in srgb, var(--domain-color) 8%, white);
  content: "";
}

.a360-domain li::after {
  position: absolute;
  left: 5px;
  top: 6px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--domain-color);
  border-bottom: 2px solid var(--domain-color);
  content: "";
  transform: rotate(-45deg);
}

.a360-domain-acquiring {
  --domain-color: #07845f;
  --domain-soft: rgba(7, 132, 95, 0.06);
}

.a360-domain-processing {
  --domain-color: #5535a5;
  --domain-soft: rgba(85, 53, 165, 0.06);
}

.a360-domain-digital {
  --domain-color: #0099ad;
  --domain-soft: rgba(0, 153, 173, 0.06);
}

.a360-domain-secure {
  --domain-color: #f36c16;
  --domain-soft: rgba(243, 108, 22, 0.06);
}

.a360-domain-fraud {
  --domain-color: #db2d4c;
  --domain-soft: rgba(219, 45, 76, 0.06);
}

.a360-domain-national {
  --domain-color: #1765aa;
  --domain-soft: rgba(23, 101, 170, 0.06);
}

.a360-domain-acceptance {
  --domain-color: #d69c00;
  --domain-soft: rgba(214, 156, 0, 0.07);
}

.a360-architecture-layer {
  margin-top: 12px;
  border: 1px solid rgba(0, 86, 146, 0.2);
  border-radius: 7px;
  overflow: hidden;
}

.a360-architecture-layer h4 {
  padding: 6px 12px;
  font-size: 13px;
}

.a360-architecture-layer ul,
.a360-deployment-layer ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0, 86, 146, 0.1);
}

.a360-architecture-layer li,
.a360-deployment-layer li {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 10px;
  color: rgba(6, 29, 49, 0.78);
  background: #ffffff;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}

.a360-architecture-layer li svg,
.a360-deployment-layer li svg {
  width: 26px;
  height: 26px;
  color: #0758ba;
}

.a360-shared-layer ul {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.a360-architecture-edge {
  overflow: hidden;
}

.a360-architecture-edge h3 {
  padding: 12px 8px;
  font-size: 13px;
}

.a360-architecture-edge ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: rgba(0, 86, 146, 0.1);
}

.a360-architecture-touchpoints ul {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.a360-architecture-edge li {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  min-height: 86px;
  padding: 13px 10px;
  color: rgba(6, 29, 49, 0.8);
  background: #ffffff;
  text-align: center;
  font-size: 13px;
  line-height: 17px;
  font-weight: 700;
}

.a360-architecture-edge li svg {
  width: 36px;
  height: 36px;
  color: #005692;
}

.a360-deployment-layer {
  max-width: 1320px;
  margin: 18px auto 0;
  overflow: hidden;
}

.a360-deployment-layer h3 {
  padding: 7px 12px;
  background: #ffffff;
  color: #063f7c;
}

.a360-deployment-layer ul {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

@keyframes a360ArchitectureSignal {
  0%, 24% {
    left: -28%;
  }

  70%, 100% {
    left: 108%;
  }
}

@media (max-width: 1180px) {
  .a360-architecture-edge ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .a360-architecture-touchpoints ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .a360-deployment-layer {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .a360-domain-grid {
    grid-template-columns: 1fr;
  }

  .a360-architecture-layer ul,
  .a360-shared-layer ul,
  .a360-deployment-layer ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a360-architecture-edge ul,
  .a360-architecture-touchpoints ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .a360-coded-diagram-section {
    padding: 44px 14px;
  }

  .a360-domain-grid {
    grid-template-columns: 1fr;
  }

  .a360-architecture-core {
    padding: 8px;
  }

  .a360-architecture-edge ul,
  .a360-architecture-touchpoints ul {
    grid-template-columns: 1fr;
  }

  .a360-architecture-edge li {
    justify-content: flex-start;
    min-height: 70px;
    padding-left: 22px;
    text-align: left;
  }

  .a360-architecture-layer li,
  .a360-deployment-layer li {
    justify-content: flex-start;
    text-align: left;
  }
}

/* Cookie consent */
.cookie-consent[hidden],
.cookie-preferences[hidden],
.cookie-consent-summary[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  width: min(1180px, calc(100% - 40px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid rgba(0, 86, 146, 0.2);
  border-radius: 18px;
  color: var(--ink);
  background:
    radial-gradient(circle at 94% 4%, rgba(0, 86, 146, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(17, 13, 7, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.75) inset;
  opacity: 0;
  transform: translate(-50%, 24px);
  transition: opacity 260ms ease, transform 260ms ease;
  backdrop-filter: blur(20px) saturate(1.15);
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-consent-accent {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 7px;
  overflow: hidden;
  background: var(--blue);
}

.cookie-consent-accent span {
  position: absolute;
  left: 0;
  width: 7px;
  height: 34%;
}

.cookie-consent-accent span:nth-child(1) { top: 0; background: #005692; }
.cookie-consent-accent span:nth-child(2) { top: 33%; background: #919499; }
.cookie-consent-accent span:nth-child(3) { bottom: 0; background: #110d07; }

.cookie-consent-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 30px 34px 30px 40px;
}

.cookie-consent-label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.cookie-consent p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.cookie-consent p a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent-actions,
.cookie-preferences-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent-actions {
  width: 280px;
}

.cookie-button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(0, 86, 146, 0.28);
  border-radius: 7px;
  color: var(--blue);
  background: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 86, 146, 0.15);
}

.cookie-button-primary {
  border-color: var(--blue);
  color: #ffffff;
  background: linear-gradient(135deg, #005692, #0077b9);
}

.cookie-button-text {
  min-height: auto;
  margin-left: auto;
  padding: 4px 2px;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-preferences {
  padding: 30px 34px 32px 40px;
}

.cookie-preferences-heading {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cookie-close {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(0, 86, 146, 0.22);
  border-radius: 50%;
  color: var(--blue);
  background: #ffffff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.cookie-preference-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.cookie-preference {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(0, 86, 146, 0.15);
  border-radius: 10px;
  background: rgba(231, 230, 231, 0.3);
  cursor: pointer;
}

.cookie-preference strong,
.cookie-preference small {
  display: block;
}

.cookie-preference strong { margin-bottom: 5px; color: var(--ink); font-size: 15px; }
.cookie-preference small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.cookie-preference input { position: absolute; opacity: 0; pointer-events: none; }

.cookie-preference i {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #aeb2b7;
  transition: background 180ms ease;
}

.cookie-preference i::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(17, 13, 7, 0.22);
  content: "";
  transition: transform 180ms ease;
}

.cookie-preference input:checked + i { background: var(--blue); }
.cookie-preference input:checked + i::after { transform: translateX(20px); }
.cookie-preference input:focus-visible + i { outline: 3px solid rgba(0, 86, 146, 0.24); outline-offset: 3px; }
.cookie-preference input:disabled + i { opacity: 0.7; }

.cookie-settings-link {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 780px) {
  .cookie-consent {
    bottom: 12px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
  }

  .cookie-consent-summary {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 24px 26px 30px;
  }

  .cookie-consent-actions { width: 100%; justify-content: stretch; }
  .cookie-consent-actions .cookie-button { flex: 1 1 140px; }
  .cookie-consent-actions .cookie-button-text { flex-basis: 100%; margin: 2px auto 0; }
  .cookie-preferences { padding: 26px 24px 26px 30px; }
  .cookie-preference-list { grid-template-columns: 1fr; }
  .cookie-preference { min-height: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent,
  .cookie-button,
  .cookie-preference i,
  .cookie-preference i::after { transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  .a360-architecture-bar::after {
    animation: none;
  }

  .a360-domain {
    transition: none;
  }
}

/* Coded flexible deployment options diagram. */
.a360-deployment-diagram {
  max-width: 1320px;
  margin: 0 auto;
  color: #061d31;
}

.a360-deployment-heading {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.a360-deployment-heading h2,
.a360-deployment-heading h3 {
  margin: 0;
  color: #063f7c;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-deployment-heading h2 {
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
}

.a360-deployment-heading h3 {
  margin-top: 7px;
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.08;
}

.a360-deployment-heading p {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(6, 29, 49, 0.75);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
}

.a360-deployment-models {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.a360-deployment-model {
  --model-color: #0758ba;
  --model-soft: rgba(7, 88, 186, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
  min-height: 310px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--model-color) 42%, #d8e5ef);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--model-soft), #ffffff 48%);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--model-color) 10%, transparent);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.a360-deployment-model:hover {
  box-shadow: 0 34px 82px color-mix(in srgb, var(--model-color) 20%, transparent);
  transform: translateY(-6px);
}

.a360-deployment-saas {
  --model-color: #16872b;
  --model-soft: rgba(22, 135, 43, 0.08);
}

.a360-deployment-hosted {
  --model-color: #0869d5;
  --model-soft: rgba(8, 105, 213, 0.08);
}

.a360-deployment-model-heading {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding-bottom: 22px;
  border-bottom: 1px solid color-mix(in srgb, var(--model-color) 24%, transparent);
}

.a360-deployment-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--model-color) 38%, transparent);
  border-radius: 8px;
  background: var(--model-color);
  color: #ffffff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--model-color) 20%, transparent);
}

.a360-deployment-icon svg,
.a360-deployment-benefits i svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-deployment-model h4 {
  min-width: 0;
  margin: 0;
  padding: 0;
  color: var(--model-color);
  background: none;
  text-align: left;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-deployment-model > p {
  flex: 1;
  margin: 0;
  color: rgba(6, 29, 49, 0.82);
  font-size: 15px;
  line-height: 1.62;
  text-align: justify;
}

.a360-deployment-glyph {
  position: absolute;
  left: 50%;
  top: -52px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 2px solid var(--model-color);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 38px color-mix(in srgb, var(--model-color) 18%, transparent);
  transform: translateX(-50%);
}

.a360-deployment-saas .a360-deployment-glyph,
.a360-deployment-hosted .a360-deployment-glyph {
  color: #ffffff;
  background: var(--model-color);
}

.a360-glyph-building {
  display: flex;
  gap: 4px;
  align-items: end;
  justify-content: center;
}

.a360-glyph-building span {
  position: relative;
  width: 18px;
  height: 38px;
  border: 3px solid var(--model-color);
}

.a360-glyph-building span:nth-child(2) {
  height: 52px;
}

.a360-glyph-building span::before {
  position: absolute;
  inset: 5px 4px;
  background: repeating-linear-gradient(to bottom, var(--model-color) 0 4px, transparent 4px 9px);
  content: "";
}

.a360-glyph-cloud span,
.a360-hosted-cloud {
  position: relative;
  width: 58px;
  height: 28px;
  border: 4px solid currentColor;
  border-radius: 24px;
}

.a360-glyph-cloud span::before,
.a360-hosted-cloud::before {
  position: absolute;
  left: 10px;
  top: -22px;
  width: 30px;
  height: 30px;
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  background: inherit;
  content: "";
}

.a360-glyph-datacenter {
  display: flex;
  gap: 4px;
}

.a360-glyph-datacenter span {
  position: relative;
  width: 14px;
  height: 54px;
  border: 2px solid #ffffff;
  border-radius: 3px;
}

.a360-glyph-datacenter span::before {
  position: absolute;
  inset: 5px 3px;
  background: repeating-linear-gradient(to bottom, #ffffff 0 3px, transparent 3px 9px);
  content: "";
}

.a360-model-illustration {
  position: relative;
  min-height: 190px;
  color: var(--model-color);
}

.a360-server-stack,
.a360-server-tower {
  position: absolute;
  bottom: 36px;
  display: grid;
  gap: 7px;
}

.a360-server-stack {
  left: 19%;
  width: 42%;
}

.a360-server-tower {
  left: 64%;
  width: 18%;
}

.a360-server-stack i,
.a360-server-tower i {
  position: relative;
  display: block;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.a360-server-stack i::after,
.a360-server-tower i::after {
  position: absolute;
  right: 6px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -10px 0 0 color-mix(in srgb, currentColor 54%, transparent);
  content: "";
  animation: a360ServerLight 1.8s ease-in-out infinite alternate;
}

.a360-security-shield {
  position: absolute;
  right: 2%;
  bottom: 42px;
  width: 34px;
  height: 42px;
  border: 3px solid currentColor;
  border-radius: 18px 18px 22px 22px;
  clip-path: polygon(50% 0, 100% 18%, 90% 75%, 50% 100%, 10% 75%, 0 18%);
}

.a360-saas-screen {
  position: absolute;
  left: 16%;
  top: 32px;
  width: 62%;
  height: 112px;
  border: 3px solid currentColor;
  border-radius: 7px;
}

.a360-saas-screen::after {
  position: absolute;
  left: 42%;
  bottom: -20px;
  width: 30%;
  height: 18px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
}

.a360-saas-screen i {
  position: absolute;
  bottom: 18px;
  width: 12px;
  border: 2px solid currentColor;
}

.a360-saas-screen i:nth-child(1) { left: 18px; height: 35px; }
.a360-saas-screen i:nth-child(2) { left: 38px; height: 58px; }
.a360-saas-screen i:nth-child(3) { left: 58px; height: 45px; }

.a360-saas-user {
  position: absolute;
  right: 6%;
  top: 58px;
  width: 58px;
  height: 58px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: #ffffff;
}

.a360-saas-user::before {
  position: absolute;
  left: 19px;
  top: 9px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.a360-saas-user::after {
  position: absolute;
  left: 12px;
  bottom: 8px;
  width: 28px;
  height: 15px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  content: "";
}

.a360-hosted-cloud {
  position: absolute;
  left: 50%;
  top: 32px;
  color: var(--model-color);
  background: #ffffff;
  transform: translateX(-50%);
  animation: a360CloudFloat 3.8s ease-in-out infinite;
}

.a360-hosted-building {
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  align-items: end;
  height: 78px;
  padding: 8px;
  border: 3px solid currentColor;
  background: linear-gradient(90deg, rgba(8, 105, 213, 0.04), rgba(8, 105, 213, 0.18));
}

.a360-hosted-building i {
  height: 100%;
  border: 2px solid currentColor;
  background: repeating-linear-gradient(to bottom, currentColor 0 4px, transparent 4px 10px);
  opacity: 0.75;
}

.a360-deployment-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border-radius: 8px;
  background: linear-gradient(110deg, #063f7c, #005692 72%, #0878bd);
  box-shadow: 0 28px 68px rgba(0, 86, 146, 0.2);
  overflow: hidden;
}

.a360-deployment-benefits > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.a360-deployment-benefits > div:last-child {
  border-right: 0;
}

.a360-deployment-benefits i {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-style: normal;
}

.a360-deployment-benefits i svg {
  width: 25px;
  height: 25px;
}

.a360-deployment-benefits p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.a360-deployment-benefits strong {
  color: #ffffff;
  font-size: 17px;
  line-height: 21px;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-deployment-benefits span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 18px;
}

@keyframes a360ServerLight {
  to { opacity: 0.28; }
}

@keyframes a360CloudFloat {
  50% { transform: translate(-50%, -6px); }
}

@media (max-width: 960px) {
  .a360-deployment-models {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .a360-deployment-model {
    min-height: 0;
  }

  .a360-deployment-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a360-deployment-benefits > div:nth-child(2) {
    border-right: 0;
  }

  .a360-deployment-benefits > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }
}

@media (max-width: 620px) {
  .a360-deployment-heading {
    margin-bottom: 32px;
  }

  .a360-deployment-model {
    gap: 18px;
    padding: 22px;
  }

  .a360-deployment-model-heading {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    min-height: 64px;
    padding-bottom: 18px;
  }

  .a360-deployment-icon {
    width: 54px;
    height: 54px;
  }

  .a360-deployment-model h4 {
    font-size: 18px;
  }

  .a360-deployment-model > p {
    text-align: left;
  }

  .a360-deployment-benefits {
    grid-template-columns: 1fr;
  }

  .a360-deployment-benefits > div,
  .a360-deployment-benefits > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .a360-deployment-benefits > div:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-server-stack i::after,
  .a360-server-tower i::after,
  .a360-hosted-cloud {
    animation: none;
  }

  .a360-deployment-model {
    transition: none;
  }
}

/* Coded regulatory and compliance readiness diagram. */
.a360-compliance-diagram {
  max-width: 1400px;
  margin: 0 auto;
  color: #061d31;
}

.a360-compliance-heading {
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 8px;
  text-align: center;
}

.a360-compliance-heading h2 {
  margin: 0 0 22px;
  color: #063f7c;
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-compliance-heading p {
  margin: 0;
  padding: 10px 20px;
  color: #ffffff;
  background: linear-gradient(90deg, #072b72, #005692, #072b72);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.35;
  font-weight: 800;
}

.a360-compliance-panel {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(7, 88, 186, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(0, 86, 146, 0.08);
}

.a360-compliance-panel > h3 {
  margin: 0 0 14px;
  color: #063f7c;
  text-align: center;
  font-size: 17px;
  line-height: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-standard-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.a360-standard-grid article {
  position: relative;
  display: grid;
  grid-template-rows: 86px auto 1fr;
  gap: 6px;
  justify-items: center;
  min-width: 0;
  padding: 10px 12px 16px;
  border-right: 1px dashed rgba(0, 86, 146, 0.24);
  text-align: center;
}

.a360-standard-grid article:last-child {
  border-right: 0;
}

.a360-standard-grid h4,
.a360-provider-grid h4 {
  margin: 0;
  color: #063f7c;
  font-size: 13px;
  line-height: 17px;
  font-weight: 900;
}

.a360-standard-grid p,
.a360-provider-grid p {
  margin: 0;
  color: rgba(6, 29, 49, 0.72);
  font-size: 12px;
  line-height: 16px;
}

.a360-cert-seal {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  width: 72px;
  height: 72px;
  border: 3px double #0758ba;
  border-radius: 50%;
  color: #0758ba;
  background: #ffffff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 900;
}

.a360-cert-seal::after {
  position: absolute;
  inset: -7px;
  border: 1px dashed rgba(7, 88, 186, 0.48);
  border-radius: inherit;
  content: "";
  animation: a360CertificationOrbit 16s linear infinite;
}

.a360-cert-seal small {
  display: block;
  font-size: 11px;
  line-height: 13px;
}

.a360-standard-logo {
  display: grid;
  place-items: center;
  width: 100%;
  height: 78px;
}

.a360-standard-logo img {
  display: block;
  width: min(92%, 126px);
  max-height: 58px;
  object-fit: contain;
}

.a360-wordmark {
  display: grid;
  place-items: center;
  min-height: 78px;
  color: #111111;
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-discover-mark::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: -3px;
  border-radius: 50%;
  background: #f57c00;
  content: "";
}

.a360-provider-grid {
  display: grid;
  grid-template-columns: minmax(340px, 2fr) repeat(3, minmax(150px, 1fr));
}

.a360-provider-grid > article {
  display: grid;
  gap: 5px;
  place-items: center;
  align-content: center;
  min-height: 174px;
  padding: 18px;
  border-right: 1px dashed rgba(0, 86, 146, 0.24);
  text-align: center;
}

.a360-provider-grid > article:last-child {
  border-right: 0;
}

.a360-provider-grid .a360-provider-unionpay {
  grid-template-columns: minmax(120px, 0.8fr) minmax(190px, 1fr);
  gap: 22px;
  place-items: center start;
  text-align: left;
}

.a360-provider-unionpay > img {
  width: min(100%, 210px);
  max-height: 76px;
  object-fit: contain;
}

.a360-provider-unionpay h4 {
  margin-bottom: 7px;
}

.a360-provider-unionpay ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.a360-provider-unionpay li {
  position: relative;
  padding-left: 14px;
  color: rgba(6, 29, 49, 0.75);
  font-size: 12px;
  line-height: 16px;
}

.a360-provider-unionpay li::before {
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: #0758ba;
  content: "";
}

.a360-compliance-badge {
  display: grid;
  place-items: center;
  align-content: center;
  width: 88px;
  height: 76px;
  border: 2px solid currentColor;
  border-radius: 8px;
  color: #007f76;
  background: rgba(0, 127, 118, 0.06);
  font-size: 23px;
  line-height: 24px;
  font-weight: 900;
  animation: a360ComplianceBreathe 4.2s ease-in-out infinite;
}

.a360-compliance-badge small {
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.a360-dora-badge {
  border-radius: 50%;
  color: #d99a00;
  background: rgba(255, 192, 77, 0.08);
  font-size: 17px;
}

.a360-gdpr-badge {
  border-radius: 50%;
  color: #063f7c;
  background: rgba(7, 88, 186, 0.07);
  font-size: 17px;
}

.a360-compliance-controls {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.a360-compliance-controls article {
  display: grid;
  grid-template-rows: 54px auto 1fr;
  gap: 8px;
  justify-items: center;
  min-width: 0;
  min-height: 190px;
  padding: 22px 18px;
  border: 1px solid rgba(0, 127, 118, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(0, 127, 118, 0.045), rgba(255, 255, 255, 0.97));
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.a360-compliance-controls article:hover {
  box-shadow: 0 22px 54px rgba(0, 86, 146, 0.11);
  transform: translateY(-4px);
}

.a360-compliance-controls i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid #007f76;
  border-radius: 14px;
  color: #007f76;
  font-size: 13px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.a360-compliance-controls i svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-compliance-controls h3 {
  margin: 0;
  color: #00646a;
  font-size: 14px;
  line-height: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-compliance-controls p {
  margin: 0;
  color: rgba(6, 29, 49, 0.72);
  font-size: 12px;
  line-height: 17px;
}

.a360-compliance-assurance {
  margin: 16px 0 0;
  padding: 17px clamp(22px, 5vw, 82px);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(90deg, #072b72, #005692, #072b72);
  box-shadow: 0 24px 60px rgba(0, 86, 146, 0.18);
  text-align: center;
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
}

@keyframes a360CertificationOrbit {
  to { transform: rotate(360deg); }
}

@keyframes a360ComplianceBreathe {
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, currentColor 8%, transparent); }
}

@media (max-width: 1120px) {
  .a360-standard-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .a360-standard-grid article:nth-child(4) {
    border-right: 0;
  }

  .a360-standard-grid article:nth-child(n + 5) {
    border-top: 1px dashed rgba(0, 86, 146, 0.24);
  }

  .a360-provider-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .a360-provider-grid .a360-provider-unionpay {
    grid-column: 1 / -1;
    grid-template-columns: minmax(160px, 0.55fr) minmax(260px, 1fr);
    border-right: 0;
    border-bottom: 1px dashed rgba(0, 86, 146, 0.24);
  }

  .a360-compliance-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .a360-standard-grid,
  .a360-provider-grid,
  .a360-compliance-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a360-standard-grid article,
  .a360-standard-grid article:nth-child(4),
  .a360-standard-grid article:nth-child(n + 5),
  .a360-provider-grid > article {
    border: 0;
    border-bottom: 1px dashed rgba(0, 86, 146, 0.2);
  }

  .a360-provider-grid .a360-provider-unionpay {
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
  }

  .a360-provider-unionpay li {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .a360-standard-grid,
  .a360-provider-grid,
  .a360-compliance-controls {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-cert-seal::after,
  .a360-compliance-badge {
    animation: none;
  }

  .a360-compliance-controls article {
    transition: none;
  }
}

/* Coded A360 service provider capabilities diagram. */
.a360-provider-diagram {
  max-width: 1400px;
  margin: 0 auto;
  color: #061d31;
}

.a360-provider-heading {
  margin-bottom: 30px;
  text-align: center;
}

.a360-provider-heading h2 {
  margin: 0;
  color: #063f7c;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-provider-heading > p {
  margin: 9px 0 22px;
  color: #063f7c;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.35;
  font-weight: 500;
}

.a360-provider-heading > h3 {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #063f7c;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-provider-heading > h3::before,
.a360-provider-heading > h3::after {
  width: min(18vw, 260px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #0758ba);
  content: "";
}

.a360-provider-heading > h3::after {
  background: linear-gradient(90deg, #0758ba, transparent);
}

.a360-provider-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.a360-provider-capability {
  --provider-color: #0758ba;
  --provider-soft: rgba(7, 88, 186, 0.06);
  position: relative;
  display: grid;
  grid-template-rows: 104px minmax(94px, auto) auto 1fr;
  min-width: 0;
  margin-top: 42px;
  padding: 18px 20px 24px;
  border: 1px solid var(--provider-color);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--provider-soft), rgba(255, 255, 255, 0.98) 55%);
  box-shadow: 0 26px 68px color-mix(in srgb, var(--provider-color) 10%, transparent);
  overflow: visible;
  transition: transform 230ms ease, box-shadow 230ms ease;
}

.a360-provider-capability:not(.a360-provider-upi) {
  grid-template-rows: 104px minmax(94px, auto) 158px auto 1fr;
}

.a360-provider-capability:hover {
  box-shadow: 0 34px 82px color-mix(in srgb, var(--provider-color) 18%, transparent);
  transform: translateY(-5px);
}

.a360-provider-upi { --provider-color: #0758ba; }
.a360-provider-gateway { --provider-color: #07843d; --provider-soft: rgba(7, 132, 61, 0.055); }
.a360-provider-token { --provider-color: #4f3198; --provider-soft: rgba(79, 49, 152, 0.055); }
.a360-provider-3ds { --provider-color: #0758ba; }

.a360-provider-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  margin: -42px auto 10px;
  border: 1px solid var(--provider-color);
  border-radius: 50%;
  color: var(--provider-color);
  background: #ffffff;
  box-shadow: 0 16px 38px color-mix(in srgb, var(--provider-color) 14%, transparent);
}

.a360-provider-svg-icon svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.a360-provider-svg-icon .a360-provider-icon-primary {
  width: 58px;
  height: 58px;
}

.a360-provider-svg-icon .a360-provider-icon-secondary {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 27px;
  height: 27px;
  padding: 4px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 2px #ffffff;
  stroke-width: 1.9;
}

.a360-upi-logo {
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.a360-upi-logo img {
  display: block;
  width: min(100%, 220px);
  max-height: 70px;
  object-fit: contain;
}

.a360-provider-capability > h3 {
  align-self: start;
  margin: 0;
  color: var(--provider-color);
  text-align: center;
  font-size: 17px;
  line-height: 21px;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-provider-capability > p {
  align-self: end;
  margin: 16px 0 0;
  color: rgba(6, 29, 49, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.a360-provider-divider {
  width: 100%;
  height: 1px;
  margin: 8px 0 0;
  background: color-mix(in srgb, var(--provider-color) 45%, transparent);
}

.a360-upi-services {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.a360-upi-services li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 7px 10px;
  border: 1px solid rgba(7, 88, 186, 0.22);
  border-radius: 7px;
  color: rgba(6, 29, 49, 0.82);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 17px;
}

.a360-upi-services i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 34px;
  position: relative;
  border-radius: 50%;
  color: #ffffff;
  background: #0758ba;
  font-style: normal;
}

.a360-upi-services i svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.a360-upi-services i b {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 1px 2px;
  color: #ffffff;
  background: #0758ba;
  font-size: 7px;
  line-height: 1;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.a360-provider-illustration {
  position: relative;
  align-self: center;
  width: min(100%, 230px);
  height: 146px;
  margin: 4px auto 10px;
  color: var(--provider-color);
}

.a360-provider-illustration::before,
.a360-provider-illustration::after {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 72%;
  height: 1px;
  background: color-mix(in srgb, var(--provider-color) 28%, transparent);
  content: "";
  transform: translate(-50%, -50%);
}

.a360-provider-token-art::after {
  width: 1px;
  height: 78%;
}

.a360-provider-art-node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid color-mix(in srgb, var(--provider-color) 42%, white);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--provider-color) 12%, transparent);
}

.a360-provider-art-node svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-provider-art-node.is-main {
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  color: #ffffff;
  background: var(--provider-color);
  transform: translate(-50%, -50%);
}

.a360-provider-art-node.is-main svg {
  width: 39px;
  height: 39px;
}

.a360-provider-art-node.is-left { left: 4px; top: 50%; transform: translateY(-50%); }
.a360-provider-art-node.is-right { right: 4px; top: 50%; transform: translateY(-50%); }
.a360-provider-art-node.is-top { left: 50%; top: 0; transform: translateX(-50%); }
.a360-provider-art-node.is-bottom { left: 50%; bottom: 0; transform: translateX(-50%); }

.a360-provider-token-art .a360-provider-art-node.is-main {
  width: 66px;
  height: 66px;
}

.a360-provider-token-art .a360-provider-art-node:not(.is-main) {
  width: 40px;
  height: 40px;
}

.a360-provider-token-art .a360-provider-art-node:not(.is-main) svg {
  width: 21px;
  height: 21px;
}

.a360-provider-3ds-art::before,
.a360-provider-3ds-art::after {
  display: none;
}

.a360-provider-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 130px;
  transform: translate(-50%, -50%);
}

.a360-provider-phone > svg {
  width: 82px;
  height: 130px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.a360-provider-phone-shield {
  position: absolute;
  left: 50%;
  top: 43%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--provider-color);
  box-shadow: 0 9px 22px color-mix(in srgb, var(--provider-color) 22%, transparent);
  transform: translate(-50%, -50%);
}

.a360-provider-phone-shield svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-provider-auth-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 5px;
  transform: translateX(-50%);
}

.a360-provider-auth-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.a360-gateway-screen {
  position: absolute;
  left: 16px;
  top: 30px;
  width: 72px;
  height: 50px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.a360-gateway-screen::before {
  position: absolute;
  left: 16px;
  top: 9px;
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, currentColor 47% 53%, transparent 54%),
    linear-gradient(transparent 46%, currentColor 47% 53%, transparent 54%);
  content: "";
  opacity: 0.65;
}

.a360-gateway-card {
  position: absolute;
  right: 10px;
  bottom: 19px;
  width: 48px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 5px;
  background: #ffffff;
}

.a360-gateway-card::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 4px;
  background: currentColor;
  content: "";
}

.a360-token-shield {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 58px;
  border: 4px solid currentColor;
  border-radius: 22px 22px 28px 28px;
  background: #ffffff;
  clip-path: polygon(50% 0, 100% 18%, 90% 75%, 50% 100%, 10% 75%, 0 18%);
}

.a360-token-shield::after {
  position: absolute;
  left: 15px;
  top: 20px;
  width: 12px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 8px 8px 3px 3px;
  content: "";
}

.a360-token-glyph > i {
  position: absolute;
  width: 18px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 3px;
  animation: a360TokenNode 3.8s ease-in-out infinite;
}

.a360-token-glyph > i:nth-of-type(1) { left: 7px; top: 25px; }
.a360-token-glyph > i:nth-of-type(2) { right: 7px; top: 25px; animation-delay: -1s; }
.a360-token-glyph > i:nth-of-type(3) { left: 12px; bottom: 18px; animation-delay: -2s; }
.a360-token-glyph > i:nth-of-type(4) { right: 12px; bottom: 18px; animation-delay: -3s; }

.a360-3ds-phone {
  position: relative;
  width: 50px;
  height: 82px;
  border: 4px solid currentColor;
  border-radius: 9px;
}

.a360-3ds-phone::before {
  position: absolute;
  left: 15px;
  top: 22px;
  width: 16px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 8px 8px 3px 3px;
  content: "";
}

.a360-3ds-phone i {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  height: 6px;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, currentColor 0 4px, transparent 4px 8px);
  animation: a360AuthSignal 2.2s ease-in-out infinite;
}

.a360-provider-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
  border: 1px solid rgba(7, 88, 186, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 62px rgba(0, 86, 146, 0.08);
  overflow: hidden;
}

.a360-provider-benefits article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 108px;
  padding: 17px 20px;
  border-right: 1px solid rgba(7, 88, 186, 0.2);
}

.a360-provider-benefits article:last-child {
  border-right: 0;
}

.a360-provider-benefits i,
.a360-provider-benefit-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid #0758ba;
  border-radius: 50%;
  color: #0758ba;
  font-size: 18px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.a360-provider-benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-provider-benefits p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.a360-provider-benefits strong {
  color: #063f7c;
  font-size: 15px;
  line-height: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.a360-provider-benefits p > span {
  color: rgba(6, 29, 49, 0.72);
  font-size: 12px;
  line-height: 16px;
}

.a360-provider-assurance {
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0;
  padding: 14px 22px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(90deg, #072b72, #005692, #072b72);
  text-align: center;
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
}

.a360-provider-assurance svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@keyframes a360TokenNode {
  50% { opacity: 0.35; transform: scale(0.88); }
}

@keyframes a360AuthSignal {
  50% { opacity: 0.28; }
}

@media (max-width: 1100px) {
  .a360-provider-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 62px 18px;
  }

  .a360-provider-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a360-provider-benefits article:nth-child(2) {
    border-right: 0;
  }

  .a360-provider-benefits article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 88, 186, 0.2);
  }
}

@media (max-width: 620px) {
  .a360-provider-capabilities,
  .a360-provider-benefits {
    grid-template-columns: 1fr;
  }

  .a360-provider-capabilities {
    gap: 62px;
  }

  .a360-provider-benefits article,
  .a360-provider-benefits article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 88, 186, 0.2);
  }

  .a360-provider-benefits article:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-token-glyph > i,
  .a360-3ds-phone i {
    animation: none;
  }

  .a360-provider-capability {
    transition: none;
  }
}

/* Coded Why Partner with Us diagram. */
.a360-why-partner-diagram {
  max-width: 1180px;
  margin: 0 auto;
  color: #061d31;
}

.a360-why-partner-heading {
  margin-bottom: 28px;
  text-align: center;
}

.a360-why-partner-heading h2 {
  position: relative;
  margin: 0;
  padding-bottom: 18px;
  color: #063f7c;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.a360-why-partner-heading h2::after {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: min(54%, 500px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #0e9be8 36%, #0e9be8 64%, transparent);
  content: "";
  transform: translateX(-50%);
}

.a360-why-partner-heading h2::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #0e9be8;
  content: "";
  transform: translateX(-50%);
}

.a360-why-partner-heading p {
  margin: 6px 0 0;
  color: #063f7c;
  font-size: clamp(17px, 1.8vw, 25px);
  line-height: 1.4;
}

.a360-partner-reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.a360-partner-reasons article {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-width: 0;
  min-height: 170px;
  padding: 26px;
  border: 1px solid #0e75e8;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(14, 117, 232, 0.035), rgba(255, 255, 255, 0.98));
  box-shadow: 0 22px 56px rgba(0, 86, 146, 0.075);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.a360-partner-reasons article:hover {
  border-color: #005692;
  box-shadow: 0 30px 72px rgba(0, 86, 146, 0.13);
  transform: translateY(-4px);
}

.a360-partner-reasons article > div:last-child {
  min-width: 0;
  padding-left: 20px;
  border-left: 1px solid rgba(14, 117, 232, 0.35);
}

.a360-partner-reasons h3 {
  margin: 0;
  color: #0736a4;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.2;
  font-weight: 900;
}

.a360-partner-reasons p {
  margin: 10px 0 0;
  color: rgba(6, 29, 49, 0.8);
  font-size: 16px;
  line-height: 1.45;
}

.a360-reason-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(14, 117, 232, 0.3);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(145deg, #072b72, #0e75e8);
  box-shadow: 0 14px 30px rgba(7, 54, 164, 0.18);
}

.a360-reason-icon svg,
.a360-partner-positioning i svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-modular-icon i {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  background: linear-gradient(145deg, #072b72, #0e75e8);
  box-shadow: 0 8px 18px rgba(7, 54, 164, 0.2);
}

.a360-modular-icon i:nth-child(1) { left: 20px; top: 20px; }
.a360-modular-icon i:nth-child(2) { right: 20px; top: 20px; }
.a360-modular-icon i:nth-child(3) { left: 20px; bottom: 20px; }
.a360-modular-icon i:nth-child(4) { right: 20px; bottom: 20px; }

.a360-modular-icon i:nth-child(2),
.a360-modular-icon i:nth-child(3) {
  animation: a360ModuleConnect 3.6s ease-in-out infinite;
}

.a360-tco-icon i {
  position: absolute;
  bottom: 27px;
  width: 16px;
  border-radius: 4px 4px 0 0;
  background: #0736a4;
}

.a360-tco-icon i:nth-child(1) { left: 25px; height: 42px; }
.a360-tco-icon i:nth-child(2) { left: 47px; height: 62px; }
.a360-tco-icon i:nth-child(3) { left: 69px; height: 78px; }

.a360-tco-icon::after {
  position: absolute;
  right: 13px;
  top: 20px;
  width: 46px;
  height: 12px;
  border-right: 8px solid #0e75e8;
  border-bottom: 8px solid #0e75e8;
  content: "";
  transform: rotate(45deg);
}

.a360-tco-icon b {
  position: absolute;
  right: 11px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  background: #0736a4;
  font-size: 18px;
}

.a360-delivery-icon i {
  position: absolute;
  inset: 22px;
  border: 4px solid #0736a4;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, #0736a4 47% 53%, transparent 54%),
    linear-gradient(transparent 46%, #0736a4 47% 53%, transparent 54%);
}

.a360-delivery-icon i::before,
.a360-delivery-icon i::after {
  position: absolute;
  inset: 13px -4px;
  border-top: 3px solid #0736a4;
  border-bottom: 3px solid #0736a4;
  border-radius: 50%;
  content: "";
}

.a360-delivery-icon b {
  position: absolute;
  right: 15px;
  bottom: 16px;
  width: 28px;
  height: 36px;
  border-radius: 18px 18px 18px 0;
  background: #0e75e8;
  transform: rotate(-45deg);
}

.a360-delivery-icon b::after {
  position: absolute;
  left: 9px;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.a360-partnership-icon i {
  position: absolute;
  top: 36px;
  width: 54px;
  height: 36px;
  border: 8px solid #0736a4;
  border-radius: 24px;
  transform: rotate(-24deg);
}

.a360-partnership-icon i:first-child { left: 16px; }
.a360-partnership-icon i:last-child { right: 16px; border-color: #0e75e8; transform: rotate(24deg); }

.a360-coprocessing-icon i {
  position: absolute;
  left: 25px;
  width: 68px;
  height: 50px;
  border: 8px solid #0736a4;
  border-left-color: transparent;
  border-radius: 50%;
}

.a360-coprocessing-icon i:first-child { top: 15px; transform: rotate(-18deg); }
.a360-coprocessing-icon i:last-child { bottom: 15px; transform: rotate(162deg); }

.a360-coprocessing-icon {
  animation: a360CoProcessingTurn 12s linear infinite;
}

.a360-whitelabel-icon i {
  position: absolute;
  left: 30px;
  top: 31px;
  width: 62px;
  height: 48px;
  border-radius: 8px 18px 18px 8px;
  background: linear-gradient(145deg, #072b72, #0e75e8);
  transform: rotate(-42deg);
}

.a360-whitelabel-icon i::after {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 10px;
  height: 10px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  content: "";
}

.a360-partner-positioning {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  margin: 16px 0 0;
  padding: 16px 30px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(90deg, #072b72, #005692, #072b72);
  box-shadow: 0 24px 60px rgba(0, 86, 146, 0.18);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.3;
}

.a360-partner-positioning i {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  font-size: 31px;
  line-height: 1;
  font-style: normal;
}

@keyframes a360ModuleConnect {
  50% { transform: scale(0.88); opacity: 0.64; }
}

@keyframes a360CoProcessingTurn {
  to { transform: rotate(360deg); }
}

@media (max-width: 860px) {
  .a360-partner-reasons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .a360-partner-reasons article {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .a360-partner-reasons article > div:last-child {
    padding: 18px 0 0;
    border-top: 1px solid rgba(14, 117, 232, 0.3);
    border-left: 0;
  }

  .a360-partner-positioning {
    align-items: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-modular-icon i,
  .a360-coprocessing-icon {
    animation: none;
  }

  .a360-partner-reasons article {
    transition: none;
  }
}

/* Coded A360 Product & Services diagram. */
.a360-product-services-diagram {
  max-width: 1180px;
  margin: 0 auto;
  color: #061d31;
}

.a360-product-services-heading {
  text-align: center;
}

.a360-product-services-heading h2 {
  margin: 0;
  color: #063f7c;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  font-weight: 900;
}

.a360-product-services-heading p {
  margin: 8px 0 0;
  color: rgba(6, 29, 49, 0.72);
  font-size: clamp(19px, 2.1vw, 29px);
  line-height: 1.2;
}

.a360-product-services-intro {
  margin: 24px 0 18px;
  padding: 16px 24px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(100deg, #072b72, #005692 52%, #0736a4);
  box-shadow: 0 18px 42px rgba(0, 86, 146, 0.18);
  text-align: center;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.35;
  font-weight: 800;
}

.a360-product-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(7, 88, 186, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(0, 86, 146, 0.07);
  overflow: hidden;
}

.a360-product-pillars article {
  position: relative;
  min-width: 0;
  min-height: 360px;
  padding: 24px 22px 28px;
  border-right: 1px solid rgba(7, 88, 186, 0.18);
  text-align: center;
  transition: background-color 220ms ease, transform 220ms ease;
}

.a360-product-pillars article:last-child {
  border-right: 0;
}

.a360-product-pillars article:hover {
  z-index: 1;
  background: rgba(14, 155, 232, 0.055);
  transform: translateY(-4px);
}

.a360-product-pillars h3 {
  min-height: 62px;
  margin: 18px 0 12px;
  color: #0736a4;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.28;
  font-weight: 900;
}

.a360-product-pillars article:nth-child(2) h3 {
  color: #00755f;
}

.a360-product-pillars article:nth-child(3) h3 {
  color: #6045d8;
}

.a360-product-pillars p {
  margin: 0;
  color: rgba(6, 29, 49, 0.82);
  font-size: 15px;
  line-height: 1.48;
}

.a360-product-icon {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border: 2px solid #0e9be8;
  border-radius: 50%;
  color: #0736a4;
  background: radial-gradient(circle, #ffffff 25%, rgba(14, 155, 232, 0.14));
}

.a360-product-services-diagram svg {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a360-product-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.a360-product-pillars article:hover .a360-product-icon svg {
  transform: translate(-50%, -50%) scale(1.08);
}

.a360-product-pillars article:nth-child(2) .a360-product-icon {
  border-color: #24ae88;
  color: #00755f;
  background: radial-gradient(circle, #ffffff 25%, rgba(36, 174, 136, 0.14));
}

.a360-product-pillars article:nth-child(3) .a360-product-icon {
  border-color: #8067ef;
  color: #6045d8;
  background: radial-gradient(circle, #ffffff 25%, rgba(128, 103, 239, 0.14));
}

.a360-converged-icon i {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
}

.a360-converged-icon i::after {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 29px;
  height: 3px;
  background: currentColor;
  content: "";
  transform-origin: left center;
}

.a360-converged-icon i:nth-child(1) { left: 38px; top: 38px; width: 17px; height: 17px; }
.a360-converged-icon i:nth-child(1)::after { display: none; }
.a360-converged-icon i:nth-child(2) { left: 18px; top: 18px; }
.a360-converged-icon i:nth-child(2)::after { transform: rotate(45deg); }
.a360-converged-icon i:nth-child(3) { right: 18px; top: 18px; }
.a360-converged-icon i:nth-child(3)::after { transform: rotate(135deg); }
.a360-converged-icon i:nth-child(4) { left: 18px; bottom: 18px; }
.a360-converged-icon i:nth-child(4)::after { transform: rotate(-45deg); }
.a360-converged-icon i:nth-child(5) { right: 18px; bottom: 18px; }
.a360-converged-icon i:nth-child(5)::after { transform: rotate(-135deg); }

.a360-issuing-icon i {
  position: absolute;
  left: 18px;
  top: 23px;
  width: 42px;
  height: 27px;
  border: 4px solid currentColor;
  border-radius: 4px;
}

.a360-issuing-icon i::before,
.a360-issuing-icon i::after {
  position: absolute;
  left: 6px;
  content: "";
}

.a360-issuing-icon i::before { top: 6px; width: 28px; border-top: 4px solid currentColor; }
.a360-issuing-icon i::after { bottom: 5px; width: 10px; border-top: 3px solid currentColor; }

.a360-issuing-icon b {
  position: absolute;
  right: 14px;
  bottom: 18px;
  width: 37px;
  height: 30px;
  border-bottom: 5px solid currentColor;
  background: repeating-linear-gradient(90deg, currentColor 0 4px, transparent 4px 10px);
  clip-path: polygon(50% 0, 100% 38%, 90% 38%, 90% 100%, 10% 100%, 10% 38%, 0 38%);
}

.a360-profitability-icon i {
  position: absolute;
  bottom: 20px;
  width: 12px;
  border-radius: 3px 3px 0 0;
  background: currentColor;
}

.a360-profitability-icon i:nth-child(1) { left: 23px; height: 20px; }
.a360-profitability-icon i:nth-child(2) { left: 40px; height: 32px; }
.a360-profitability-icon i:nth-child(3) { left: 57px; height: 46px; }

.a360-profitability-icon b {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 49px;
  height: 26px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: skewY(-35deg);
}

.a360-growth-icon i {
  position: absolute;
  left: 30px;
  top: 18px;
  width: 37px;
  height: 55px;
  border-radius: 50% 50% 42% 42%;
  background: currentColor;
  transform: rotate(42deg);
}

.a360-growth-icon i::before {
  position: absolute;
  left: 12px;
  top: 10px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
}

.a360-growth-icon b {
  position: absolute;
  left: 25px;
  bottom: 15px;
  width: 34px;
  height: 15px;
  border-left: 7px solid currentColor;
  border-right: 7px solid currentColor;
  transform: rotate(-8deg);
}

.a360-capabilities-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0 14px;
  color: #0736a4;
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
}

.a360-capabilities-heading::before,
.a360-capabilities-heading::after {
  flex: 1;
  height: 1px;
  background: rgba(7, 88, 186, 0.28);
  content: "";
}

.a360-product-capabilities {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(7, 88, 186, 0.2);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.a360-product-capabilities > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 11px;
  align-items: center;
  min-width: 0;
  min-height: 104px;
  padding: 15px 13px;
  border-right: 1px solid rgba(7, 88, 186, 0.18);
}

.a360-product-capabilities > div:last-child {
  border-right: 0;
}

.a360-product-capabilities i {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid #0e9be8;
  border-radius: 50%;
  color: #0736a4;
  background: rgba(14, 155, 232, 0.08);
  font-style: normal;
}

.a360-product-capabilities svg {
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 2px solid #0e9be8;
  border-radius: 50%;
  color: #0736a4;
  background: rgba(14, 155, 232, 0.08);
}

.a360-product-capabilities i::before,
.a360-product-capabilities i::after {
  position: absolute;
  content: "";
}

.a360-product-capabilities i::before {
  inset: 11px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.a360-product-capabilities i::after {
  left: 17px;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -9px 0 0 -3px currentColor, 9px 0 0 -3px currentColor;
}

.a360-product-capabilities > div:nth-child(2) i::before {
  border-radius: 50%;
}

.a360-product-capabilities > div:nth-child(3) i::before {
  clip-path: polygon(50% 0, 92% 18%, 86% 70%, 50% 100%, 14% 70%, 8% 18%);
}

.a360-product-capabilities > div:nth-child(4) i::before {
  border-radius: 12px 12px 4px 4px;
}

.a360-product-capabilities > div:nth-child(5) i::before {
  border-width: 0 0 3px 3px;
  border-radius: 0;
}

.a360-product-capabilities > div:nth-child(6) i::before {
  border-radius: 50% 5px 50% 5px;
}

.a360-product-capabilities span {
  min-width: 0;
  color: #063f7c;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.a360-product-outcome {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 18px 0 0;
  padding: 15px 24px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(90deg, #072b72, #005692, #072b72);
  box-shadow: 0 18px 44px rgba(0, 86, 146, 0.16);
  font-size: 16px;
  line-height: 1.4;
}

.a360-product-outcome i {
  font-size: 29px;
  line-height: 1;
  font-style: normal;
}

.a360-product-outcome svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.a360-product-outcome strong {
  white-space: nowrap;
}

.a360-product-note {
  margin: 10px 0 0;
  color: rgba(6, 29, 49, 0.62);
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  font-style: italic;
}

@media (max-width: 1040px) {
  .a360-product-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a360-product-pillars article:nth-child(2) {
    border-right: 0;
  }

  .a360-product-pillars article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 88, 186, 0.18);
  }

  .a360-product-capabilities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .a360-product-capabilities > div:nth-child(3) {
    border-right: 0;
  }

  .a360-product-capabilities > div:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(7, 88, 186, 0.18);
  }
}

@media (max-width: 620px) {
  .a360-product-services-intro br {
    display: none;
  }

  .a360-product-pillars,
  .a360-product-capabilities {
    grid-template-columns: 1fr;
  }

  .a360-product-pillars article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 88, 186, 0.18);
  }

  .a360-product-pillars article:last-child {
    border-bottom: 0;
  }

  .a360-product-pillars h3 {
    min-height: 0;
  }

  .a360-product-capabilities > div,
  .a360-product-capabilities > div:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 88, 186, 0.18);
  }

  .a360-product-capabilities > div:last-child {
    border-bottom: 0;
  }

  .a360-product-outcome {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .a360-product-outcome span {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-product-pillars article {
    transition: none;
  }

  .a360-product-icon svg {
    transition: none;
  }
}

/* Coded Who We Are diagram. */
.a360-who-diagram {
  max-width: 1120px;
  margin: 0 auto;
  color: #061d31;
}

.a360-who-heading {
  margin-bottom: 20px;
  text-align: center;
}

.a360-who-heading h2 {
  position: relative;
  margin: 0;
  padding-bottom: 18px;
  color: #063f7c;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.a360-who-heading h2::before,
.a360-who-heading h2::after {
  position: absolute;
  bottom: 5px;
  width: calc(50% - 22px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #0e75e8);
  content: "";
}

.a360-who-heading h2::before {
  left: 0;
}

.a360-who-heading h2::after {
  right: 0;
  transform: scaleX(-1);
}

.a360-who-heading p {
  position: relative;
  margin: 5px 0 0;
  color: #063f7c;
  font-size: clamp(17px, 2vw, 25px);
  line-height: 1.35;
}

.a360-who-heading p::before {
  position: absolute;
  left: 50%;
  top: -18px;
  width: 12px;
  height: 12px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #0e75e8;
  content: "";
  transform: translateX(-50%);
}

.a360-who-pillars {
  display: grid;
  gap: 10px;
}

.a360-who-pillars article {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 182px;
  padding: 22px 44px;
  border: 1px solid #0e75e8;
  border-radius: 8px;
  background: linear-gradient(115deg, rgba(14, 117, 232, 0.035), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 48px rgba(0, 86, 146, 0.065);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.a360-who-pillars article:hover {
  border-color: #005692;
  box-shadow: 0 26px 62px rgba(0, 86, 146, 0.12);
  transform: translateY(-3px);
}

.a360-who-pillars article > div:last-child {
  min-width: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(14, 117, 232, 0.28);
}

.a360-who-pillars h3 {
  margin: 0;
  color: #0736a4;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.22;
  font-weight: 900;
}

.a360-who-pillars p {
  margin: 9px 0 0;
  color: rgba(6, 29, 49, 0.82);
  font-size: 16px;
  line-height: 1.45;
}

.a360-who-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  color: #0736a4;
  background: radial-gradient(circle at 50% 42%, #ffffff, rgba(14, 117, 232, 0.16));
}

.a360-who-building i {
  position: absolute;
  bottom: 20px;
  width: 20px;
  border-radius: 3px 3px 0 0;
  background: currentColor;
}

.a360-who-building i::after {
  position: absolute;
  inset: 8px 6px;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.95) 0 3px, transparent 3px 8px);
  content: "";
}

.a360-who-building i:nth-child(1) { left: 18px; height: 43px; }
.a360-who-building i:nth-child(2) { left: 40px; height: 62px; }
.a360-who-building i:nth-child(3) { left: 62px; height: 48px; }

.a360-who-building::after {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 17px;
  height: 4px;
  border-radius: 3px;
  background: currentColor;
  content: "";
}

.a360-who-card i {
  position: absolute;
  left: 17px;
  top: 27px;
  width: 66px;
  height: 45px;
  border-radius: 7px;
  background: linear-gradient(145deg, #072b72, #0e75e8);
  box-shadow: 0 10px 20px rgba(7, 54, 164, 0.18);
}

.a360-who-card i::before {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 9px;
  height: 8px;
  border-radius: 3px;
  background: #ffffff;
  content: "";
}

.a360-who-card i::after {
  position: absolute;
  left: 9px;
  bottom: 9px;
  width: 9px;
  height: 6px;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 14px 0 0 rgba(255,255,255,0.75), 37px 0 0 1px rgba(255,255,255,0.88);
  content: "";
}

.a360-who-team i {
  position: absolute;
  bottom: 23px;
  width: 31px;
  height: 25px;
  border-radius: 17px 17px 6px 6px;
  background: currentColor;
}

.a360-who-team i::before {
  position: absolute;
  left: 7px;
  top: -22px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.a360-who-team i:nth-child(1) { left: 12px; transform: scale(0.8); }
.a360-who-team i:nth-child(2) { left: 35px; z-index: 1; transform: scale(1.15); }
.a360-who-team i:nth-child(3) { right: 12px; transform: scale(0.8); }

.a360-who-outcome {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 118px;
  margin-top: 10px;
  padding: 18px 44px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(100deg, #072b72, #005692 58%, #0736a4);
  box-shadow: 0 22px 54px rgba(0, 86, 146, 0.2);
}

.a360-who-outcome > i {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border: 5px solid #ffffff;
  border-radius: 50%;
  font-style: normal;
}

.a360-who-outcome > i::before {
  position: absolute;
  inset: 10px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  content: "";
}

.a360-who-outcome > i::after {
  position: absolute;
  left: 27px;
  top: -10px;
  width: 42px;
  height: 9px;
  border-radius: 5px;
  background: #ffffff;
  content: "";
  transform: rotate(-42deg);
  transform-origin: left center;
}

.a360-who-outcome h3 {
  margin: 0;
  font-size: clamp(21px, 2.2vw, 29px);
  line-height: 1.2;
  font-weight: 900;
}

.a360-who-outcome p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .a360-who-pillars article,
  .a360-who-outcome {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
    text-align: center;
  }

  .a360-who-pillars article > div:last-child {
    padding: 18px 0 0;
    border-top: 1px solid rgba(14, 117, 232, 0.28);
    border-left: 0;
  }

  .a360-who-pillars p br,
  .a360-who-outcome p br {
    display: none;
  }

  .a360-who-outcome > i {
    margin-bottom: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-who-pillars article {
    transition: none;
  }
}

/* Editorial body copy: use balanced full justification where space permits. */
main p:not(
  .section-label,
  .a360-suite-kicker,
  .a360-product-services-intro,
  .a360-product-note,
  .a360-provider-assurance,
  .a360-partner-positioning,
  .a360-product-outcome,
  .a360-architecture-footer,
  .a360-deployment-footer,
  .a360-compliance-result
) {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

@media (max-width: 520px) {
  main p:not(
    .section-label,
    .a360-suite-kicker,
    .a360-product-services-intro,
    .a360-product-note,
    .a360-provider-assurance,
    .a360-partner-positioning,
    .a360-product-outcome,
    .a360-architecture-footer,
    .a360-deployment-footer,
    .a360-compliance-result
  ) {
    text-align: left;
    text-justify: auto;
    hyphens: none;
  }
}

main :is(
  .a360-architecture-heading,
  .a360-deployment-heading,
  .a360-compliance-heading,
  .a360-why-partner-heading,
  .a360-product-services-heading,
  .a360-who-heading
) > p {
  text-align: center;
  text-justify: auto;
  hyphens: none;
}

main .a360-who-outcome p {
  text-align: left;
  text-justify: auto;
  hyphens: none;
}

/* Payment ecosystem: turn the first four client-authored paragraphs into a visual domain overview. */
.a360-suite-copy-grid.is-ecosystem-visualized {
  display: block;
}

.a360-ecosystem-overview-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 86, 146, 0.12), transparent 32%),
    linear-gradient(rgba(0, 86, 146, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.94);
  background-size: auto, 40px 40px, 40px 40px, auto;
  box-shadow: 0 24px 58px rgba(0, 86, 146, 0.08);
}

.a360-ecosystem-overview-map::before,
.a360-ecosystem-overview-map::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 460px;
  height: 190px;
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.a360-ecosystem-overview-map::after {
  width: 300px;
  height: 300px;
  border-color: rgba(255, 192, 77, 0.22);
}

.a360-ecosystem-overview-hub {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 146px;
  height: 146px;
  border: 1px solid rgba(0, 86, 146, 0.28);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(145deg, #07356f, #005692 64%, #0e9be8);
  box-shadow: 0 22px 54px rgba(0, 86, 146, 0.24), 0 0 0 14px rgba(0, 86, 146, 0.05);
  text-align: center;
}

.a360-ecosystem-overview-hub strong,
.a360-ecosystem-overview-hub span {
  grid-area: 1 / 1;
}

.a360-ecosystem-overview-hub strong {
  margin-top: -18px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.a360-ecosystem-overview-hub span {
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.a360-ecosystem-overview-nodes {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.a360-ecosystem-map-node {
  --node-color: #005692;
  position: absolute;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid color-mix(in srgb, var(--node-color) 38%, white);
  border-radius: 50%;
  color: var(--node-color);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--node-color) 14%, transparent);
  animation: ecosystemNodeFloat 4.8s ease-in-out infinite;
}

.a360-ecosystem-map-node svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a360-ecosystem-map-node:nth-child(1) { left: 12%; top: 21%; }
.a360-ecosystem-map-node:nth-child(2) { right: 12%; top: 21%; animation-delay: -1.2s; }
.a360-ecosystem-map-node:nth-child(3) { right: 20%; bottom: 13%; animation-delay: -2.4s; }
.a360-ecosystem-map-node:nth-child(4) { left: 20%; bottom: 13%; animation-delay: -3.6s; }

.a360-ecosystem-domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.a360-ecosystem-domain {
  --domain-color: #005692;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--domain-color) 24%, white);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 4%, color-mix(in srgb, var(--domain-color) 10%, transparent), transparent 34%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 52px rgba(0, 86, 146, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.a360-ecosystem-domain:hover {
  border-color: color-mix(in srgb, var(--domain-color) 46%, white);
  box-shadow: 0 28px 62px color-mix(in srgb, var(--domain-color) 13%, transparent);
  transform: translateY(-4px);
}

.a360-ecosystem-domain.is-acquiring,
.a360-ecosystem-map-node.is-acquiring { --domain-color: #0d9270; --node-color: #0d9270; }
.a360-ecosystem-domain.is-secure,
.a360-ecosystem-map-node.is-secure { --domain-color: #6b46c1; --node-color: #6b46c1; }
.a360-ecosystem-domain.is-control,
.a360-ecosystem-map-node.is-control { --domain-color: #d79000; --node-color: #d79000; }

.a360-ecosystem-domain header {
  display: grid;
  grid-template-columns: 54px auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 24px 28px 18px;
}

.a360-ecosystem-domain-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--domain-color);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--domain-color) 24%, transparent);
}

.a360-ecosystem-domain-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a360-ecosystem-domain header small {
  color: var(--domain-color);
  font-size: 13px;
  font-weight: 900;
}

.a360-ecosystem-domain h3 {
  margin: 0;
  color: #071747;
  font-size: clamp(20px, 1.6vw, 27px);
  line-height: 1.15;
  letter-spacing: 0;
}

.a360-suite-copy-grid .a360-ecosystem-domain > p {
  min-height: 0;
  margin: 0;
  padding: 0 28px 30px;
  border: 0;
  border-radius: 0;
  color: rgba(17, 13, 7, 0.74);
  background: transparent;
  box-shadow: none;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
}

.a360-suite-copy-grid .a360-ecosystem-domain > p::before {
  display: none;
}

.a360-suite-copy-grid.is-ecosystem-visualized > p,
.a360-suite-copy-grid.is-ecosystem-visualized > ul,
.a360-suite-copy-grid.is-ecosystem-visualized > h2 {
  margin-top: 20px;
}

@keyframes ecosystemNodeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}

@media (max-width: 860px) {
  .a360-ecosystem-domain-grid {
    grid-template-columns: 1fr;
  }

  .a360-ecosystem-overview-map::before {
    width: 76%;
  }
}

@media (max-width: 560px) {
  .a360-ecosystem-overview-map {
    min-height: 260px;
  }

  .a360-ecosystem-overview-hub {
    width: 116px;
    height: 116px;
  }

  .a360-ecosystem-overview-hub strong {
    font-size: 28px;
  }

  .a360-ecosystem-map-node {
    width: 54px;
    height: 54px;
  }

  .a360-ecosystem-map-node svg {
    width: 24px;
    height: 24px;
  }

  .a360-ecosystem-map-node:nth-child(1) { left: 5%; }
  .a360-ecosystem-map-node:nth-child(2) { right: 5%; }
  .a360-ecosystem-map-node:nth-child(3) { right: 8%; }
  .a360-ecosystem-map-node:nth-child(4) { left: 8%; }

  .a360-ecosystem-domain header {
    grid-template-columns: 48px auto 1fr;
    gap: 11px;
    padding: 22px 20px 16px;
  }

  .a360-ecosystem-domain-icon {
    width: 48px;
    height: 48px;
  }

  .a360-suite-copy-grid .a360-ecosystem-domain > p {
    padding: 0 20px 24px;
    font-size: 16px;
    text-align: left;
    hyphens: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-ecosystem-map-node {
    animation: none;
  }

  .a360-ecosystem-domain {
    transition: none;
  }
}

/* Card issuing: visual lifecycle and functional modules built around verbatim client copy. */
.a360-suite-copy-grid.is-issuing-visualized {
  display: block;
}

.a360-issuing-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 62px rgba(0, 86, 146, 0.09);
}

.a360-issuing-intro-visual {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(14, 155, 232, 0.22), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, #042b66, #005692 58%, #0e9be8);
  background-size: auto, 38px 38px, 38px 38px, auto;
}

.a360-issuing-intro-visual::before,
.a360-issuing-intro-visual::after {
  position: absolute;
  width: 260px;
  height: 168px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  content: "";
  transform: rotate(-10deg) translate(-18px, -12px);
}

.a360-issuing-intro-visual::after {
  transform: rotate(8deg) translate(18px, 14px);
}

.a360-issuing-card {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 260px;
  height: 168px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(4, 43, 102, 0.72));
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.a360-issuing-card svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a360-issuing-card-types {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  max-width: 320px;
  margin-top: 30px;
}

.a360-issuing-card-types span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(4, 43, 102, 0.36);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.a360-issuing-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 62px);
}

.a360-issuing-intro-copy h2 {
  margin: 0 0 20px;
  color: #071747;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.a360-suite-copy-grid .a360-issuing-intro-copy > p {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(17, 13, 7, 0.74);
  background: transparent;
  box-shadow: none;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}

.a360-suite-copy-grid .a360-issuing-intro-copy > p::before {
  display: none;
}

.a360-issuing-lifecycle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 26px 0;
  padding: 24px 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 86, 146, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 46px rgba(0, 86, 146, 0.07);
}

.a360-issuing-lifecycle::before {
  position: absolute;
  top: 50px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, #005692, #0e9be8, #6b46c1, #d79000);
  content: "";
}

.a360-issuing-lifecycle > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.a360-issuing-lifecycle > div > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  color: #005692;
  background: #e9f6ff;
  box-shadow: 0 0 0 1px rgba(0, 86, 146, 0.22), 0 10px 24px rgba(0, 86, 146, 0.12);
}

.a360-issuing-lifecycle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a360-issuing-lifecycle small {
  margin-top: 12px;
  color: rgba(0, 86, 146, 0.56);
  font-size: 10px;
  font-weight: 900;
}

.a360-issuing-lifecycle strong {
  margin-top: 3px;
  color: #071747;
  font-size: 13px;
  line-height: 1.2;
}

.a360-issuing-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.a360-issuing-module {
  --issuing-module-color: #005692;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--issuing-module-color) 24%, white);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 4%, color-mix(in srgb, var(--issuing-module-color) 10%, transparent), transparent 34%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 52px rgba(0, 86, 146, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.a360-issuing-module:hover {
  border-color: color-mix(in srgb, var(--issuing-module-color) 46%, white);
  box-shadow: 0 28px 62px color-mix(in srgb, var(--issuing-module-color) 13%, transparent);
  transform: translateY(-4px);
}

.a360-issuing-module.is-product { --issuing-module-color: #147d9c; }
.a360-issuing-module.is-lifecycle { --issuing-module-color: #0d9270; }
.a360-issuing-module.is-security { --issuing-module-color: #6b46c1; }
.a360-issuing-module.is-analytics { --issuing-module-color: #d79000; }
.a360-issuing-module.is-integration { --issuing-module-color: #1268a6; }

.a360-issuing-module header {
  display: grid;
  grid-template-columns: 54px auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 24px 28px 18px;
}

.a360-issuing-module-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--issuing-module-color);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--issuing-module-color) 24%, transparent);
}

.a360-issuing-module-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a360-issuing-module header small {
  color: var(--issuing-module-color);
  font-size: 13px;
  font-weight: 900;
}

.a360-issuing-module h3 {
  margin: 0;
  color: #071747;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.16;
  letter-spacing: 0;
}

.a360-suite-copy-grid .a360-issuing-module > p {
  min-height: 0;
  margin: 0;
  padding: 0 28px 30px;
  border: 0;
  border-radius: 0;
  color: rgba(17, 13, 7, 0.74);
  background: transparent;
  box-shadow: none;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
}

.a360-suite-copy-grid .a360-issuing-module > p::before {
  display: none;
}

@media (max-width: 980px) {
  .a360-issuing-intro {
    grid-template-columns: 1fr;
  }

  .a360-issuing-intro-visual {
    min-height: 340px;
  }

  .a360-issuing-lifecycle {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 26px;
  }

  .a360-issuing-lifecycle::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .a360-issuing-module-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .a360-issuing-intro-visual {
    min-height: 300px;
  }

  .a360-issuing-card,
  .a360-issuing-intro-visual::before,
  .a360-issuing-intro-visual::after {
    width: 220px;
    height: 142px;
  }

  .a360-issuing-intro-copy {
    padding: 28px 22px;
  }

  .a360-suite-copy-grid .a360-issuing-intro-copy > p,
  .a360-suite-copy-grid .a360-issuing-module > p {
    font-size: 16px;
    text-align: left;
    hyphens: none;
  }

  .a360-issuing-lifecycle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a360-issuing-module header {
    grid-template-columns: 48px auto 1fr;
    gap: 11px;
    padding: 22px 20px 16px;
  }

  .a360-issuing-module-icon {
    width: 48px;
    height: 48px;
  }

  .a360-suite-copy-grid .a360-issuing-module > p {
    padding: 0 20px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-issuing-module {
    transition: none;
  }
}

/* Card acquiring: visual merchant lifecycle and functional modules using verbatim client copy. */
.a360-suite-copy-grid.is-acquiring-visualized {
  display: block;
}

.a360-acquiring-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid rgba(13, 146, 112, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 62px rgba(0, 86, 146, 0.09);
}

.a360-acquiring-intro-visual {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 410px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(61, 222, 183, 0.2), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(145deg, #043d54, #006d72 55%, #0d9270);
  background-size: auto, 38px 38px, 38px 38px, auto;
}

.a360-acquiring-intro-visual::before,
.a360-acquiring-intro-visual::after {
  position: absolute;
  width: 310px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.a360-acquiring-intro-visual::after {
  width: 220px;
  height: 290px;
  transform: rotate(20deg);
}

.a360-acquiring-terminal {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 164px;
  height: 218px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.2), rgba(1, 45, 63, 0.76));
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  transform: rotate(-5deg);
}

.a360-acquiring-terminal::before {
  position: absolute;
  right: 24px;
  bottom: 25px;
  left: 24px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 2px, transparent 3px) 0 0 / 24px 18px;
  content: "";
}

.a360-acquiring-terminal-screen {
  position: absolute;
  top: 24px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(1, 45, 63, 0.48);
}

.a360-acquiring-terminal-screen svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a360-acquiring-channels {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  max-width: 330px;
  margin-top: 28px;
}

.a360-acquiring-channels span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(1, 45, 63, 0.38);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.a360-acquiring-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 62px);
}

.a360-acquiring-intro-copy h2 {
  margin: 0 0 20px;
  color: #071747;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.a360-suite-copy-grid .a360-acquiring-intro-copy > p {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(17, 13, 7, 0.74);
  background: transparent;
  box-shadow: none;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}

.a360-suite-copy-grid .a360-acquiring-intro-copy > p::before {
  display: none;
}

.a360-acquiring-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 26px 0;
  padding: 24px 18px;
  overflow: hidden;
  border: 1px solid rgba(13, 146, 112, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 46px rgba(0, 86, 146, 0.07);
}

.a360-acquiring-flow::before {
  position: absolute;
  top: 50px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, #0d9270, #0e9be8, #6b46c1, #d79000);
  content: "";
}

.a360-acquiring-flow > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.a360-acquiring-flow > div > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  color: #0d9270;
  background: #e9fbf6;
  box-shadow: 0 0 0 1px rgba(13, 146, 112, 0.24), 0 10px 24px rgba(13, 146, 112, 0.12);
}

.a360-acquiring-flow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a360-acquiring-flow small {
  margin-top: 12px;
  color: rgba(13, 110, 91, 0.62);
  font-size: 10px;
  font-weight: 900;
}

.a360-acquiring-flow strong {
  margin-top: 3px;
  color: #071747;
  font-size: 13px;
  line-height: 1.2;
}

.a360-acquiring-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.a360-acquiring-module {
  --acquiring-module-color: #0d9270;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--acquiring-module-color) 24%, white);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 4%, color-mix(in srgb, var(--acquiring-module-color) 10%, transparent), transparent 34%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 52px rgba(0, 86, 146, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.a360-acquiring-module:hover {
  border-color: color-mix(in srgb, var(--acquiring-module-color) 46%, white);
  box-shadow: 0 28px 62px color-mix(in srgb, var(--acquiring-module-color) 13%, transparent);
  transform: translateY(-4px);
}

.a360-acquiring-module.is-switching { --acquiring-module-color: #147d9c; }
.a360-acquiring-module.is-pricing { --acquiring-module-color: #1268a6; }
.a360-acquiring-module.is-risk { --acquiring-module-color: #6b46c1; }
.a360-acquiring-module.is-analytics { --acquiring-module-color: #d79000; }
.a360-acquiring-module.is-compliance { --acquiring-module-color: #005692; }

.a360-acquiring-module header {
  display: grid;
  grid-template-columns: 54px auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 24px 28px 18px;
}

.a360-acquiring-module-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--acquiring-module-color);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--acquiring-module-color) 24%, transparent);
}

.a360-acquiring-module-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.a360-acquiring-module header small {
  color: var(--acquiring-module-color);
  font-size: 13px;
  font-weight: 900;
}

.a360-acquiring-module h3 {
  margin: 0;
  color: #071747;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.16;
  letter-spacing: 0;
}

.a360-suite-copy-grid .a360-acquiring-module > p {
  min-height: 0;
  margin: 0;
  padding: 0 28px 30px;
  border: 0;
  border-radius: 0;
  color: rgba(17, 13, 7, 0.74);
  background: transparent;
  box-shadow: none;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
}

.a360-suite-copy-grid .a360-acquiring-module > p::before {
  display: none;
}

@media (max-width: 980px) {
  .a360-acquiring-intro {
    grid-template-columns: 1fr;
  }

  .a360-acquiring-intro-visual {
    min-height: 360px;
  }

  .a360-acquiring-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 26px;
  }

  .a360-acquiring-flow::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .a360-acquiring-module-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .a360-acquiring-intro-visual {
    min-height: 330px;
  }

  .a360-acquiring-terminal {
    width: 142px;
    height: 188px;
  }

  .a360-acquiring-terminal-screen {
    width: 100px;
    height: 88px;
  }

  .a360-acquiring-intro-copy {
    padding: 28px 22px;
  }

  .a360-suite-copy-grid .a360-acquiring-intro-copy > p,
  .a360-suite-copy-grid .a360-acquiring-module > p {
    font-size: 16px;
    text-align: left;
    hyphens: none;
  }

  .a360-acquiring-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a360-acquiring-module header {
    grid-template-columns: 48px auto 1fr;
    gap: 11px;
    padding: 22px 20px 16px;
  }

  .a360-acquiring-module-icon {
    width: 48px;
    height: 48px;
  }

  .a360-suite-copy-grid .a360-acquiring-module > p {
    padding: 0 20px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-acquiring-module {
    transition: none;
  }
}

/* EMV 3-D Secure Authentication overview */
.a360-suite-copy-grid.is-secure-visualized {
  display: block;
}

.a360-secure-intro {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(30px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 50%, rgba(39, 199, 185, 0.16), transparent 34%),
    linear-gradient(135deg, #f4fbff 0%, #ffffff 58%, #f4f2ff 100%);
  box-shadow: 0 28px 70px rgba(0, 54, 91, 0.1);
}

.a360-secure-intro-visual {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
  isolation: isolate;
}

.a360-secure-intro-visual::before,
.a360-secure-intro-visual::after {
  position: absolute;
  z-index: -1;
  width: 248px;
  height: 248px;
  content: "";
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 50%;
}

.a360-secure-intro-visual::after {
  width: 310px;
  height: 310px;
  border-color: rgba(107, 70, 193, 0.13);
}

.a360-secure-shield {
  position: relative;
  display: grid;
  width: 176px;
  height: 205px;
  place-items: center;
  clip-path: polygon(50% 0, 92% 17%, 86% 69%, 50% 100%, 14% 69%, 8% 17%);
  background: linear-gradient(145deg, #005692 0%, #087bb0 55%, #6b46c1 100%);
  filter: drop-shadow(0 24px 26px rgba(0, 86, 146, 0.24));
}

.a360-secure-shield::before {
  position: absolute;
  inset: 4px;
  content: "";
  clip-path: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.04));
}

.a360-secure-shield-core {
  position: relative;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(4, 35, 72, 0.35);
  color: #ffffff;
}

.a360-secure-shield-core svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.a360-secure-intro-copy h2,
.a360-secure-ecosystem-copy h2 {
  margin: 0 0 18px;
  color: #06134f;
  font-size: clamp(31px, 3vw, 50px);
  line-height: 1.08;
}

.a360-suite-copy-grid .a360-secure-intro-copy > p,
.a360-suite-copy-grid .a360-secure-ecosystem-copy > p,
.a360-suite-copy-grid .a360-secure-component > p,
.a360-suite-copy-grid .a360-secure-closing-grid p {
  grid-column: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #3e4960;
  font-weight: 400;
  line-height: 1.72;
  text-align: justify;
}

.a360-suite-copy-grid .a360-secure-intro-copy > p::before,
.a360-suite-copy-grid .a360-secure-ecosystem-copy > p::before,
.a360-suite-copy-grid .a360-secure-component > p::before,
.a360-suite-copy-grid .a360-secure-closing-grid p::before {
  content: none;
}

.a360-secure-participant-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 34px;
  padding: 22px;
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
}

.a360-secure-participant-rail::before {
  position: absolute;
  top: 58px;
  right: 10%;
  left: 10%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #27c7b9, #005692 48%, #6b46c1);
}

.a360-secure-participant-rail > div {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  justify-items: center;
  text-align: center;
}

.a360-secure-participant-rail > div > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(0, 86, 146, 0.2);
  border-radius: 50%;
  background: #f4faff;
  color: #005692;
  box-shadow: 0 0 0 7px #ffffff;
}

.a360-secure-participant-rail svg,
.a360-secure-component-icon svg,
.a360-secure-closing-icon svg,
.a360-secure-benefit-list svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-secure-participant-rail small {
  margin-top: 11px;
  color: #7290a8;
  font-size: 11px;
  font-weight: 800;
}

.a360-secure-participant-rail strong {
  margin-top: 3px;
  color: #06134f;
  font-size: 15px;
  line-height: 1.25;
}

.a360-secure-ecosystem-copy {
  margin-bottom: 34px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-left: 5px solid #27c7b9;
  border-radius: 8px;
  background: linear-gradient(100deg, #ffffff, #f5fbff);
}

.a360-secure-component-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.a360-secure-component {
  --secure-component-color: #005692;
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3.6vw, 48px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--secure-component-color) 24%, #dce8f2);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 45%, color-mix(in srgb, var(--secure-component-color) 7%, #ffffff));
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.a360-secure-component::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 4px;
  content: "";
  background: var(--secure-component-color);
}

.a360-secure-component:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 54, 91, 0.13);
}

.a360-secure-component.is-server { --secure-component-color: #147d9c; }
.a360-secure-component.is-directory { --secure-component-color: #6b46c1; }
.a360-secure-component.is-acs { --secure-component-color: #d79000; }

.a360-secure-component header {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.a360-secure-component-icon,
.a360-secure-closing-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--secure-component-color, #005692) 30%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--secure-component-color, #005692) 10%, #ffffff);
  color: var(--secure-component-color, #005692);
}

.a360-secure-component header small {
  color: var(--secure-component-color);
  font-size: 12px;
  font-weight: 800;
}

.a360-secure-component h3,
.a360-secure-closing-grid h3 {
  margin: 0;
  color: #06134f;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
}

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

.a360-secure-integration,
.a360-secure-benefits {
  min-width: 0;
  padding: clamp(28px, 3.6vw, 48px);
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
}

.a360-secure-integration header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.a360-secure-benefits {
  background: linear-gradient(145deg, #06134f 0%, #005692 100%);
}

.a360-secure-benefits h3,
.a360-suite-copy-grid .a360-secure-benefits > p {
  color: #ffffff;
}

.a360-secure-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 26px;
}

.a360-secure-benefit-list span {
  display: flex;
  gap: 9px;
  align-items: center;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.a360-secure-benefit-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #58dfd1;
}

@media (max-width: 980px) {
  .a360-secure-intro {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  }

  .a360-secure-intro-visual {
    min-height: 270px;
  }

  .a360-secure-participant-rail {
    grid-template-columns: repeat(5, minmax(115px, 1fr));
    overflow-x: auto;
  }

  .a360-secure-participant-rail::before {
    right: 80px;
    left: 80px;
    min-width: 510px;
  }

  .a360-secure-closing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .a360-secure-intro,
  .a360-secure-component-grid {
    grid-template-columns: 1fr;
  }

  .a360-secure-intro {
    gap: 14px;
  }

  .a360-secure-intro-visual {
    min-height: 235px;
  }

  .a360-secure-intro-visual::before {
    width: 188px;
    height: 188px;
  }

  .a360-secure-intro-visual::after {
    width: 230px;
    height: 230px;
  }

  .a360-secure-shield {
    width: 130px;
    height: 152px;
  }

  .a360-secure-shield-core {
    width: 66px;
    height: 66px;
  }

  .a360-secure-intro-copy h2,
  .a360-secure-ecosystem-copy h2 {
    font-size: 30px;
  }

  .a360-suite-copy-grid .a360-secure-intro-copy > p,
  .a360-suite-copy-grid .a360-secure-ecosystem-copy > p,
  .a360-suite-copy-grid .a360-secure-component > p,
  .a360-suite-copy-grid .a360-secure-closing-grid p {
    text-align: left;
  }

  .a360-secure-component header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .a360-secure-component header small {
    display: none;
  }

  .a360-secure-benefit-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-secure-component {
    transition: none;
  }
}

/* Fraud and Operational Control overview */
.a360-suite-copy-grid.is-fraud-visualized {
  display: block;
}

.a360-fraud-intro {
  display: grid;
  grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(32px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 50%, rgba(107, 70, 193, 0.15), transparent 34%),
    linear-gradient(135deg, #f7f5ff 0%, #ffffff 54%, #effbfa 100%);
  box-shadow: 0 28px 70px rgba(0, 54, 91, 0.1);
}

.a360-fraud-intro-visual {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
}

.a360-fraud-radar {
  position: relative;
  display: grid;
  width: 280px;
  height: 280px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 86, 146, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(rgba(0, 86, 146, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.1) 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 86, 146, 0.08) 0 33%, transparent 34% 55%, rgba(107, 70, 193, 0.09) 56% 57%, transparent 58%);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: inset 0 0 42px rgba(0, 86, 146, 0.08), 0 20px 42px rgba(0, 54, 91, 0.12);
}

.a360-fraud-radar::before {
  position: absolute;
  inset: 50% 0 auto 50%;
  width: 50%;
  height: 50%;
  content: "";
  transform-origin: 0 0;
  background: conic-gradient(from 270deg, rgba(39, 199, 185, 0.35), transparent 38%);
  animation: a360-fraud-radar-sweep 5.5s linear infinite;
}

.a360-fraud-radar::after {
  position: absolute;
  top: 26%;
  left: 69%;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: #d79000;
  box-shadow: 0 0 0 7px rgba(215, 144, 0, 0.15), -92px 118px 0 #6b46c1, -92px 118px 0 7px rgba(107, 70, 193, 0.12);
}

@keyframes a360-fraud-radar-sweep {
  to { transform: rotate(360deg); }
}

.a360-fraud-radar-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: linear-gradient(145deg, #06134f, #005692 64%, #6b46c1);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 54, 91, 0.28);
}

.a360-fraud-radar-core svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.a360-fraud-channels {
  position: absolute;
  right: 2%;
  bottom: 3%;
  left: 2%;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}

.a360-fraud-channels span {
  padding: 7px 10px;
  border: 1px solid rgba(0, 86, 146, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #154260;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(0, 54, 91, 0.08);
}

.a360-fraud-intro-copy h2 {
  margin: 0 0 18px;
  color: #06134f;
  font-size: clamp(31px, 3vw, 50px);
  line-height: 1.08;
}

.a360-suite-copy-grid .a360-fraud-intro-copy > p,
.a360-suite-copy-grid .a360-fraud-module > p,
.a360-suite-copy-grid .a360-fraud-closing-grid p {
  grid-column: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #3e4960;
  font-weight: 400;
  line-height: 1.72;
  text-align: justify;
}

.a360-suite-copy-grid .a360-fraud-intro-copy > p::before,
.a360-suite-copy-grid .a360-fraud-module > p::before,
.a360-suite-copy-grid .a360-fraud-closing-grid p::before {
  content: none;
}

.a360-fraud-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 34px;
  padding: 22px;
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
}

.a360-fraud-flow::before {
  position: absolute;
  top: 58px;
  right: 8%;
  left: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #27c7b9, #005692 45%, #6b46c1 74%, #d79000);
}

.a360-fraud-flow > div {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  justify-items: center;
  text-align: center;
}

.a360-fraud-flow > div > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(0, 86, 146, 0.2);
  border-radius: 50%;
  background: #f6faff;
  color: #005692;
  box-shadow: 0 0 0 7px #ffffff;
}

.a360-fraud-flow svg,
.a360-fraud-module-icon svg,
.a360-fraud-closing-icon svg,
.a360-fraud-outcome-list svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-fraud-flow small {
  margin-top: 11px;
  color: #7290a8;
  font-size: 11px;
  font-weight: 800;
}

.a360-fraud-flow strong {
  margin-top: 3px;
  color: #06134f;
  font-size: 14px;
  line-height: 1.25;
}

.a360-fraud-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.a360-fraud-module {
  --fraud-module-color: #005692;
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3.6vw, 48px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--fraud-module-color) 24%, #dce8f2);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 45%, color-mix(in srgb, var(--fraud-module-color) 7%, #ffffff));
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.a360-fraud-module::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 4px;
  content: "";
  background: var(--fraud-module-color);
}

.a360-fraud-module:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 54, 91, 0.13);
}

.a360-fraud-module.is-aml { --fraud-module-color: #147d9c; }
.a360-fraud-module.is-disputes { --fraud-module-color: #6b46c1; }
.a360-fraud-module.is-simulation { --fraud-module-color: #d79000; }

.a360-fraud-module header {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.a360-fraud-module-icon,
.a360-fraud-closing-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--fraud-module-color, #005692) 30%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--fraud-module-color, #005692) 10%, #ffffff);
  color: var(--fraud-module-color, #005692);
}

.a360-fraud-module header small {
  color: var(--fraud-module-color);
  font-size: 12px;
  font-weight: 800;
}

.a360-fraud-module h3,
.a360-fraud-closing-grid h3 {
  margin: 0;
  color: #06134f;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
}

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

.a360-fraud-integration,
.a360-fraud-outcomes {
  min-width: 0;
  padding: clamp(28px, 3.6vw, 48px);
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
}

.a360-fraud-closing-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.a360-fraud-outcomes {
  background: linear-gradient(145deg, #06134f 0%, #005692 62%, #147d9c 100%);
}

.a360-fraud-outcomes h3,
.a360-suite-copy-grid .a360-fraud-outcomes > p {
  color: #ffffff;
}

.a360-fraud-outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 26px;
}

.a360-fraud-outcome-list span {
  display: flex;
  gap: 9px;
  align-items: center;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.a360-fraud-outcome-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #58dfd1;
}

@media (max-width: 980px) {
  .a360-fraud-intro {
    grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  }

  .a360-fraud-flow {
    grid-template-columns: repeat(6, minmax(112px, 1fr));
    overflow-x: auto;
  }

  .a360-fraud-flow::before {
    right: 80px;
    left: 80px;
    min-width: 570px;
  }

  .a360-fraud-closing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .a360-fraud-intro,
  .a360-fraud-module-grid {
    grid-template-columns: 1fr;
  }

  .a360-fraud-intro {
    gap: 18px;
  }

  .a360-fraud-intro-visual {
    min-height: 300px;
  }

  .a360-fraud-radar {
    width: 230px;
    height: 230px;
  }

  .a360-fraud-radar-core {
    width: 78px;
    height: 78px;
  }

  .a360-fraud-intro-copy h2 {
    font-size: 30px;
  }

  .a360-suite-copy-grid .a360-fraud-intro-copy > p,
  .a360-suite-copy-grid .a360-fraud-module > p,
  .a360-suite-copy-grid .a360-fraud-closing-grid p {
    text-align: left;
  }

  .a360-fraud-module header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .a360-fraud-module header small {
    display: none;
  }

  .a360-fraud-outcome-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-fraud-radar::before {
    animation: none;
  }

  .a360-fraud-module {
    transition: none;
  }
}

/* National Switch and National Card Solutions overview */
.a360-suite-copy-grid.is-national-visualized {
  display: block;
}

.a360-national-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(34px, 5vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 50%, rgba(39, 199, 185, 0.16), transparent 31%),
    linear-gradient(135deg, #ffffff 0%, #f4fbff 55%, #f5f3ff 100%);
  box-shadow: 0 28px 70px rgba(0, 54, 91, 0.1);
}

.a360-national-intro-copy h2 {
  margin: 0 0 18px;
  color: #06134f;
  font-size: clamp(31px, 3vw, 50px);
  line-height: 1.08;
}

.a360-suite-copy-grid .a360-national-intro-copy > p,
.a360-suite-copy-grid .a360-national-domain > p,
.a360-suite-copy-grid .a360-national-use-cases > p {
  grid-column: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #3e4960;
  font-weight: 400;
  line-height: 1.72;
  text-align: justify;
}

.a360-suite-copy-grid .a360-national-intro-copy > p::before,
.a360-suite-copy-grid .a360-national-domain > p::before,
.a360-suite-copy-grid .a360-national-use-cases > p::before {
  content: none;
}

.a360-national-intro-visual {
  position: relative;
  display: grid;
  min-height: 350px;
  place-items: center;
}

.a360-national-map {
  position: relative;
  display: grid;
  width: 320px;
  height: 320px;
  place-items: center;
  border: 1px solid rgba(0, 86, 146, 0.17);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 30%, rgba(0, 86, 146, 0.1) 31% 31.5%, transparent 32% 52%, rgba(107, 70, 193, 0.11) 53% 53.5%, transparent 54%),
    linear-gradient(rgba(0, 86, 146, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 86, 146, 0.07) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  box-shadow: inset 0 0 52px rgba(0, 86, 146, 0.07), 0 22px 48px rgba(0, 54, 91, 0.12);
}

.a360-national-map::before,
.a360-national-map::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px dashed rgba(0, 86, 146, 0.2);
  border-radius: 50%;
  animation: a360-national-orbit 24s linear infinite;
}

.a360-national-map::after {
  inset: 52px;
  border-color: rgba(107, 70, 193, 0.19);
  animation-direction: reverse;
  animation-duration: 18s;
}

@keyframes a360-national-orbit {
  to { transform: rotate(360deg); }
}

.a360-national-hub {
  position: relative;
  z-index: 3;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: linear-gradient(145deg, #06134f, #005692 68%, #147d9c);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 54, 91, 0.28);
  text-align: center;
}

.a360-national-hub-icon {
  display: grid;
  place-items: center;
}

.a360-national-hub svg {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  fill: none;
  stroke: #58dfd1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-national-hub strong {
  max-width: 90px;
  font-size: 15px;
  line-height: 1.15;
}

.a360-national-map-nodes {
  position: absolute;
  inset: 0;
}

.a360-national-map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(0, 86, 146, 0.2);
  border-radius: 50%;
  background: #ffffff;
  color: #005692;
  box-shadow: 0 12px 25px rgba(0, 54, 91, 0.13);
}

.a360-national-map-node svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-national-map-node.is-node-1 { top: 3%; left: 42%; }
.a360-national-map-node.is-node-2 { top: 42%; right: 3%; }
.a360-national-map-node.is-node-3 { bottom: 3%; left: 42%; }
.a360-national-map-node.is-node-4 { top: 42%; left: 3%; }

.a360-national-participant-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 34px;
  padding: 22px;
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
}

.a360-national-participant-rail::before {
  position: absolute;
  top: 58px;
  right: 8%;
  left: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #27c7b9, #005692 48%, #6b46c1 76%, #d79000);
}

.a360-national-participant-rail > div {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  justify-items: center;
  text-align: center;
}

.a360-national-participant-rail > div > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(0, 86, 146, 0.2);
  border-radius: 50%;
  background: #f5faff;
  color: #005692;
  box-shadow: 0 0 0 7px #ffffff;
}

.a360-national-participant-rail svg,
.a360-national-domain-icon svg,
.a360-national-use-case-list svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-national-participant-rail small {
  margin-top: 11px;
  color: #7290a8;
  font-size: 11px;
  font-weight: 800;
}

.a360-national-participant-rail strong {
  margin-top: 3px;
  color: #06134f;
  font-size: 14px;
  line-height: 1.25;
}

.a360-national-domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.a360-national-domain {
  --national-domain-color: #005692;
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3.6vw, 48px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--national-domain-color) 24%, #dce8f2);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 45%, color-mix(in srgb, var(--national-domain-color) 7%, #ffffff));
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.a360-national-domain::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 4px;
  content: "";
  background: var(--national-domain-color);
}

.a360-national-domain:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 54, 91, 0.13);
}

.a360-national-domain.is-scheme { --national-domain-color: #147d9c; }
.a360-national-domain.is-token { --national-domain-color: #6b46c1; }
.a360-national-domain.is-standards { --national-domain-color: #d79000; }

.a360-national-domain header {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.a360-national-domain-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--national-domain-color) 30%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--national-domain-color) 10%, #ffffff);
  color: var(--national-domain-color);
}

.a360-national-domain header small {
  color: var(--national-domain-color);
  font-size: 12px;
  font-weight: 800;
}

.a360-national-domain h3,
.a360-national-use-cases h3 {
  margin: 0;
  color: #06134f;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
}

.a360-national-use-cases {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #06134f, #005692 58%, #147d9c);
  box-shadow: 0 22px 52px rgba(0, 54, 91, 0.16);
}

.a360-national-use-cases h3,
.a360-suite-copy-grid .a360-national-use-cases > p {
  color: #ffffff;
}

.a360-national-use-case-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
}

.a360-national-use-case-list span {
  display: grid;
  gap: 10px;
  min-width: 0;
  justify-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.a360-national-use-case-list svg {
  color: #58dfd1;
}

@media (max-width: 980px) {
  .a360-national-intro {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  }

  .a360-national-map {
    width: 270px;
    height: 270px;
  }

  .a360-national-participant-rail {
    grid-template-columns: repeat(6, minmax(115px, 1fr));
    overflow-x: auto;
  }

  .a360-national-participant-rail::before {
    right: 80px;
    left: 80px;
    min-width: 570px;
  }

  .a360-national-use-case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .a360-national-intro,
  .a360-national-domain-grid {
    grid-template-columns: 1fr;
  }

  .a360-national-intro-copy h2 {
    font-size: 30px;
  }

  .a360-national-intro-visual {
    min-height: 290px;
  }

  .a360-national-map {
    width: 250px;
    height: 250px;
  }

  .a360-national-hub {
    width: 110px;
    height: 110px;
  }

  .a360-national-map-node {
    width: 46px;
    height: 46px;
  }

  .a360-suite-copy-grid .a360-national-intro-copy > p,
  .a360-suite-copy-grid .a360-national-domain > p,
  .a360-suite-copy-grid .a360-national-use-cases > p {
    text-align: left;
  }

  .a360-national-domain header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .a360-national-domain header small {
    display: none;
  }

  .a360-national-use-case-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-national-map::before,
  .a360-national-map::after {
    animation: none;
  }

  .a360-national-domain {
    transition: none;
  }
}

/* Professional Services overview */
.a360-menu-copy-grid.is-services-visualized {
  display: block;
}

.a360-professional-intro {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(34px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 50%, rgba(39, 199, 185, 0.16), transparent 32%),
    linear-gradient(135deg, #f4fbff 0%, #ffffff 58%, #f7f4ff 100%);
  box-shadow: 0 28px 70px rgba(0, 54, 91, 0.1);
}

.a360-professional-intro-visual {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
}

.a360-professional-intro-visual::before,
.a360-professional-intro-visual::after {
  position: absolute;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 50%;
}

.a360-professional-intro-visual::after {
  width: 310px;
  height: 310px;
  border-style: dashed;
  border-color: rgba(107, 70, 193, 0.15);
  animation: a360-professional-ring 24s linear infinite;
}

@keyframes a360-professional-ring {
  to { transform: rotate(360deg); }
}

.a360-professional-intro-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: linear-gradient(145deg, #06134f, #005692 62%, #147d9c);
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(0, 54, 91, 0.26);
}

.a360-professional-intro-core svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.a360-professional-intro-copy h2,
.a360-professional-closing h3 {
  margin: 0 0 18px;
  color: #06134f;
  font-size: clamp(31px, 3vw, 50px);
  line-height: 1.08;
}

.a360-menu-copy-grid .a360-professional-intro-copy > p,
.a360-menu-copy-grid .a360-professional-closing-copy > p {
  grid-column: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #3e4960;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
  text-align: justify;
}

.a360-professional-phase-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
}

.a360-professional-phase-rail::before {
  position: absolute;
  top: 60px;
  right: 12%;
  left: 12%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #27c7b9, #005692 48%, #6b46c1 76%, #d79000);
}

.a360-professional-phase-rail > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.a360-professional-phase-rail > div > span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(0, 86, 146, 0.2);
  border-radius: 50%;
  background: #f5faff;
  color: #005692;
  box-shadow: 0 0 0 7px #ffffff;
}

.a360-professional-phase-rail svg,
.a360-professional-service-icon svg,
.a360-professional-outcome-list svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-professional-phase-rail small {
  margin-top: 11px;
  color: #7290a8;
  font-size: 11px;
  font-weight: 800;
}

.a360-professional-phase-rail strong {
  margin-top: 3px;
  color: #06134f;
  font-size: 15px;
}

.a360-professional-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.a360-professional-service {
  --professional-service-color: #005692;
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 190px;
  align-content: start;
  padding: 28px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--professional-service-color) 24%, #dce8f2);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 48%, color-mix(in srgb, var(--professional-service-color) 7%, #ffffff));
  box-shadow: 0 16px 40px rgba(0, 54, 91, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.a360-professional-service::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62px;
  height: 4px;
  content: "";
  background: var(--professional-service-color);
}

.a360-professional-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 54, 91, 0.13);
}

.a360-professional-service.is-design,
.a360-professional-service.is-managed { --professional-service-color: #147d9c; }
.a360-professional-service.is-implementation,
.a360-professional-service.is-support { --professional-service-color: #6b46c1; }
.a360-professional-service.is-integration,
.a360-professional-service.is-maintenance { --professional-service-color: #d79000; }

.a360-professional-service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid color-mix(in srgb, var(--professional-service-color) 30%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--professional-service-color) 10%, #ffffff);
  color: var(--professional-service-color);
}

.a360-professional-service small {
  position: absolute;
  top: 30px;
  right: 28px;
  color: var(--professional-service-color);
  font-size: 12px;
  font-weight: 800;
}

.a360-professional-service h3 {
  margin: 0;
  color: #06134f;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.2;
}

.a360-professional-closing {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #06134f, #005692 60%, #147d9c);
  box-shadow: 0 22px 52px rgba(0, 54, 91, 0.16);
}

.a360-professional-closing h3,
.a360-menu-copy-grid .a360-professional-closing-copy > p {
  color: #ffffff;
}

.a360-professional-outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.a360-professional-outcome-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.a360-professional-outcome-list svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: #58dfd1;
}

@media (max-width: 1080px) {
  .a360-professional-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .a360-professional-intro,
  .a360-professional-closing {
    grid-template-columns: 1fr;
  }

  .a360-professional-intro {
    gap: 16px;
  }

  .a360-professional-phase-rail {
    grid-template-columns: repeat(4, minmax(112px, 1fr));
    overflow-x: auto;
  }

  .a360-professional-phase-rail::before {
    right: 70px;
    left: 70px;
    min-width: 390px;
  }
}

@media (max-width: 560px) {
  .a360-professional-intro-visual {
    min-height: 250px;
  }

  .a360-professional-intro-visual::before {
    width: 190px;
    height: 190px;
  }

  .a360-professional-intro-visual::after {
    width: 235px;
    height: 235px;
  }

  .a360-professional-intro-core {
    width: 118px;
    height: 118px;
  }

  .a360-professional-intro-copy h2,
  .a360-professional-closing h3 {
    font-size: 30px;
  }

  .a360-menu-copy-grid .a360-professional-intro-copy > p,
  .a360-menu-copy-grid .a360-professional-closing-copy > p {
    text-align: left;
  }

  .a360-professional-service-grid,
  .a360-professional-outcome-list {
    grid-template-columns: 1fr;
  }

  .a360-professional-service {
    min-height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-professional-intro-visual::after {
    animation: none;
  }

  .a360-professional-service {
    transition: none;
  }
}

/* Managed Services overview */
.a360-menu-copy-grid.is-managed-visualized {
  display: block;
}

.a360-managed-intro {
  display: grid;
  grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(34px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 50%, rgba(39, 199, 185, 0.17), transparent 33%),
    linear-gradient(135deg, #f3fbff 0%, #ffffff 58%, #f6f3ff 100%);
  box-shadow: 0 28px 70px rgba(0, 54, 91, 0.1);
}

.a360-managed-intro-visual {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
}

.a360-managed-intro-visual::before,
.a360-managed-intro-visual::after {
  position: absolute;
  width: 252px;
  height: 252px;
  content: "";
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 50%;
}

.a360-managed-intro-visual::after {
  width: 312px;
  height: 312px;
  border-style: dashed;
  border-color: rgba(107, 70, 193, 0.15);
  animation: a360-managed-orbit 26s linear infinite;
}

@keyframes a360-managed-orbit {
  to { transform: rotate(360deg); }
}

.a360-managed-operations-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: linear-gradient(145deg, #06134f, #005692 62%, #147d9c);
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(0, 54, 91, 0.27);
}

.a360-managed-operations-core svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.a360-managed-operations-nodes {
  position: absolute;
  inset: 0;
}

.a360-managed-operations-nodes span {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(0, 86, 146, 0.2);
  border-radius: 50%;
  background: #ffffff;
  color: #005692;
  box-shadow: 0 11px 24px rgba(0, 54, 91, 0.13);
}

.a360-managed-operations-nodes .is-node-1 { top: 4%; left: calc(50% - 26px); }
.a360-managed-operations-nodes .is-node-2 { top: calc(50% - 26px); right: 3%; }
.a360-managed-operations-nodes .is-node-3 { bottom: 4%; left: calc(50% - 26px); }
.a360-managed-operations-nodes .is-node-4 { top: calc(50% - 26px); left: 3%; }

.a360-managed-operations-nodes svg,
.a360-managed-operating-rail svg,
.a360-managed-service-icon svg,
.a360-managed-closing-icon svg,
.a360-managed-outcome-list svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-managed-intro-copy h2 {
  margin: 0 0 18px;
  color: #06134f;
  font-size: clamp(31px, 3vw, 50px);
  line-height: 1.08;
}

.a360-menu-copy-grid .a360-managed-intro-copy > p,
.a360-menu-copy-grid .a360-managed-service > p,
.a360-menu-copy-grid .a360-managed-closing-grid p {
  grid-column: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #3e4960;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
  text-align: justify;
}

.a360-managed-operating-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid rgba(0, 86, 146, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
}

.a360-managed-operating-rail::before {
  position: absolute;
  top: 60px;
  right: 12%;
  left: 12%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #27c7b9, #005692 50%, #6b46c1 77%, #d79000);
}

.a360-managed-operating-rail > div {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  justify-items: center;
  text-align: center;
}

.a360-managed-operating-rail > div > span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(0, 86, 146, 0.2);
  border-radius: 50%;
  background: #f5faff;
  color: #005692;
  box-shadow: 0 0 0 7px #ffffff;
}

.a360-managed-operating-rail small {
  margin-top: 11px;
  color: #7290a8;
  font-size: 11px;
  font-weight: 800;
}

.a360-managed-operating-rail strong {
  margin-top: 3px;
  color: #06134f;
  font-size: 15px;
}

.a360-managed-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.a360-managed-service {
  --managed-service-color: #005692;
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3.6vw, 48px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--managed-service-color) 24%, #dce8f2);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 45%, color-mix(in srgb, var(--managed-service-color) 7%, #ffffff));
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.a360-managed-service::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 4px;
  content: "";
  background: var(--managed-service-color);
}

.a360-managed-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 54, 91, 0.13);
}

.a360-managed-service.is-gateway { --managed-service-color: #147d9c; }
.a360-managed-service.is-token { --managed-service-color: #6b46c1; }
.a360-managed-service.is-secure { --managed-service-color: #d79000; }

.a360-managed-service header {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.a360-managed-service-icon,
.a360-managed-closing-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--managed-service-color, #005692) 30%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--managed-service-color, #005692) 10%, #ffffff);
  color: var(--managed-service-color, #005692);
}

.a360-managed-service header small {
  color: var(--managed-service-color);
  font-size: 12px;
  font-weight: 800;
}

.a360-managed-service h3,
.a360-managed-closing-grid h3 {
  margin: 0;
  color: #06134f;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
}

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

.a360-managed-infrastructure,
.a360-managed-benefits {
  min-width: 0;
  padding: clamp(28px, 3.6vw, 48px);
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
}

.a360-managed-closing-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.a360-managed-benefits {
  background: linear-gradient(145deg, #06134f 0%, #005692 62%, #147d9c 100%);
}

.a360-managed-benefits h3,
.a360-menu-copy-grid .a360-managed-benefits > p {
  color: #ffffff;
}

.a360-managed-outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 26px;
}

.a360-managed-outcome-list span {
  display: flex;
  gap: 9px;
  align-items: center;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.a360-managed-outcome-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #58dfd1;
}

@media (max-width: 900px) {
  .a360-managed-intro {
    grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  }

  .a360-managed-closing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .a360-managed-intro,
  .a360-managed-service-grid {
    grid-template-columns: 1fr;
  }

  .a360-managed-intro {
    gap: 16px;
  }

  .a360-managed-intro-visual {
    min-height: 280px;
  }

  .a360-managed-intro-visual::before {
    width: 208px;
    height: 208px;
  }

  .a360-managed-intro-visual::after {
    width: 260px;
    height: 260px;
  }

  .a360-managed-intro-copy h2 {
    font-size: 30px;
  }

  .a360-managed-operating-rail {
    grid-template-columns: repeat(4, minmax(112px, 1fr));
    overflow-x: auto;
  }

  .a360-managed-operating-rail::before {
    right: 70px;
    left: 70px;
    min-width: 390px;
  }

  .a360-menu-copy-grid .a360-managed-intro-copy > p,
  .a360-menu-copy-grid .a360-managed-service > p,
  .a360-menu-copy-grid .a360-managed-closing-grid p {
    text-align: left;
  }

  .a360-managed-service header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .a360-managed-service header small {
    display: none;
  }

  .a360-managed-outcome-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-managed-intro-visual::after {
    animation: none;
  }

  .a360-managed-service {
    transition: none;
  }
}

/* Flexible Deployment Options overview */
.a360-suite-copy-grid.is-deployment-visualized {
  display: block;
}

.a360-flex-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
  margin-bottom: 32px;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 50%, rgba(39, 199, 185, 0.16), transparent 32%),
    linear-gradient(135deg, #f3fbff 0%, #ffffff 58%, #f7f4ff 100%);
  box-shadow: 0 28px 70px rgba(0, 54, 91, 0.1);
}

.a360-flex-intro-visual {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
}

.a360-flex-intro-visual::before,
.a360-flex-intro-visual::after {
  position: absolute;
  width: 244px;
  height: 244px;
  content: "";
  border: 1px solid rgba(0, 86, 146, 0.17);
  border-radius: 50%;
}

.a360-flex-intro-visual::after {
  width: 310px;
  height: 310px;
  border-style: dashed;
  border-color: rgba(107, 70, 193, 0.18);
  animation: a360-flex-orbit 28s linear infinite;
}

@keyframes a360-flex-orbit {
  to { transform: rotate(360deg); }
}

.a360-flex-intro-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: linear-gradient(145deg, #06134f, #005692 62%, #147d9c);
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(0, 54, 91, 0.28);
}

.a360-flex-intro-core svg {
  width: 58px;
  height: 58px;
}

.a360-flex-intro-nodes {
  position: absolute;
  inset: 0;
}

.a360-flex-intro-nodes span {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(0, 86, 146, 0.22);
  border-radius: 50%;
  background: #ffffff;
  color: #005692;
  box-shadow: 0 12px 26px rgba(0, 54, 91, 0.14);
}

.a360-flex-intro-nodes .is-node-1 { top: 5%; left: calc(50% - 29px); }
.a360-flex-intro-nodes .is-node-2 { right: 5%; bottom: 15%; color: #147d9c; }
.a360-flex-intro-nodes .is-node-3 { bottom: 15%; left: 5%; color: #6b46c1; }

.a360-flex-intro-nodes svg,
.a360-flex-model-icon svg,
.a360-flex-benefits-icon svg,
.a360-flex-benefit-list svg,
.a360-flex-closing-icon svg,
.a360-flex-intro-core svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-flex-intro-nodes svg {
  width: 27px;
  height: 27px;
}

.a360-suite-copy-grid .a360-flex-intro-copy > p,
.a360-suite-copy-grid .a360-flex-model > p,
.a360-suite-copy-grid .a360-flex-benefits > p,
.a360-suite-copy-grid .a360-flex-closing > p {
  grid-column: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #3e4960;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  text-align: justify;
}

.a360-flex-model-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.a360-flex-model {
  --flex-model-color: #005692;
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-width: 0;
  min-height: 230px;
  padding: clamp(26px, 3vw, 40px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--flex-model-color) 27%, #dce8f2);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 46%, color-mix(in srgb, var(--flex-model-color) 7%, #ffffff));
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.a360-flex-model.is-saas { --flex-model-color: #147d9c; }
.a360-flex-model.is-hosted { --flex-model-color: #6b46c1; }

.a360-flex-model::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 84px;
  height: 4px;
  content: "";
  background: var(--flex-model-color);
}

.a360-flex-model:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 54, 91, 0.14);
}

.a360-flex-model header {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding-right: clamp(20px, 3vw, 44px);
  border-right: 1px solid color-mix(in srgb, var(--flex-model-color) 20%, transparent);
}

.a360-flex-model-icon,
.a360-flex-benefits-icon,
.a360-flex-closing-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--flex-model-color, #005692) 30%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--flex-model-color, #005692) 10%, #ffffff);
  color: var(--flex-model-color, #005692);
}

.a360-flex-model-icon svg,
.a360-flex-benefits-icon svg,
.a360-flex-closing-icon svg {
  width: 28px;
  height: 28px;
}

.a360-flex-model h2 {
  min-width: 0;
  margin: 0;
  color: #06134f;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.16;
}

.a360-flex-benefits {
  margin-bottom: 24px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
}

.a360-flex-benefits-header {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.a360-flex-benefits-header h2 {
  margin: 0;
  color: #06134f;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.12;
}

.a360-flex-benefit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.a360-flex-benefit-list li {
  display: grid;
  min-width: 0;
  min-height: 126px;
  align-content: start;
  gap: 13px;
  padding: 20px;
  border: 1px solid rgba(0, 86, 146, 0.15);
  border-radius: 7px;
  background: linear-gradient(145deg, #f5fbff, #ffffff);
  color: #253d56;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.a360-flex-benefit-list li:nth-child(4n + 2) { color: #147d9c; }
.a360-flex-benefit-list li:nth-child(4n + 3) { color: #6b46c1; }
.a360-flex-benefit-list li:nth-child(4n + 4) { color: #a66d00; }

.a360-flex-benefit-list svg {
  width: 27px;
  height: 27px;
  color: currentColor;
}

.a360-flex-closing {
  --flex-model-color: #27c7b9;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 8px;
  background: linear-gradient(135deg, #06134f, #005692 62%, #147d9c);
  box-shadow: 0 22px 52px rgba(0, 54, 91, 0.18);
}

.a360-flex-closing .a360-flex-closing-icon {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #58dfd1;
}

.a360-suite-copy-grid .a360-flex-closing > p {
  color: #ffffff;
}

@media (max-width: 1050px) {
  .a360-flex-benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .a360-flex-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .a360-flex-model {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }

  .a360-flex-model header {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--flex-model-color) 20%, transparent);
  }

  .a360-flex-intro-visual {
    min-height: 275px;
  }

  .a360-flex-intro-visual::before { width: 202px; height: 202px; }
  .a360-flex-intro-visual::after { width: 258px; height: 258px; }
  .a360-flex-intro-core { width: 112px; height: 112px; }

  .a360-suite-copy-grid .a360-flex-intro-copy > p,
  .a360-suite-copy-grid .a360-flex-model > p,
  .a360-suite-copy-grid .a360-flex-benefits > p,
  .a360-suite-copy-grid .a360-flex-closing > p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .a360-flex-benefit-list,
  .a360-flex-closing {
    grid-template-columns: 1fr;
  }

  .a360-flex-benefit-list li {
    min-height: 0;
  }

  .a360-flex-closing-icon {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-flex-intro-visual::after {
    animation: none;
  }

  .a360-flex-model {
    transition: none;
  }
}

/* Why Partner overview copy */
.a360-menu-copy-grid.is-why-partner-visualized {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.a360-menu-copy-grid.is-why-partner-visualized > .a360-why-copy-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-content: start;
  align-items: start;
  min-width: 0;
  min-height: 270px;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(0, 86, 146, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 50%, rgba(14, 117, 232, 0.055));
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
  color: #3e4960;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.66;
  text-align: justify;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.a360-menu-copy-grid.is-why-partner-visualized > .a360-why-copy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(0, 54, 91, 0.13);
}

.a360-menu-copy-grid.is-why-partner-visualized > .a360-why-copy-card.is-feature {
  grid-column: 1 / -1;
  min-height: 0;
  border-color: rgba(0, 86, 146, 0.26);
  background: linear-gradient(135deg, #f3fbff, #ffffff 58%, #f7f4ff);
}

.a360-menu-copy-grid .a360-why-copy-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(14, 117, 232, 0.3);
  border-radius: 8px;
  background: linear-gradient(145deg, #072b72, #0e75e8);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(7, 54, 164, 0.18);
}

.a360-menu-copy-grid .a360-why-copy-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-menu-copy-grid .a360-why-copy-text {
  min-width: 0;
}

.a360-menu-copy-grid .a360-why-copy-text strong {
  color: #06134f;
  font-weight: 700;
}

@media (max-width: 820px) {
  .a360-menu-copy-grid.is-why-partner-visualized {
    grid-template-columns: 1fr;
  }

  .a360-menu-copy-grid.is-why-partner-visualized > .a360-why-copy-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .a360-menu-copy-grid.is-why-partner-visualized > .a360-why-copy-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
    padding: 22px;
    text-align: left;
  }

  .a360-menu-copy-grid .a360-why-copy-icon {
    width: 52px;
    height: 52px;
  }

  .a360-menu-copy-grid .a360-why-copy-icon svg {
    width: 25px;
    height: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-menu-copy-grid.is-why-partner-visualized > .a360-why-copy-card {
    transition: none;
  }
}

/* Regulatory Compliance overview copy */
.a360-menu-copy-grid.is-compliance-visualized {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.a360-menu-copy-grid.is-compliance-visualized > .a360-compliance-copy-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-content: start;
  align-items: start;
  min-width: 0;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(0, 127, 118, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 48%, rgba(0, 127, 118, 0.055));
  box-shadow: 0 18px 46px rgba(0, 54, 91, 0.08);
  color: #3e4960;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.66;
  text-align: justify;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.a360-menu-copy-grid.is-compliance-visualized > .a360-compliance-copy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(0, 82, 88, 0.13);
}

.a360-menu-copy-grid.is-compliance-visualized > .a360-compliance-copy-card.is-feature {
  grid-column: 1 / -1;
  border-color: rgba(0, 127, 118, 0.28);
  background: linear-gradient(135deg, #f2fcfa, #ffffff 58%, #f2f8ff);
}

.a360-menu-copy-grid .a360-compliance-copy-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(0, 127, 118, 0.34);
  border-radius: 8px;
  background: linear-gradient(145deg, #00646a, #007f76);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 100, 106, 0.18);
}

.a360-menu-copy-grid .a360-compliance-copy-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-menu-copy-grid .a360-compliance-copy-text {
  min-width: 0;
}

.a360-menu-copy-grid .a360-compliance-copy-text strong {
  color: #06134f;
  font-weight: 700;
}

@media (max-width: 820px) {
  .a360-menu-copy-grid.is-compliance-visualized {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .a360-menu-copy-grid.is-compliance-visualized > .a360-compliance-copy-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
    padding: 22px;
    text-align: left;
  }

  .a360-menu-copy-grid .a360-compliance-copy-icon {
    width: 52px;
    height: 52px;
  }

  .a360-menu-copy-grid .a360-compliance-copy-icon svg {
    width: 25px;
    height: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a360-menu-copy-grid.is-compliance-visualized > .a360-compliance-copy-card {
    transition: none;
  }
}

/* Privacy Policy */
.a360-privacy-page {
  min-height: 100vh;
  color: #10164d;
  background:
    linear-gradient(rgba(0, 95, 159, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 95, 159, 0.055) 1px, transparent 1px),
    linear-gradient(145deg, #ffffff 0%, #f3f9ff 58%, #e8f4ff 100%);
  background-size: 64px 64px, 64px 64px, auto;
}

.a360-privacy-hero {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(150px, 16vw, 210px) 28px 62px;
  text-align: center;
}

.a360-privacy-hero .a360-section-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 13px;
  border: 1px solid rgba(0, 95, 159, 0.28);
  border-radius: 6px;
  color: #005f9f;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.a360-privacy-title {
  max-width: 920px;
  margin: 0 auto;
  color: #080d4f;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.a360-privacy-shell {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin-inline: auto;
  padding: 0 28px clamp(80px, 10vw, 140px);
}

.a360-privacy-content {
  width: 100%;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(0, 95, 159, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(21, 72, 119, 0.12);
}

.a360-privacy-content h2 {
  margin: 54px 0 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 95, 159, 0.14);
  color: #005f9f;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.a360-privacy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.a360-privacy-content p,
.a360-privacy-content li {
  color: #3d485a;
  font-size: 17px;
  line-height: 1.75;
}

.a360-privacy-content p {
  margin: 0 0 18px;
  text-align: justify;
}

.a360-privacy-content ul {
  margin: 8px 0 24px;
  padding-left: 24px;
}

.a360-privacy-content li {
  margin: 0 0 10px;
  padding-left: 6px;
}

.a360-privacy-content a {
  color: #005f9f;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .a360-privacy-hero {
    padding: 128px 20px 42px;
  }

  .a360-privacy-title {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.06;
  }

  .a360-privacy-shell {
    padding: 0 14px 72px;
  }

  .a360-privacy-content {
    padding: 26px 20px;
  }

  .a360-privacy-content p,
  .a360-privacy-content li {
    font-size: 16px;
    text-align: left;
  }
}

/* Home payment-solution navigation */
.hero-capabilities {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 860px;
  margin-top: 30px;
}

.hero-capabilities a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 12px 14px 12px 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 86, 146, 0.2);
  border-radius: 8px;
  color: #111111;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(0, 86, 146, 0.07);
  font-size: 15px;
  line-height: 19px;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.hero-capabilities a > span {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
}

.hero-capabilities a::after {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 86, 146, 0.24);
  border-radius: 50%;
  color: #005692;
  background: #ffffff;
  content: "\2192";
  font-size: 20px;
  line-height: 1;
  transition: color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.hero-capabilities a:hover,
.hero-capabilities a:focus-visible {
  color: #005692;
  border-color: rgba(0, 86, 146, 0.48);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 86, 146, 0.12);
  transform: translateY(-2px);
}

.hero-capabilities a:hover::after,
.hero-capabilities a:focus-visible::after {
  color: #ffffff;
  background: linear-gradient(135deg, #005692, #0786bf) padding-box;
  box-shadow: 0 8px 20px rgba(0, 86, 146, 0.22);
  transform: translateX(3px);
}

.hero-capabilities a:focus-visible {
  outline: 3px solid rgba(255, 192, 77, 0.55);
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .hero-capabilities {
    grid-template-columns: 1fr;
  }

  .hero-capabilities a {
    min-height: 62px;
  }
}

/* Payment Suite hero reuses the rotating homepage globe. */
.a360-suite-globe {
  position: relative;
  min-height: 520px;
  overflow: visible;
}

.a360-suite-globe .a360-suite-world {
  position: absolute;
  left: 57%;
  right: auto;
  top: 50%;
  width: min(760px, 56vw);
  min-width: 560px;
  transform: translate(-50%, -50%);
}

.a360-suite-capabilities-eight span {
  min-height: 76px;
  padding: 12px;
  text-align: center;
}

.a360-suite-capabilities-linked a {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 8px 12px;
  border-radius: 3px;
  color: #005692;
  background: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.a360-suite-capabilities-linked a:hover,
.a360-suite-capabilities-linked a:focus-visible {
  color: #ffffff;
  background: #005692;
  box-shadow: inset 0 0 0 1px rgba(255, 192, 77, 0.55);
  outline: none;
}

.a360-menu-chips-linked a {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 8px 12px;
  border-radius: 3px;
  color: #005692;
  background: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.a360-menu-chips-linked a:hover,
.a360-menu-chips-linked a:focus-visible {
  color: #ffffff;
  background: #005692;
  box-shadow: inset 0 0 0 1px rgba(255, 192, 77, 0.55);
  outline: none;
}

.a360-suite-capabilities-eight a {
  min-height: 76px;
  padding: 12px;
}

.a360-suite-capabilities-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.a360-suite-capabilities-six a {
  min-height: 66px;
  padding: 10px 12px;
}

.a360-domain[id] {
  scroll-margin-top: 132px;
}

.a360-domain:target,
.a360-domain.is-domain-focused,
.a360-capability-target:target,
.a360-capability-target.is-domain-focused {
  box-shadow:
    0 0 0 4px rgba(255, 192, 77, 0.72),
    0 24px 54px rgba(0, 86, 146, 0.2);
  transform: translateY(-4px);
}

.a360-capability-target {
  scroll-margin-top: 132px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

@media (max-width: 1100px) {
  .a360-suite-globe {
    width: min(100%, 680px);
    min-height: 520px;
    margin: 0 auto;
  }

  .a360-suite-globe .a360-suite-world {
    left: 50%;
    width: min(760px, 104vw);
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .a360-suite-globe {
    min-height: 390px;
  }

  .a360-suite-globe .a360-suite-world {
    width: min(560px, 138vw);
  }
}

/* Professional Services structured content */
.a360-professional-content-v2 {
  position: relative;
  padding: 34px clamp(24px, 5vw, 76px) 112px;
  background:
    linear-gradient(rgba(0, 95, 159, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 95, 159, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 92% 18%, rgba(48, 174, 224, 0.14), transparent 26%),
    linear-gradient(135deg, #f8fbfe 0%, #ffffff 48%, #f1f7fc 100%);
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.a360-professional-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1560px;
  margin: 0 auto 76px;
}

.a360-professional-section-nav a {
  display: flex;
  flex: 0 1 calc(25% - 9px);
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 95, 159, 0.2);
  border-radius: 8px;
  color: #142343;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(0, 95, 159, 0.07);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.a360-professional-section-nav a:hover,
.a360-professional-section-nav a:focus-visible {
  color: #0066a4;
  background: rgba(48, 174, 224, 0.09);
  border-color: rgba(0, 102, 164, 0.42);
  transform: translateY(-2px);
}

.a360-professional-section-nav a:focus-visible {
  outline: 3px solid rgba(52, 216, 196, 0.5);
  outline-offset: -3px;
}

.a360-professional-section-nav span {
  flex: 0 0 auto;
  color: #1385a3;
  font-size: 12px;
}

.a360-professional-content-inner {
  max-width: 1560px;
  margin: 0 auto;
}

.a360-professional-major-section,
.a360-professional-subsection,
.a360-professional-lead-block {
  scroll-margin-top: 140px;
}

.a360-professional-major-heading {
  max-width: 980px;
  margin: 0 0 42px;
}

.a360-professional-major-heading p,
.a360-professional-subsection > header p {
  margin: 0 0 8px;
  color: #1385a3;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.a360-professional-major-heading h2 {
  margin: 0;
  color: #06104a;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.a360-professional-lead-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  margin-bottom: 24px;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(0, 95, 159, 0.2);
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(234, 246, 253, 0.9));
  box-shadow: 0 24px 64px rgba(0, 95, 159, 0.1);
}

.a360-professional-block-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(145deg, #0066a4, #1385a3);
  box-shadow: 0 14px 30px rgba(0, 102, 164, 0.2);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.a360-professional-lead-block h3,
.a360-professional-subsection > header h3 {
  margin: 0 0 18px;
  color: #06104a;
  font-size: clamp(27px, 2.4vw, 40px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.a360-professional-lead-block p,
.a360-professional-consulting-copy p {
  margin: 0;
  color: #3b4658;
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.68;
  text-align: justify;
}

.a360-professional-subsection {
  margin-top: 24px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(0, 95, 159, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.a360-professional-subsection > header {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 34px;
}

.a360-professional-subsection > header h3 {
  margin-bottom: 0;
}

.a360-professional-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.a360-professional-principles li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 15px 16px 15px 44px;
  border: 1px solid rgba(0, 95, 159, 0.14);
  border-radius: 6px;
  color: #23324b;
  background: rgba(244, 250, 254, 0.82);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}

.a360-professional-principles li::before {
  position: absolute;
  left: 17px;
  width: 10px;
  height: 10px;
  border: 2px solid #1385a3;
  border-radius: 2px;
  content: "";
  transform: rotate(45deg);
}

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

.a360-professional-qa-grid article {
  min-height: 250px;
  padding: 28px;
  border-top: 4px solid #1385a3;
  border-radius: 6px;
  background: #f6fbfe;
}

.a360-professional-qa-grid article:nth-child(2) { border-top-color: #6b46c1; }
.a360-professional-qa-grid article:nth-child(3) { border-top-color: #d79000; }
.a360-professional-qa-grid article:nth-child(4) { border-top-color: #0e8f78; }

.a360-professional-qa-grid h4,
.a360-professional-sdlc-list h4 {
  margin: 0 0 18px;
  color: #06104a;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.a360-professional-qa-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.a360-professional-qa-grid li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 24px;
  color: #3d495b;
  font-size: 16px;
  line-height: 1.45;
}

.a360-professional-qa-grid li::before {
  position: absolute;
  top: 0.62em;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #1385a3;
  content: "";
}

.a360-professional-sdlc-list {
  position: relative;
  display: grid;
  gap: 0;
}

.a360-professional-sdlc-list::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 27px;
  width: 1px;
  background: linear-gradient(#0066a4, #34d8c4);
  content: "";
}

.a360-professional-sdlc-list article {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0, 95, 159, 0.13);
  scroll-margin-top: 140px;
}

.a360-professional-sdlc-list article:last-child {
  border-bottom: 0;
}

.a360-professional-sdlc-list article > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0, 102, 164, 0.3);
  border-radius: 50%;
  color: #0066a4;
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.a360-professional-sdlc-list h4 {
  margin-top: 13px;
}

.a360-professional-sdlc-list p {
  margin: 0 0 11px;
  color: #3d495b;
  font-size: 16px;
  line-height: 1.62;
  text-align: justify;
}

.a360-professional-sdlc-list p:last-child {
  margin-bottom: 0;
}

.a360-professional-consulting {
  margin-top: 90px;
}

.a360-professional-consulting-copy {
  columns: 2;
  column-gap: clamp(38px, 5vw, 78px);
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(0, 95, 159, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 253, 0.88));
  box-shadow: 0 24px 64px rgba(0, 95, 159, 0.1);
}

.a360-professional-consulting-copy p {
  margin: 0 0 24px;
  break-inside: avoid;
}

.a360-professional-consulting-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1120px) {
  .a360-professional-section-nav a {
    flex-basis: calc(33.333% - 8px);
  }

  .a360-professional-principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .a360-professional-content-v2 {
    padding-top: 24px;
  }

  .a360-professional-section-nav {
    margin-bottom: 56px;
  }

  .a360-professional-section-nav a {
    flex-basis: calc(50% - 6px);
  }

  .a360-professional-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .a360-professional-qa-grid {
    grid-template-columns: 1fr;
  }

  .a360-professional-consulting-copy {
    columns: auto;
  }
}

/* Managed Services structured content */
.a360-managed-content-v2 {
  position: relative;
  padding: 88px clamp(24px, 5vw, 76px) 110px;
  background:
    linear-gradient(rgba(0, 95, 159, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 95, 159, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 8% 14%, rgba(255, 190, 66, 0.12), transparent 24%),
    radial-gradient(circle at 92% 36%, rgba(48, 174, 224, 0.14), transparent 28%),
    linear-gradient(135deg, #f8fbfe 0%, #ffffff 48%, #f1f7fc 100%);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
}

.a360-managed-content-inner {
  max-width: 1560px;
  margin: 0 auto;
}

.a360-managed-section-heading {
  max-width: 880px;
  margin-bottom: 42px;
}

.a360-managed-section-heading p {
  margin: 0 0 8px;
  color: #1385a3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.a360-managed-section-heading h2 {
  margin: 0;
  color: #06134f;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.05;
}

.a360-managed-section-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 58px;
}

.a360-managed-section-nav a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 15px 18px;
  border: 1px solid rgba(0, 95, 159, 0.19);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #142343;
  box-shadow: 0 12px 30px rgba(0, 68, 115, 0.06);
  backdrop-filter: blur(18px);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.a360-managed-section-nav a:nth-child(4n + 2),
.a360-managed-domain-card:nth-child(4n + 2) {
  --managed-domain-accent: #1385a3;
}

.a360-managed-section-nav a:nth-child(4n + 3),
.a360-managed-domain-card:nth-child(4n + 3) {
  --managed-domain-accent: #6b46c1;
}

.a360-managed-section-nav a:nth-child(4n),
.a360-managed-domain-card:nth-child(4n) {
  --managed-domain-accent: #d79000;
}

.a360-managed-section-nav a:hover,
.a360-managed-section-nav a:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--managed-domain-accent, #005f9f) 48%, transparent);
  box-shadow: 0 17px 34px rgba(0, 68, 115, 0.11);
}

.a360-managed-section-nav a:focus-visible {
  outline: 3px solid rgba(52, 216, 196, 0.45);
  outline-offset: 2px;
}

.a360-managed-section-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-managed-section-nav a > svg {
  box-sizing: content-box;
  padding: 10px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--managed-domain-accent, #005f9f) 10%, #ffffff);
  color: var(--managed-domain-accent, #005f9f);
}

.a360-managed-domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.a360-managed-domain-card {
  --managed-domain-accent: #005f9f;
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3.5vw, 46px);
  scroll-margin-top: 140px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--managed-domain-accent) 23%, #dce8f2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--managed-domain-accent) 9%, transparent), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(0, 54, 91, 0.075);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.a360-managed-domain-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 94px;
  height: 4px;
  content: "";
  background: var(--managed-domain-accent);
}

.a360-managed-domain-card:hover,
.a360-managed-domain-card:target {
  transform: translateY(-4px);
  box-shadow: 0 25px 56px rgba(0, 54, 91, 0.13);
}

.a360-managed-domain-card:target {
  outline: 3px solid color-mix(in srgb, var(--managed-domain-accent) 34%, transparent);
  outline-offset: 4px;
}

.a360-managed-domain-card header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.a360-managed-domain-card header > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--managed-domain-accent) 30%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--managed-domain-accent) 10%, #ffffff);
  color: var(--managed-domain-accent);
}

.a360-managed-domain-card svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.a360-managed-domain-card h3 {
  margin: 0;
  color: #06134f;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.a360-managed-domain-card > p {
  margin: 0;
  color: #3e4960;
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
}

.a360-managed-content-v2 + .a360-coded-diagram-section {
  padding-top: 98px;
}

@media (max-width: 1080px) {
  .a360-managed-section-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .a360-managed-content-v2 {
    padding-top: 70px;
  }

  .a360-managed-domain-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .a360-managed-content-v2 {
    padding: 58px 18px 78px;
    background-size: 42px 42px, 42px 42px, auto, auto, auto;
  }

  .a360-managed-section-nav {
    grid-template-columns: 1fr;
    margin-bottom: 44px;
  }

  .a360-managed-section-nav a {
    min-height: 66px;
  }

  .a360-managed-domain-card {
    padding: 26px 22px;
  }

  .a360-managed-domain-card header {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .a360-managed-domain-card header > span {
    width: 50px;
    height: 50px;
  }

  .a360-managed-domain-card > p {
    font-size: 16px;
    text-align: left;
  }

  .a360-managed-content-v2 + .a360-coded-diagram-section {
    padding-top: 70px;
  }
}

@media (max-width: 560px) {
  .a360-professional-content-v2 {
    padding: 20px 18px 78px;
    background-size: 42px 42px, 42px 42px, auto, auto;
  }

  .a360-professional-section-nav {
    margin-bottom: 48px;
  }

  .a360-professional-section-nav a {
    flex-basis: 100%;
    min-height: 62px;
  }

  .a360-professional-lead-block,
  .a360-professional-subsection > header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .a360-professional-lead-block,
  .a360-professional-subsection,
  .a360-professional-consulting-copy {
    padding: 26px 22px;
  }

  .a360-professional-major-heading h2 {
    font-size: 40px;
  }

  .a360-professional-lead-block h3,
  .a360-professional-subsection > header h3 {
    font-size: 27px;
  }

  .a360-professional-lead-block p,
  .a360-professional-consulting-copy p,
  .a360-professional-sdlc-list p {
    font-size: 16px;
    text-align: left;
  }

  .a360-professional-principles {
    grid-template-columns: 1fr;
  }

  .a360-professional-qa-grid article {
    min-height: 0;
    padding: 24px 20px;
  }

  .a360-professional-sdlc-list article {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .a360-professional-sdlc-list::before {
    left: 21px;
  }

  .a360-professional-sdlc-list article > span {
    width: 44px;
    height: 44px;
  }

  .a360-professional-sdlc-list h4 {
    margin-top: 8px;
    font-size: 21px;
  }

  .a360-professional-consulting {
    margin-top: 68px;
  }
}


/* WordPress block-theme integration */
.wp-site-blocks,
.wp-block-template-part {
  margin: 0;
}

.wp-site-blocks {
  overflow-x: clip;
}

.a360-site .wp-block-group,
.a360-site .wp-block-buttons,
.a360-site .wp-block-image,
.a360-site .wp-block-group > p {
  margin-block-start: 0;
  margin-block-end: 0;
}

.a360-site .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  min-height: 56px;
  margin: 0 0 34px;
}

.a360-site .hero-copy > p {
  margin: 0 0 34px;
}

.hero-actions .wp-block-button {
  width: 100%;
  margin: 0;
}

.hero-actions .wp-block-button__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  height: 56px;
  min-height: 56px;
  padding: 0 52px 0 20px;
  border: 2px solid var(--line);
  border-radius: 12px;
  color: #0b0b18;
  background: rgba(255, 255, 255, 0.65);
  font-size: 20px;
  line-height: 24px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hero-actions .wp-block-button__link::after {
  position: absolute;
  right: 20px;
  z-index: 1;
  content: "\2192";
  font-size: 29px;
  line-height: 1;
}

.hero-actions .a360-primary-button .wp-block-button__link {
  border-color: var(--blue);
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright) 56%, var(--mint));
  box-shadow: 0 22px 50px rgba(0, 120, 255, 0.3), 0 0 32px rgba(54, 226, 194, 0.16);
}

.hero-actions .a360-primary-button .wp-block-button__link::before {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -72%;
  width: 48%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.56), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: buttonGlare 3s ease-in-out infinite;
  pointer-events: none;
}

.hero-actions .wp-block-button__link:hover {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 18px 36px rgba(0, 95, 159, 0.22);
}

.stat-card .stat-number {
  margin: 0;
  color: var(--blue);
  font-size: 60px;
  line-height: 75px;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.about-proof > p:first-child strong {
  color: #8ee6ff;
  font-size: 32px;
  line-height: 38px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.contact-direct p {
  margin: 0;
}

.contact-response > p:first-child strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #06104a;
  background: #8ee6ff;
  font-weight: 900;
}

@media (max-width: 720px) {
  .a360-site .hero-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions .wp-block-button,
  .hero-actions .wp-block-button__link {
    width: 100%;
    min-width: 0;
  }
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
