.ez-floating-card-note {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(44, 41, 38, 0.08);
  border-radius: 8px;
  bottom: 62px;
  box-shadow: 0 24px 70px rgba(35, 31, 26, 0.15);
  max-width: 410px;
  padding: 18px 24px;
  position: absolute;
  right: 0;
  z-index: 3;
}

.ez-floating-card-note p {
  color: #282522;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  margin: 0;
}

.ez-floating-card-note strong {
  font-weight: 700;
}

/* ============================================================
   EZWay Wall of Fame: homepage + theme shell
   ============================================================ */
.ez-homepage,
.ez-home-nav,
.ez-home-footer {
  --home-gold: #d3a221;
  --home-gold-soft: #d3a221;
  --home-gold-pale: #fff1bd;
  --home-gold-dark: #9a7418;
  --home-ink: #16130d;
  --home-brown: #3a2810;
  --home-muted: #756f63;
  --home-cream: #fff8e9;
  --home-paper: #fffdf8;
  --home-line: rgba(138, 93, 0, 0.16);
  --home-line-strong: rgba(138, 93, 0, 0.28);
  --home-dark: #080807;
  --home-forest: #12352f;
  --home-shadow: 0 22px 60px rgba(50, 33, 4, 0.12);
  --home-shadow-strong: 0 28px 80px rgba(24, 16, 2, 0.2);
}

.site-content {
  background: #fff;
}

.ez-barba-container {
  min-height: 60vh;
  opacity: 1;
  transform: translateY(0);
}

body.ez-barba-active .ez-barba-container {
  will-change: opacity, transform;
}

body.ez-barba-active::before,
body.ez-barba-active::after {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition:
    opacity 220ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 9999;
}

