:root {
  color-scheme: light;
  --aw-bg: #f4f9fc;
  --aw-bg-2: #eaf5fb;
  --aw-bg-3: #f9fdff;
  --aw-surface: #ffffff;
  --aw-surface-soft: rgba(255, 255, 255, 0.78);
  --aw-surface-strong: rgba(255, 255, 255, 0.94);
  --aw-ink: #071d2d;
  --aw-ink-2: #12364e;
  --aw-muted: #607688;
  --aw-muted-2: #7e91a0;
  --aw-line: rgba(7, 29, 45, 0.11);
  --aw-line-strong: rgba(7, 29, 45, 0.18);
  --aw-blue: #1788ff;
  --aw-blue-2: #1ca8f8;
  --aw-cyan: #41d4c7;
  --aw-navy: #062037;
  --aw-navy-2: #083753;
  --aw-success: #16a66a;
  --aw-warning: #f6a623;
  --aw-danger: #ef476f;
  --aw-info: #2563eb;
  --aw-gold: #f5c84c;
  --aw-radius-xs: 10px;
  --aw-radius-sm: 15px;
  --aw-radius: 22px;
  --aw-radius-lg: 32px;
  --aw-radius-xl: 42px;
  --aw-shadow-xs: 0 6px 16px rgba(6, 27, 43, 0.06);
  --aw-shadow-soft: 0 14px 34px rgba(6, 27, 43, 0.09);
  --aw-shadow: 0 24px 70px rgba(6, 27, 43, 0.13);
  --aw-shadow-strong: 0 34px 100px rgba(6, 27, 43, 0.2);
  --aw-shell: min(1180px, calc(100% - 32px));
  --aw-shell-wide: min(1380px, calc(100% - 32px));
  --aw-shell-gutter: clamp(12px, 2vw, 32px);
  --aw-section-space: clamp(52px, 7vw, 96px);
  --aw-content-measure: 72ch;
  --aw-touch-target: 44px;
  --aw-header-h: 74px;
  --aw-safe-top: env(safe-area-inset-top, 0px);
  --aw-safe-right: env(safe-area-inset-right, 0px);
  --aw-safe-bottom: env(safe-area-inset-bottom, 0px);
  --aw-safe-left: env(safe-area-inset-left, 0px);
  --aw-font-scale: 1;
  --aw-transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: calc(16px * var(--aw-font-scale));
  scroll-padding-top: calc(var(--aw-header-h) + 30px);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html.aw-lock {
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: var(--aw-ink);
  background:
    radial-gradient(
      circle at 6% 0%,
      rgba(28, 168, 248, 0.18),
      transparent 34rem
    ),
    radial-gradient(
      circle at 92% 2%,
      rgba(65, 212, 199, 0.2),
      transparent 30rem
    ),
    linear-gradient(180deg, #fbfdff 0%, var(--aw-bg) 48%, #eef7fb 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.aw-ready {
  opacity: 1;
}

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

a:hover {
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  max-width: 100%;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  touch-action: manipulation;
}

button:disabled,
a[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

:focus-visible {
  outline: 3px solid rgba(28, 168, 248, 0.42);
  outline-offset: 3px;
  border-radius: 14px;
}

::selection {
  background: rgba(65, 212, 199, 0.3);
}

.aw-shell {
  width: var(--aw-shell);
  margin-inline: auto;
}

.aw-shell--wide {
  width: var(--aw-shell-wide);
  margin-inline: auto;
}

.aw-auto-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(100%, var(--aw-grid-min, 260px)), 1fr)
  );
  gap: var(--aw-grid-gap, clamp(14px, 2vw, 24px));
}

.aw-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--aw-cluster-gap, 12px);
}

.aw-prose {
  width: min(100%, var(--aw-content-measure));
}

.aw-scroll-area {
  max-width: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}

:where(
  .aw-card,
  .aw-stat,
  .aw-result-card,
  .aw-feature-band,
  .aw-media-card,
  .aw-grid > *,
  .aw-auto-grid > *
) {
  min-width: 0;
}

.aw-muted {
  color: var(--aw-muted);
}

.aw-text-gradient {
  background: linear-gradient(
    110deg,
    var(--aw-blue),
    var(--aw-blue-2),
    var(--aw-cyan)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aw-skip {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--aw-shadow-soft);
  font-weight: 900;
}

/* Loader */
.aw-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #061b2b, #073b56 48%, #0aa2d6);
  color: #fff;
  transition:
    opacity 0.36s ease,
    visibility 0.36s ease;
  overflow: hidden;
}

.aw-loader::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.14),
    transparent 18rem
  );
  animation: awLoaderGlow 2s infinite alternate ease-in-out;
}

.aw-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.aw-loader__mark {
  width: 110px;
  height: 110px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.aw-loader__mark img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.aw-loader__mark span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.aw-loader__mark span::before {
  content: "";
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
  animation: awLoading 1s infinite ease-in-out;
}

.aw-loader p {
  position: relative;
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.01em;
}

@keyframes awLoading {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(230%);
  }
}

@keyframes awLoaderGlow {
  from {
    transform: translate3d(-4%, 0, 0) scale(1);
  }

  to {
    transform: translate3d(4%, 2%, 0) scale(1.08);
  }
}

/* Buttons */
.aw-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  font-weight: 950;
  letter-spacing: -0.015em;
  line-height: 1;
  transition:
    transform var(--aw-transition),
    box-shadow var(--aw-transition),
    border-color var(--aw-transition),
    background var(--aw-transition),
    color var(--aw-transition),
    opacity var(--aw-transition);
}

.aw-primary-btn,
.aw-btn,
.aw-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -0.015em;
  line-height: 1;
  transition:
    transform var(--aw-transition),
    box-shadow var(--aw-transition),
    border-color var(--aw-transition),
    background var(--aw-transition),
    color var(--aw-transition),
    opacity var(--aw-transition);
}

.aw-primary-btn {
  padding: 0 21px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--aw-blue),
    var(--aw-blue-2),
    var(--aw-cyan)
  );
  box-shadow: 0 18px 40px rgba(23, 136, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.aw-primary-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(23, 136, 255, 0.34);
}

.aw-btn {
  padding: 0 18px;
  border: 1px solid var(--aw-line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--aw-ink);
  box-shadow: var(--aw-shadow-xs);
}

.aw-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(28, 168, 248, 0.38);
  background: #fff;
  box-shadow: var(--aw-shadow-soft);
}

.aw-btn--ghost {
  background: rgba(255, 255, 255, 0.62);
}

.aw-btn--dark {
  background: var(--aw-navy);
  color: #fff;
  border-color: var(--aw-navy);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.aw-btn--dark:hover {
  color: #fff;
  background: #082943;
}

.aw-icon-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  position: relative;
}

.aw-icon-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(28, 168, 248, 0.32);
  box-shadow: var(--aw-shadow-soft);
}

.aw-pill-btn {
  padding: 0 16px;
  border: 1px solid var(--aw-line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--aw-shadow-xs);
  color: var(--aw-ink);
}

.aw-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--aw-shadow-soft);
}

.aw-pill-btn--agent {
  background: linear-gradient(135deg, #061b2b, #073b56);
  color: #fff;
  border-color: transparent;
}

/* Header / navigation */
.aw-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  padding: 12px 0;
  transition:
    padding var(--aw-transition),
    background var(--aw-transition),
    border-color var(--aw-transition);
}

.aw-header.is-scrolled {
  background: rgba(245, 249, 252, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 27, 43, 0.06);
  padding: 8px 0;
}

.aw-header__inner {
  min-height: var(--aw-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow: var(--aw-shadow-soft);
  backdrop-filter: blur(22px);
}

.aw-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 208px;
  flex: 0 0 auto;
}

.aw-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(23, 136, 255, 0.18));
}

.aw-brand__copy {
  display: grid;
  line-height: 1.05;
  min-width: 0;
}

.aw-brand__copy strong,
.aw-brand--mini strong {
  font-weight: 1000;
  letter-spacing: -0.045em;
  font-size: 1.04rem;
  white-space: nowrap;
}

.aw-brand__copy small,
.aw-brand--mini small {
  font-weight: 850;
  color: var(--aw-muted);
  font-size: 0.74rem;
  white-space: nowrap;
}

.aw-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.aw-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aw-nav__item {
  position: relative;
}

.aw-nav__link {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  color: #12364e;
  font-weight: 950;
  white-space: nowrap;
  transition:
    background var(--aw-transition),
    color var(--aw-transition),
    transform var(--aw-transition);
}

.aw-nav__link i:first-child {
  color: var(--aw-blue-2);
  font-size: 0.95rem;
}

.aw-nav__link:hover,
.aw-nav__link.is-active,
.aw-nav__item.show .aw-nav__link,
.aw-nav__item.is-open .aw-nav__link {
  background: #eef9ff;
  color: var(--aw-navy);
}

.aw-nav__link[aria-expanded="true"] .aw-chevron {
  transform: rotate(180deg);
}

.aw-chevron {
  font-size: 0.7rem;
  color: #7b90a0 !important;
  transition: transform var(--aw-transition);
}

.aw-menu {
  width: min(324px, calc(100vw - 32px));
  max-height: min(70svh, 520px);
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--aw-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(22px);
  box-shadow: var(--aw-shadow) !important;
  z-index: 2200;
  margin-top: 12px !important;
  overscroll-behavior: contain;
}

.aw-nav .dropdown-menu {
  display: none !important;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: auto;
  min-width: 0;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.985);
  transition:
    opacity var(--aw-transition),
    transform var(--aw-transition),
    visibility var(--aw-transition);
}

.aw-nav .dropdown-menu.show {
  display: grid !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.aw-nav .dropdown-menu[data-bs-popper] {
  top: calc(100% + 10px);
  left: 0;
  margin-top: 0;
}

.aw-nav__item:nth-last-child(-n + 2) > .aw-menu {
  left: auto;
  right: 0;
}

.aw-nav .dropdown-menu:not(.show) {
  height: auto !important;
  overflow: hidden !important;
}

.aw-nav .dropdown-menu.show.aw-menu {
  overflow: auto !important;
}

.aw-menu::-webkit-scrollbar {
  width: 10px;
}

.aw-menu::-webkit-scrollbar-thumb {
  background: rgba(7, 29, 45, 0.16);
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.aw-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 13px;
  border-radius: 16px;
  color: var(--aw-ink);
  transition:
    background var(--aw-transition),
    transform var(--aw-transition);
}

.aw-menu-link:hover,
.aw-menu-link.is-active {
  background: #f0f9ff;
  transform: translateX(2px);
}

.aw-menu-link span {
  display: grid;
  min-width: 0;
}

.aw-menu-link strong {
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.aw-menu-link small {
  font-size: 0.78rem;
  color: var(--aw-muted);
  font-weight: 800;
  line-height: 1.25;
}

.aw-menu-link i {
  color: var(--aw-blue-2);
}

.aw-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.aw-action-label {
  display: none;
}

.aw-cart-count {
  position: absolute;
  right: 5px;
  top: 5px;

  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #34d399 0%, #22c55e 52%, #14b8a6 100%);
  color: #ffffff;

  font-size: 0.68rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;

  border: 2px solid #ffffff;
  box-shadow:
    0 3px 8px rgba(22, 163, 74, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.75);

  transform-origin: center;
  animation: awCartSoftPulse 2.4s ease-in-out infinite;
  z-index: 5;
  pointer-events: none;
}

@keyframes awCartSoftPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 3px 8px rgba(22, 163, 74, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.75);
  }

  50% {
    transform: scale(1.06);
    box-shadow:
      0 4px 10px rgba(22, 163, 74, 0.34),
      0 0 0 3px rgba(52, 211, 153, 0.13);
  }
}

