/* ABN Founder Showcase — merged from founder-archive.html + founder-single.html */


/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --navy:      #0F2744;
  --navy-mid:  #1B3F66;
  --navy-lt:   #243B55;
  --gold:      #4d6cfa;
  --gold-lt:   #E6ECFE;
  --gold-glow: rgba(77,108,250,.18);
  --white:     #FFFFFF;
  --slate:     #E8EDF3;
  --slate-dk:  #D1DAE6;
  --ink:       #1A2332;
  --ink2:      #3D4F63;
  --muted:     #6B7F96;
  --card-bg:   #FFFFFF;
  --page-bg:   #F3F6FA;
  --line:      #DDE4EE;
  --green:     #1A6B3C;
  --green-bg:  #E4F5EC;
  --red:       #CF021A;
  --r:         10px;
  --r-sm:      6px;
}

/* ── RESET ─────────────────────────────────────────────────── */
/* Scoped to .abnf-scope (the wrapper every Founders shortcode/template
   output is wrapped in) rather than bare *, body, img, a — this plugin
   is now enqueued on every front-end page (fixed a different bug
   earlier: CSS loaded too late otherwise), so unscoped global resets
   here were stripping margin/padding and link/image styling on OTHER
   plugins' output on the same page (confirmed: this broke the Events
   plugin's card layout whenever both were active). */
.abnf-scope,
.abnf-scope *,
.abnf-scope *::before,
.abnf-scope *::after { box-sizing: border-box; margin: 0; padding: 0; }
.abnf-scope {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
.abnf-scope img { max-width: 100%; display: block; }
.abnf-scope a { text-decoration: none; color: inherit; }

/* ── ARCHIVE HERO ──────────────────────────────────────────── */
.archive-hero {
  background: var(--navy);
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.archive-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(184,146,42,.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 0% 100%, rgba(27,63,102,.6) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.archive-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 14px;
  max-width: 560px;
}
.archive-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* ── LAYOUT SHELL ──────────────────────────────────────────── */
.archive-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 36px 24px 80px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}

/* ── SIDEBAR FILTER ────────────────────────────────────────── */
.filter-sidebar {
  position: sticky;
  top: 24px;
}
.filter-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  padding-left: 4px;
}
.chapter-filters {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chapter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink2);
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  transition: background .15s, color .15s;
}
.chapter-btn:hover {
  background: var(--slate);
  color: var(--navy-mid);
}
.chapter-btn.active {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.chapter-btn .count {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(0,0,0,.08);
  color: inherit;
  opacity: .7;
}
.chapter-btn.active .count { background: rgba(255,255,255,.15); opacity: 1; }

/* ── MAIN AREA ─────────────────────────────────────────────── */
.archive-main {}
.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.archive-count {
  font-size: 13.5px;
  color: var(--muted);
}
.archive-count strong { color: var(--ink); }
.search-box {
  position: relative;
}
.search-box input {
  padding: 9px 14px 9px 36px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 13.5px;
  background: var(--white);
  color: var(--ink);
  width: 220px;
  outline: none;
  transition: border-color .2s;
}
.search-box input:focus { border-color: var(--navy-mid); }
.search-box::before {
  content: '⌕';
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--muted);
  pointer-events: none;
}

/* ── CARDS GRID ────────────────────────────────────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── FOUNDER CARD (ref: crowdfunding-style card — banner image,
   bold name, one-line desc, full-width CTA, colored stats row) ── */
.founder-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .18s, border-color .22s;
  position: relative;
}
.founder-card:hover {
  box-shadow: 0 8px 32px rgba(15,39,68,.12);
  transform: translateY(-3px);
  border-color: var(--slate-dk);
}

.card-banner-link { display: block; }
.card-banner {
  width: 100%;
  height: 0;
  padding-bottom: 56%;
  position: relative;
  background: var(--slate);
  overflow: hidden;
}
.card-banner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: #ffffff;
  padding: 22px;
  box-sizing: border-box;
  transition: transform .3s ease;
}
.founder-card:hover .card-banner img { transform: scale(1.05); }
.card-banner-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.card-banner-placeholder span {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}

