/* ============================================================
   FACT Training — portal-aligned theme (clay/cream)
   Feature build: feature/portal-aligned-revamp
   Used by index.html only; other pages keep styles.css.
   Class contract preserved for js/notion-cms.js + js/main.js.
   ============================================================ */

:root {
  /* Clay / cream palette (promoted from launchpad-claude tier) */
  --clay: #CC785C;
  --clay-deep: #B05536;
  --clay-dark: #8a3e24;
  --clay-ink: #3A2317;
  --cream: #F7F4EC;
  --ivory: #FDFCF8;
  --sand: #EFE7DA;
  --line: #E6DCCB;

  /* Legacy token names re-pointed so shared/CMS-injected markup restyles itself */
  --purple: var(--clay);
  --purple-deep: var(--clay-deep);
  --purple-light: #E19A7E;
  --navy: var(--cream);
  --navy-mid: var(--ivory);
  --navy-light: var(--sand);
  --navy-card: #ffffff;

  --blue: #2563eb;
  --cyan: #0e7490;
  --white: #ffffff;
  --green: #10b981;
  --amber: #f59e0b;
  --red: #ef4444;

  --ink: #2b1a10;
  --slate: #1e293b;
  --gray-50: #f8fafc;  --gray-100: #f1f5f9; --gray-200: #e2e8f0;
  --gray-300: #cbd5e1; --gray-400: #64748b; --gray-500: #6b7280;
  --gray-600: #64748b; --gray-700: #334155; --gray-800: #1e293b; --gray-900: #0f172a;

  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --sidebar-w: 248px;
  --shadow-card: 0 1px 3px rgba(58,35,23,.06);
  --shadow-hover: 0 6px 22px rgba(58,35,23,.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--slate);
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; color: var(--clay-ink); }
a { color: var(--clay-deep); }