/* Mobile drawer / bottom navigation */
.aw-drawer {
  border: 0 !important;
  background: #f7fbff !important;
  box-shadow: var(--aw-shadow-strong);
}

.aw-drawer .offcanvas-header {
  border-bottom: 1px solid var(--aw-line);
  padding: 18px;
}

.aw-drawer .offcanvas-body {
  padding: 16px 18px 24px;
  overflow: auto;
}

.aw-brand--mini {
  min-width: 0;
}

.aw-drawer__search {
  height: 54px;
  border-radius: 18px;
  border: 1px solid var(--aw-line);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  margin-bottom: 16px;
  box-shadow: var(--aw-shadow-xs);
}

.aw-drawer__search input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  min-width: 0;
}

/* Grupo cerrado por defecto */
.aw-drawer__group {
  border: 1px solid var(--aw-line);
  background: #fff;
  border-radius: 20px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(6, 27, 43, 0.04);
  transition:
    border-color var(--aw-transition),
    box-shadow var(--aw-transition),
    background var(--aw-transition);
}

/* Grupo activo / desplegado */
.aw-drawer__group.is-open {
  border-color: rgba(23, 136, 255, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 14px 30px rgba(6, 27, 43, 0.07);
}

.aw-drawer__title {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  font-weight: 1000;
  color: var(--aw-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color var(--aw-transition);
}

.aw-drawer__title span {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

/* Iconos del título */
.aw-drawer__title i {
  color: #7b90a0;
  transition:
    color var(--aw-transition),
    opacity var(--aw-transition);
}

/* Quitamos rotación: el icono ya no gira */
.aw-drawer__title i:last-child {
  transform: none !important;
}

/* Estado activo: texto e iconos cambian de color */
.aw-drawer__group.is-open .aw-drawer__title {
  color: var(--aw-blue);
}

.aw-drawer__group.is-open .aw-drawer__title i {
  color: var(--aw-blue);
}

/* Icono final más sutil cuando está activo */
.aw-drawer__group.is-open .aw-drawer__title i:last-child {
  opacity: 0.9;
}

/* Enlaces ocultos por defecto */
.aw-drawer__links {
  display: none;
  padding: 0 10px 10px;
}

/* Enlaces visibles solo cuando el grupo está abierto */
.aw-drawer__group.is-open .aw-drawer__links {
  display: block;
}

.aw-drawer__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 15px;
  font-weight: 850;
  color: #1c4661;
  transition:
    background var(--aw-transition),
    color var(--aw-transition),
    transform var(--aw-transition);
}

.aw-drawer__links a:hover,
.aw-drawer__links a.is-active {
  background: #eef9ff;
  color: var(--aw-navy);
}

.aw-drawer__links a:hover {
  transform: translateX(2px);
}

.aw-mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + var(--aw-safe-bottom));
  z-index: 1010;
  display: none;
  align-items: center;
  justify-content: space-around;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  border-radius: 24px;
  box-shadow: var(--aw-shadow);
}

.aw-mobile-bar a,
.aw-mobile-bar button {
  height: 52px;
  min-width: 52px;
  flex: 1;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #45697f;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.1;
}

.aw-mobile-bar i {
  font-size: 1.05rem;
}

.aw-mobile-bar .is-active {
  background: linear-gradient(135deg, var(--aw-blue), var(--aw-blue-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(23, 136, 255, 0.22);
}

/* Search overlay */
.aw-search {
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.aw-search[hidden] {
  display: none !important;
}

.aw-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 27, 43, 0.48);
  backdrop-filter: blur(8px);
}

.aw-search__panel {
  position: relative;
  width: min(760px, calc(100% - 28px));
  max-height: calc(100svh - 32px);
  overflow: auto;
  margin: 16px auto 0;
  padding: 28px;
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--aw-shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.aw-search__panel h2 {
  margin: 0 54px 6px 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 1000;
  letter-spacing: -0.045em;
}

.aw-search__panel p {
  margin: 0 0 18px;
  color: var(--aw-muted);
  font-weight: 780;
}

.aw-search__close {
  position: absolute;
  right: 18px;
  top: 18px;
}

.aw-field--search {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: 20px;
  border: 1px solid var(--aw-line);
  background: #f7fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.aw-field--search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  min-width: 0;
}

.aw-search__results {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.aw-search__empty {
  padding: 18px;
  border: 1px dashed var(--aw-line);
  border-radius: 18px;
  color: var(--aw-muted);
  font-weight: 850;
  background: #fbfdff;
}

.aw-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--aw-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(6, 27, 43, 0.04);
  transition:
    background var(--aw-transition),
    transform var(--aw-transition),
    border-color var(--aw-transition);
}

.aw-result:hover {
  background: #eef9ff;
  transform: translateY(-1px);
  border-color: rgba(28, 168, 248, 0.28);
}

.aw-result strong {
  display: block;
  font-weight: 1000;
}

.aw-result small {
  display: block;
  color: var(--aw-muted);
  font-weight: 800;
  margin-top: 2px;
}

.aw-result i {
  color: var(--aw-blue-2);
}

/* Account panel */
.aw-account {
  position: fixed;
  right: 16px;
  top: 96px;
  z-index: 2500;
  width: min(360px, calc(100vw - 32px));
  max-height: calc(100svh - 116px);
  overflow: auto;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--aw-line);
  box-shadow: var(--aw-shadow-strong);
  backdrop-filter: blur(22px);
  transform: translateX(calc(100% + 36px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform var(--aw-transition),
    opacity var(--aw-transition),
    visibility var(--aw-transition);
}

.aw-account.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.aw-account__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #eef7fb;
  color: #17446b;
}

.aw-account h2 {
  font-weight: 1000;
  letter-spacing: -0.04em;
  margin: 0 42px 8px 0;
}

.aw-account__balance {
  margin: 18px 0;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #061b2b, #073b56);
  color: #fff;
  box-shadow: 0 20px 54px rgba(6, 27, 43, 0.2);
}

.aw-account__balance span,
.aw-account__balance small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.aw-account__balance strong {
  display: block;
  font-size: 2.4rem;
  letter-spacing: -0.07em;
  line-height: 1.05;
}

.aw-account > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--aw-line);
  font-weight: 900;
  color: #17446b;
}

.aw-account > a:hover {
  color: var(--aw-blue);
}

/* Floating controls */
.aw-settings {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1030;
}

.aw-floating {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1030;
  display: flex;
  align-items: center;
  gap: 10px;
}

.aw-settings-panel {
  position: fixed;
  left: 16px;
  bottom: 78px;
  z-index: 2600;
  width: min(390px, calc(100vw - 32px));
  max-height: calc(100svh - 104px);
  overflow: auto;
  padding: 21px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--aw-line);
  box-shadow: var(--aw-shadow-strong);
  backdrop-filter: blur(22px);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform var(--aw-transition),
    opacity var(--aw-transition),
    visibility var(--aw-transition);
}

.aw-settings-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.aw-settings-panel h3 {
  font-size: 1.55rem;
  font-weight: 1000;
  letter-spacing: -0.045em;
  margin: 0 0 4px;
}

.aw-settings-panel p {
  margin: 0 0 16px;
  color: var(--aw-muted);
  font-weight: 780;
}

.aw-settings-panel__grid {
  display: grid;
  gap: 11px;
}

.aw-settings-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--aw-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(6, 27, 43, 0.035);
}

.aw-settings-action span:first-child {
  display: grid;
  gap: 3px;
}

.aw-settings-action strong {
  font-weight: 1000;
}

.aw-settings-action small {
  color: var(--aw-muted);
  font-weight: 850;
}

.aw-range {
  accent-color: var(--aw-blue);
  width: 120px;
}

.aw-switch {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 30px;
  flex: 0 0 auto;
}

.aw-switch input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.aw-switch__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #dcecf4;
  box-shadow: inset 0 1px 2px rgba(6, 27, 43, 0.08);
  transition: background var(--aw-transition);
}

.aw-switch__track::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(6, 27, 43, 0.22);
  transition: transform var(--aw-transition);
}

.aw-switch input:checked + .aw-switch__track {
  background: linear-gradient(135deg, var(--aw-blue), var(--aw-cyan));
}

.aw-switch input:checked + .aw-switch__track::before {
  transform: translateX(20px);
}

/* Agent */
.aw-agent {
  position: fixed;
  right: 16px;
  bottom: 78px;
  z-index: 2400;
  width: min(390px, calc(100vw - 32px));
  max-height: min(650px, calc(100svh - 104px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--aw-line);
  box-shadow: var(--aw-shadow-strong);
  overflow: hidden;
  transform-origin: bottom right;
  animation: awPanelIn 0.18s ease-out;
}

.aw-agent[hidden] {
  display: none !important;
}

.aw-agent header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #062037, #083753);
  color: #fff;
}

.aw-agent header strong {
  font-weight: 1000;
  letter-spacing: -0.02em;
}

.aw-agent header button {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  color: #fff;
}

.aw-agent header button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.aw-agent__body {
  padding: 16px;
  overflow: auto;
  background: linear-gradient(180deg, #f5fbff, #fff);
  display: block;
}

.aw-agent__bubble {
  max-width: 88%;
  width: max-content;
  margin: 0 0 10px;
  padding: 13px 14px;
  border-radius: 18px 18px 18px 6px;
  background: #eaf4fb;
  color: var(--aw-ink);
  font-weight: 850;
  line-height: 1.42;
  box-shadow: 0 8px 18px rgba(6, 27, 43, 0.04);
}

.aw-agent__bubble.is-user {
  margin-left: auto;
  border-radius: 18px 18px 6px 18px;
  background: linear-gradient(135deg, var(--aw-blue), var(--aw-cyan));
  color: #fff;
}

.aw-agent__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
}

.aw-agent__chips button,
.aw-agent__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef7fb;
  color: #17446b;
  font-weight: 950;
}

.aw-agent__chips button:hover,
.aw-agent__link:hover {
  background: #dff2ff;
  color: var(--aw-navy);
}

