/* Portal ABK — luxury navy & gold */
.abk-portal-app {
  --ap-navy: #0f1729;
  --ap-navy-soft: #1a2744;
  --ap-navy-mid: #243656;
  --ap-gold: #c9a962;
  --ap-gold-light: #e8d5a3;
  --ap-gold-dark: #a8863a;
  --ap-cream: #faf8f5;
  --ap-cream-dark: #f3efe8;
  --ap-muted: #667085;
  --ap-shadow: 0 18px 48px rgba(15, 23, 41, 0.12);
  --ap-shadow-lg: 0 24px 60px rgba(15, 23, 41, 0.16);
  margin: 0;
  min-height: 100vh;
  color: var(--ap-navy-soft);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(165deg, var(--ap-cream) 0%, var(--ap-cream-dark) 48%, #ebe6dc 100%);
  position: relative;
  overflow-x: hidden;
}

.abk-portal-scene {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.abk-portal-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.abk-portal-orb-a {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.35) 0%, transparent 70%);
}

.abk-portal-orb-b {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: -80px;
  background: radial-gradient(circle, rgba(26, 39, 68, 0.18) 0%, transparent 70%);
}

.abk-portal-scene-shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 28%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.08), transparent 60%);
}

.abk-portal-shell,
.abk-portal-dash-header {
  position: relative;
  z-index: 1;
}

.abk-portal-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

.abk-portal-login-shell {
  min-height: calc(100dvh - 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.abk-portal-login-page .abk-portal-login-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.abk-portal-eyebrow {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ap-gold-dark);
}

.abk-portal-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 253, 249, 0.94) 100%);
  border: 1px solid rgba(201, 169, 98, 0.32);
  border-radius: 22px;
  box-shadow: var(--ap-shadow);
  overflow: hidden;
}

.abk-portal-panel::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--ap-gold-dark), var(--ap-gold-light), var(--ap-gold), var(--ap-gold-light), var(--ap-gold-dark));
}

/* ── Header dashboard ── */
.abk-portal-dash-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--ap-navy) 0%, var(--ap-navy-soft) 55%, var(--ap-navy-mid) 100%);
  border-bottom: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 8px 28px rgba(15, 23, 41, 0.28);
}

.abk-portal-dash-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ap-gold), transparent);
  opacity: 0.7;
}

.abk-portal-dash-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.abk-portal-dash-brand-text strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.abk-portal-dash-brand .abk-portal-eyebrow {
  color: var(--ap-gold-light);
  margin-bottom: 2px;
}

.abk-portal-logo,
.abk-portal-brand .topbar-logo,
.abk-portal-brand .auth-logo-img,
.abk-portal-dash-brand .abk-portal-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(201, 169, 98, 0.45);
  padding: 3px;
  flex-shrink: 0;
}

.abk-portal-logout {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ap-navy);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.5);
  background: linear-gradient(180deg, #fff 0%, var(--ap-gold-light) 120%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.abk-portal-logout:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* ── Hero profile ── */
.abk-portal-dashboard-shell {
  padding-top: 20px;
}

.abk-portal-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
  margin-bottom: 18px;
  background:
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(201, 169, 98, 0.12), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 245, 0.95) 100%);
  border: 1px solid rgba(201, 169, 98, 0.32);
  border-radius: 22px;
  box-shadow: var(--ap-shadow-lg);
}

.abk-portal-hero-photo-wrap {
  flex-shrink: 0;
}

.abk-portal-hero-photo,
.abk-portal-photo-fallback.abk-portal-hero-photo {
  width: 112px;
  height: 112px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid rgba(201, 169, 98, 0.55);
  box-shadow: 0 10px 28px rgba(15, 23, 41, 0.15);
  background: #eef2f7;
}

.abk-portal-photo-fallback {
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ap-muted);
}

.abk-portal-profile-photo-btn {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.abk-portal-profile-photo-btn:hover {
  transform: scale(1.02);
}

.abk-portal-hero-name {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ap-navy);
  letter-spacing: 0.02em;
}

.abk-portal-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.abk-portal-id-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ap-navy-soft);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(201, 169, 98, 0.4);
}

.abk-portal-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0d5c2e;
  background: linear-gradient(180deg, #ecfdf3 0%, #d1fae5 100%);
  border: 1px solid rgba(6, 118, 71, 0.25);
}

.abk-portal-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.abk-portal-stat-card {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow: 0 2px 8px rgba(15, 23, 41, 0.04);
}

.abk-portal-stat-card span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ap-gold-dark);
  margin-bottom: 4px;
}

.abk-portal-stat-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ap-navy-soft);
  word-break: break-word;
}

