:root{
  --abm-bg:#f7f8fb;
  --abm-bg-2:#f3f6fa;
  --abm-surface:#ffffff;
  --abm-surface-soft:rgba(255,255,255,.94);

  --abm-navy:#0f2740;
  --abm-primary:#0b2545;
  --abm-primary-2:#14355b;
  --abm-primary-3:#1a4677;

  --abm-ink:#111827;
  --abm-muted:#6b7280;
  --abm-muted-2:#64748b;

  --abm-line:rgba(15,39,64,.10);
  --abm-line-strong:rgba(15,39,64,.16);

  --abm-accent:#f5b301;
  --abm-accent-2:#c88700;
  --abm-success:#10b981;
  --abm-warning:#f59e0b;
  --abm-danger:#ef4444;

  --abm-radius-sm:14px;
  --abm-radius:18px;
  --abm-radius-lg:24px;
  --abm-radius-xl:32px;
  --abm-pill:999px;

  --abm-shadow-xs:0 4px 10px rgba(15,39,64,.04);
  --abm-shadow-sm:0 8px 20px rgba(15,39,64,.06);
  --abm-shadow:0 18px 42px rgba(15,39,64,.08);
  --abm-shadow-lg:0 24px 60px rgba(15,39,64,.12);

  --abm-container:1440px;
  --abm-container-wide:1440px;
  --abm-header-shell:1440px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  width:100%;
  min-width:320px;
  scroll-behavior:smooth;
}

body{
  width:100%;
  min-width:320px;
  margin:0;
  overflow-x:hidden;
  background:
    linear-gradient(180deg,rgba(255,255,255,.94),rgba(247,248,251,.98)),
    var(--abm-bg);
  color:var(--abm-ink);
  font-feature-settings:"liga" 1,"kern" 1;
  text-rendering:optimizeLegibility;
}

a{
  color:inherit;
}

a:hover{
  color:inherit;
}

::selection{
  background:rgba(245,179,1,.24);
  color:#111827;
}

.abm-site-wrap{
  width:100%;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  position:relative;
  isolation:isolate;
}

.abm-site-wrap::before{
  content:"";
  position:fixed;
  inset:0 0 auto 0;
  height:220px;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 0%,rgba(245,179,1,.09),transparent 32%),
    radial-gradient(circle at 88% 0%,rgba(13,110,253,.055),transparent 30%);
  z-index:-1;
}

.abm-main{
  flex:1 0 auto;
  width:100%;
  padding-top:24px;
}

.abm-container{
  width:100%;
  max-width:var(--abm-container);
  margin-left:auto;
  margin-right:auto;
  padding-left:28px;
  padding-right:28px;
}

.abm-header .abm-container,
.abm-proads-dock .abm-container,
.abm-header-intelligence-zone .abm-container{
  max-width:var(--abm-header-shell);
}

.abm-topbar .abm-container,
.abm-footer .abm-container{
  max-width:var(--abm-container-wide);
}

.abm-main > .abm-container{
  max-width:var(--abm-container);
}

.abm-shell{
  width:100%;
  max-width:var(--abm-container);
  margin:0 auto;
  padding:24px 0 40px;
}

.abm-shell--wide{
  max-width:var(--abm-container-wide);
}

.abm-skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.abm-skip-link:focus{
  position:fixed;
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:.75rem 1rem;
  background:#111827;
  color:#fff;
  border-radius:999px;
  z-index:3000;
  text-decoration:none;
  box-shadow:var(--abm-shadow);
}

.abm-pill{
  border-radius:999px !important;
}

.abm-kicker{
  margin:0 0 6px;
  color:#9b6900;
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.abm-title{
  margin:0 0 8px;
  font-size:clamp(2.15rem,3vw,3.25rem);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.05em;
  color:var(--abm-ink);
  text-wrap:balance;
}

.abm-subtitle,
.abm-sub{
  margin:0;
  max-width:920px;
  color:var(--abm-muted);
  font-size:1rem;
  line-height:1.62;
}

.abm-copy{
  color:#475569;
  font-size:.92rem;
  line-height:1.58;
}

.abm-mini,
.abm-mini-note{
  color:var(--abm-muted-2);
  font-size:.82rem;
  line-height:1.45;
}

.abm-card{
  background:#fff;
  border:1px solid var(--abm-line);
  border-radius:var(--abm-radius-lg);
  box-shadow:var(--abm-shadow);
}

.abm-card-soft,
.abm-card--soft{
  background:
    radial-gradient(circle at top right,rgba(245,179,1,.12),transparent 26%),
    linear-gradient(135deg,rgba(245,179,1,.07),rgba(13,110,253,.04));
}

.abm-card-body{
  padding:20px;
}

.abm-section{
  padding:18px;
}

.abm-section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.abm-section-title{
  margin:0;
  font-size:1.08rem;
  font-weight:900;
  color:#111827;
}

.abm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  min-height:44px;
  padding:.78rem 1rem;
  border-radius:var(--abm-pill);
  border:1px solid rgba(15,39,64,.14);
  text-decoration:none;
  font-weight:800;
  line-height:1;
  color:#111827;
  background:#fff;
  transition:.16s ease;
  cursor:pointer;
}