.aw-agent__link {
  margin: 0 0 10px auto;
  width: max-content;
  background: linear-gradient(135deg, var(--aw-blue), var(--aw-cyan));
  color: #fff;
  box-shadow: 0 10px 24px rgba(23, 136, 255, 0.22);
}

.aw-agent__link:hover {
  color: #fff;
  filter: saturate(1.08);
}

.aw-agent__form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--aw-line);
  background: #fff;
}

.aw-agent__form input {
  min-width: 0;
  flex: 1;
  height: 50px;
  border-radius: 999px;
  border: 1px solid var(--aw-line);
  padding: 0 15px;
  outline: 0;
  background: #fbfdff;
}

.aw-agent__form input:focus {
  border-color: rgba(28, 168, 248, 0.55);
  box-shadow: 0 0 0 4px rgba(28, 168, 248, 0.13);
}

.aw-agent__form button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--aw-blue), var(--aw-cyan));
  color: #fff;
  box-shadow: 0 10px 24px rgba(23, 136, 255, 0.22);
}

@keyframes awPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Toast / modal */
.aw-toast {
  border: 1px solid var(--aw-line);
  border-radius: 18px;
  box-shadow: var(--aw-shadow);
  overflow: hidden;
  background: #fff;
}

.aw-toast .toast-body {
  font-weight: 850;
  color: var(--aw-ink);
}

.aw-toast[data-variant="success"] {
  border-color: rgba(22, 166, 106, 0.25);
}

.aw-toast[data-variant="danger"] {
  border-color: rgba(239, 71, 111, 0.25);
}

.aw-toast[data-variant="warning"] {
  border-color: rgba(246, 166, 35, 0.3);
}

.aw-modal .modal-content {
  border: 1px solid var(--aw-line);
  border-radius: 28px;
  box-shadow: var(--aw-shadow-strong);
  overflow: hidden;
}

.aw-modal .modal-header,
.aw-modal .modal-footer {
  border-color: var(--aw-line);
  background: #fbfdff;
}

/* Main sections */
.aw-hero {
  padding: 54px 0 70px;
  position: relative;
  overflow: hidden;
}

.aw-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% 0 -8%;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72));
  pointer-events: none;
}

.aw-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.aw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef9ff;
  color: #176087;
  font-weight: 1000;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.aw-hero h1,
.aw-page-hero h1 {
  font-size: clamp(3.4rem, 7.4vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
  margin: 0 0 20px;
  font-weight: 1000;
  color: var(--aw-ink);
}

.aw-hero p {
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.62;
  color: var(--aw-muted);
  font-weight: 820;
  max-width: 680px;
  margin: 0;
}

.aw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.aw-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.aw-stat {
  padding: 18px;
  border: 1px solid var(--aw-line);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  box-shadow: var(--aw-shadow-xs);
  backdrop-filter: blur(14px);
}

.aw-stat strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -0.06em;
  color: var(--aw-ink);
}

.aw-stat span {
  display: block;
  margin-top: 6px;
  color: var(--aw-muted);
  font-weight: 850;
  font-size: 0.86rem;
}

.aw-hero__media {
  position: relative;
  min-width: 0;
}

.aw-hero__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--aw-shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.aw-float-ticket {
  position: absolute;
  left: 38px;
  bottom: 28px;
  min-width: 220px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--aw-shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.aw-float-ticket strong {
  display: block;
  font-weight: 1000;
}

.aw-float-ticket b {
  display: block;
  font-size: 2.6rem;
  line-height: 0.95;
  letter-spacing: -0.07em;
  color: var(--aw-blue);
}

.aw-float-ticket small {
  font-weight: 850;
  color: var(--aw-ink-2);
}

.aw-section {
  padding-block: 74px;
  position: relative;
}

.aw-section--soft {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid rgba(7, 29, 45, 0.05);
}

.aw-section__head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.aw-section__head h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin: 0 0 12px;
  font-weight: 1000;
}

.aw-section__head p {
  margin: 0;
  color: var(--aw-muted);
  font-weight: 800;
  line-height: 1.65;
}

.aw-grid {
  display: grid;
  gap: 18px;
}

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

.aw-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aw-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aw-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--aw-line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--aw-shadow-soft);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.aw-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
}

.aw-card h3 {
  font-weight: 1000;
  letter-spacing: -0.04em;
  margin: 12px 0 8px;
  font-size: 1.34rem;
}

.aw-card p {
  line-height: 1.65;
  font-weight: 760;
}

.aw-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #edf8ff, #fff);
  color: var(--aw-blue-2);
  font-size: 1.25rem;
  box-shadow:
    inset 0 0 0 1px rgba(28, 168, 248, 0.13),
    0 12px 28px rgba(23, 136, 255, 0.11);
}

.aw-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.aw-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 850;
  line-height: 1.45;
}

.aw-list i {
  color: var(--aw-success);
  margin-top: 3px;
}

.aw-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--aw-line);
  background: #f7fcff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 950;
  font-size: 0.85rem;
  color: #17446b;
}

.aw-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 1000;
  font-size: 0.82rem;
}

.aw-status--on {
  background: #e9fff5;
  color: #067849;
}

.aw-status--warn {
  background: #fff8e3;
  color: #8d6200;
}

.aw-status--off {
  background: #fff0f4 !important;
  color: #a61f46 !important;
}

.aw-feature-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(65, 212, 199, 0.25),
      transparent 20rem
    ),
    linear-gradient(135deg, #061b2b, #073b56);
  color: #fff;
  box-shadow: var(--aw-shadow-strong);
  overflow: hidden;
}

.aw-feature-band h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 1000;
  letter-spacing: -0.065em;
  line-height: 0.95;
  margin: 0 0 14px;
}

.aw-feature-band p,
.aw-feature-band .aw-muted {
  color: rgba(255, 255, 255, 0.76);
}

.aw-feature-band .aw-list i {
  color: var(--aw-cyan);
}

.aw-qr-demo {
  justify-self: end;
  width: min(360px, 100%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  padding: 24px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.aw-qr-box {
  width: 160px;
  height: 160px;
  border-radius: 32px;
  background: #fff;
  color: var(--aw-navy);
  display: grid;
  place-items: center;
  font-size: 4rem;
  margin: 0 auto 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.aw-media-card {
  padding: 0;
  overflow: hidden;
}

.aw-media-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.aw-media-card div {
  padding: 22px;
}

/* Tables / forms / filters */
.aw-table-wrap {
  overflow: auto;
  max-width: 100%;
  overscroll-behavior-inline: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--aw-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--aw-shadow-xs);
}

.aw-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}

.aw-table th,
.aw-table td {
  padding: 16px;
  border-bottom: 1px solid var(--aw-line);
  vertical-align: middle;
}

.aw-table th {
  background: #f4faff;
  color: #17446b;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 1000;
}

.aw-table tr:last-child td {
  border-bottom: 0;
}

.aw-kpi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.aw-kpi strong {
  font-size: 2.1rem;
  letter-spacing: -0.06em;
  font-weight: 1000;
}

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

.aw-field {
  display: grid;
  gap: 7px;
  position: relative;
}

.aw-field label {
  font-weight: 950;
  color: var(--aw-ink);
}

.aw-field input,
.aw-field select,
.aw-field textarea {
  width: 100%;
  border: 1px solid var(--aw-line);
  background: #fff;
  border-radius: 16px;
  padding: 13px 14px;
  outline: 0;
  color: var(--aw-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    border-color var(--aw-transition),
    box-shadow var(--aw-transition),
    background var(--aw-transition);
}

.aw-field textarea {
  min-height: 130px;
  resize: vertical;
}

.aw-field input:focus,
.aw-field select:focus,
.aw-field textarea:focus {
  border-color: rgba(28, 168, 248, 0.55);
  box-shadow: 0 0 0 4px rgba(28, 168, 248, 0.12);
  background: #fff;
}

.aw-field:focus-within label {
  color: var(--aw-blue);
}

.aw-field-error {
  display: block;
  color: var(--aw-danger);
  font-weight: 850;
  font-size: 0.82rem;
  margin-top: -2px;
}

.aw-alert {
  border-radius: 20px;
  padding: 15px 16px;
  font-weight: 840;
  line-height: 1.45;
}

.aw-alert--info {
  background: #eaf4ff;
  color: #16406d;
}

.aw-alert--success {
  background: #e9fff5;
  color: #08784a;
}

.aw-alert--warning {
  background: #fff8e3;
  color: #7a5600;
}

.aw-alert--danger {
  background: #fff0f4;
  color: #9b1e42;
}

.aw-filterbar {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--aw-line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 26px;
  box-shadow: var(--aw-shadow-soft);
  margin-bottom: 20px;
  backdrop-filter: blur(14px);
}

.aw-filterbar input,
.aw-filterbar select {
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--aw-line);
  background: #fff;
  padding: 0 13px;
  outline: 0;
  min-width: 0;
}

.aw-result-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--aw-line);
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--aw-shadow-soft);
}

.aw-result-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.aw-map-demo {
  min-height: 360px;
  border-radius: 34px;
  border: 1px solid var(--aw-line);
  background:
    radial-gradient(
      circle at 25% 25%,
      rgba(28, 168, 248, 0.25),
      transparent 12rem
    ),
    linear-gradient(135deg, #e7f4fb, #fff);
  position: relative;
  overflow: hidden;
  box-shadow: var(--aw-shadow-soft);
}

.aw-map-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 29, 45, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 29, 45, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.aw-map-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aw-blue), var(--aw-cyan));
  color: #fff;
  box-shadow: 0 10px 26px rgba(23, 136, 255, 0.24);
  z-index: 1;
}

.aw-map-pin:nth-child(1) {
  left: 20%;
  top: 24%;
}

.aw-map-pin:nth-child(2) {
  left: 62%;
  top: 34%;
}

.aw-map-pin:nth-child(3) {
  left: 42%;
  top: 64%;
}

.aw-map-pin:nth-child(4) {
  left: 78%;
  top: 70%;
}

.aw-page-hero {
  padding: 48px 0 34px;
}

.aw-page-hero .aw-section__head {
  margin-bottom: 0;
  text-align: left;
  max-width: 900px;
  margin-inline: 0;
}

.aw-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-weight: 850;
  color: var(--aw-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.aw-breadcrumb a {
  color: #17446b;
}

.aw-breadcrumb a:hover {
  color: var(--aw-blue);
}

.aw-tabs .nav-link {
  border: 1px solid var(--aw-line);
  border-radius: 999px;
  margin: 0 8px 8px 0;
  color: #17446b;
  font-weight: 950;
  background: #fff;
}

.aw-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--aw-blue), var(--aw-cyan));
  color: #fff;
  border-color: transparent;
}