.abk-portal-stat-wide {
  grid-column: 1 / -1;
}

/* ── Panels & sections ── */
.abk-portal-feed-section {
  padding: 0 0 20px;
  margin-bottom: 18px;
}

.abk-portal-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.16);
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(201, 169, 98, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
}

.abk-portal-panel-head-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--ap-navy-soft) 0%, var(--ap-navy-mid) 100%);
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 6px 16px rgba(15, 23, 41, 0.18);
  flex-shrink: 0;
}

.abk-portal-feed-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ap-navy);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.abk-portal-panel-sub {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--ap-muted);
  line-height: 1.4;
}

.abk-portal-feed-section .abk-portal-tile-grid,
.abk-portal-feed-section .abk-portal-empty {
  margin: 16px 16px 0;
}

.abk-portal-empty {
  padding: 22px 16px;
  text-align: center;
  color: var(--ap-muted);
  border: 1px dashed rgba(201, 169, 98, 0.4);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

/* ── Document tiles ── */
.abk-portal-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 12px;
}

.abk-portal-tile {
  position: relative;
  min-height: 118px;
}

.abk-portal-tile-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  min-height: 118px;
  padding: 14px 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 98, 0.28);
  background: linear-gradient(180deg, #fff 0%, var(--ap-cream) 100%);
  text-decoration: none;
  color: inherit;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 41, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.abk-portal-tile.has-file .abk-portal-tile-link:hover {
  border-color: rgba(201, 169, 98, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 41, 0.12);
}

.abk-portal-tile.is-empty .abk-portal-tile-link {
  opacity: 0.48;
  background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%);
}

.abk-portal-tile-icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--ap-navy-soft) 0%, var(--ap-navy-mid) 100%);
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.abk-portal-tile-icon-box.is-muted {
  background: linear-gradient(145deg, #94a3b8 0%, #64748b 100%);
  border-color: rgba(100, 116, 139, 0.3);
}

.abk-portal-tile-glyph {
  font-size: 1.35rem;
  line-height: 1;
}

.abk-portal-tile-label {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ap-navy);
  letter-spacing: 0.02em;
}

.abk-portal-tile-badge {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ap-gold-dark);
  background: rgba(201, 169, 98, 0.16);
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.25);
}

.abk-portal-tile-badge.is-empty-badge {
  color: #64748b;
  background: rgba(100, 116, 139, 0.12);
  border-color: rgba(100, 116, 139, 0.2);
}

.abk-portal-tile-dl {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ap-navy-soft);
  border: 1px solid rgba(201, 169, 98, 0.35);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(15, 23, 41, 0.1);
  transition: background 0.15s ease;
  z-index: 2;
}

.abk-portal-tile-dl:hover {
  background: var(--ap-gold-light);
}

/* ── Login ── */
.abk-portal-login-card {
  padding: 0;
}

.abk-portal-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.16);
}

.abk-portal-brand .abk-portal-logo {
  width: 58px;
  height: 58px;
}

.abk-portal-brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ap-navy);
  line-height: 1.1;
}

.abk-portal-brand span {
  display: block;
  font-size: 0.82rem;
  color: var(--ap-muted);
  margin-top: 4px;
  line-height: 1.35;
}

.abk-portal-login-form {
  padding: 20px 22px 22px;
}

.abk-portal-login-form label {
  display: block;
  margin-bottom: 14px;
}

.abk-portal-login-form label span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ap-gold-dark);
}

.abk-portal-login-form input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(201, 169, 98, 0.38);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  text-transform: none;
  letter-spacing: normal;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.abk-portal-login-form input:focus {
  outline: none;
  border-color: var(--ap-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
}

.abk-portal-btn-primary {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-family: inherit;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--ap-navy) 0%, var(--ap-navy-soft) 50%, var(--ap-gold-dark) 160%);
  box-shadow: 0 10px 24px rgba(15, 23, 41, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.abk-portal-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 41, 0.3);
}

.abk-portal-note {
  margin: 14px 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--ap-muted);
}

.abk-portal-alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 600;
}

.abk-portal-alert.err {
  background: #fef3f2;
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.22);
}

.abk-portal-alert.ok {
  background: linear-gradient(180deg, #ecfdf3 0%, #d1fae5 100%);
  color: #067647;
  border: 1px solid rgba(6, 118, 71, 0.22);
}

.abk-portal-flash {
  margin-bottom: 16px;
}

.abk-portal-feed-wrap {
  display: grid;
  gap: 18px;
}

/* ── Document preview modal ── */
body.abk-portal-modal-open {
  overflow: hidden;
}

.abk-portal-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(12, 18, 32, 0.82);
  backdrop-filter: blur(6px);
}