body.ez-barba-active::before {
  background: linear-gradient(
    90deg,
    var(--home-gold, #d3a221),
    #ff8a00,
    var(--home-gold, #d3a221)
  );
  box-shadow: 0 0 24px rgba(211, 162, 33, 0.42);
  content: "";
  height: 3px;
  left: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: left center;
  width: 100%;
}

body.ez-barba-active::after {
  background:
    radial-gradient(
      circle at 50% 32%,
      rgba(211, 162, 33, 0.16),
      transparent 180px
    ),
    rgba(255, 253, 248, 0.42);
  content: "";
  inset: 0;
}

body.ez-barba-loading::before,
body.ez-barba-loading::after {
  opacity: 1;
}

body.ez-barba-loading::before {
  animation: ezBarbaProgress 900ms ease-in-out infinite;
}

@keyframes ezBarbaProgress {
  0% {
    transform: scaleX(0);
  }

  45% {
    transform: scaleX(0.72);
  }

  100% {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.ez-barba-active::before,
  body.ez-barba-active::after,
  body.ez-barba-loading::before {
    animation: none;
    transition: none;
  }
}

.ez-homepage {
  background: var(--home-cream);
  color: var(--home-ink);
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.ez-homepage .container,
.ez-home-nav .container,
.ez-home-footer .container {
  /* max-width: 1180px; */
}

.ez-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  padding: 0 20px;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.ez-btn:hover,
.ez-btn:focus {
  transform: translateY(-2px);
}

.ez-navbar-toggle:hover,
.ez-navbar-toggle:focus,
.ez-nav-close:hover,
.ez-nav-close:focus {
  background-color: var(--ez-golden-glow);
  border-color: var(--ez-golden-border);
  color: var(--ez-golden-soft) !important;
}

.ez-btn:focus-visible,
.ez-homepage a:focus-visible,
.ez-home-nav a:focus-visible,
.ez-home-footer a:focus-visible,
.ez-navbar-toggle:focus-visible,
.ez-nav-close:focus-visible {
  outline: 3px solid rgba(211, 162, 33, 0.34);
  outline-offset: 3px;
}

.ez-btn-gold {
  background: var(--home-gold);
  box-shadow: 0 14px 32px rgba(211, 162, 33, 0.26);
  color: var(--ez-white, #fff);
}

.ez-btn-gold:hover,
.ez-btn-gold:focus {
  background: var(--home-gold-soft);
  color: var(--ez-white, #fff);
}

.ez-btn-soft,
.ez-btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--home-line);
  color: var(--home-ink);
}

.ez-btn-soft:hover,
.ez-btn-soft:focus,
.ez-btn-ghost:hover,
.ez-btn-ghost:focus {
  background: #fff;
  border-color: var(--home-line-strong);
  color: var(--home-gold-dark);
}

.ez-kicker {
  align-items: center;
  color: var(--home-gold-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.ez-kicker::before {
  background: var(--home-gold);
  border-radius: 999px;
  content: "";
  height: 8px;
  width: 8px;
}

/* ============================================================
   Header
   ============================================================ */
.ez-home-nav {
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--home-line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ez-navbar {
  min-height: 78px;
}

.ez-brand {
  align-items: center;
  color: var(--home-ink);
  display: inline-flex;
  gap: 10px;
  margin: 0;
  text-decoration: none;
}

.ez-brand:hover,
.ez-brand:focus {
  color: var(--home-ink);
}

.ez-brand-logo {
  display: block;
  height: auto;
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
  width: auto;
}

.ez-brand-emblem {
  align-items: center;
  background: var(--home-dark);
  border: 1px solid rgba(211, 162, 33, 0.52);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.14);
  color: var(--home-gold-soft);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  width: 42px;
}

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

.ez-brand-text strong {
  color: var(--home-ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.ez-brand-text small {
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.ez-nav-links {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(138, 93, 0, 0.22);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(80, 52, 0, 0.08);
  gap: 6px;
  padding: 6px 12px !important;
}

.ez-nav-links .nav-link {
  border-radius: 999px;
  color: #352d1d;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px !important;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.ez-nav-links .nav-link:hover,
.ez-nav-links .nav-link:focus,
.ez-nav-links .nav-link.is-active,
.ez-nav-links .nav-link[aria-current="page"] {
  background: var(--home-dark);
  color: #fff;
}

.ez-navbar-toggle {
  background: #fffdf8;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  height: 42px;
  justify-content: center;
  padding: 0 10px;
  position: relative;
  width: 46px;
}

.ez-navbar-toggle span {
  background: var(--home-ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition:
    opacity 180ms var(--ease),
    transform 220ms var(--ease);
  width: 20px;
}

.ez-navbar-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ez-navbar-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.ez-navbar-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.ez-nav-drawer-head,
.ez-nav-backdrop {
  display: none;
}

.ez-nav-mobile-actions {
  align-items: center;
  display: none;
  gap: 8px;
}

.ez-site-switcher {
  position: relative;
}

.ez-site-switcher-toggle {
  align-items: center;
  background: #fffdf8;
  border: 1px solid var(--home-line);
  border-radius: var(--radius, 8px);
  color: var(--home-ink);
  display: inline-flex;
  font-size: var(--ez-fs-sm, 14px);
  font-weight: 600;
  gap: 8px;
  height: 44px;
  justify-content: center;
  padding: 0 13px;
  transition:
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.ez-site-switcher-toggle:hover,
.ez-site-switcher-toggle:focus-visible,
.ez-site-switcher.is-open .ez-site-switcher-toggle {
  border-color: var(--ez-golden-border);
  box-shadow: 0 10px 26px rgba(50, 33, 4, 0.12);
  color: var(--ez-golden);
  transform: translateY(-1px);
  background: var(--ez-golden-glow);
}

.ez-site-switcher-dots {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(3, 4px);
}

.ez-site-switcher-dots i {
  background: currentColor;
  border-radius: 50%;
  display: block;
  height: 4px;
  width: 4px;
}

.ez-site-switcher-menu {
  background: #fffdf8;
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 24px 60px rgba(50, 33, 4, 0.2);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(78px, 1fr));
  max-height: min(68vh, 520px);
  min-width: 322px;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 12px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 180ms var(--ease),
    transform 220ms var(--ease),
    visibility 220ms var(--ease);
  visibility: hidden;
  z-index: 1050;
}

.ez-site-switcher.is-open .ez-site-switcher-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.ez-site-switcher-item {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--home-ink);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 600;
  gap: 7px;
  justify-content: flex-start;
  line-height: 1.25;
  min-height: 86px;
  padding: 10px 5px 7px;
  text-align: center;
  transition:
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.ez-site-switcher-item:hover,
.ez-site-switcher-item:focus-visible {
  background: var(--ez-golden-glow);
  border-color: var(--ez-golden-border);
  color: #704f00;
  transform: translateY(-2px);
}

.ez-site-switcher-icon {
  align-items: center;
  background: var(--ez-golden);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(211, 162, 33, 0.2);
  color: #fff;
  display: inline-flex;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.ez-site-switcher-icon svg {
  height: 23px;
  width: 23px;
}

/* ============================================================
   Hero
   ============================================================ */
.ez-hero-section {
  background: linear-gradient(105deg, #fff7ed 0%, #fffdf8 48%, #f4f6fa 100%);
  border-bottom: 1px solid var(--home-line);
  padding: 78px 0 64px;
  position: relative;
}

.ez-hero-content {
  max-width: 650px;
}

.ez-hero-section h1 {
  color: #2c2926;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.22;
  margin: 0;
}

.ez-hero-copy {
  color: #68635d;
  font-size: 17px;
  line-height: 1.78;
  margin: 28px 0 0;
  max-width: 650px;
}

.ez-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.ez-hero-actions .ez-btn {
  min-height: 50px;
  padding: 0 28px;
}

.ez-hero-stats {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(110px, 1fr)) 82px;
  margin-top: 50px;
  max-width: 650px;
}

.ez-hero-stats div:not(.ez-hero-paper-plane) {
  border-right: 1px solid rgba(44, 41, 38, 0.12);
  padding: 0 30px;
}

.ez-hero-stats div:not(.ez-hero-paper-plane):nth-child(3) {
  border-right: none !important;
}

.ez-hero-stats div:not(.ez-hero-paper-plane):first-child {
  padding-left: 0;
}

.ez-hero-stats strong {
  color: #2c2926;
  display: block;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.ez-hero-stats span {
  color: #68635d;
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 18px;
}

.ez-hero-paper-plane {
  height: 46px;
  justify-self: end;
  opacity: 0.62;
  position: relative;
  width: 58px;
}

.ez-hero-paper-plane::before,
.ez-hero-paper-plane::after {
  border-style: solid;
  content: "";
  position: absolute;
  transform: skewX(-10deg) rotate(12deg);
}

.ez-hero-paper-plane::before {
  border-color: transparent transparent #ffbd72 transparent;
  border-width: 0 21px 42px 21px;
  left: 6px;
  top: 1px;
}

.ez-hero-paper-plane::after {
  border-color: transparent transparent transparent #8c9098;
  border-width: 18px 0 18px 44px;
  left: 2px;
  top: 0;
}

.ez-hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 520px;
  perspective: 1000px;
  position: relative;
}

.ez-network-map {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(
      circle at 50% 49%,
      rgba(211, 162, 33, 0.18) 0%,
      rgba(211, 162, 33, 0.06) 30%,
      transparent 51%
    ),
    linear-gradient(145deg, #fffdf8 0%, #fff8e9 54%, #f7ecd2 100%);
  border: 1px solid var(--home-line-strong);
  border-radius: 50%;
  box-shadow:
    0 26px 70px rgba(50, 33, 4, 0.13),
    inset 0 0 0 12px rgba(255, 255, 255, 0.48);
  max-width: 470px;
  position: relative;
  width: 100%;
  transform: rotateX(var(--network-rotate-x, 0deg))
    rotateY(var(--network-rotate-y, 0deg));
  transition:
    transform 500ms var(--ease),
    box-shadow 300ms var(--ease);
  will-change: transform;
}

.ez-network-map::before,
.ez-network-map::after {
  border: 1px solid rgba(138, 93, 0, 0.16);
  border-radius: inherit;
  content: "";
  inset: 9%;
  position: absolute;
}

.ez-network-map::after {
  border-color: rgba(138, 93, 0, 0.12);
  inset: 24%;
}

.ez-network-aura {
  animation: ez-network-breathe 4.2s ease-in-out infinite;
  background: rgba(211, 162, 33, 0.13);
  border-radius: 50%;
  filter: blur(2px);
  inset: 31%;
  position: absolute;
}

.ez-network-connections {
  height: 100%;
  inset: 0;
  overflow: visible;
  position: absolute;
  width: 100%;
}

.ez-network-line {
  animation: ez-network-signal 3.6s linear infinite;
  animation-delay: calc(var(--line-index) * -0.42s);
  filter: none;
  stroke: rgba(154, 116, 24, 0.58);
  stroke-dasharray: 2 4;
  stroke-linecap: round;
  stroke-width: 0.42;
  vector-effect: non-scaling-stroke;
}

.ez-network-hub {
  align-items: center;
  background: #181714;
  border: 5px solid #fffdf8;
  border-radius: 50%;
  box-shadow:
    0 20px 48px rgba(33, 27, 14, 0.28),
    0 0 0 8px rgba(211, 162, 33, 0.16);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 132px;
  justify-content: center;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 132px;
  z-index: 3;
}

.ez-network-hub-mark {
  align-items: center;
  /* background: var(--ez-golden); */
  /* border-radius: 12px; */
  color: #fff;
  display: flex;
  /* font-family: var(--ez-font-primary); */
  font-size: 26px;
  font-weight: 700;
  height: 50px;
  justify-content: center;
  margin-bottom: 2px;
  width: 50px;
}

.ez-network-hub-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.ez-network-hub strong {
  font-size: 13px;
  line-height: 1.2;
}
.ez-network-hub small {
  color: #c9c3b7;
  font-size: 9px;
  margin-top: 3px;
}

.ez-network-node {
  align-items: center;
  color: var(--home-ink);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 700;
  gap: 5px;
  left: var(--node-x);
  position: absolute;
  text-align: center;
  top: var(--node-y);
  transform: translate(-50%, -50%);
  transition:
    color 520ms var(--ease),
    transform 620ms var(--ease-bounce);
  width: 82px;
  z-index: 4;
}

.ez-network-node-icon {
  align-items: center;
  animation: ez-network-float 4s ease-in-out infinite;
  animation-delay: calc(var(--node-index) * -0.48s);
  background: #fff;
  border: 1px solid rgba(211, 162, 33, 0.24);
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(50, 33, 4, 0.11);
  color: var(--ez-golden);
  display: flex;
  height: 54px;
  justify-content: center;
  transition:
    background-color 680ms var(--ease),
    border-color 680ms var(--ease),
    box-shadow 680ms var(--ease),
    color 560ms var(--ease),
    transform 680ms var(--ease);
  width: 54px;
}

.ez-network-node-icon svg,
.ez-network-node-icon img {
  height: 27px;
  width: 27px;
}

.ez-network-node-icon img {
  display: block;
  object-fit: contain;
  transition: filter 560ms var(--ease);
}

.ez-network-node:hover .ez-network-node-icon img,
.ez-network-node:focus-visible .ez-network-node-icon img,
.ez-network-node.is-active .ez-network-node-icon img,
.ez-network-node.is-auto-active .ez-network-node-icon img {
  filter: brightness(0) invert(1);
}

.ez-network-node:hover,
.ez-network-node:focus-visible,
.ez-network-node.is-active,
.ez-network-node.is-auto-active {
  color: #8b6200;
  outline: none;
  transform: translate(-50%, -50%) scale(1.08);
}

.ez-network-node:hover .ez-network-node-icon,
.ez-network-node:focus-visible .ez-network-node-icon,
.ez-network-node.is-active .ez-network-node-icon,
.ez-network-node.is-auto-active .ez-network-node-icon {
  background: var(--ez-golden);
  box-shadow: 0 16px 34px rgba(211, 162, 33, 0.34);
  color: #fff;
}

.ez-network-status {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(211, 162, 33, 0.2);
  border-radius: 999px;
  bottom: -44px;
  box-shadow: 0 10px 30px rgba(64, 48, 18, 0.1);
  color: #625a4d;
  display: flex;
  font-size: 10px;
  font-weight: 600;
  gap: 7px;
  left: 50%;
  padding: 7px 12px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 5;
}

.ez-network-status span {
  animation: ez-network-status 1.8s ease-in-out infinite;
  background: #65a945;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(101, 169, 69, 0.13);
  height: 7px;
  width: 7px;
}

@keyframes ez-network-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes ez-network-signal {
  to {
    stroke-dashoffset: -24;
  }
}

@keyframes ez-network-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes ez-network-status {
  50% {
    box-shadow: 0 0 0 7px rgba(101, 169, 69, 0);
  }
}

/* ============================================================
   Sections
   ============================================================ */
.ez-section {
  padding: 86px 0;
}

.ez-section-heading {
  margin-bottom: 42px;
  max-width: 660px;
}

.ez-section-heading h2 {
  color: var(--home-ink);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.16;
  margin: 0;
}

.ez-section-heading p:last-child {
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 12px 0 0;
}

.ez-section-heading-split {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

.ez-section-heading-split > p {
  max-width: 390px;
  text-align: right;
}

.ez-how-section {
  background: #fffdf8;
}

.ez-step-grid {
  position: relative;
}

.ez-step-card {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(85, 58, 7, 0.07);
  min-height: 238px;
  padding: 34px;
  position: relative;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.ez-step-card:hover {
  border-color: var(--home-line-strong);
  box-shadow: var(--home-shadow);
  transform: translateY(-6px);
}

.ez-step-card span {
  align-items: center;
  background: var(--home-dark);
  border-radius: 8px;
  color: var(--home-gold-soft);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  margin-bottom: 22px;
  width: 48px;
}

.ez-step-card h3 {
  color: var(--home-ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
}

.ez-step-card p {
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.ez-viewed-section {
  background: linear-gradient(180deg, #fff8e9 0%, #fffdf8 100%);
}

.ez-member-card {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  min-height: 408px;
  overflow: hidden;
  position: relative;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.ez-member-card::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 38%,
    rgba(0, 0, 0, 0.78) 100%
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.ez-member-card:hover {
  border-color: rgba(211, 162, 33, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  transform: translateY(-6px);
}

.ez-member-image {
  height: 100%;
  min-height: 408px;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
  width: 100%;
}

.ez-member-card:hover .ez-member-image {
  transform: scale(1.035);
}

.ez-member-info {
  bottom: 0;
  left: 0;
  padding: 0 20px 26px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.ez-member-info h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
}

.ez-member-info small {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 7px;
}

.ez-view-icon {
  border: 2px solid var(--home-gold);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: inline-block;
  height: 9px;
  position: relative;
  transform: rotate(45deg);
  width: 14px;
}

.ez-view-icon::after {
  background: var(--home-gold);
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 3px;
  position: absolute;
  top: 1px;
  width: 4px;
}
/* ============================================================
   Footer
   ============================================================ */
.ez-home-footer {
  background: var(--home-dark);
  color: #fff;
  padding: 40px 0 28px;
}

.ez-footer-cta {
  align-items: center;
  background: linear-gradient(
    115deg,
    rgba(211, 162, 33, 0.18),
    rgba(18, 53, 47, 0.38)
  );
  border: 1px solid rgba(211, 162, 33, 0.2);
  border-radius: 24px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 44px;
  padding: 28px;
}

.ez-footer-cta span {
  color: var(--home-gold-soft);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ez-footer-cta h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
}

.ez-footer-main {
  padding-bottom: 34px;
}
.ez-footer-main a {
  color: #fff;
}
.ez-footer-brand {
  color: #fff;
  margin-bottom: 18px;
}

.ez-footer-brand .ez-brand-text strong {
  color: #fff;
}

.ez-footer-brand:hover,
.ez-footer-brand:focus {
  color: #fff;
}

.ez-home-footer p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 430px;
}

.ez-home-footer h3 {
  color: var(--home-gold-soft);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
}

.ez-home-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ez-home-footer li + li {
  margin-top: 10px;
}

.ez-home-footer a:not(.ez-brand):not(.ez-btn) {
  /* color: rgba(255, 255, 255, 0.68); */
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease;
}

/* .ez-home-footer a:not(.ez-brand):not(.ez-btn):hover,
.ez-home-footer a:not(.ez-brand):not(.ez-btn):focus {
  color: var(--home-gold-soft);
} */

.ez-footer-metric {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
}

.ez-footer-metric strong {
  color: var(--home-gold-soft);
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.ez-footer-metric span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}

.ez-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  padding-top: 22px;
}

/* ============================================================
/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991.98px) {
  body.ez-nav-open {
    overflow: hidden;
  }

  .ez-navbar {
    min-height: 72px;
  }

  .ez-nav-mobile-actions {
    display: flex;
    margin-left: auto;
  }

  .ez-nav-actions .ez-site-switcher {
    display: none;
  }

  .ez-home-nav {
    z-index: 1040;
  }

  .ez-navbar-toggle {
    box-shadow: 0 12px 26px rgba(50, 33, 4, 0.12);
    z-index: 1043;
  }

  .ez-navbar-toggle.is-active {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92);
    visibility: hidden;
  }

  .ez-navbar .ez-nav-drawer {
    background: #fffdf8;
    border: 1px solid rgba(138, 93, 0, 0.18);
    border-radius: 0;
    box-shadow: 28px 0 70px rgba(24, 16, 2, 0.2);
    display: flex !important;
    flex-direction: column;
    height: 100vh;
    max-width: 390px;
    padding: 22px 18px 18px;
    position: fixed;
    left: 0;
    right: auto;
    top: 0;
    transform: translateX(-104%);
    transition:
      transform 320ms var(--ease),
      visibility 320ms var(--ease);
    visibility: hidden;
    width: min(94vw, 390px);
    z-index: 1042;
  }

  .ez-navbar .ez-nav-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .ez-nav-drawer-head {
    align-items: center;
    border-bottom: 1px solid var(--home-line);
    color: var(--home-ink);
    display: flex;
    font-size: var(--ez-fs-sm, 14px);
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: 0;
    margin: -2px 0 20px;
    padding: 0 0 16px;
    text-transform: uppercase;
    width: 100%;
  }

  .ez-nav-close {
    align-items: center;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 8px;
    color: var(--home-ink);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    position: relative;
    transition:
      border-color 180ms var(--ease),
      box-shadow 180ms var(--ease),
      transform 180ms var(--ease);
    width: 40px;
  }

  .ez-nav-close:hover,
  .ez-nav-close:focus {
    border-color: var(--home-line-strong);
    box-shadow: 0 10px 26px rgba(50, 33, 4, 0.12);
    transform: translateY(-1px);
  }

  .ez-nav-close span {
    background: currentColor;
    border-radius: 999px;
    display: block;
    height: 2px;
    position: absolute;
    width: 18px;
  }

  .ez-nav-close span:first-child {
    transform: rotate(45deg);
  }

  .ez-nav-close span:last-child {
    transform: rotate(-45deg);
  }

  .ez-nav-backdrop {
    background: rgba(8, 8, 7, 0.48);
    border: 0;
    display: block;
    inset: 0;
    opacity: 0;
    position: fixed;
    transition:
      opacity 260ms var(--ease),
      visibility 260ms var(--ease);
    visibility: hidden;
    z-index: 1041;
  }

  .ez-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .ez-nav-links {
    align-items: stretch;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 10px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    width: 100%;
  }

  .ez-nav-links .nav-link {
    align-items: center;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(138, 93, 0, 0.12);
    border-radius: 8px;
    color: var(--home-ink);
    display: flex;
    font-size: var(--ez-fs-base, 15px);
    justify-content: flex-start;
    min-height: 52px;
    padding: 14px 18px;
    transition:
      background-color 180ms var(--ease),
      border-color 180ms var(--ease),
      color 180ms var(--ease),
      transform 180ms var(--ease);
    width: 100%;
  }

  .ez-nav-links .nav-link:hover,
  .ez-nav-links .nav-link:focus,
  .ez-nav-links .nav-link.is-active,
  .ez-nav-links .nav-link[aria-current="page"] {
    background: var(--home-dark);
    border-color: var(--home-dark);
    color: #fff;
    transform: translateX(3px);
  }

  .ez-nav-actions {
    align-items: stretch !important;
    background: #fffdf8;
    /* border-top: 1px solid var(--home-line); */
    /* margin-top: auto; */
    padding-top: 16px;
  }

  .ez-nav-actions .ez-btn,
  .ez-nav-actions .ez-btn-cta {
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(211, 162, 33, 0.28);
    justify-content: center;
    min-height: 42px;
    padding: 0 42px;
    width: 100%;
  }

  .ez-hero-section {
    padding: 58px 0 60px;
  }

  .ez-hero-section h1 {
    font-size: 42px;
  }

  .ez-hero-visual {
    margin-top: 20px;
    min-height: auto;
  }

  .ez-network-map {
    max-width: 460px;
  }

  .ez-section-heading-split {
    align-items: start;
    display: block;
  }

  .ez-section-heading-split > p {
    margin-top: 12px;
    max-width: 560px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ez-navbar .ez-nav-drawer,
  .ez-nav-backdrop,
  .ez-navbar-toggle span,
  .ez-nav-links .nav-link,
  .ez-nav-close {
    transition: none;
  }

  .ez-site-switcher-toggle,
  .ez-site-switcher-menu,
  .ez-site-switcher-item {
    transition: none;
  }

  .ez-network-aura,
  .ez-network-line,
  .ez-network-node-icon,
  .ez-network-status span {
    animation: none;
  }

  .ez-network-map {
    transform: none !important;
    transition: none;
  }
}

@media (max-width: 767.98px) {
  .ez-homepage .container,
  .ez-home-nav .container,
  .ez-home-footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ez-brand-text strong {
    font-size: 19px;
  }

  .ez-brand-logo {
    max-width: 125px;
  }

  .ez-site-switcher-menu {
    position: fixed;
    right: 14px;
    top: 70px;
    width: min(322px, calc(100vw - 28px));
  }

  .ez-site-switcher-toggle {
    font-size: 12px;
    height: 42px;
    padding: 0 10px;
  }

  .ez-hero-section h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .ez-hero-copy {
    font-size: 15px;
  }

  .ez-hero-stats {
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .ez-hero-stats div:not(.ez-hero-paper-plane) {
    border-right: 0;
    border-bottom: 1px solid rgba(44, 41, 38, 0.1);
    padding: 0 0 14px;
  }

  .ez-hero-paper-plane {
    display: none;
  }

  .ez-network-map {
    max-width: 440px;
  }

  .ez-section {
    padding: 64px 0;
  }

  .ez-section-heading h2 {
    font-size: 30px;
  }

  .ez-footer-cta {
    align-items: flex-start;
    display: grid;
  }

  .ez-footer-cta h2 {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .ez-brand-emblem {
    height: 38px;
    width: 38px;
  }

  .ez-hero-section {
    padding-top: 44px;
  }

  .ez-hero-section h1 {
    font-size: 30px;
  }

  .ez-hero-actions .ez-btn {
    width: 100%;
  }

  .ez-network-map {
    max-width: 350px;
  }
  .ez-network-hub {
    height: 104px;
    width: 104px;
  }
  .ez-network-hub-mark {
    border-radius: 9px;
    font-size: 20px;
    height: 34px;
    margin-bottom: 5px;
    width: 34px;
  }
  .ez-network-hub strong {
    font-size: 10px;
  }
  .ez-network-hub small {
    font-size: 7px;
  }
  .ez-network-node {
    font-size: 9px;
    gap: 3px;
    width: 64px;
  }
  .ez-network-node-icon {
    border-radius: 13px;
    height: 44px;
    width: 44px;
  }
  .ez-network-node-icon svg,
  .ez-network-node-icon img {
    height: 21px;
    width: 21px;
  }

  .ez-member-card {
    min-height: 390px;
  }
}