.aw-ribbon {
  position: absolute;
  right: 18px;
  top: 18px;
  background: linear-gradient(90deg, var(--aw-gold), #ffe99c);
  color: #382b00;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 1000;
  font-size: 0.82rem;
  box-shadow: 0 12px 28px rgba(245, 200, 76, 0.25);
}

/* Premium footer */
.aw-footer {
  position: relative;
  padding: 72px 0 30px;
  color: #e9f6ff;
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(28, 168, 248, 0.22),
      transparent 28rem
    ),
    radial-gradient(
      circle at 98% 20%,
      rgba(65, 212, 199, 0.16),
      transparent 26rem
    ),
    linear-gradient(135deg, #04131f, #061b2b 48%, #073b56);
  overflow: hidden;
}

.aw-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent);
  pointer-events: none;
}

.aw-footer > * {
  position: relative;
}

.aw-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-bottom: 28px;
}

.aw-footer__cta {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 32px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.aw-footer__cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 0 0 10px;
  font-weight: 1000;
}

.aw-footer__cta p {
  color: rgba(233, 246, 255, 0.72);
  font-weight: 780;
  margin: 0;
  line-height: 1.65;
}

.aw-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.aw-footer__signal {
  display: grid;
  gap: 14px;
}

.aw-signal-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.aw-signal-card strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  font-weight: 1000;
}

.aw-signal-card span {
  display: block;
  color: rgba(233, 246, 255, 0.72);
  font-weight: 820;
  margin-top: 5px;
}

.aw-footer__grid {
  display: grid;
  grid-template-columns: 1.42fr repeat(5, 1fr);
  gap: 26px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aw-footer__brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.aw-footer__brand img {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 12px 30px rgba(28, 168, 248, 0.18));
}

.aw-footer h3,
.aw-footer h4 {
  margin: 0 0 12px;
  font-weight: 1000;
  letter-spacing: -0.035em;
  color: #fff;
}

.aw-footer h3 {
  font-size: 1.25rem;
}

.aw-footer h4 {
  font-size: 1rem;
}

.aw-footer p {
  color: rgba(233, 246, 255, 0.72);
  font-weight: 760;
  line-height: 1.62;
}

.aw-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(233, 246, 255, 0.8);
  font-weight: 840;
  margin: 5px 0;
  transition:
    color var(--aw-transition),
    transform var(--aw-transition);
}

.aw-footer a:hover {
  color: #fff;
  transform: translateX(2px);
}

.aw-footer__newsletter {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  max-width: 360px;
}

.aw-footer__newsletter input {
  min-width: 0;
  flex: 1;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 999px;
  padding: 0 14px;
  outline: 0;
}

.aw-footer__newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.aw-footer__newsletter input:focus {
  border-color: rgba(65, 212, 199, 0.52);
  box-shadow: 0 0 0 4px rgba(65, 212, 199, 0.12);
}

.aw-footer__newsletter button {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  color: var(--aw-navy);
  display: grid;
  place-items: center;
}

.aw-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aw-social a {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0;
}

.aw-footer__local {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
}

.aw-footer__local strong {
  font-weight: 1000;
  color: #fff;
}

.aw-footer__local p {
  margin: 4px 0 0;
}

.aw-local-data {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.aw-local-data span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(233, 246, 255, 0.84);
  font-weight: 850;
}

.aw-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: rgba(233, 246, 255, 0.66);
  font-weight: 820;
}

.aw-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aw-online::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--aw-success);
  box-shadow: 0 0 0 6px rgba(22, 166, 106, 0.18);
}

.aw-online--off::before {
  background: var(--aw-danger);
  box-shadow: 0 0 0 6px rgba(239, 71, 111, 0.16);
}

/* Simple pages: login, 404, offline */
.aw-simple-body {
  display: grid;
  min-height: 100svh;
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(28, 168, 248, 0.2),
      transparent 24rem
    ),
    linear-gradient(135deg, #061b2b, #073b56 65%, #0aa2d6);
  color: #fff;
}

.aw-simple {
  width: min(1040px, calc(100% - 28px));
  margin: auto;
  padding: 32px 0;
}

.aw-simple__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.aw-simple__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.aw-simple__brand img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 12px 28px rgba(28, 168, 248, 0.22));
}

.aw-simple__brand strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  font-weight: 1000;
}

.aw-simple__brand small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.aw-simple h1 {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
  margin: 0 0 16px;
  font-weight: 1000;
}

.aw-simple p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 780;
  line-height: 1.7;
}

.aw-simple__card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--aw-ink);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.aw-login-card {
  max-width: 470px;
  justify-self: end;
  width: 100%;
}

.aw-password {
  position: relative;
}

.aw-password input {
  padding-right: 58px !important;
}

.aw-password button {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #eef7fb;
  color: #17446b;
  display: grid;
  place-items: center;
}

.aw-simple-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.aw-simple .aw-field input {
  background: #f8fcff;
}

.aw-simple-foot {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
  font-size: 0.9rem;
}

/* User settings states / error states */
body.aw-compact .aw-card {
  padding: 20px;
}

body.aw-compact .aw-section {
  padding-block: 54px;
}

body.aw-compact .aw-hero {
  padding-block: 38px 54px;
}

body.aw-high-contrast {
  --aw-ink: #000;
  --aw-ink-2: #071d2d;
  --aw-muted: #27323a;
  --aw-line: rgba(0, 0, 0, 0.24);
  --aw-line-strong: rgba(0, 0, 0, 0.34);
}

