/* CYEI × VORA Uganda Access Gateway v1.0.0 */
.vora-gateway {
  --vg-navy: #092645;
  --vg-navy-2: #0d3558;
  --vg-teal: #00a6a6;
  --vg-teal-2: #18c5b8;
  --vg-gold: #f7b928;
  --vg-cream: #fffdf8;
  --vg-ink: #0d2440;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.vora-gateway::before,
.vora-gateway::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  opacity: .5;
  z-index: -1;
}

.vora-gateway::before {
  width: 320px;
  height: 320px;
  right: -115px;
  top: -145px;
  background: radial-gradient(circle, rgba(24,197,184,.23), rgba(24,197,184,0) 68%);
}

.vora-gateway::after {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: -145px;
  background: radial-gradient(circle, rgba(247,185,40,.18), rgba(247,185,40,0) 70%);
}

.vora-gateway--feature {
  padding: 10px 0 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(11,143,87,.08), transparent 30%),
    linear-gradient(180deg, rgba(246,251,253,.25), rgba(247,251,252,.78));
}

.vora-gateway--compact {
  padding: 30px 0 26px;
  background: linear-gradient(180deg, rgba(247,250,252,.35), rgba(238,247,249,.95));
}

.vora-gateway-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(0, 1.45fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 172px;
  padding: 24px 26px;
  border-radius: 30px;
  border: 1px solid rgba(4,72,98,.14);
  background:
    linear-gradient(120deg, rgba(255,255,255,.96) 0 42%, rgba(241,252,251,.96) 76%, rgba(255,249,230,.94) 100%);
  box-shadow:
    0 22px 60px rgba(10,44,72,.13),
    0 7px 0 rgba(8,59,83,.06),
    inset 0 1px 0 rgba(255,255,255,.92);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.vora-gateway-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(115deg, rgba(0,166,166,.42), rgba(247,185,40,.26), rgba(11,143,87,.24));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.vora-gateway-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -18%;
  width: 26%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  transform: rotate(14deg) translateX(-180%);
  opacity: 0;
  pointer-events: none;
}

.vora-gateway-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,166,166,.28);
  box-shadow:
    0 30px 72px rgba(10,44,72,.17),
    0 9px 0 rgba(8,59,83,.065),
    0 0 38px rgba(0,166,166,.08),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.vora-gateway-card:hover::after {
  opacity: .72;
  animation: voraGatewaySheen 1.15s ease forwards;
}

@keyframes voraGatewaySheen {
  to { transform: rotate(14deg) translateX(560%); }
}

.vora-gateway-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.vora-gateway-logo-wrap {
  position: relative;
  width: 116px;
  height: 82px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.vora-gateway-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 12px 7px 7px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(0,166,166,.19), rgba(247,185,40,.08) 48%, transparent 70%);
  filter: blur(7px);
}

.vora-gateway-logo {
  position: relative;
  width: 116px;
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 7px 8px rgba(8,42,70,.16));
  transform: translateZ(0);
  transition: transform .35s ease, filter .35s ease;
}

.vora-gateway-card:hover .vora-gateway-logo {
  transform: translateY(-3px) scale(1.025);
  filter: drop-shadow(0 10px 12px rgba(0,166,166,.2));
}

.vora-gateway-brand-copy {
  min-width: 0;
}

.vora-gateway-brand-copy strong {
  display: block;
  color: var(--vg-navy);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: -.02em;
}

.vora-gateway-brand-copy span {
  display: block;
  margin-top: 4px;
  color: #426078;
  font-size: .77rem;
  line-height: 1.35;
  font-weight: 750;
}

.vora-gateway-copy {
  min-width: 0;
}

.vora-gateway-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: #007c74;
  font-size: .72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.vora-gateway-kicker::before {
  content: "";
  width: 25px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vg-teal), var(--vg-gold));
  box-shadow: 0 0 13px rgba(0,166,166,.28);
}

.vora-gateway-copy h2,
.vora-gateway-copy h3 {
  margin: 0;
  color: var(--vg-ink);
  letter-spacing: -.035em;
  line-height: 1.03;
}

.vora-gateway-copy h2 { font-size: clamp(1.65rem, 3vw, 2.65rem); }
.vora-gateway-copy h3 { font-size: clamp(1.3rem, 2.1vw, 1.72rem); }

.vora-gateway-copy > p {
  max-width: 780px;
  margin: 10px 0 0;
  color: #456178;
  font-size: .97rem;
  line-height: 1.55;
}

.vora-gateway-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.vora-gateway-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(8,76,100,.11);
  border-radius: 999px;
  color: #23455f;
  background: rgba(255,255,255,.78);
  box-shadow: 0 5px 14px rgba(8,49,74,.06);
  font-size: .75rem;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
  transition: transform .22s ease, color .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.vora-gateway-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vg-teal), var(--vg-gold));
  box-shadow: 0 0 0 3px rgba(0,166,166,.08);
}