.abm-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(15,39,64,.10);
  color:#111827;
}

.abm-btn:focus-visible{
  outline:none;
  box-shadow:
    0 0 0 4px rgba(13,110,253,.10),
    0 10px 24px rgba(15,39,64,.10);
  border-color:rgba(13,110,253,.34);
}

.abm-btn--primary{
  background:var(--abm-accent);
  border-color:var(--abm-accent);
  color:#111827;
}

.abm-btn--primary:hover{
  background:#c99432;
  border-color:#c99432;
}

.abm-btn--dark{
  background:linear-gradient(180deg,#12355b 0%,#0b2545 100%);
  border-color:#0b2545;
  color:#fff;
  box-shadow:0 8px 20px rgba(11,37,69,.16);
}

.abm-btn--dark:hover{
  color:#fff;
  background:linear-gradient(180deg,#173f6b 0%,#0b2545 100%);
}

.abm-btn--ghost{
  background:#fff;
}

.abm-btn--sm{
  min-height:36px;
  padding:.52rem .85rem;
  font-size:.86rem;
}

.abm-chip{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.34rem .66rem;
  border-radius:var(--abm-pill);
  background:#fff;
  border:1px solid rgba(15,39,64,.10);
  font-size:.76rem;
  font-weight:800;
  color:#111827;
  white-space:nowrap;
}

.abm-chip--warn{
  background:rgba(245,179,1,.14);
  border-color:rgba(245,179,1,.24);
  color:#8a6200;
}

.abm-chip--good{
  background:rgba(16,185,129,.12);
  border-color:rgba(16,185,129,.20);
  color:#065f46;
}

.abm-chip--danger{
  background:rgba(239,68,68,.10);
  border-color:rgba(239,68,68,.18);
  color:#991b1b;
}

.abm-chip--dark{
  background:#111827;
  border-color:#111827;
  color:#fff;
}

.abm-chip--ghost{
  background:rgba(255,255,255,.78);
}

.abm-empty{
  padding:34px 18px;
  text-align:center;
}

.abm-empty h2{
  margin:0 0 8px;
  font-size:1.2rem;
  font-weight:900;
  color:#111827;
}

.abm-empty p{
  margin:0;
  color:var(--abm-muted);
  line-height:1.6;
}

/* Loader */

.abm-loader{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  z-index:var(--abm-z-loader, 3000);
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:opacity .22s ease;
}

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

.abm-loader-spinner{
  width:42px;
  height:42px;
  border-radius:999px;
  border:4px solid rgba(15,39,64,.12);
  border-top-color:#f5b301;
  animation:abmSpin .8s linear infinite;
  box-shadow:0 12px 28px rgba(15,39,64,.16);
}

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

/* Topbar */

.abm-topbar{
  display:none;
}

/* Header */

.abm-header{
  position:sticky;
  top:0;
  z-index:1040;
  background:transparent;
  border:0;
  box-shadow:none;
}

.abm-header-inner{
  padding-top:0;
  padding-bottom:0;
}

.abm-header-panel{
  margin:14px 0 0;
  padding:0 16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  background:
    radial-gradient(circle at 15% 0%,rgba(245,179,1,.16),transparent 30%),
    radial-gradient(circle at 88% 0%,rgba(13,110,253,.18),transparent 34%),
    linear-gradient(135deg,#071c31 0%,#0b2545 50%,#0f2740 100%);
  box-shadow:0 18px 42px rgba(15,39,64,.18);
  overflow:visible;
}

.abm-header-main{
  min-height:72px;
  padding:8px 0 7px;
  display:grid;
  grid-template-columns:minmax(230px,auto) minmax(320px,1fr) minmax(220px,auto);
  align-items:center;
  gap:14px;
  border-bottom:1px solid rgba(255,255,255,.11);
}

.abm-brand{
  display:flex;
  align-items:center;
  gap:.72rem;
  text-decoration:none;
  min-width:0;
}

.abm-brand-logo{
  width:50px;
  height:50px;
  object-fit:contain;
  flex:0 0 auto;
  border-radius:14px;
  background:#0b2545;
  padding:4px;
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 12px 26px rgba(0,0,0,.22);
}

.abm-brand-title{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:900;
  letter-spacing:-.04em;
  color:#fff;
  line-height:.96;
  font-size:1.52rem;
  margin:0;
  text-wrap:balance;
}

.abm-brand-sub{
  margin:.14rem 0 0;
  color:rgba(255,255,255,.74);
  font-size:.72rem;
  font-weight:700;
  line-height:1.25;
}

.abm-search{
  width:100%;
  min-width:0;
}

.abm-search-form{
  display:flex;
  align-items:center;
  gap:8px;
  width:100%;
}

.abm-search-input{
  width:100%;
  min-height:40px;
  border-radius:999px !important;
  border:1px solid rgba(255,255,255,.18) !important;
  background:#fff !important;
  padding-left:1.05rem !important;
  padding-right:3.35rem !important;
  font-size:.84rem;
  font-weight:700;
  color:var(--abm-ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 10px 24px rgba(0,0,0,.14) !important;
}

.abm-search-input::placeholder{
  color:#98a2b3;
  font-weight:700;
}

.abm-search-input:focus{
  border-color:rgba(245,179,1,.62) !important;
  box-shadow:
    0 0 0 4px rgba(245,179,1,.12),
    0 10px 24px rgba(0,0,0,.14) !important;
}

.abm-search-btn{
  min-height:40px;
  min-width:40px;
  border-radius:999px !important;
  font-weight:900;
  padding-left:.72rem !important;
  padding-right:.72rem !important;
  flex:0 0 auto;
  background:linear-gradient(180deg,#1e6bff 0%,#1652f0 100%) !important;
  border-color:rgba(255,255,255,.18) !important;
  color:#fff !important;
  box-shadow:0 12px 26px rgba(22,82,240,.26);
}

.abm-search-btn:hover{
  background:linear-gradient(180deg,#2d75ff 0%,#1652f0 100%) !important;
}

.abm-header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  min-width:0;
}

.abm-header-cta{
  min-height:40px;
  min-width:164px;
  border-radius:999px;
  padding:0 15px;
  background:linear-gradient(180deg,#f7c542 0%,#f5b301 100%);
  border:1px solid rgba(155,105,0,.28);
  color:#111827;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  font-weight:900;
  font-size:.8rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.32),
    0 12px 26px rgba(245,179,1,.25);
  transition:.16s ease;
  white-space:nowrap;
}

.abm-header-cta:hover{
  color:#111827;
  transform:translateY(-1px);
  background:linear-gradient(180deg,#ffd35b 0%,#f5b301 100%);
}

.abm-header-cta-icon{
  font-size:.92rem;
  line-height:1;
}

.abm-language-shell{
  min-height:40px;
  min-width:86px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.96);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  position:relative;
  cursor:pointer;
}

.abm-language-flag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:58px;
  color:#0b2545;
  font-size:.88rem;
  font-weight:950;
  line-height:1;
  white-space:nowrap;
}

.abm-language-chevron{
  color:#0b2545;
  font-weight:950;
  line-height:1;
}

.abm-language-shell .abm-language-switcher{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  min-width:0;
  opacity:0;
  cursor:pointer;
}

/* Navigation */

.abm-nav-wrap{
  width:100%;
}

.abm-header-nav{
  min-height:44px;
  padding:7px 0 9px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:0;
  flex-wrap:nowrap;
  background:transparent;
}

.abm-nav-main{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:nowrap;
  position:relative;
  min-width:0;
  max-width:100%;
}

.abm-navbtn{
  min-height:30px;
  padding:0 11px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#fff;
  font-weight:850;
  font-size:.72rem;
  line-height:1;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.16s ease;
  white-space:nowrap;
  position:relative;
}

.abm-navbtn:hover{
  background:rgba(255,255,255,.17);
  color:#fff;
}

.abm-navbtn:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(245,179,1,.14);
}

.abm-navbtn--ghost{
  background:#fff;
  color:#0f2740;
  border-color:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.abm-navbtn--ghost:hover{
  background:#fff;
  color:#0f2740;
}

.abm-account-toggle{
  gap:.38rem;
  flex:0 0 auto;
  width:auto;
}

.abm-account-toggle[aria-expanded="true"]{
  background:rgba(255,255,255,.18);
  color:#fff;
}

.abm-account-inline-icon{
  font-size:.82rem;
  line-height:1;
}

.abm-account-inline-arrow{
  font-size:.84rem;
  color:rgba(255,255,255,.72);
  line-height:1;
  transition:.16s ease;
}

.abm-account-toggle[aria-expanded="true"] .abm-account-inline-arrow{
  transform:rotate(90deg);
}

.abm-account-menu-inline{
  display:none;
  flex:0 1 auto;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:center;
  gap:8px;
  min-width:0;
  width:auto;
  max-width:none;
  padding:0;
  margin:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:hidden;
}

.abm-account-menu-inline.is-open{
  display:inline-flex;
}

.abm-account-menu-inline[hidden]{
  display:none !important;
}

.abm-account-inline-link,
.abm-account-logout-btn{
  width:auto;
  max-width:112px;
  min-height:38px;
  padding:0 12px;
  border-radius:999px;
  justify-content:center;
  background:rgba(255,255,255,.96);
  color:#0f2740;
  border:1px solid rgba(255,255,255,.22);
  font-size:.72rem;
  font-weight:850;
  box-shadow:0 8px 18px rgba(15,39,64,.10);
  white-space:nowrap;
  flex:0 0 auto;
  overflow:hidden;
  text-overflow:ellipsis;
}

.abm-account-inline-link:hover,
.abm-account-logout-btn:hover{
  background:#fff;
  color:#0b2545;
}

.abm-account-inline-link.is-disabled{
  color:#94a3b8;
  background:#f8fafc;
  cursor:not-allowed;
  pointer-events:none;
}

.abm-account-logout-form{
  width:auto;
  max-width:112px;
  min-height:38px;
  display:inline-flex;
  align-items:center;
  margin:0;
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
  flex:0 0 auto;
}

.abm-account-logout-btn{
  appearance:none;
  -webkit-appearance:none;
  font-family:inherit;
  cursor:pointer;
}

/* PRO Ads dock */

.abm-proads-dock{
  width:100%;
  padding-top:10px;
  position:relative;
  z-index:10;
}

.abm-proads-dock.is-dismissed,
.abm-proads-dock[hidden]{
  display:none !important;
}

.abm-proads-dock > .abm-container{
  max-width:var(--abm-header-shell);
  padding-left:28px;
  padding-right:28px;
}

.abm-proads-dock-inner{
  position:relative;
  width:100%;
  min-height:52px;
  display:flex;
  align-items:center;
  padding:0 60px 0 20px;
  border:1px solid rgba(15,39,64,.08);
  border-radius:24px;
  background:
    radial-gradient(circle at 88% 50%,rgba(245,179,1,.18),transparent 30%),
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,250,242,.98));
  box-shadow:0 18px 42px rgba(15,39,64,.08);
  overflow:hidden;
}

.abm-proads-dock-carousel{
  width:100%;
  min-width:0;
}

.abm-proads-dock-link{
  width:100%;
  min-height:52px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#111827;
}

.abm-proads-dock-link:hover{
  color:#111827;
}

.abm-proads-dock-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:26px;
  padding:0 11px;
  border-radius:999px;
  background:#0b2545;
  border:1px solid rgba(245,179,1,.28);
  color:#f5b301;
  font-size:.64rem;
  font-weight:950;
  letter-spacing:.06em;
  text-transform:uppercase;
  white-space:nowrap;
}

.abm-proads-dock-copy{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#0f2740;
  font-size:.84rem;
  font-weight:900;
  line-height:1.12;
}

.abm-proads-dock-sub{
  margin-left:.42rem;
  color:#64748b;
  font-size:.72rem;
  font-weight:750;
}

.abm-proads-dock-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 14px;
  border-radius:999px;
  background:linear-gradient(180deg,#f7c542,#f5b301);
  border:1px solid rgba(155,105,0,.22);
  color:#111827;
  font-size:.72rem;
  font-weight:950;
  white-space:nowrap;
  box-shadow:0 8px 18px rgba(245,179,1,.16);
}

.abm-proads-dock-close{
  position:absolute;
  top:50%;
  right:14px;
  transform:translateY(-50%);
  z-index:2;
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  border:1px solid rgba(239,68,68,.42);
  background:rgba(255,255,255,.94);
  color:#dc2626;
  font-size:16px;
  line-height:1;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 6px 14px rgba(15,39,64,.08);
}

.abm-proads-dock-close:hover{
  background:#dc2626;
  border-color:#dc2626;
  color:#fff;
}

.abm-workspace-page .abm-main{
  padding-top:14px;
}

.abm-workspace-page .abm-header-panel{
  margin-top:8px;
  padding-left:14px;
  padding-right:14px;
  border-radius:24px;
  box-shadow:0 14px 30px rgba(15,39,64,.14);
}

.abm-workspace-page .abm-header-main{
  min-height:58px;
  padding:6px 0;
  gap:12px;
}

.abm-workspace-page .abm-brand-logo{
  width:42px;
  height:42px;
  border-radius:12px;
}

.abm-workspace-page .abm-brand-title{
  font-size:1.28rem;
}

.abm-workspace-page .abm-brand-sub{
  margin-top:.08rem;
  font-size:.66rem;
}

.abm-workspace-page .abm-search-input{
  min-height:34px;
  font-size:.8rem;
}

.abm-workspace-page .abm-search-btn{
  min-height:34px;
  min-width:34px;
}

.abm-workspace-page .abm-header-cta{
  min-height:34px;
  min-width:146px;
  font-size:.76rem;
}

.abm-workspace-page .abm-language-shell{
  min-height:34px;
  min-width:78px;
}

.abm-workspace-page .abm-header-nav{
  min-height:34px;
  padding:4px 0 6px;
}

.abm-workspace-page .abm-navbtn{
  min-height:26px;
  padding-left:10px;
  padding-right:10px;
  font-size:.68rem;
}

.abm-workspace-page .abm-proads-dock{
  padding-top:6px;
}

.abm-workspace-page .abm-proads-dock-inner{
  min-height:38px;
  padding:0 48px 0 14px;
  border-radius:18px;
  box-shadow:0 10px 24px rgba(15,39,64,.055);
}

.abm-workspace-page .abm-proads-dock-link{
  min-height:38px;
  gap:9px;
}

.abm-workspace-page .abm-proads-dock-mark{
  min-height:22px;
  padding-left:9px;
  padding-right:9px;
  font-size:.58rem;
}

.abm-workspace-page .abm-proads-dock-copy{
  font-size:.78rem;
}

.abm-workspace-page .abm-proads-dock-sub{
  font-size:.66rem;
}

.abm-workspace-page .abm-proads-dock-cta{
  min-height:26px;
  padding-left:11px;
  padding-right:11px;
  font-size:.66rem;
}

.abm-workspace-page .abm-proads-dock-close{
  right:10px;
  width:24px;
  height:24px;
  border-radius:8px;
  font-size:14px;
}

/* Intelligence rail */

.abm-header-intelligence-zone{
  width:100%;
  padding-top:14px;
  position:relative;
  z-index:1;
}

.abm-intel-rail{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:14px;
  align-items:stretch;
}

.abm-intel-card{
  width:100%;
  min-width:0;
  border:1px solid rgba(15,39,64,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 28px rgba(15,39,64,.06);
  padding:16px;
  display:grid;
  gap:10px;
  position:relative;
  overflow:hidden;
}

.abm-intel-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:3px;
  background:linear-gradient(90deg,rgba(245,179,1,.86),rgba(13,110,253,.36));
  pointer-events:none;
}

.abm-intel-card--weather{
  background:
    radial-gradient(circle at top right,rgba(245,179,1,.10),transparent 34%),
    #fff;
}

.abm-intel-card--events{
  background:
    radial-gradient(circle at top left,rgba(13,110,253,.07),transparent 36%),
    #fff;
}

.abm-intel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-width:0;
}