body.aw-links
  a:not(.aw-primary-btn):not(.aw-btn):not(.aw-icon-btn):not(.aw-pill-btn) {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

body.aw-reduce-motion *,
body.aw-reduce-motion *::before,
body.aw-reduce-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

.aw-img-error {
  background: #eef7fb;
  min-height: 180px;
  object-fit: contain;
  padding: 20px;
  border: 1px dashed var(--aw-line);
}

.is-invalid-lite {
  border-color: var(--aw-danger) !important;
  box-shadow: 0 0 0 4px rgba(239, 71, 111, 0.12) !important;
}

[hidden] {
  display: none !important;
}

@supports not ((backdrop-filter: blur(1px))) {
  .aw-header__inner,
  .aw-menu,
  .aw-settings-panel,
  .aw-agent,
  .aw-account,
  .aw-mobile-bar,
  .aw-search__backdrop {
    backdrop-filter: none;
    background: #fff;
  }

  .aw-footer__cta,
  .aw-signal-card {
    background: rgba(255, 255, 255, 0.12);
  }
}

/* =========================================================
   v22 · Corrección fuerte de menú, logo rotativo y capas UI
   ========================================================= */
.aw-brand__rotator {
  display: inline-block;
  min-width: 0;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
  will-change: opacity, transform;
}

.aw-brand__rotator.is-changing {
  opacity: 0.12;
  transform: translateY(-4px);
}

.aw-nav > ul {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  flex-wrap: nowrap !important;
}

.aw-nav > ul > li {
  list-style: none !important;
  position: relative !important;
  flex: 0 0 auto !important;
}

.aw-nav > ul > li > .dropdown-menu,
.aw-nav > ul > li > .aw-menu {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 0 !important;
  right: auto !important;
  width: min(324px, calc(100vw - 32px)) !important;
  min-width: 280px !important;
  max-width: 324px !important;
  max-height: min(70svh, 520px) !important;
  padding: 10px !important;
  margin: 0 !important;
  list-style: none !important;
  grid-auto-flow: row !important;
  grid-template-columns: 1fr !important;
  align-items: stretch !important;
  gap: 4px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(8px) scale(0.985) !important;
  overflow: auto !important;
  z-index: 2200 !important;
}

.aw-nav > ul > li > .dropdown-menu > li,
.aw-nav > ul > li > .aw-menu > li {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  list-style: none !important;
}

.aw-nav > ul > li > .dropdown-menu.show,
.aw-nav > ul > li.show > .dropdown-menu,
.aw-nav > ul > li.is-open > .dropdown-menu,
.aw-nav > ul > li.dropdown-open > .dropdown-menu,
.aw-nav > ul > li > .aw-menu.show,
.aw-nav > ul > li.show > .aw-menu,
.aw-nav > ul > li.is-open > .aw-menu,
.aw-nav > ul > li.dropdown-open > .aw-menu {
  display: grid !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

.aw-nav > ul > li:nth-last-child(-n + 2) > .dropdown-menu,
.aw-nav > ul > li:nth-last-child(-n + 2) > .aw-menu {
  left: auto !important;
  right: 0 !important;
}

.aw-nav .dropdown-menu:not(.show) {
  display: none !important;
  height: auto !important;
  max-height: min(70svh, 520px) !important;
  overflow: hidden !important;
}

.aw-menu-link {
  width: 100% !important;
  min-width: 0 !important;
}

.aw-menu-link span {
  min-width: 0 !important;
  overflow: hidden !important;
}

.aw-menu-link strong,
.aw-menu-link small {
  display: block !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

.aw-header__inner {
  isolation: isolate;
}

.aw-search,
.aw-account,
.aw-settings-panel,
.aw-agent,
.offcanvas {
  overscroll-behavior: contain;
}

@media (max-width: 991.98px) {
  .aw-nav {
    display: none !important;
  }

  .aw-mobile-bar {
    display: flex !important;
  }

  body {
    padding-bottom: calc(86px + var(--aw-safe-bottom));
  }

  .aw-header__inner {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .aw-brand {
    min-width: 0;
  }

  .aw-brand__copy strong {
    font-size: 0.9rem;
  }

  .aw-brand__copy small {
    font-size: 0.66rem;
  }

  .aw-brand img {
    width: 40px;
    height: 40px;
  }

  .aw-icon-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .aw-search__panel {
    padding: 22px;
    border-radius: 24px;
  }

  .aw-settings-panel,
  .aw-agent,
  .aw-account {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
  }

  .aw-floating {
    right: 12px;
  }

  .aw-settings {
    left: 12px;
  }
}

body.aw-reduce-motion .aw-brand__rotator,
body.aw-reduce-motion .aw-brand__rotator.is-changing {
  transition: none !important;
  transform: none !important;
  opacity: 1 !important;
}

/* =========================================================
   v23 · Fix definitivo dropdown desktop
   El menú queda oculto por defecto y visible únicamente cuando JS agrega .show/.is-open.
   ========================================================= */
.aw-menu-v23 .aw-header .dropdown,
.aw-menu-v23 .aw-nav .dropdown,
.aw-nav__item.dropdown {
  position: relative !important;
}

.aw-menu-v23 .aw-header .dropdown > .dropdown-menu,
.aw-menu-v23 .aw-header .dropdown > .aw-menu,
.aw-menu-v23 .aw-nav .dropdown > .dropdown-menu,
.aw-menu-v23 .aw-nav .dropdown > .aw-menu,
.aw-menu-v23 .aw-nav__item.dropdown > .dropdown-menu,
.aw-menu-v23 .aw-nav__item.dropdown > .aw-menu {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 0 !important;
  right: auto !important;
  width: min(336px, calc(100vw - 32px)) !important;
  min-width: min(292px, calc(100vw - 32px)) !important;
  max-width: 336px !important;
  max-height: min(72svh, 560px) !important;
  padding: 10px !important;
  margin: 0 !important;
  list-style: none !important;
  grid-template-columns: 1fr !important;
  gap: 4px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(11, 40, 62, 0.1) !important;
  border-radius: 22px !important;
  box-shadow: 0 28px 80px rgba(5, 27, 45, 0.18) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(8px) scale(0.985) !important;
  overflow-y: hidden !important;
  overscroll-behavior: contain !important;
  z-index: 9999 !important;
}

.aw-menu-v23 .aw-header .dropdown.show > .dropdown-menu,
.aw-menu-v23 .aw-header .dropdown.is-open > .dropdown-menu,
.aw-menu-v23 .aw-header .dropdown.dropdown-open > .dropdown-menu,
.aw-menu-v23 .aw-header .dropdown > .dropdown-menu.show,
.aw-menu-v23 .aw-nav .dropdown.show > .dropdown-menu,
.aw-menu-v23 .aw-nav .dropdown.is-open > .dropdown-menu,
.aw-menu-v23 .aw-nav .dropdown.dropdown-open > .dropdown-menu,
.aw-menu-v23 .aw-nav .dropdown > .dropdown-menu.show,
.aw-menu-v23 .aw-nav__item.dropdown.show > .dropdown-menu,
.aw-menu-v23 .aw-nav__item.dropdown.is-open > .dropdown-menu,
.aw-menu-v23 .aw-nav__item.dropdown.dropdown-open > .dropdown-menu,
.aw-menu-v23 .aw-nav__item.dropdown > .dropdown-menu.show,
.aw-menu-v23 .aw-header .dropdown.show > .aw-menu,
.aw-menu-v23 .aw-header .dropdown.is-open > .aw-menu,
.aw-menu-v23 .aw-header .dropdown.dropdown-open > .aw-menu,
.aw-menu-v23 .aw-header .dropdown > .aw-menu.show,
.aw-menu-v23 .aw-nav .dropdown.show > .aw-menu,
.aw-menu-v23 .aw-nav .dropdown.is-open > .aw-menu,
.aw-menu-v23 .aw-nav .dropdown.dropdown-open > .aw-menu,
.aw-menu-v23 .aw-nav .dropdown > .aw-menu.show,
.aw-menu-v23 .aw-nav__item.dropdown.show > .aw-menu,
.aw-menu-v23 .aw-nav__item.dropdown.is-open > .aw-menu,
.aw-menu-v23 .aw-nav__item.dropdown.dropdown-open > .aw-menu,
.aw-menu-v23 .aw-nav__item.dropdown > .aw-menu.show {
  display: grid !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
  overflow-y: auto !important;
}

.aw-menu-v23 .aw-nav > ul > li:nth-last-child(-n + 2) > .dropdown-menu,
.aw-menu-v23 .aw-nav > ul > li:nth-last-child(-n + 2) > .aw-menu,
.aw-menu-v23 .aw-header .dropdown:nth-last-child(-n + 2) > .dropdown-menu,
.aw-menu-v23 .aw-header .dropdown:nth-last-child(-n + 2) > .aw-menu {
  left: auto !important;
  right: 0 !important;
}

.aw-menu-v23 .dropdown-menu > li,
.aw-menu-v23 .aw-menu > li {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  list-style: none !important;
}

.aw-menu-v23 .dropdown-menu .dropdown-item,
.aw-menu-v23 .aw-menu-link {
  width: 100% !important;
  white-space: normal !important;
}

.aw-menu-v23 .aw-menu-link strong,
.aw-menu-v23 .aw-menu-link small {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

.aw-menu-v23 .aw-nav__link[aria-expanded="true"] .aw-chevron,
.aw-menu-v23 .dropdown-toggle[aria-expanded="true"] .aw-chevron {
  transform: rotate(180deg) !important;
}

@media (max-width: 991.98px) {
  .aw-menu-v23 .aw-nav {
    display: none !important;
  }

  .aw-menu-v23 .aw-header .dropdown > .dropdown-menu,
  .aw-menu-v23 .aw-header .dropdown > .aw-menu {
    max-width: calc(100vw - 24px) !important;
  }
}

/* =========================================================
   AT WATER MENU HOTFIX V24 - CLICK + HOVER SUBMENUS
   Objetivo: que Banco, Red, Miembros, Puntos Recarga y Apps
   muestren sus opciones al click y al pasar el mouse.
   ========================================================= */
:root {
  --aw-menu-z: 99999;
  --aw-menu-top-gap: 10px;
}

.aw-header,
.aw-header__inner,
.aw-nav,
.aw-nav > ul,
.aw-nav__item.dropdown {
  overflow: visible !important;
}

.aw-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9000 !important;
  isolation: isolate !important;
}

.aw-header__inner {
  position: relative !important;
  z-index: 9001 !important;
}

.aw-nav {
  position: relative !important;
  z-index: 9002 !important;
}

.aw-nav > ul {
  position: relative !important;
  z-index: 9003 !important;
}

.aw-nav__item.dropdown {
  position: relative !important;
  z-index: 9004 !important;
}

.aw-nav__item.dropdown.is-open,
.aw-nav__item.dropdown.show,
.aw-nav__item.dropdown:hover {
  z-index: var(--aw-menu-z) !important;
}

.aw-nav__item.dropdown > .aw-nav__link {
  cursor: pointer !important;
  user-select: none !important;
  border: 0 !important;
  background: transparent;
}

.aw-nav__item.dropdown > .aw-nav__link:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.35) !important;
  outline-offset: 3px !important;
}

.aw-nav__item.dropdown > .dropdown-menu,
.aw-nav__item.dropdown > .aw-menu {
  display: none !important;
  position: absolute !important;
  top: calc(100% + var(--aw-menu-top-gap)) !important;
  left: 0 !important;
  right: auto !important;
  min-width: 292px !important;
  width: min(332px, calc(100vw - 32px)) !important;
  max-height: min(72vh, 560px) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 10px !important;
  margin: 0 !important;
  border: 1px solid rgba(15, 63, 92, 0.12) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow:
    0 28px 70px rgba(4, 24, 40, 0.18),
    0 8px 24px rgba(14, 165, 233, 0.1) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate3d(0, 8px, 0) scale(0.985) !important;
  transform-origin: top left !important;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease !important;
  z-index: var(--aw-menu-z) !important;
}

.aw-nav__item.dropdown:nth-last-child(-n + 2) > .dropdown-menu,
.aw-nav__item.dropdown:nth-last-child(-n + 2) > .aw-menu {
  left: auto !important;
  right: 0 !important;
  transform-origin: top right !important;
}

.aw-nav__item.dropdown.is-open > .dropdown-menu,
.aw-nav__item.dropdown.show > .dropdown-menu,
.aw-nav__item.dropdown.dropdown-open > .dropdown-menu,
.aw-nav__item.dropdown > .dropdown-menu.show,
.aw-nav__item.dropdown.is-open > .aw-menu,
.aw-nav__item.dropdown.show > .aw-menu,
.aw-nav__item.dropdown.dropdown-open > .aw-menu,
.aw-nav__item.dropdown > .aw-menu.show {
  display: grid !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .aw-nav__item.dropdown:hover > .dropdown-menu,
  .aw-nav__item.dropdown:hover > .aw-menu {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
  }

  .aw-nav__item.dropdown:hover > .aw-nav__link {
    background: #eef9ff !important;
    color: #061b2b !important;
  }
}

.aw-nav__item.dropdown.is-open > .aw-nav__link,
.aw-nav__item.dropdown.show > .aw-nav__link,
.aw-nav__item.dropdown.dropdown-open > .aw-nav__link {
  background: #eef9ff !important;
  color: #061b2b !important;
}

.aw-nav__item.dropdown.is-open .aw-chevron,
.aw-nav__item.dropdown.show .aw-chevron,
.aw-nav__item.dropdown.dropdown-open .aw-chevron,
.aw-nav__item.dropdown:hover .aw-chevron {
  transform: rotate(180deg) !important;
}

.aw-menu > li,
.dropdown-menu.aw-menu > li {
  display: block !important;
  width: 100% !important;
  list-style: none !important;
}

.aw-menu-link {
  display: flex !important;
  width: 100% !important;
  text-decoration: none !important;
}

.aw-menu-link strong,
.aw-menu-link small {
  white-space: normal !important;
}

@media (max-width: 991.98px) {
  .aw-nav {
    display: none !important;
  }

  .aw-nav__item.dropdown > .dropdown-menu,
  .aw-nav__item.dropdown > .aw-menu {
    display: none !important;
  }
}

/* =========================================================
   AT WATER Patch · search premium, stacked floating controls, animated footer brand
   ========================================================= */
.aw-search {
  position: fixed;
  inset: 0;
  z-index: 5000;
  padding: calc(var(--aw-header-h) + 18px) 16px 24px;
  display: grid;
  place-items: start center;
}

.aw-search[hidden] {
  display: none !important;
}

.aw-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 31, 0.62);
  backdrop-filter: blur(18px) saturate(1.08);
}

.aw-search__panel {
  position: relative;
  width: min(820px, 100%);
  max-height: min(720px, calc(100svh - var(--aw-header-h) - 46px));
  overflow: auto;
  margin: 0 auto;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 253, 255, 0.96)
  );
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 44px 120px rgba(2, 18, 32, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  animation: awSearchIn 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.aw-search__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 32px 32px 0 0;
  background: linear-gradient(
    90deg,
    var(--aw-blue),
    var(--aw-blue-2),
    var(--aw-cyan)
  );
}

.aw-search__panel h2 {
  margin: 0 58px 6px 0;
  color: var(--aw-ink);
  line-height: 1;
}

.aw-search__panel p {
  max-width: 620px;
  line-height: 1.5;
}

.aw-search__close {
  right: 18px;
  top: 18px;
  background: #eef8ff;
  color: var(--aw-navy);
  border-color: rgba(28, 168, 248, 0.18);
}

.aw-field--search {
  height: 64px;
  border-radius: 22px;
  background: #f5fbff;
  border-color: rgba(7, 29, 45, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 14px 34px rgba(6, 27, 43, 0.06);
}

.aw-field--search i {
  color: var(--aw-blue-2);
  font-size: 1.05rem;
}

.aw-field--search input {
  font-weight: 820;
  color: var(--aw-ink);
}

.aw-field--search input::placeholder {
  color: rgba(96, 118, 136, 0.68);
  font-weight: 760;
}

.aw-search__results {
  gap: 12px;
  margin-top: 18px;
}

.aw-search__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "title icon" "desc icon";
  align-items: center;
  gap: 4px 16px;
  padding: 15px 16px;
  border: 1px solid rgba(7, 29, 45, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--aw-ink);
  box-shadow: 0 10px 26px rgba(6, 27, 43, 0.045);
  transition:
    transform var(--aw-transition),
    background var(--aw-transition),
    border-color var(--aw-transition),
    box-shadow var(--aw-transition);
}