.card-chapter-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15,39,68,.85);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(184,146,42,.3);
}
.card-stage-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.card-content {
  padding: 18px 20px 12px;
}
.card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.card-name a { color: inherit; }
.card-desc {
  font-size: 13.5px;
  color: var(--navy-mid);
  line-height: 1.55;
  margin-bottom: 16px;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-cta-btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  transition: background .15s ease, transform .15s ease;
}
.card-cta-btn:hover { background: #a8842a; transform: translateY(-1px); }

.card-stats {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
}
.card-stat { display: flex; flex-direction: column; gap: 2px; }
.card-stat .stat-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  font-weight: 700;
}
.card-stat .stat-value {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.card-stat .stat-value.stat-green { color: var(--green); }

/* Empty state */
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state h3 { font-size: 18px; color: var(--ink2); margin-bottom: 8px; }
.empty-state p  { font-size: 14px; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .archive-shell { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  .filter-sidebar { position: static; padding: 20px 0 4px; }
  .chapter-filters { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .chapter-btn { flex: 0 1 auto; padding: 7px 13px; width: auto; }
  .chapter-btn .count { display: none; }
  .filter-label { display: none; }
  .founders-grid { grid-template-columns: 1fr; gap: 14px; }
  .archive-hero { padding: 44px 20px 40px; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 480px) {
  .founders-grid { grid-template-columns: 1fr; }
  .archive-toolbar { flex-direction: column; align-items: flex-start; }
  .search-box input { width: 100%; }
}

/* Mobile filter scroll */
@media (max-width: 768px) {
  .chapter-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .chapter-filters::-webkit-scrollbar { display: none; }
  .chapter-btn { flex-shrink: 0; }
}

/* ============================================================
   Single founder profile — additional rules
   ============================================================ */
/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0 24px;
}
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--navy-mid); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: .4; }

/* ── HERO ───────────────────────────────────────────────────── */
.profile-hero {
  background: #eeeeee;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.profile-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 90% 50%, rgba(77,108,250,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 340px;
  position: relative;
  z-index: 1;
}
.hero-content {
  padding: 52px 48px 52px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-chapter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-chapter::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-company {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero-sub {
  font-size: 15px;
  color: var(--ink2);
  margin-bottom: 6px;
}
.hero-sub strong { color: var(--ink) !important; }
.hero-location {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid var(--slate-dk);
  background: #ffffff;
  color: var(--ink2);
}
.hero-tag.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.hero-photo-col {
  position: relative;
  overflow: hidden;
}
.hero-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(.85) contrast(1.05);
}
.hero-logo-display {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}
.hero-logo-display img {
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}
.hero-quickfacts {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: linear-gradient(155deg, #1a3a5e 0%, #0c1e33 100%);
  padding: 36px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.hero-quickfacts-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 6px;
}
.qf-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 12px;
}
.qf-row span {
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.qf-row strong {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  text-align: right;
}
.qf-row strong.qf-gold { color: var(--gold); }

/* ── BODY ───────────────────────────────────────────────────── */
.profile-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* ── MAIN CONTENT ───────────────────────────────────────────── */
.profile-main { display: flex; flex-direction: column; gap: 24px; }

.profile-section {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 30px;
}
.section-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.section-body {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.8;
}
.section-body p { margin-bottom: 14px; }
.section-body p:last-child { margin-bottom: 0; }

/* Two-col detail grid */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.detail-item .d-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.detail-item .d-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.detail-item .d-value.highlight {
  color: var(--navy-mid);
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
}

/* Problem / solution two-col */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ps-box {
  background: var(--page-bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 18px 20px;
}
.ps-box-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ps-box.problem .ps-box-label { color: #8B1C1C; }
.ps-box.solution .ps-box-label { color: var(--green); }
.ps-box .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ps-box.problem .dot { background: #CF021A; }
.ps-box.solution .dot { background: var(--green); }
.ps-box p { font-size: 14px; color: var(--ink2); line-height: 1.7; }

/* YouTube embed */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── SIDEBAR ────────────────────────────────────────────────── */
.profile-sidebar { display: flex; flex-direction: column; gap: 16px; }

.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
}
.sidebar-card-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

/* Founder info card */
.founder-info-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--slate);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-info-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-info-photo .ph-init {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(27,63,102,.35);
}
.founder-info-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.founder-info-role {
  font-size: 13px;
  color: var(--navy-mid);
  font-weight: 600;
  margin-bottom: 12px;
}
.founder-info-meta p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 7px;
}
.founder-info-meta p strong { color: var(--ink2); font-weight: 500; }
.info-icon { font-size: 14px; flex-shrink: 0; }

/* Action buttons */
.sidebar-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  text-align: center;
}
.btn-primary:hover { background: #0a1e36; transform: translateY(-1px); }
.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  background: transparent;
  color: var(--navy-mid);
  border: 1.5px solid var(--navy-mid);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity .2s, transform .1s;
}
.btn-gold:hover { opacity: .88; transform: translateY(-1px); }

/* Members gate */
.members-gate {
  background: linear-gradient(135deg, #0F2744 0%, #1B3F66 100%);
  border-radius: var(--r);
  padding: 24px 22px;
  text-align: center;
  color: var(--white);
}
.gate-lock { font-size: 28px; margin-bottom: 10px; }
.members-gate h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.members-gate p { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; line-height: 1.6; }

/* Quick stats in sidebar */
.quick-stats { display: flex; flex-direction: column; gap: 12px; }
.qs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
}
.qs-label { color: var(--muted); }
.qs-value { font-weight: 700; color: var(--ink); }
.qs-value.gold { color: var(--gold); }

/* ── BACK NAV ────────────────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  padding: 8px 0;
  transition: color .15s, gap .15s;
}
.back-link:hover { color: var(--gold); gap: 9px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-col { display: none; }
  .hero-content { padding: 44px 24px; }
  .profile-body { grid-template-columns: 1fr; }
  .profile-sidebar { order: -1; }
  .sidebar-card { display: none; }
  .sidebar-card.always-show { display: block; }
  .ps-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .profile-body { padding: 24px 16px 60px; }
  .profile-section { padding: 20px 18px; }
  .detail-grid { grid-template-columns: 1fr; }
  .hero-company { font-size: 28px; }
  .profile-sidebar { display: flex; flex-direction: column; }
  .sidebar-card { display: block !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ============================================================
   Founder Application Form — [abn_founder_application]
   (no mockup was provided for this; styled to match the same
   navy/gold showcase tokens above)
   ============================================================ */
.abnf-application-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.abnf-application-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: var(--navy-mid);
  margin-top: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.abnf-application-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
}
.abnf-application-form input[type="text"],
.abnf-application-form input[type="email"],
.abnf-application-form textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
}
.abnf-application-form input:focus,
.abnf-application-form textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
}
.abnf-address-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.abnf-checkbox {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 400;
  font-size: 13.5px;
  color: var(--ink2);
}
.abnf-application-form button[type="submit"] {
  align-self: flex-start;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  cursor: pointer;
  margin-top: 8px;
}
.abnf-application-form button[type="submit"]:hover { opacity: .88; }