.abm-intel-title{
  display:flex;
  align-items:center;
  gap:.6rem;
  min-width:0;
  color:#0b2545;
  font-size:.92rem;
  line-height:1.18;
  font-weight:950;
  margin:0;
}

.abm-intel-icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#f8fafc;
  border:1px solid rgba(15,39,64,.08);
  color:#0b2545;
  flex:0 0 auto;
  font-size:1.02rem;
}

.abm-intel-sub{
  font-size:.76rem;
  color:#64748b;
  font-weight:800;
  white-space:nowrap;
}

.abm-weather-alert-flag{
  display:none;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:10px;
  background:rgba(239,68,68,.12);
  border:1px solid rgba(239,68,68,.22);
  color:#dc2626;
  font-weight:950;
  line-height:1;
  flex:0 0 auto;
}

.abm-weather-alert-flag.is-active{
  display:inline-flex;
  animation:abmWeatherAlertPulse 1.4s ease-in-out infinite;
}

@keyframes abmWeatherAlertPulse{
  0%,100%{
    box-shadow:0 0 0 0 rgba(239,68,68,.18);
  }
  50%{
    box-shadow:0 0 0 8px rgba(239,68,68,0);
  }
}

.abm-weather-inline{
  display:grid;
  grid-template-columns:1.15fr repeat(4,minmax(84px,auto));
  gap:10px;
  align-items:center;
  min-width:0;
}