.aw-search__item:hover {
  transform: translateY(-2px);
  background: #eef9ff;
  border-color: rgba(28, 168, 248, 0.28);
  box-shadow: 0 16px 38px rgba(23, 136, 255, 0.12);
}

.aw-search__item strong {
  grid-area: title;
  font-weight: 1000;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.aw-search__item small {
  grid-area: desc;
  color: var(--aw-muted);
  font-weight: 810;
  line-height: 1.35;
}

.aw-search__item i {
  grid-area: icon;
  color: var(--aw-blue-2);
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f3fbff;
}

@keyframes awSearchIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.aw-settings,
.aw-floating {
  left: auto;
  right: 16px;
  z-index: 1060;
}

.aw-floating {
  bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.aw-settings {
  bottom: 76px;
}

.aw-settings .aw-pill-btn,
.aw-floating .aw-pill-btn {
  min-width: 126px;
  justify-content: flex-start;
  padding-inline: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.aw-settings .aw-pill-btn {
  background: rgba(255, 255, 255, 0.96);
}

.aw-settings .aw-pill-btn i,
.aw-floating .aw-pill-btn i {
  width: 18px;
  text-align: center;
}

.aw-settings-panel {
  left: auto;
  right: 16px;
  bottom: 140px;
  transform-origin: bottom right;
}

.aw-agent {
  right: 16px;
  bottom: 140px;
}

.aw-footer__brand h3 {
  display: flex;
  align-items: baseline;
  gap: 0.28em;
  flex-wrap: wrap;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: -0.045em;
}

.aw-footer__rotator,
.aw-footer__fixed {
  display: inline-block;
}

.aw-footer__rotator {
  min-width: 2em;
  color: #fff;
  background: linear-gradient(110deg, #fff, #dff8ff 45%, var(--aw-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    filter 0.18s ease;
  will-change: opacity, transform;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .aw-footer__rotator {
    color: transparent;
  }
}

.aw-footer__rotator.is-changing,
.aw-brand__rotator.is-changing {
  opacity: 0.18;
  transform: translateY(-6px);
  filter: blur(1px);
}

.aw-footer__fixed {
  color: rgba(233, 246, 255, 0.94);
  font-weight: 1000;
}

.aw-footer__brand p {
  margin: 0;
  color: rgba(233, 246, 255, 0.68);
  font-weight: 850;
}

/* =========================================================
   v30 · Rework final AT WATER: usabilidad completa, flotantes ordenados,
   vida visual y base responsive escalable.
   ========================================================= */
html.aw-lock {
  overflow: hidden;
}

body.aw-highlight-links
  a:not(.aw-primary-btn):not(.aw-btn):not(.aw-icon-btn):not(.aw-pill-btn) {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

body.aw-high-contrast {
  --aw-bg: #f7fbff;
  --aw-bg-2: #eef7ff;
  --aw-surface: #fff;
  --aw-ink: #001421;
  --aw-ink-2: #031e31;
  --aw-muted: #263746;
  --aw-line: rgba(0, 20, 33, 0.26);
  --aw-line-strong: rgba(0, 20, 33, 0.38);
}

body.aw-high-contrast .aw-card,
body.aw-high-contrast .aw-header__inner,
body.aw-high-contrast .aw-settings-panel,
body.aw-high-contrast .aw-agent,
body.aw-high-contrast .aw-search__panel {
  border-color: rgba(0, 20, 33, 0.28) !important;
  box-shadow: 0 18px 50px rgba(0, 20, 33, 0.16);
}

body.aw-compact .aw-header__inner {
  min-height: 62px;
}

body.aw-compact .aw-nav__link {
  height: 42px;
}

body.aw-compact .aw-hero {
  padding-block: 34px 48px;
}

body.aw-compact .aw-section {
  padding-block: 48px;
}

body.aw-compact .aw-card {
  padding: 18px;
  border-radius: 24px;
}

body.aw-compact .aw-feature-band {
  padding: 30px;
  border-radius: 34px;
}

body.aw-reduce-motion *,
body.aw-reduce-motion *::before,
body.aw-reduce-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

.aw-floating-stack {
  position: fixed !important;
  right: 18px !important;
  bottom: calc(18px + var(--aw-safe-bottom)) !important;
  left: auto !important;
  z-index: 2550 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 10px !important;
  pointer-events: none;
}

.aw-floating-stack .aw-pill-btn {
  pointer-events: auto;
  min-width: 128px;
  justify-content: flex-start;
  padding-inline: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow:
    0 16px 42px rgba(6, 27, 43, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.aw-floating-stack .aw-pill-btn:first-child {
  background: rgba(255, 255, 255, 0.97);
}

.aw-floating-stack .aw-pill-btn i {
  width: 18px;
  text-align: center;
}

.aw-settings,
.aw-floating {
  display: none !important;
}

.aw-settings-panel {
  left: auto !important;
  right: 18px !important;
  bottom: calc(138px + var(--aw-safe-bottom)) !important;
  top: auto !important;
  z-index: 2540 !important;
  width: min(410px, calc(100vw - 36px)) !important;
  max-height: min(590px, calc(100svh - var(--aw-header-h) - 166px)) !important;
  padding: 22px !important;
  border-radius: 30px !important;
  transform-origin: bottom right !important;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.985),
    rgba(247, 253, 255, 0.965)
  ) !important;
}

.aw-settings-panel[hidden] {
  display: none !important;
}

.aw-settings-panel.is-open {
  display: block !important;
}

.aw-settings-panel h3 {
  letter-spacing: -0.055em;
}

.aw-settings-action {
  position: relative;
  overflow: hidden;
  transition:
    transform var(--aw-transition),
    border-color var(--aw-transition),
    background var(--aw-transition),
    box-shadow var(--aw-transition);
}

.aw-settings-action::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--aw-blue), var(--aw-cyan));
  opacity: 0.55;
}

.aw-settings-action:hover {
  transform: translateY(-1px);
  border-color: rgba(28, 168, 248, 0.3);
  box-shadow: 0 12px 30px rgba(6, 27, 43, 0.07);
}

.aw-settings-action small b {
  color: var(--aw-blue-2);
  font-weight: 1000;
}

.aw-range {
  accent-color: var(--aw-blue-2);
}

.aw-switch input:checked + .aw-switch__track {
  background: linear-gradient(135deg, var(--aw-blue), var(--aw-cyan));
  box-shadow: 0 10px 26px rgba(28, 168, 248, 0.24);
}

.aw-switch input:focus-visible + .aw-switch__track {
  outline: 3px solid rgba(28, 168, 248, 0.35);
  outline-offset: 3px;
}

.aw-agent {
  right: 18px !important;
  left: auto !important;
  bottom: calc(138px + var(--aw-safe-bottom)) !important;
  z-index: 2538 !important;
  border-radius: 28px !important;
  box-shadow: 0 28px 90px rgba(6, 27, 43, 0.26) !important;
}

.aw-agent[hidden] {
  display: none !important;
}

.aw-agent.is-open {
  display: grid !important;
}

.aw-agent__bubble {
  animation: awBubbleIn 0.22s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes awBubbleIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.aw-search {
  z-index: 5000 !important;
  padding: calc(var(--aw-header-h) + 16px) 16px
    calc(24px + var(--aw-safe-bottom)) !important;
  align-items: start !important;
}

.aw-search__panel {
  isolation: isolate;
}

.aw-search__panel::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 212, 199, 0.2), transparent 68%);
  z-index: -1;
}

.aw-search__results {
  display: grid !important;
}

.aw-search__item {
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  grid-template-areas: "glyph title arrow" "glyph desc arrow" !important;
}

.aw-search__itemIcon {
  grid-area: glyph;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f2fbff, #fff);
  color: var(--aw-blue-2);
  box-shadow: inset 0 0 0 1px rgba(28, 168, 248, 0.14);
}

.aw-search__itemIcon i {
  background: none !important;
  width: auto !important;
  height: auto !important;
  color: inherit !important;
}

.aw-search__arrow {
  grid-area: arrow !important;
  color: var(--aw-blue-2) !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 13px !important;
  display: grid !important;
  place-items: center !important;
  background: #f2fbff !important;
}

.aw-search__empty {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: #f5fbff;
  color: var(--aw-muted);
  font-weight: 850;
}

.aw-hero {
  overflow: hidden;
}

.aw-water-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(0.2px);
  opacity: 0.55;
  z-index: 0;
  animation: awFloatOrb 8s ease-in-out infinite alternate;
}

.aw-water-orb--one {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 110px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(65, 212, 199, 0.36),
    rgba(28, 168, 248, 0.12),
    transparent 68%
  );
}

.aw-water-orb--two {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 20px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(23, 136, 255, 0.22),
    rgba(65, 212, 199, 0.18),
    transparent 70%
  );
  animation-delay: -2.4s;
}

.aw-hero > .aw-shell {
  position: relative;
  z-index: 1;
}

@keyframes awFloatOrb {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(18px, -20px, 0) scale(1.06);
  }
}

.aw-hero__media::before {
  content: "";
  position: absolute;
  inset: 10% -6% auto auto;
  width: 46%;
  height: 36%;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(28, 168, 248, 0.18),
    rgba(65, 212, 199, 0.2)
  );
  filter: blur(24px);
  animation: awPulseWater 3.8s ease-in-out infinite alternate;
}

@keyframes awPulseWater {
  from {
    opacity: 0.38;
    transform: scale(0.96);
  }

  to {
    opacity: 0.74;
    transform: scale(1.05);
  }
}

.aw-primary-btn,
.aw-pill-btn,
.aw-icon-btn {
  position: relative;
  overflow: hidden;
}

.aw-primary-btn::after,
.aw-pill-btn::after,
.aw-icon-btn::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -50%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.36),
    transparent
  );
  opacity: 0;
  transition:
    transform 0.56s ease,
    opacity 0.56s ease;
}

.aw-primary-btn:hover::after,
.aw-pill-btn:hover::after,
.aw-icon-btn:hover::after {
  opacity: 1;
  transform: translateX(360%) skewX(-18deg);
}

.aw-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.58s ease,
    transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--aw-reveal-delay, 0ms);
}

.aw-reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.aw-reduce-motion .aw-reveal {
  opacity: 1 !important;
  transform: none !important;
}

.aw-card:hover,
.aw-stat:hover,
.aw-signal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(6, 27, 43, 0.12);
}

.aw-card,
.aw-stat,
.aw-signal-card {
  transition:
    transform var(--aw-transition),
    box-shadow var(--aw-transition),
    border-color var(--aw-transition);
}