.abk-portal-preview-modal[hidden] {
  display: none !important;
}

.abk-portal-preview-card {
  width: min(980px, 100%);
  height: min(88vh, 820px);
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.abk-portal-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--ap-navy) 0%, var(--ap-navy-soft) 100%);
  color: #fff;
  border-bottom: 2px solid rgba(201, 169, 98, 0.4);
}

.abk-portal-preview-head strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.3;
  padding-right: 8px;
}

.abk-portal-preview-close {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  cursor: pointer;
  font-family: inherit;
}

.abk-portal-preview-body {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f7fb;
  overflow: auto;
}

.abk-portal-preview-body iframe {
  width: 100%;
  height: 100%;
  flex: 1;
  border: 0;
  background: #f3f7fb;
}

.abk-portal-preview-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.abk-portal-preview-image[hidden],
.abk-portal-preview-body iframe[hidden] {
  display: none !important;
}

.abk-portal-preview-body.abk-portal-preview-showing-image iframe {
  display: none !important;
}

.abk-portal-preview-body.abk-portal-preview-showing-image .abk-portal-preview-image {
  display: block !important;
}

.abk-portal-preview-body.abk-portal-preview-showing-pdf iframe,
.abk-portal-preview-body.abk-portal-preview-showing-frame iframe {
  display: block !important;
}

.abk-portal-preview-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  border-top: 1px solid rgba(201, 169, 98, 0.22);
  background: var(--ap-cream);
}

.abk-portal-preview-pdf-hint {
  font-size: 0.74rem;
  color: var(--ap-muted);
}

.abk-portal-preview-download {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ap-navy);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.4);
  background: #fff;
}

.abk-portal-app .app-back-bar {
  position: relative;
  z-index: 20;
  margin: 0;
  border-bottom-color: rgba(201, 169, 98, 0.16);
  background: linear-gradient(180deg, rgba(15, 23, 41, 0.92) 0%, rgba(15, 23, 41, 0.82) 100%);
}

.abk-portal-app .app-back-btn {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 169, 98, 0.28);
}

.abk-portal-app .app-back-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(201, 169, 98, 0.45);
}

.abk-portal-app .app-back-btn-inline {
  background: transparent;
  border: none;
  color: var(--gold-light, #e8d5a8);
}
  .abk-portal-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 16px;
  }

  .abk-portal-hero-photo-wrap {
    display: flex;
    justify-content: center;
  }

  .abk-portal-hero-badges {
    justify-content: center;
  }

  .abk-portal-stat-grid {
    grid-template-columns: 1fr;
  }

  .abk-portal-tile-grid {
    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    gap: 10px;
  }

  .abk-portal-dash-brand-text strong {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .abk-portal-preview-modal {
    padding: 0;
  }

  .abk-portal-preview-card {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}

/* ── Briefing video tiles ── */
.abk-portal-tile-video .abk-portal-tile-badge.is-done-badge {
  background: rgba(22, 101, 52, 0.14);
  color: #166534;
  border-color: rgba(22, 101, 52, 0.28);
}

.abk-portal-tile-video.is-completed .abk-portal-tile-icon-box {
  box-shadow: inset 0 0 0 1px rgba(22, 101, 52, 0.25);
}

/* ── Briefing watch page ── */
.abk-portal-briefing-shell {
  max-width: 920px;
}

.abk-portal-briefing-panel {
  overflow: hidden;
}

.abk-briefing-watch {
  display: grid;
  gap: 16px;
}

.abk-briefing-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(201, 169, 98, 0.28);
  box-shadow: 0 16px 36px rgba(6, 31, 56, 0.18);
}

.abk-briefing-player,
.abk-briefing-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.abk-briefing-meta {
  display: grid;
  gap: 10px;
}

.abk-briefing-status {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ap-muted);
  font-weight: 600;
}

.abk-briefing-progress-wrap {
  display: grid;
  gap: 6px;
}

.abk-briefing-progress-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(10, 47, 82, 0.08);
  overflow: hidden;
}

.abk-briefing-progress-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ap-gold), #e8c96a);
  transition: width 0.35s ease;
}

.abk-briefing-progress-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ap-navy);
}

.abk-briefing-cert-wrap {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.14), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(201, 169, 98, 0.35);
}

.abk-briefing-cert-wrap[hidden] {
  display: none !important;
}

.abk-briefing-cert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--ap-navy);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.9rem;
  text-align: center;
}

.abk-briefing-cert-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ap-muted);
  text-align: center;
}