.abnf-notice {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.abnf-notice.abnf-success { background: var(--green-bg); color: var(--green); }
.abnf-notice.abnf-error   { background: #FCE8E8; color: #8B1C1C; }
.abnf-notice.abnf-error ul { margin: 0; padding-left: 18px; }
.abnf-notice.abnf-info   { background: var(--slate); color: var(--ink2); }

@media (max-width: 600px) {
  .abnf-address-row { grid-template-columns: 1fr; }
}

/* Single-chapter embed mode ([abn_founder_archive chapter="..."]) —
   no sidebar, so let the grid use the full width. */
.archive-shell.abnf-no-sidebar {
  grid-template-columns: 1fr;
}

/* Reset Filters button (matches reference toolbar) */
.reset-filters-btn {
  background: var(--gold);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease;
}
.reset-filters-btn:hover { background: #a8842a; }

/* [abn_founder_thank_you] status card */
.abnf-status-card {
  max-width: 480px;
  margin: 40px auto;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
}
.abnf-status-badge {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.abnf-status-card h2 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy-mid);
  margin-bottom: 10px;
}
.abnf-status-card p { color: var(--ink2); line-height: 1.6; }
.abnf-status-note {
  background: var(--gold-lt);
  color: #7A5A0A;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 13px;
  margin-top: 14px;
}
.abnf-status-actions { margin-top: 20px; }

.abnf-field-note {
  font-size: 12px;
  color: var(--muted);
  margin: -8px 0 4px;
  line-height: 1.5;
}