.aw-footer__rotator {
  min-width: 3.1em;
  text-align: left;
}

.aw-footer__rotator.is-changing,
.aw-brand__rotator.is-changing {
  opacity: 0.14;
  transform: translateY(-7px);
  filter: blur(1px);
}

@media (max-width: 991.98px) {
  .aw-floating-stack {
    right: 12px !important;
    bottom: calc(88px + var(--aw-safe-bottom)) !important;
    gap: 9px !important;
  }

  .aw-settings-panel,
  .aw-agent {
    right: 12px !important;
    bottom: calc(194px + var(--aw-safe-bottom)) !important;
    width: min(410px, calc(100vw - 24px)) !important;
    max-height: calc(100svh - var(--aw-header-h) - 214px) !important;
  }

  .aw-search {
    padding: calc(var(--aw-header-h) + 12px) 12px
      calc(104px + var(--aw-safe-bottom)) !important;
  }

  .aw-search__panel {
    max-height: calc(100svh - var(--aw-header-h) - 126px) !important;
  }
}

@media (max-width: 767.98px) {
  .aw-floating-stack .aw-pill-btn {
    min-width: 118px;
    min-height: 46px;
    font-size: 0.88rem;
    padding-inline: 14px 15px;
  }

  .aw-search__item {
    grid-template-columns: auto minmax(0, 1fr) !important;
    grid-template-areas: "glyph title" "glyph desc" !important;
  }

  .aw-search__arrow {
    display: none !important;
  }

  .aw-search__itemIcon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .aw-water-orb--one {
    width: 190px;
    height: 190px;
    left: -90px;
    top: 150px;
  }

  .aw-water-orb--two {
    width: 240px;
    height: 240px;
    right: -120px;
    bottom: 60px;
  }
}

@media (max-width: 560px) {
  .aw-floating-stack {
    right: 10px !important;
    bottom: calc(86px + var(--aw-safe-bottom)) !important;
  }

  .aw-floating-stack .aw-pill-btn {
    min-width: 108px;
    min-height: 44px;
    font-size: 0.82rem;
    padding-inline: 12px;
  }

  .aw-settings-panel,
  .aw-agent {
    right: 10px !important;
    left: 10px !important;
    width: auto !important;
    bottom: calc(188px + var(--aw-safe-bottom)) !important;
    max-height: calc(100svh - var(--aw-header-h) - 206px) !important;
    border-radius: 24px !important;
  }

  .aw-settings-panel {
    padding: 18px !important;
  }

  .aw-search__panel {
    width: 100% !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }
}

@media (max-width: 420px) {
  .aw-floating-stack .aw-pill-btn {
    width: 48px;
    min-width: 48px;
    padding: 0;
    justify-content: center;
  }

  .aw-floating-stack .aw-pill-btn span {
    display: none !important;
  }

  .aw-settings-panel,
  .aw-agent {
    bottom: calc(188px + var(--aw-safe-bottom)) !important;
    max-height: calc(100svh - var(--aw-header-h) - 204px) !important;
  }
}

/* =========================================================
   AT WATER V4 footer premium · basado en preview entregado
   Moderno, vivo, responsive y usable sin romper el template
   ========================================================= */
.aw-footer.aw-footer--preview {
  --footer-ink: #eaf6ff;
  --footer-muted: rgba(234, 246, 255, 0.72);
  --footer-soft: rgba(255, 255, 255, 0.08);
  --footer-line: rgba(255, 255, 255, 0.16);
  margin-top: clamp(32px, 5vw, 72px);
  padding: clamp(42px, 6vw, 74px) 0 26px;
  border-radius: clamp(26px, 4vw, 54px) clamp(26px, 4vw, 54px) 0 0;
  color: var(--footer-ink);
  background:
    radial-gradient(
      circle at 78% 14%,
      rgba(85, 222, 215, 0.26),
      transparent 25rem
    ),
    radial-gradient(
      circle at 16% 6%,
      rgba(28, 168, 248, 0.18),
      transparent 28rem
    ),
    linear-gradient(135deg, #04121d 0%, #06263d 56%, #0b4055 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 -22px 74px rgba(7, 28, 45, 0.16);
  isolation: isolate;
}

.aw-footer.aw-footer--preview::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.3));
}

.aw-footer.aw-footer--preview::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(107, 232, 224, 0.52),
    rgba(49, 159, 255, 0.46),
    transparent
  );
  opacity: 0.9;
}

.aw-footer__shell {
  position: relative;
  z-index: 1;
}

.aw-footer__aura {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.62;
}

.aw-footer__aura--left {
  width: 28rem;
  height: 28rem;
  left: -10rem;
  top: 4rem;
  background: radial-gradient(
    circle,
    rgba(36, 152, 255, 0.16),
    transparent 68%
  );
  animation: aw-breathe 6s ease-in-out infinite;
}

.aw-footer__aura--right {
  width: 24rem;
  height: 24rem;
  right: -8rem;
  top: -4rem;
  background: radial-gradient(circle, rgba(93, 237, 217, 0.2), transparent 70%);
  animation: aw-breathe 7s ease-in-out infinite reverse;
}

.aw-footer__network {
  position: absolute;
  right: 0;
  top: 10px;
  width: min(52%, 760px);
  height: 250px;
  opacity: 0.82;
  pointer-events: none;
  z-index: -1;
}

.aw-footer__network svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.aw-footer__network path {
  fill: none;
  stroke: rgba(203, 238, 255, 0.42);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 12 16;
  animation: aw-flow-line 8s linear infinite;
}

.aw-footer__network circle {
  fill: #ccefff;
  filter: drop-shadow(0 0 12px rgba(96, 235, 218, 0.66));
}

.aw-net-line--slow {
  animation-duration: 11s !important;
  opacity: 0.72;
}

.aw-net-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #79f0dd;
  box-shadow:
    0 0 0 8px rgba(121, 240, 221, 0.12),
    0 0 30px rgba(121, 240, 221, 0.45);
  animation: aw-pulse-dot 2.6s ease-in-out infinite;
}

.aw-net-dot--one {
  right: 34%;
  top: 45px;
}

.aw-net-dot--two {
  right: 10%;
  top: 112px;
  animation-delay: 0.7s;
}

.aw-net-dot--three {
  right: 48%;
  top: 176px;
  animation-delay: 1.2s;
}

.aw-footer__promise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  min-height: clamp(260px, 32vw, 380px);
  padding: clamp(8px, 2vw, 20px) 0 clamp(28px, 4vw, 50px);
}

.aw-footer__promise-copy {
  max-width: 760px;
}

.aw-eyebrow--dark {
  color: #87efe4;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.13);
}

.aw-footer__promise h2 {
  font-size: clamp(2.35rem, 5.5vw, 5.15rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  font-weight: 1000;
  margin: 14px 0 14px;
  color: #fff;
  text-wrap: balance;
}

.aw-footer__promise p {
  max-width: 670px;
  color: var(--footer-muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 750;
  line-height: 1.6;
  margin: 0;
}

.aw-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.aw-btn--footer {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-weight: 950;
}

.aw-btn--footer:hover {
  background: #fff;
  color: #061b2b;
  transform: translateY(-2px);
}

.aw-btn--footer-ghost {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.28);
}

.aw-footer__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-self: center;
}

.aw-footer__metrics article {
  position: relative;
  min-height: 122px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.045)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(16px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.aw-footer__metrics article:hover {
  transform: translateY(-5px);
  border-color: rgba(107, 232, 224, 0.46);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.07)
  );
}

.aw-footer__metrics i {
  font-size: 1.25rem;
  color: #86f3df;
}

.aw-footer__metrics small {
  display: block;
  margin-top: 12px;
  color: rgba(234, 246, 255, 0.66);
  font-weight: 850;
}

.aw-footer__metrics strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1;
  color: #bfeaff;
  letter-spacing: -0.06em;
  font-weight: 900;
  margin-top: 3px;
}

.aw-footer__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 0 0 18px;
}

.aw-footer__divider span {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
}

.aw-footer__divider i {
  color: #84eee2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px rgba(84, 238, 226, 0.16);
}

.aw-footer__map {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2.9fr);
  gap: clamp(22px, 4vw, 46px);
  padding: 10px 0 20px;
}

.aw-footer__identity {
  min-width: 0;
}

.aw-footer__brand--preview {
  align-items: center;
  margin-bottom: 18px;
}

.aw-footer__brand--preview img {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  filter: drop-shadow(0 14px 28px rgba(49, 159, 255, 0.22));
  animation: aw-drop-float 4.8s ease-in-out infinite;
}

.aw-footer__brand--preview h3 {
  font-size: 1.22rem;
  margin: 0 0 2px;
  text-transform: uppercase;
  letter-spacing: -0.045em;
}

.aw-footer__brand--preview p {
  margin: 0;
  color: rgba(234, 246, 255, 0.62);
  font-weight: 900;
  font-size: 0.85rem;
}

.aw-footer__rotator {
  color: #68e5db;
  min-width: 2em;
}

.aw-footer__fixed {
  color: #fff;
}

.aw-footer__microcopy {
  font-weight: 780;
  max-width: 310px;
  margin: 0 0 18px;
  color: var(--footer-muted);
}

.aw-social--preview {
  display: grid;
  gap: 10px;
  justify-content: start;
}

.aw-social--preview a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(234, 246, 255, 0.82);
  font-weight: 900;
}

.aw-social--preview a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateX(4px);
}

.aw-footer__links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 32px);
}

.aw-footer__column {
  position: relative;
  min-width: 0;
}

.aw-footer__column::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 13px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.23), transparent);
  transform: translateX(-12px);
  opacity: 0.62;
}

.aw-footer__column h4 {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 10px;
  background: #08283b;
  color: #fff;
  font-size: 1rem;
  margin: 0 0 10px;
  letter-spacing: -0.025em;
}

.aw-footer__column h4 i {
  font-size: 0.95rem;
  color: #caeafa;
  opacity: 0.86;
}