/* ===== Sidebar (clay, portal-style) ===== */
.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: var(--sidebar-w);
  background: linear-gradient(180deg, var(--clay-deep) 0%, var(--clay) 100%);
  color: #fff; display: flex; flex-direction: column;
  padding: 24px 14px 18px; z-index: 40; overflow-y: auto;
}
.sidebar-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  color: #fff; font-weight: 800; font-size: 1.05rem;
  font-family: 'Plus Jakarta Sans', sans-serif; padding: 0 10px;
}
.sidebar-logo-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 800;
}
.sidebar-brand { font-size: .72rem; opacity: .78; padding: 2px 10px 14px 58px; }
.sidebar-brand a { color: #fff; }

.sidebar-search {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 9px; padding: 7px 12px; margin: 0 4px 16px;
  font-size: .82rem; color: rgba(255,255,255,.75); cursor: default;
}
.sidebar-search kbd {
  margin-left: auto; font-size: .68rem; background: rgba(0,0,0,.18);
  border-radius: 4px; padding: 1px 6px; font-family: inherit;
}

.sidebar-nav { flex: 1; }
.nav-link {
  display: flex; align-items: center; gap: 10px;
  color: #fff; text-decoration: none; opacity: .88; font-weight: 500;
  font-size: .92rem; padding: 8px 12px; border-radius: 9px; margin-bottom: 2px;
}
.nav-link:hover { background: rgba(255,255,255,.12); opacity: 1; }
.nav-link.active { background: rgba(255,255,255,.22); opacity: 1; font-weight: 700; }
.nav-icon { width: 20px; text-align: center; }

.sidebar-bottom { padding: 14px 4px 0; }
.sidebar-bottom a {
  color: rgba(255,255,255,.8); text-decoration: none; font-size: .78rem; margin-right: 12px;
}
.sidebar-bottom a:hover { color: #fff; }
.sidebar-login {
  display: block; background: #fff !important; color: var(--clay-deep) !important;
  border-radius: 10px; text-align: center; font-weight: 700; font-size: .9rem !important;
  padding: 10px; margin-top: 12px;
}

/* Mobile hamburger */
.hamburger-toggle {
  display: none; position: fixed; top: 14px; left: 14px; z-index: 60;
  width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--ivory); cursor: pointer; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
}
.hamburger-toggle span { width: 18px; height: 2px; background: var(--clay-ink); border-radius: 2px; }

/* ===== Main column ===== */
.main { margin-left: var(--sidebar-w); min-height: 100vh; }

/* Top bar */
.topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 14px;
  background: rgba(253,252,248,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); padding: 11px 32px;
}
.topbar-search {
  flex: 1; max-width: 430px; display: flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 14px; color: var(--gray-500); font-size: .87rem;
}
.askfact {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid var(--blue); color: var(--blue); background: #fff;
  border-radius: 10px; padding: 7px 16px; font-weight: 700; font-size: .87rem;
  text-decoration: none;
}
.askfact:hover { background: #eff4fe; }
.tierchip {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 7px 14px; font-size: .84rem; color: var(--slate); white-space: nowrap;
}
.tierchip .shield {
  width: 18px; height: 18px; border-radius: 50%; background: var(--clay-ink);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: .6rem;
}
.tierchip b { color: var(--clay-ink); }

/* Announcement band */
.announce {
  display: flex; align-items: center; gap: 14px;
  background: var(--clay); color: #fff; padding: 11px 32px;
  font-weight: 600; font-size: .9rem;
}
.announce .diamond {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  background: rgba(0,0,0,.18); display: inline-flex; align-items: center; justify-content: center;
}
.announce .announce-btn {
  margin-left: auto; background: #fff; color: var(--clay-ink);
  border-radius: 8px; padding: 6px 16px; font-weight: 700; font-size: .84rem;
  text-decoration: none; white-space: nowrap;
}
.announce .announce-close { background: none; border: none; color: rgba(255,255,255,.85); font-size: 1rem; cursor: pointer; }

/* Breadcrumb */
.crumb { font-size: .83rem; color: var(--gray-400); padding: 22px 48px 0; }
.crumb b { color: var(--clay-deep); font-weight: 600; }

/* ===== Hero ===== */
.hero { padding: 22px 48px 8px; }
.hero-inner {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 44px 48px; display: grid; grid-template-columns: 1.35fr 1fr;
  gap: 44px; align-items: start;
}
.hero-badge {
  display: inline-block; font-size: .74rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--clay-deep);
  background: var(--sand); border-radius: var(--radius-full); padding: 5px 14px; margin-bottom: 18px;
}
.hero h1 {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.12;
}
.hero h1 .accent { color: var(--clay); }
.hero-sub { color: var(--gray-400); margin: 16px 0 24px; font-size: 1.02rem; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-stats { display: flex; gap: 28px; margin-top: 6px; font-size: .82rem; color: var(--gray-400); flex-wrap: wrap; }
.hero-stats b { display: block; font-size: 1.3rem; color: var(--clay-ink); font-family: 'Plus Jakarta Sans', sans-serif; }
.hero-gsd {
  margin-top: 22px; font-size: .8rem; color: var(--gray-500);
  border-top: 1px solid var(--line); padding-top: 14px; max-width: 540px;
}

/* Flagship flow card (portal Learning Path pattern) */
.flowcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 26px; box-shadow: 0 8px 30px rgba(58,35,23,.08);
}
.flowcard h4 { font-size: 1rem; margin: 8px 0 3px; }
.flowcard .flow-due { font-size: .78rem; color: var(--gray-400); margin-bottom: 10px; }
.chip {
  display: inline-block; border-radius: 6px; padding: 2px 10px;
  font-size: .72rem; font-weight: 700;
}
.chip-prog { background: #fdeacc; color: #9a6206; }
.chip-free { background: #d9f2e5; color: #0b7a4b; }
.chip-wait { background: var(--sand); color: var(--clay-dark); }
.flow-bar { height: 7px; background: var(--sand); border-radius: var(--radius-full); overflow: hidden; margin: 8px 0 4px; }
.flow-bar i { display: block; height: 100%; width: 0%; background: var(--blue); border-radius: var(--radius-full); }
.flow-meta { font-size: .74rem; color: var(--gray-400); text-align: right; margin-bottom: 8px; }
.flow-step { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: .85rem; }
.flow-step .ck {
  width: 19px; height: 19px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  border: 2px solid var(--line); display: inline-flex; align-items: center;
  justify-content: center; font-size: .6rem;
}
.flow-step.done .ck { background: var(--green); border-color: var(--green); color: #fff; }
.flow-step .step-stage { color: var(--gray-400); font-size: .72rem; display: block; }
.flowcard .btn { display: block; text-align: center; margin-top: 14px; }

/* Feature pills */
.feature-pills { display: flex; gap: 12px; flex-wrap: wrap; padding: 24px 48px 8px; }
.feature-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-full);
  padding: 8px 16px; font-size: .84rem; font-weight: 600; color: var(--slate);
}
.pill-icon { font-size: 1rem; }

/* ===== Sections ===== */
.section-sep { height: 26px; }
.content-section { padding: 20px 48px 8px; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 4px; flex-wrap: wrap;
}
.section-header h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -.01em; }
.section-meta { font-size: .82rem; color: var(--gray-400); margin-bottom: 16px; }