.abm-weather-place{
  min-width:0;
}

.abm-weather-place-edit{
  border:0;
  background:transparent;
  padding:0;
  text-align:left;
  width:100%;
}

.abm-weather-place-edit .abm-weather-city{
  display:flex;
  align-items:center;
  gap:.45rem;
  color:#2563eb;
}

.abm-weather-place-edit .abm-weather-city::before{
  content:"•";
  color:#1d4ed8;
  font-size:1.5rem;
  line-height:.65;
}

.abm-weather-place-edit .abm-weather-city::after{
  content:"✎";
  font-size:.88rem;
  color:#0b2545;
  opacity:.78;
}

.abm-weather-city{
  color:#111827;
  font-size:.94rem;
  font-weight:950;
  line-height:1.18;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.abm-weather-status{
  margin-top:2px;
  color:#64748b;
  font-size:.77rem;
  line-height:1.35;
  font-weight:750;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.abm-weather-metric-inline{
  border:1px solid rgba(15,39,64,.07);
  background:rgba(248,250,252,.82);
  border-radius:14px;
  padding:8px 10px;
  min-width:0;
}

.abm-weather-metric-label{
  color:#64748b;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:2px;
}

.abm-weather-metric-value{
  color:#111827;
  font-size:.88rem;
  font-weight:950;
  line-height:1.1;
  display:flex;
  align-items:center;
  gap:.35rem;
  white-space:nowrap;
}

.abm-wind-vane{
  display:inline-flex;
  width:20px;
  height:20px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(15,39,64,.10);
  background:#fff;
  color:#0b2545;
  font-size:.86rem;
  line-height:1;
  transform:rotate(0deg);
  transition:.24s ease;
}

.abm-events-inline{
  position:relative;
  display:block;
  min-height:74px;
}

.abm-events-mini-card{
  display:none;
  grid-template-columns:88px minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  min-height:74px;
  padding:0 14px 0 0;
  background:#fff;
  border:1px solid rgba(15,39,64,.07);
  border-radius:16px;
  text-decoration:none;
  min-width:0;
  transition:.14s ease;
}

.abm-events-mini-card.is-active{
  display:grid;
}

.abm-events-mini-card:hover{
  transform:translateY(-1px);
  box-shadow:var(--abm-shadow-xs);
  background:#fff;
  color:#111827;
}

.abm-events-mini-thumb{
  width:88px;
  height:74px;
  object-fit:cover;
  border-radius:14px 0 0 14px;
  background:#e2e8f0;
}

.abm-events-mini-title{
  color:#111827;
  font-size:.82rem;
  font-weight:950;
  line-height:1.18;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.abm-events-mini-meta{
  margin-top:4px;
  color:#64748b;
  font-size:.72rem;
  line-height:1.2;
  font-weight:800;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.abm-events-mini-arrow{
  font-size:1.75rem;
  color:#64748b;
  font-weight:400;
}

.abm-events-empty-line{
  color:#64748b;
  font-size:.84rem;
  font-weight:800;
  padding:12px;
  border-radius:14px;
  background:rgba(248,250,252,.86);
  border:1px dashed rgba(15,39,64,.12);
}

.abm-events-dots{
  position:absolute;
  left:50%;
  bottom:-8px;
  transform:translateX(-50%);
  display:flex;
  gap:7px;
  align-items:center;
}

.abm-events-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#cbd5e1;
}

.abm-events-dot.is-active{
  background:#0b2545;
}

/* Messages */

.abm-messages{
  margin-top:16px;
  margin-bottom:6px;
}

.abm-messages .alert{
  border-radius:16px;
  border:1px solid rgba(15,39,64,.08);
  box-shadow:var(--abm-shadow-sm);
}

/* Footer */

.abm-footer{
  width:100%;
  margin-top:64px;
  padding:42px 0;
  flex:0 0 auto;
  background:
    radial-gradient(circle at 80% 10%,rgba(37,99,235,.18),transparent 30%),
    linear-gradient(135deg,#071c31,#0f2740);
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.78);
  position:relative;
}

.abm-footer::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:1px;
  background:linear-gradient(
    90deg,
    rgba(245,179,1,0),
    rgba(245,179,1,.32),
    rgba(13,110,253,.18),
    rgba(245,179,1,0)
  );
}

.abm-footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:28px;
  flex-wrap:wrap;
}

.abm-footer-brand{
  flex:1 1 360px;
  max-width:680px;
  color:rgba(255,255,255,.72);
  font-size:.9rem;
  line-height:1.6;
}

.abm-footer-title{
  font-weight:900;
  color:#fff;
  margin-bottom:6px;
}

.abm-footer-links{
  flex:0 1 720px;
  display:flex;
  gap:.8rem;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.abm-footer-links a{
  color:rgba(255,255,255,.86);
  text-decoration:none;
  font-weight:700;
  transition:.14s ease;
}

.abm-footer-links a:hover{
  color:#fff;
}

.abm-footer-admin-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:.32rem .78rem;
  border-radius:999px;
  border:1px solid rgba(245,179,1,.32);
  background:rgba(245,179,1,.12);
  color:#f5b301 !important;
  font-weight:900 !important;
}

.abm-footer-admin-link:hover{
  background:rgba(245,179,1,.20);
  color:#fff !important;
}

.abm-social-btn{
  border-radius:999px !important;
  padding:.38rem .8rem !important;
  font-weight:800;
  border:1px solid rgba(245,179,1,.25);
  background:rgba(245,179,1,.10);
  color:#fff;
}

.abm-social-btn:hover{
  background:rgba(245,179,1,.16);
  color:#fff;
}

/* Common page safeguards */

.abm-header,
.abm-proads-dock,
.abm-header-intelligence-zone,
.abm-footer{
  width:100%;
  flex:0 0 auto;
}

.abm-header-panel,
.abm-header-nav,
.abm-nav-wrap{
  overflow:visible;
}

.abm-nav-main,
.abm-account-menu-inline{
  min-width:0;
}

.abm-hero,
.abm-section,
.abm-card,
.abm-listing-grid,
.abm-results,
.abm-results-grid,
.abm-market-grid,
.abm-dashboard,
.abm-dashboard-grid,
.abm-account-layout,
.abm-proads-layout,
.abm-events-layout,
.abm-constructor-layout{
  max-width:100%;
  box-sizing:border-box;
}

/* Responsive */

@media (max-width:1480px){
  :root{
    --abm-header-shell:1440px;
  }

  .abm-container{
    max-width:var(--abm-container);
  }

  .abm-header .abm-container,
  .abm-proads-dock .abm-container,
  .abm-header-intelligence-zone .abm-container,
  .abm-footer .abm-container{
    max-width:var(--abm-header-shell);
  }

  .abm-main > .abm-container,
  .abm-shell,
  .abm-shell--wide{
    max-width:var(--abm-container);
  }

  .abm-header-main{
    grid-template-columns:minmax(210px,auto) minmax(280px,1fr) auto;
    gap:12px;
  }

  .abm-brand-title{
    font-size:1.32rem;
  }

  .abm-brand-sub{
    font-size:.68rem;
  }

  .abm-weather-inline{
    grid-template-columns:1fr repeat(3,minmax(84px,auto));
  }

  .abm-weather-metric-inline:nth-child(5){
    display:none;
  }
}

@media (max-width:1260px){
  .abm-header-main{
    grid-template-columns:minmax(180px,auto) minmax(240px,1fr) auto;
    gap:10px;
  }

  .abm-brand-logo{
    width:46px;
    height:46px;
  }

  .abm-brand-title{
    font-size:1.08rem;
  }

  .abm-brand-sub{
    display:none;
  }

  .abm-header-cta{
    min-width:auto;
    padding:0 12px;
    font-size:.76rem;
  }

  .abm-language-shell{
    min-width:82px;
  }

  .abm-navbtn{
    min-height:28px;
    padding:0 9px;
    font-size:.68rem;
  }

  .abm-intel-rail{
    grid-template-columns:1fr;
  }

  .abm-weather-inline{
    grid-template-columns:1fr repeat(4,minmax(84px,auto));
  }

  .abm-weather-metric-inline:nth-child(5){
    display:block;
  }
}

@media (min-width:992px){
  .abm-nav-wrap.collapse:not(.show){
    display:block !important;
    height:auto !important;
    visibility:visible !important;
  }
}

@media (max-width:991px){
  .abm-container{
    padding-left:18px;
    padding-right:18px;
  }

  .abm-main{
    padding-top:18px;
  }

  .abm-header{
    position:relative;
    top:auto;
  }

  .abm-header-panel{
    margin:10px 0 0;
    padding:0 14px;
    border-radius:24px;
  }

  .abm-header-main{
    grid-template-columns:1fr;
    min-height:auto;
    gap:12px;
    padding:14px 0 12px;
  }

  .abm-brand{
    min-height:auto;
  }

  .abm-brand-logo{
    width:54px;
    height:54px;
    border-radius:14px;
  }

  .abm-brand-title{
    font-size:1.34rem;
  }

  .abm-brand-sub{
    font-size:.74rem;
    display:block;
  }

  .abm-search{
    grid-column:1 / -1;
  }

  .abm-header-actions{
    grid-column:1 / -1;
    width:100%;
    display:grid;
    grid-template-columns:1fr auto auto;
  }

  .abm-header-cta{
    width:100%;
    min-height:44px;
  }

  .abm-language-shell{
    min-height:44px;
  }

  .abm-nav-wrap.collapse:not(.show){
    display:none !important;
    height:0 !important;
    visibility:hidden !important;
  }

  .abm-header-nav{
    padding:12px 0 14px;
  }

  .abm-nav-main{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    width:100%;
  }

  .abm-navbtn,
  .abm-account-toggle{
    width:100%;
    border-radius:14px;
    min-height:42px;
    padding:0 14px;
    font-size:.82rem;
  }

  .abm-account-menu-inline{
    grid-column:1 / -1;
    display:none;
    flex-wrap:wrap;
    gap:8px;
    margin-top:10px;
    min-width:0;
    width:100%;
    max-width:100%;
    overflow:visible;
  }

  .abm-account-menu-inline.is-open{
    display:inline-flex;
  }

  .abm-account-menu-inline[hidden]{
    display:none !important;
  }

  .abm-account-inline-link,
  .abm-account-logout-btn{
    width:100%;
    max-width:100%;
    min-height:40px;
    border-radius:14px;
    justify-content:center;
    font-size:.82rem;
  }

  .abm-account-logout-form{
    width:100%;
    max-width:100%;
  }

  .abm-proads-dock{
    padding-top:10px;
  }

  .abm-proads-dock > .abm-container{
    padding-left:18px;
    padding-right:18px;
  }

  .abm-proads-dock-inner{
    min-height:48px;
    border-radius:18px;
    padding:0 44px 0 14px;
  }

  .abm-proads-dock-link{
    min-height:48px;
    grid-template-columns:auto minmax(0,1fr);
    gap:10px;
  }

  .abm-proads-dock-cta,
  .abm-proads-dock-sub{
    display:none;
  }

  .abm-proads-dock-close{
    width:26px;
    height:26px;
    right:10px;
  }

  .abm-intel-rail{
    grid-template-columns:1fr;
  }

  .abm-weather-inline{
    grid-template-columns:1fr 1fr;
  }

  .abm-weather-place{
    grid-column:1 / -1;
  }

  .abm-events-inline{
    min-height:auto;
  }

  .abm-footer-inner{
    flex-direction:column;
  }

  .abm-footer-links{
    justify-content:flex-start;
  }
}

@media (max-width:767px){
  .abm-container{
    padding-left:14px;
    padding-right:14px;
  }

  .abm-main{
    padding-top:16px;
  }

  .abm-header-panel{
    border-radius:20px;
    padding:0 12px;
  }

  .abm-brand{
    gap:.7rem;
  }

  .abm-brand-logo{
    width:50px;
    height:50px;
  }

  .abm-brand-title{
    font-size:1.18rem;
  }

  .abm-brand-sub{
    display:none;
  }

  .abm-search-form{
    gap:8px;
  }

  .abm-search-input{
    min-height:46px;
    padding-left:1rem !important;
    font-size:.88rem;
  }

  .abm-search-btn{
    min-height:46px;
    min-width:46px;
  }

  .abm-header-actions{
    grid-template-columns:minmax(0,1fr) auto auto;
  }

  .abm-language-shell{
    min-width:58px;
    width:auto;
  }

  .abm-nav-main{
    grid-template-columns:1fr;
  }

  .abm-weather-inline{
    grid-template-columns:1fr;
  }

  .abm-weather-status{
    white-space:normal;
  }

  .abm-events-mini-card{
    grid-template-columns:74px minmax(0,1fr) auto;
  }

  .abm-events-mini-thumb{
    width:74px;
  }

  .abm-header-intelligence-zone{
    display:none;
  }

  .abm-footer{
    margin-top:34px;
    padding:28px 0;
  }

  .abm-footer-links{
    gap:.6rem;
  }

  .abm-btn{
    width:100%;
  }
}

@media (max-width:480px){
  .abm-brand-logo{
    width:48px;
    height:48px;
  }

  .abm-brand-title{
    font-size:1.06rem;
  }

  .abm-proads-dock-copy{
    font-size:.76rem;
  }

  .abm-proads-dock-mark{
    font-size:.6rem;
    padding:0 8px;
  }
}

.abm-header-intelligence-zone--after-content{
  margin-top:28px;
  padding-top:0;
}

.abm-header-intelligence-zone--after-content .abm-container{
  max-width:min(1320px, calc(100vw - 32px));
}

@media(max-width:760px){
  .abm-header-intelligence-zone--after-content{
    display:block;
    margin-top:22px;
  }

  .abm-header-intelligence-zone--after-content .abm-container{
    max-width:calc(100vw - 24px);
  }

  .abm-header-intelligence-zone--after-content .abm-intel-rail{
    grid-template-columns:1fr;
  }
}