.aw-footer__column a {
  display: flex;
  width: max-content;
  max-width: 100%;
  color: rgba(234, 246, 255, 0.74);
  font-weight: 820;
  line-height: 1.24;
  margin: 8px 0;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.aw-footer__column a:hover {
  color: #fff;
  transform: translateX(4px);
}

.aw-footer__local--preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px;
  align-items: center;
  margin-top: 8px;
  padding: 20px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.aw-footer__local--preview p {
  margin: 0;
  color: rgba(234, 246, 255, 0.76);
  font-weight: 760;
}

.aw-footer__local--preview strong {
  color: #fff;
}

.aw-footer__local--preview span {
  color: rgba(234, 246, 255, 0.46);
  margin: 0 4px;
}

.aw-footer__newsletter--preview {
  display: flex;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  margin: 0;
}

.aw-footer__newsletter--preview input {
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
  padding: 0 48px 0 18px;
  color: #fff;
}

.aw-footer__newsletter--preview button {
  margin-left: -44px;
  width: 44px;
  height: 44px;
  background: transparent;
  color: #fff;
  border: 0;
  box-shadow: none;
}

.aw-footer__newsletter--preview button:hover {
  transform: translateX(3px);
  color: #85eee4;
}

.aw-footer__bottom--preview {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  color: rgba(234, 246, 255, 0.58);
  font-size: 0.92rem;
}

.aw-online {
  white-space: nowrap;
}

@keyframes aw-flow-line {
  to {
    stroke-dashoffset: -112;
  }
}

@keyframes aw-pulse-dot {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.64;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes aw-breathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.96);
  }

  50% {
    transform: translate3d(14px, -10px, 0) scale(1.04);
  }
}

@keyframes aw-drop-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.aw-floating-stack {
  right: clamp(16px, 2.2vw, 30px) !important;
  bottom: calc(20px + var(--aw-safe-bottom)) !important;
  display: grid !important;
  grid-auto-flow: row !important;
  gap: 10px !important;
  z-index: 2750 !important;
}

.aw-floating-stack .aw-pill-btn {
  min-width: 142px !important;
  justify-content: center !important;
  border-radius: 999px !important;
  box-shadow: 0 18px 44px rgba(4, 19, 31, 0.18) !important;
}

.aw-floating-stack .aw-pill-btn--agent {
  background: rgba(6, 27, 43, 0.88) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.aw-settings-panel,
.aw-agent {
  right: clamp(16px, 2.2vw, 30px) !important;
  left: auto !important;
  bottom: calc(138px + var(--aw-safe-bottom)) !important;
}

.aw-settings-panel.is-open,
.aw-agent.is-open {
  animation: aw-panel-in 0.28s ease both;
}

@keyframes aw-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.aw-reduce-motion .aw-footer__network path,
body.aw-reduce-motion .aw-net-dot,
body.aw-reduce-motion .aw-footer__aura,
body.aw-reduce-motion .aw-footer__brand--preview img {
  animation: none !important;
}

body.aw-reduce-motion .aw-footer__metrics article:hover,
body.aw-reduce-motion .aw-footer__column a:hover,
body.aw-reduce-motion .aw-social--preview a:hover {
  transform: none !important;
}

body.aw-high-contrast .aw-footer.aw-footer--preview {
  background: #001322 !important;
  color: #fff !important;
}

body.aw-high-contrast .aw-footer__metrics article,
body.aw-high-contrast .aw-social--preview a,
body.aw-high-contrast .aw-btn--footer,
body.aw-high-contrast .aw-footer__newsletter--preview input {
  border-color: rgba(255, 255, 255, 0.55) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

body.aw-highlight-links .aw-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

@media (max-width: 1199.98px) {
  .aw-footer__promise {
    grid-template-columns: 1fr;
  }

  .aw-footer__network {
    width: 100%;
    height: 240px;
    opacity: 0.42;
  }

  .aw-footer__metrics {
    max-width: 720px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .aw-footer__metrics article {
    min-height: 112px;
  }

  .aw-footer__links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aw-footer__map {
    grid-template-columns: 1fr;
  }

  .aw-footer__identity {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 1fr;
    gap: 18px;
    align-items: start;
  }

  .aw-social--preview {
    align-self: start;
  }
}

@media (max-width: 767.98px) {
  .aw-footer.aw-footer--preview {
    border-radius: 30px 30px 0 0;
    margin-top: 34px;
    padding-bottom: calc(96px + var(--aw-safe-bottom));
  }

  .aw-footer__promise {
    min-height: auto;
    padding-top: 6px;
  }

  .aw-footer__promise h2 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .aw-footer__cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .aw-btn--footer {
    justify-content: center;
    padding-inline: 12px;
  }

  .aw-footer__metrics {
    grid-template-columns: 1fr 1fr;
  }

  .aw-footer__map {
    gap: 18px;
  }

  .aw-footer__identity {
    display: block;
  }

  .aw-footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }

  .aw-footer__column::before {
    opacity: 0.45;
  }

  .aw-footer__local--preview {
    grid-template-columns: 1fr;
  }

  .aw-footer__newsletter--preview {
    justify-self: stretch;
    max-width: none;
  }

  .aw-footer__bottom--preview {
    display: grid;
    gap: 8px;
  }

  .aw-floating-stack {
    right: 12px !important;
    bottom: calc(82px + var(--aw-safe-bottom)) !important;
  }

  .aw-floating-stack .aw-pill-btn {
    min-width: 122px !important;
    min-height: 46px !important;
  }

  .aw-settings-panel,
  .aw-agent {
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
    bottom: calc(190px + var(--aw-safe-bottom)) !important;
    max-height: calc(100svh - 220px) !important;
  }
}

@media (max-width: 479.98px) {
  .aw-footer__cta-actions {
    grid-template-columns: 1fr;
  }

  .aw-footer__metrics {
    grid-template-columns: 1fr;
  }

  .aw-footer__links {
    grid-template-columns: 1fr;
  }

  .aw-footer__column h4 {
    background: #07263a;
  }

  .aw-social--preview a {
    width: 100%;
    justify-content: center;
  }

  .aw-floating-stack .aw-pill-btn {
    width: 52px !important;
    min-width: 52px !important;
    padding: 0 !important;
  }

  .aw-floating-stack .aw-pill-btn span {
    display: none !important;
  }

  .aw-settings-panel,
  .aw-agent {
    bottom: calc(184px + var(--aw-safe-bottom)) !important;
    max-height: calc(100svh - 208px) !important;
  }
}
/* Public content system shared by Homepage hubs (phases 11-20). */
.aw-phase-page{--aw-ink:#09263b;--aw-muted:#526b7c;--aw-line:#dce8ee;--aw-aqua:#13a9ca;color:var(--aw-ink);background:#fff}.aw-phase-page *{box-sizing:border-box}.aw-phase-hero{padding:clamp(4rem,8vw,7rem) 0;background:radial-gradient(circle at 85% 15%,rgba(84,201,237,.24),transparent 34%),linear-gradient(145deg,#061b2b,#0b4561);color:#fff}.aw-phase-hero__grid,.aw-phase-cta__inner{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:clamp(2rem,5vw,5rem);align-items:center}.aw-phase-hero h1{max-width:850px;margin:.55rem 0 1.1rem;font-size:clamp(2.35rem,5vw,4.7rem);line-height:1.03;letter-spacing:-.04em;color:#fff}.aw-phase-kicker{margin:0;color:#55d5ee;font-size:.78rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.aw-phase-lead,.aw-phase-hero p{max-width:760px;color:#d9edf5;font-size:clamp(1rem,1.6vw,1.25rem);line-height:1.75}.aw-phase-actions{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1.4rem}.aw-phase-actions .aw-btn,.aw-phase-actions .aw-primary-btn{min-height:48px;padding:.75rem 1.15rem;border-radius:999px;justify-content:center}.aw-phase-summary{padding:clamp(1.35rem,3vw,2rem);border:1px solid rgba(255,255,255,.17);border-radius:24px;background:rgba(255,255,255,.09);box-shadow:0 24px 60px rgba(0,0,0,.18);backdrop-filter:blur(14px)}.aw-phase-summary h2{margin:.9rem 0 .6rem;color:#fff;font-size:1.35rem}.aw-phase-summary p{margin:0;font-size:.96rem}.aw-phase-summary__icon{display:grid;width:52px;height:52px;place-items:center;border-radius:16px;background:#54c9ed;color:#062337;font-size:1.25rem}.aw-phase-section{padding-top:clamp(3.5rem,7vw,6rem);padding-bottom:clamp(3.5rem,7vw,6rem)}.aw-phase-heading{max-width:780px;margin-bottom:2rem}.aw-phase-heading h2,.aw-phase-cta h2{margin:.55rem 0 .8rem;font-size:clamp(1.85rem,3.4vw,3rem);line-height:1.1;letter-spacing:-.03em}.aw-phase-heading>p:last-child{color:var(--aw-muted);font-size:1.06rem;line-height:1.75}.aw-phase-grid{display:grid;gap:1rem}.aw-phase-grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}.aw-phase-grid--4{grid-template-columns:repeat(4,minmax(0,1fr))}.aw-phase-card{padding:1.5rem;border:1px solid var(--aw-line);border-radius:20px;background:#fff;box-shadow:0 14px 40px rgba(6,42,61,.06)}.aw-phase-card>i{margin-bottom:1rem;color:var(--aw-aqua);font-size:1.35rem}.aw-phase-card>span{display:inline-flex;margin-bottom:1rem;color:#0785a5;font-weight:800}.aw-phase-card h3{margin:0 0 .55rem;font-size:1.12rem}.aw-phase-card p{margin:0;color:var(--aw-muted);line-height:1.65}.aw-phase-band{background:#f2f9fb}.aw-phase-steps{display:grid;margin:0;padding:0;list-style:none;counter-reset:aw-step}.aw-phase-steps li{display:grid;grid-template-columns:minmax(180px,.45fr) 1fr;gap:1rem;padding:1.15rem 0;border-bottom:1px solid var(--aw-line);counter-increment:aw-step}.aw-phase-steps li strong:before{content:counter(aw-step,decimal-leading-zero) "  ";color:#159dbb}.aw-phase-steps li span{color:var(--aw-muted)}.aw-phase-cta{padding:clamp(3rem,6vw,5rem) 0;background:#082d43;color:#fff}.aw-phase-cta h2{color:#fff}.aw-phase-cta p:not(.aw-phase-kicker){margin:0;color:#cfe4ec}.aw-phase-cta .aw-btn{border-color:rgba(255,255,255,.35);color:#fff}.aw-status-note{padding:1rem 1.1rem;border-left:4px solid #16a4c4;border-radius:12px;background:#eaf8fb;color:#214a5c}.aw-empty-state{padding:2rem;border:1px dashed #b7d4df;border-radius:18px;text-align:center;background:#f8fcfd}.aw-badge-verified{display:inline-flex;align-items:center;gap:.35rem;padding:.35rem .6rem;border-radius:999px;background:#e6f8ef;color:#13734a;font-size:.75rem;font-weight:800}.aw-badge-directory{display:inline-flex;padding:.35rem .6rem;border-radius:999px;background:#eef3f6;color:#516a79;font-size:.75rem;font-weight:700}
@media(max-width:991.98px){.aw-phase-hero__grid,.aw-phase-cta__inner{grid-template-columns:1fr}.aw-phase-grid--4{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:767.98px){.aw-phase-grid--3,.aw-phase-grid--4{grid-template-columns:1fr}.aw-phase-steps li{grid-template-columns:1fr;gap:.35rem}.aw-phase-actions>a{width:100%}}