.nav-arrows { display: flex; gap: 6px; }
.nav-arrow {
  width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line);
  background: #fff; color: var(--clay-ink); font-size: 1.05rem; cursor: pointer;
}
.nav-arrow:disabled { opacity: .35; cursor: default; }

.card-row {
  display: flex; gap: 18px; overflow-x: auto; padding: 4px 2px 16px;
  scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.card-row > * { scroll-snap-align: start; }

/* Workshop cards (CMS-rendered — class contract with notion-cms.js) */
.workshop-card, .guide-card, .course-card {
  flex: 0 0 288px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card); transition: box-shadow .15s ease;
}
.workshop-card:hover, .guide-card:hover, .course-card:hover { box-shadow: var(--shadow-hover); }

.workshop-thumb, .guide-thumb {
  position: relative; height: 108px; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sand), #fff);
  border-bottom: 1px solid var(--line);
}
.workshop-tag {
  position: absolute; top: 10px; left: 10px; font-size: .62rem; font-weight: 800;
  letter-spacing: .05em; border-radius: 6px; padding: 3px 8px;
}
.tag-coming-soon { background: var(--sand); color: var(--clay-dark); }
.tag-bookable { background: var(--green); color: #fff; }
.workshop-date {
  position: absolute; bottom: 10px; right: 10px; font-size: .68rem;
  background: rgba(255,255,255,.9); border: 1px solid var(--line);
  border-radius: 6px; padding: 2px 8px; color: var(--gray-500);
}
.workshop-body, .guide-body, .course-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.workshop-title, .guide-title, .course-title {
  font-weight: 700; font-size: .95rem; color: var(--clay-ink); line-height: 1.35;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.workshop-instructor { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--gray-400); }
.instructor-avatar {
  width: 24px; height: 24px; border-radius: 50%; background: var(--clay);
  color: #fff; font-size: .68rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.workshop-level {
  align-self: flex-start; font-size: .68rem; font-weight: 700;
  border-radius: 6px; padding: 2px 9px;
}
.level-beginner { background: #d9f2e5; color: #0b7a4b; }
.level-intermediate { background: #e3ecfd; color: #1d4fd7; }
.level-advanced { background: #fdeacc; color: #9a6206; }
.workshop-price { font-weight: 800; color: var(--clay-ink); font-size: .95rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.workshop-actions { margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; }

/* Course cards */
.course-thumb { position: relative; }
.course-thumb-bg {
  height: 120px; padding: 14px 16px; display: flex; flex-direction: column;
  justify-content: flex-end; gap: 4px;
  background: linear-gradient(135deg, #4a2417, var(--clay));
  border-bottom: 1px solid var(--line);
}
.course-thumb-bg.cg { background: linear-gradient(135deg, #4a2417, var(--clay)); }
.course-thumb-bg.agile { background: linear-gradient(135deg, #14324f, #2563eb); }
.course-thumb-bg.strengths { background: linear-gradient(135deg, #0b4636, #10b981); }
.course-thumb-label { font-size: .64rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: #ffd9c7; }
.course-thumb-title { font-size: .92rem; font-weight: 700; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.3; }
.course-meta-row { font-size: .76rem; color: var(--gray-400); }

/* Playbook cards */
.playbook-thumb {
  background: linear-gradient(135deg, #4a2417 0%, var(--clay) 100%) !important;
  color: #fff;
}

/* ===== Depth strip ===== */
.depth-strip { padding: 26px 48px; }
.depth-inner {
  background: linear-gradient(135deg, #4a2417 0%, var(--clay-deep) 60%, var(--clay) 100%);
  border-radius: var(--radius-xl); color: #fff; padding: 36px 42px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: center;
}
.depth-inner h2 { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.depth-inner p { opacity: .9; margin-top: 10px; font-size: .95rem; max-width: 560px; }
.depth-demo {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-lg); padding: 20px 22px; font-size: .85rem;
}
.depth-demo .play {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--clay-deep);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 12px;
}
.depth-demo b { display: block; margin-bottom: 4px; font-family: 'Plus Jakarta Sans', sans-serif; }

/* ===== Advisory ===== */
.advisory-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.advisory-pillar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow-card);
}
.pillar-num {
  display: inline-flex; width: 28px; height: 28px; border-radius: 8px;
  background: var(--sand); color: var(--clay-deep); font-weight: 800;
  align-items: center; justify-content: center; margin-bottom: 10px; font-size: .85rem;
}
.advisory-pillar h4 { font-size: .95rem; margin-bottom: 6px; }
.advisory-pillar p { font-size: .82rem; color: var(--gray-400); }
.advisory-note {
  margin-top: 32px; padding: 18px 20px; background: var(--sand);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  font-size: .88rem; color: var(--gray-500);
}

/* ===== Community banner ===== */
.community-banner {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 32px 38px; display: flex; align-items: center; gap: 30px; justify-content: space-between;
}
.community-banner h3 { font-size: 1.25rem; margin-bottom: 8px; }
.community-banner p { color: var(--gray-400); font-size: .92rem; max-width: 560px; margin-bottom: 16px; }
.community-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Waitlist ===== */
.waitlist-section { text-align: center; }
.waitlist-badge {
  display: inline-block; background: var(--sand); color: var(--clay-dark);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--radius-full); padding: 5px 14px; margin-bottom: 14px;
}
.overline { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.waitlist-form-full { max-width: 620px; margin: 0 auto; }
.form-row { display: flex; gap: 12px; margin-bottom: 12px; }
.form-row input, .form-row select {
  flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; font: inherit; font-size: .92rem; color: var(--slate);
}
.form-row input:focus, .form-row select:focus { outline: 2px solid var(--clay); border-color: var(--clay); }
.waitlist-optin { text-align: left; margin: 4px 0 18px; }
.optin-label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.optin-label input { margin-top: 4px; accent-color: var(--clay); }
.optin-text { font-size: .82rem; color: var(--gray-400); }
.optin-text strong { display: block; color: var(--slate); }

/* ===== Buttons (contract: notion-cms.js emits btn-purple etc.) ===== */
.btn {
  display: inline-block; border-radius: 10px; padding: 11px 22px;
  font-weight: 700; font-size: .9rem; text-decoration: none;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-purple { background: var(--clay); color: #fff; box-shadow: 0 2px 6px rgba(176,85,54,.28); }
.btn-purple:hover { background: var(--clay-deep); }
.btn-outline-light, .btn-outline {
  border: 1.5px solid var(--clay); color: var(--clay-deep); background: #fff;
}
.btn-ghost { border: 1.5px solid var(--line); color: var(--slate); background: transparent; }
.btn-sm { padding: 7px 14px; font-size: .8rem; }
.btn-lg { padding: 13px 30px; font-size: .98rem; }
.btn-disabled { background: var(--gray-200); color: var(--gray-500); cursor: default; }

/* ===== Footer ===== */
.footer-mini {
  margin: 40px 48px 0; padding: 18px 0 30px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: .78rem; color: var(--gray-500);
}
.footer-mini a { color: var(--gray-500); text-decoration: none; margin-left: 16px; }
.footer-mini a:hover { color: var(--clay-deep); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .sidebar { transform: translateX(-100%); transition: transform .25s ease; }
  .sidebar.open { transform: translateX(0); }
  .hamburger-toggle { display: flex; }
  .main { margin-left: 0; }
  .topbar { padding-left: 68px; }
  .hero-inner, .depth-inner { grid-template-columns: 1fr; padding: 30px 26px; }
  .hero, .content-section, .crumb, .depth-strip { padding-left: 20px; padding-right: 20px; }
  .feature-pills { padding: 20px 20px 4px; }
  .footer-mini { margin: 30px 20px 0; }
  .form-row { flex-direction: column; }
  .tierchip { display: none; }
}

/* ===== Roadmap — "shipping in public" (flow pattern) ===== */
.roadmap-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 30px; box-shadow: var(--shadow-card); max-width: 760px;
}
.roadmap-card .flow-step { padding: 8px 0; font-size: .9rem; }
.roadmap-card .flow-step.done span { color: var(--gray-500); }
.roadmap-card .flow-step.done strong { color: var(--gray-500); font-weight: 600; }
.flow-step.feature {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; margin: 6px 0;
}
.flow-step.feature strong { color: var(--clay-deep); }
.lane-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-400); margin: 14px 0 2px; display: flex; align-items: center; gap: 10px;
}
.lane-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.flow-step.later { opacity: .6; }
.roadmap-note { font-size: .8rem; color: var(--gray-400); margin-top: 14px; }

/* Academy lockup */
.sidebar-logo { line-height: 1.15; }
.logo-academy { font-weight: 600; font-size: .82em; letter-spacing: .12em; text-transform: uppercase; opacity: .92; }
.sidebar-brand strong { color: #fff; opacity: .95; }

/* AO corporate mark in topbar (portal dual-logo pattern) */
.ao-mark {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0a0f1c; color: #fff; border-radius: 9px; padding: 7px 12px;
  font-weight: 800; font-size: .8rem; text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif; border: 1px solid #2563eb44;
}
.ao-mark:hover { background: #111827; }
.ao-mark small { font-weight: 600; color: #93b4f5; font-size: .72rem; }

/* Shared AOB suite footer (cross-suite connective tissue) */
.aob-foot { margin: 56px 48px 0; border-top: 1px solid var(--line); padding: 40px 0 30px; }
.aob-foot-grid { display: grid; grid-template-columns: 2fr 1fr 1.3fr 1fr; gap: 30px; }
.aob-foot-brand-line { display: flex; align-items: center; gap: 11px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.02rem; color: var(--clay-ink); text-decoration: none; margin-bottom: 14px; }
.aob-foot-logo { width: 34px; height: 34px; border-radius: 9px; background: #0a0f1c; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 800; }
.aob-foot-brand p { color: var(--gray-400); font-size: .86rem; line-height: 1.6; max-width: 300px; margin: 0; }
.aob-foot-brand p a { color: #1d4fd7; font-weight: 600; }
.aob-foot h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--clay-ink); margin: 0 0 14px; }
.aob-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.aob-foot ul a { color: var(--gray-500); font-size: .88rem; text-decoration: none; }
.aob-foot ul a:hover { color: var(--clay-deep); }
.aob-foot ul .here { color: var(--clay-deep); font-weight: 700; font-size: .88rem; }
.aob-foot-bot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 34px;
  padding-top: 22px; border-top: 1px solid var(--line); color: var(--gray-500); font-size: .8rem; flex-wrap: wrap; }
.aob-foot-soc { display: flex; gap: 10px; }
.aob-foot-soc a { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line); display: flex;
  align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: var(--gray-500); text-decoration: none; }
.aob-foot-soc a:hover { color: var(--clay-deep); border-color: var(--clay); }
@media (max-width: 980px) { .aob-foot { margin: 40px 20px 0; } .aob-foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .aob-foot-grid { grid-template-columns: 1fr; } }

/* Wordplay device: AI inside trAIning */
.ai-mark { color: var(--clay); font-weight: 800; }
.hero-badge .ai-mark { text-transform: none; }