.vora-gateway-chip:hover,
.vora-gateway-chip:focus-visible {
  color: #006d69;
  border-color: rgba(0,166,166,.3);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,112,111,.11);
}

.vora-gateway-actions {
  display: grid;
  gap: 9px;
  justify-items: stretch;
  min-width: 174px;
}

.vora-gateway-primary,
.vora-gateway-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 17px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  font-size: .9rem;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.vora-gateway-primary {
  color: #fff;
  background: linear-gradient(135deg, #063c5e 0%, #007f83 58%, #009f8d 100%);
  box-shadow:
    0 10px 20px rgba(0,112,111,.22),
    0 3px 0 rgba(4,42,63,.16),
    0 0 0 1px rgba(255,255,255,.15) inset;
}

.vora-gateway-primary span {
  color: var(--vg-gold);
  font-size: 1.15em;
  transition: transform .22s ease;
}

.vora-gateway-primary:hover,
.vora-gateway-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 15px 27px rgba(0,112,111,.28),
    0 4px 0 rgba(4,42,63,.12),
    0 0 28px rgba(0,166,166,.15);
}

.vora-gateway-primary:hover span { transform: translateX(3px); }

.vora-gateway-secondary {
  min-height: 39px;
  padding: 7px 12px;
  color: #31516a;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(8,76,100,.12);
  font-size: .78rem;
}

.vora-gateway-secondary:hover,
.vora-gateway-secondary:focus-visible {
  color: #006f70;
  background: #fff;
  transform: translateY(-2px);
}

.vora-gateway-host-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: -5px;
  color: #617486;
  font-size: .72rem;
  font-weight: 700;
}

.vora-gateway-host-note::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: #0b8f57;
  font-size: .66rem;
}

.vora-gateway--compact .vora-gateway-card {
  min-height: 136px;
  padding: 18px 22px;
  border-radius: 26px;
  grid-template-columns: minmax(165px, .65fr) minmax(0, 1.55fr) auto;
}

.vora-gateway--compact .vora-gateway-logo-wrap,
.vora-gateway--compact .vora-gateway-logo {
  width: 92px;
}

.vora-gateway--compact .vora-gateway-logo-wrap { height: 64px; }
.vora-gateway--compact .vora-gateway-logo { max-height: 61px; }
.vora-gateway--compact .vora-gateway-brand { gap: 8px; }
.vora-gateway--compact .vora-gateway-copy > p { margin-top: 7px; font-size: .88rem; }
.vora-gateway--compact .vora-gateway-chips { margin-top: 10px; }
.vora-gateway--compact .vora-gateway-chip { min-height: 29px; padding: 5px 9px; font-size: .7rem; }
.vora-gateway--compact .vora-gateway-actions { min-width: 156px; }
.vora-gateway--compact .vora-gateway-primary { min-height: 44px; }
.vora-gateway--compact .vora-gateway-host-note { display: none; }

@media (max-width: 1050px) {
  .vora-gateway-card,
  .vora-gateway--compact .vora-gateway-card {
    grid-template-columns: 180px minmax(0,1fr);
  }

  .vora-gateway-actions {
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0,1fr));
    min-width: 0;
  }

  .vora-gateway-host-note { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .vora-gateway--feature { padding: 4px 0 24px; }
  .vora-gateway--compact { padding: 22px 0 18px; }

  .vora-gateway-card,
  .vora-gateway--compact .vora-gateway-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 19px;
    border-radius: 24px;
  }

  .vora-gateway-brand {
    align-items: center;
  }

  .vora-gateway-logo-wrap,
  .vora-gateway--compact .vora-gateway-logo-wrap {
    width: 90px;
    height: 58px;
  }

  .vora-gateway-logo,
  .vora-gateway--compact .vora-gateway-logo {
    width: 90px;
    max-height: 58px;
  }

  .vora-gateway-brand-copy strong { font-size: 1.1rem; }
  .vora-gateway-copy h2 { font-size: clamp(1.55rem, 8vw, 2rem); }
  .vora-gateway-copy h3 { font-size: 1.34rem; }
  .vora-gateway-copy > p,
  .vora-gateway--compact .vora-gateway-copy > p { font-size: .9rem; }

  .vora-gateway-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .vora-gateway-chip {
    justify-content: flex-start;
    min-width: 0;
    white-space: normal;
  }

  .vora-gateway-actions,
  .vora-gateway--compact .vora-gateway-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .vora-gateway-primary { min-height: 49px; }
  .vora-gateway-host-note { margin-top: 0; }
}

@media (max-width: 420px) {
  .vora-gateway-chips { grid-template-columns: 1fr; }
  .vora-gateway-brand-copy span { font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  .vora-gateway-card,
  .vora-gateway-logo,
  .vora-gateway-chip,
  .vora-gateway-primary,
  .vora-gateway-secondary,
  .vora-gateway-primary span { transition: none; }
  .vora-gateway-card:hover::after { animation: none; opacity: 0; }
}
