:root {
  --ink: #261b1a;
  --muted: #6f625c;
  --cream: #fffaf1;
  --paper: #fffdf8;
  --paper-raised: #FFFFFF;
  --sand: #f5ead8;
  --line: #e5d2b8;
  --gold: #e98a1b;
  --gold-dark: #b86212;
  --teal: #087c7a;
  --teal-dark: #045c61;
  --green: #75a92d;
  --purple: #7560b6;
  --coral: #d95138;
  --shadow: 0 16px 42px rgba(93, 54, 17, .13);
  --soft-shadow: 0 8px 24px rgba(93, 54, 17, .09);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 11px;
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fffdf9;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
button, textarea, input { font: inherit; }
button { cursor: pointer; }

/* ============================================================
   SHARED SITE HEADER / NAVIGATION
   Used identically on every page - homepage and all shop pages.
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 76px;
  padding: 12px clamp(18px, 3vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 210, 184, .8);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 700;
  white-space: nowrap;
  color: inherit;
}
.brand-mark { width: 40px; height: 40px; }
.brand-dot { color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: clamp(8px, 0.9vw, 20px); font-size: clamp(13px, 0.95vw, 17px); font-weight: 700; }
.main-nav > a, .shop-trigger { text-decoration: none; white-space: nowrap; }
.main-nav > a:not(.nav-cta):hover, .shop-trigger:hover { color: var(--gold-dark); }
.nav-cta {
  border: 1px solid #acd1cc;
  border-radius: 10px;
  padding: 10px 16px;
  color: var(--teal-dark);
  background: #f5fbf9;
}
.shop-menu { position: relative; }
.shop-trigger { border: 0; background: none; color: inherit; font-weight: 700; padding: 10px 0; font-size: inherit; }
.shop-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 320px;
  padding: 10px;
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 110;
}
.shop-menu.open .shop-dropdown { display: grid; }
.shop-dropdown a {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
}
.shop-dropdown a:hover { background: var(--sand); }
.shop-dropdown span { color: var(--muted); font-size: 12px; }
.dropdown-soon {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  opacity: 0.5;
  cursor: default;
}
.dropdown-soon b { color: var(--ink); }
.dropdown-soon span { font-size: 12px; color: var(--muted); }
.nav-toggle { display: none; border: 0; background: none; font-size: 26px; color: var(--ink); }

@media (max-width: 1450px) {
  .main-nav { gap: 15px; font-size: 20px; }
}
@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 76px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; padding: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); z-index: 105; }
  .main-nav.open { display: flex; }
  .shop-dropdown { position: static; width: auto; margin-top: 6px; box-shadow: none; }
}

/* Shop sub-nav (Shop / Books / Control Bundles / Courses tabs) */
.nav-tabs { max-width: none; margin: 0 auto 8px; display: flex; gap: 22px; font-size: 16px; font-weight: 600; font-family: 'Inter', sans-serif; padding: 22px clamp(18px, 3vw, 64px) 4px; }
.nav-tabs a { color: var(--muted); text-decoration: none; padding-bottom: 6px; }
.nav-tabs a.active { color: var(--ink); font-weight: 700; border-bottom: 3px solid var(--teal); }

/* ============================================================
   BUTTONS (shared)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: all .15s;
}
.btn-primary, .btn-wide {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(4, 92, 97, .18);
}
.btn-primary:hover, .btn-wide:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-secondary { color: var(--teal-dark); background: rgba(255,255,255,.46); border-color: var(--teal); }
.btn-secondary:hover { background: #fff; }
.btn-wide { width: 100%; border: 0; }
.btn-owned { background: var(--sand); border-color: var(--gold); color: var(--ink); }

/* ============================================================
   HOMEPAGE: HERO
   ============================================================ */
.hero-shell {
  background:
    radial-gradient(circle at 31% 34%, rgba(255, 237, 184, .72), transparent 34%),
    radial-gradient(circle at 75% 22%, rgba(255, 179, 82, .28), transparent 31%),
    linear-gradient(115deg, #fff8e9 0%, #ffe4b5 48%, #ffedcf 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid {
  max-width: none;
  margin: 0 auto;
  padding: 24px clamp(18px, 3vw, 64px) 14px;
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1fr 1fr 1fr;
  grid-template-areas: "copy photo start challenge preview" "copy photo start visual preview";
  gap: clamp(14px, 1.4vw, 26px);
  align-items: stretch;
}
.hero-copy { grid-area: copy; padding: 8px 0 14px; align-self: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}
h1 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(44px, 4.2vw, 78px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 span { color: var(--gold); }
.hero-copy > p { max-width: 570px; margin: 18px 0 16px; color: #493a35; font-size: 16px; }
.proof-quote {
  max-width: 560px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(209, 165, 104, .7);
}
.proof-quote span { color: var(--muted); font-size: 12px; }
.stars { color: var(--gold); letter-spacing: 1px; }
.hero-actions { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }

.team-photo {
  grid-area: photo;
  position: relative;
  min-height: 590px;
  max-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(64, 33, 10, .24));
  pointer-events: none;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: saturate(.9) sepia(.08) contrast(1.02); }
.photo-dashboard {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: 1fr 86px 1.35fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  color: #fff;
  background: rgba(48, 33, 25, .86);
  border: 1px solid rgba(255, 206, 122, .48);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.photo-dashboard small { display: block; color: #e7d8c4; margin-top: 4px; }
.mini-chart { height: 54px; display: flex; gap: 6px; align-items: end; }
.mini-chart span { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(#ffd05d, #e27a15); }
.mini-donut { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(#f6a623 0 62%, #2a9a94 62% 100%); position: relative; }
.mini-donut::after { content: ""; width: 44px; height: 44px; border-radius: 50%; background: #302119; position: absolute; }
.mini-donut span { z-index: 1; font-size: 12px; font-weight: 700; }

.card {
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(219, 189, 147, .82);
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
}
.start-card { grid-area: start; padding: 18px; }
.challenge-card { grid-area: challenge; padding: 18px; }
.preview-card { grid-area: preview; padding: 16px; }
.card-title-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.card-title-row h2, .preview-card h2 { margin: 0; font-size: 40px; }
.card-title-row p { margin: 2px 0 0; color: var(--muted); font-size: 11px; }
.title-icon { color: var(--gold); font-size: 24px; line-height: 1; }
fieldset { margin: 0 0 14px; padding: 0; border: 0; }
legend, .examples h3 { margin-bottom: 8px; font-size: 12px; font-weight: 700; }
.choice-grid { display: grid; gap: 7px; }
.persona-grid { grid-template-columns: repeat(3, 1fr); }
.need-grid { grid-template-columns: repeat(2, 1fr); }
.choice-grid button, .examples button {
  min-height: 39px;
  padding: 8px 9px;
  color: #493a35;
  background: #fffaf3;
  border: 1px solid #e4d3bd;
  border-radius: 9px;
  font-size: 11px;
  text-align: center;
}
.choice-grid button:hover, .choice-grid button.selected { border-color: var(--teal); background: #eef9f7; color: var(--teal-dark); }
.microcopy { margin: 10px 0 0; color: var(--muted); font-size: 10.5px; text-align: center; }
.challenge-card textarea {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  padding: 13px;
  color: var(--ink);
  background: #fffaf3;
  border: 1px solid #e4d3bd;
  border-radius: 10px;
  outline: none;
  line-height: 1.5;
  font-size: 13px;
}
.challenge-card textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,124,122,.1); }
.input-meta { display: flex; justify-content: flex-end; color: var(--muted); font-size: 10px; margin-top: -20px; padding: 0 10px 7px 0; position: relative; }
.resolve-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 14px 0; }
.resolve-row .microcopy { margin: 0; text-align: right; }
.examples { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.examples h3 { margin: 0 12px 0 0; font-size: 13px; white-space: nowrap; }
.examples button { display: inline-flex; align-items: center; gap: 6px; text-align: left; background: #fffdf9; padding: 6px 12px; border-radius: 999px; font-size: 12.5px; width: auto; }
.examples button span { font-size: 11px; }
.examples button:hover { border-color: var(--gold); background: #fff5e3; }

.visual-card {
  grid-area: visual;
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 249, 231, .9), rgba(244, 165, 52, .35));
  border: 1px solid rgba(229, 166, 80, .65);
  box-shadow: var(--soft-shadow);
}
.framework-stack { position: absolute; z-index: 3; top: 18px; left: 15px; width: 42%; display: grid; gap: 7px; }
.framework { padding: 9px 12px; color: #fff; border-radius: 9px; font-weight: 700; font-size: 13px; box-shadow: 0 8px 18px rgba(79,44,13,.13); }
.dora { background: #75604e; } .gdpr { background: #bb4d27; } .iso { background: #267e7b; } .nis { background: #b56a0f; } .more { background: #c17d20; }
.flow-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hub-label { position: absolute; right: 24px; bottom: 68px; z-index: 3; color: #fff8e8; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: 11px; transform: rotate(-3deg); }
.visual-link { position: absolute; z-index: 4; left: 14px; right: 14px; bottom: 12px; display: grid; gap: 2px; padding: 10px 12px; border-radius: 999px; text-decoration: none; background: rgba(255,253,248,.92); border: 1px solid #e8ca9f; box-shadow: 0 8px 18px rgba(94,54,14,.14); font-size: 11px; }
.visual-link span { color: var(--muted); font-size: 9px; }

.preview-card h2 { color: var(--teal-dark); text-transform: uppercase; font-size: 13.5px; letter-spacing: .04em; padding-bottom: 10px; border-bottom: 1px solid #eadcc8; }
.preview-item { display: grid; grid-template-columns: 30px 1fr; gap: 9px; padding: 10px 0; border-bottom: 1px solid #eadcc8; }
.preview-item > span { color: var(--gold); font-size: 23px; }
.preview-item b { font-size: 12px; }
.preview-item p { margin: 3px 0 0; color: #594a43; font-size: 10px; line-height: 1.4; }
.preview-link { display: block; padding-top: 12px; color: var(--teal-dark); text-decoration: none; font-size: 11px; font-weight: 700; text-align: center; }

.metrics {
  max-width: none;
  margin: 0 auto;
  padding: 12px clamp(18px, 2.7vw, 46px) 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.metrics > div { display: grid; grid-template-columns: 62px 1fr; gap: 12px; align-items: center; padding: 8px 20px; border-right: 1px solid rgba(205, 166, 112, .55); }
.metrics > div:last-child { border-right: 0; }
.metric-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-size: 28px; box-shadow: 0 10px 18px rgba(74,40,12,.15); }
.metric-icon.teal { background: linear-gradient(145deg,#14a7a2,#086d72); } .metric-icon.green { background: linear-gradient(145deg,#9bc53d,#609b1d); } .metric-icon.orange { background: linear-gradient(145deg,#ffa72a,#d9680e); } .metric-icon.purple { background: linear-gradient(145deg,#8b76d2,#5946a0); } .metric-icon.coral { background: linear-gradient(145deg,#ef704f,#bd3428); }
.metrics p { margin: 0; display: grid; gap: 1px; }
.metrics b { font-size: 25px; line-height: 1.05; }
.metrics strong { font-size: 11px; }
.metrics small { color: var(--muted); font-size: 9.5px; }

.how-section { padding: 8px clamp(18px, 4vw, 120px) 16px; background: #fff; }
.section-kicker { margin: 0 0 10px; color: var(--teal-dark); text-align: center; text-transform: uppercase; font-weight: 800; font-size: 13px; letter-spacing: .04em; }
.steps { max-width: none; margin: 0 auto; display: grid; grid-template-columns: 1fr 44px 1fr 44px 1fr; gap: 8px; align-items: center; }
.steps article { min-height: 118px; display: grid; grid-template-columns: 34px 62px 1fr; gap: 10px; align-items: center; padding: 14px; border: 1px solid #eadcc8; border-radius: 14px; background: #fffdf9; }
.step-number { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--teal); font-weight: 800; align-self: start; }
.step-number.green { background: var(--green); } .step-number.orange { background: var(--gold); }
.step-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: var(--teal); background: #eef8f7; font-size: 30px; }
.steps h2 { margin: 0 0 4px; font-size: 14px; }
.steps p { margin: 0; color: var(--muted); font-size: 11px; }
.step-arrow { text-align: center; font-size: 28px; color: #493a35; }

.enterprise-section { max-width: none; margin: 0 auto 40px; padding: 16px 26px 28px; background: #fffaf2; border: 1px solid #ebdcc6; border-radius: 16px; box-shadow: var(--soft-shadow); }
.enterprise-section > h2 { margin: 0; text-align: center; font-family: Fraunces, Georgia, serif; font-size: 24px; }
.enterprise-section > p { margin: 2px 0 18px; text-align: center; color: var(--muted); font-size: 12px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-grid a { min-height: 95px; display: grid; grid-template-columns: 54px 1fr; gap: 12px; align-items: center; padding: 12px 20px; text-decoration: none; border-right: 1px solid #e7d6bf; }
.feature-grid a:last-child { border-right: 0; }
.feature-grid a > span { color: var(--teal); font-size: 40px; }
.feature-grid a:last-child > span { color: var(--gold); }
.feature-grid b { font-size: 13px; }
.feature-grid p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.feature-grid a:hover { background: #fff5e5; }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 200; transform: translate(-50%, 30px); padding: 12px 18px; color: #fff; background: #35251e; border-radius: 999px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .2s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Real search results panel ---------- */
.results-panel { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 16px; }
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.results-header h3 { font-family: Fraunces, Georgia, serif; font-size: 16px; margin: 0; }
.results-close { background: none; border: none; cursor: pointer; font-size: 15px; color: var(--muted); padding: 4px 8px; }
.results-close:hover { color: var(--ink); }
.results-status { font-size: 12.5px; color: var(--gold-dark); background: var(--sand); border-radius: var(--radius-sm); padding: 6px 10px; margin-bottom: 10px; }
.results-loading { font-size: 13.5px; color: var(--muted); padding: 16px 4px; }
.results-list { display: flex; flex-direction: column; gap: 10px; max-height: 420px; overflow-y: auto; }
.result-item { display: flex; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); }
.result-item.is-clickable { cursor: pointer; }
.result-item.is-clickable:hover { border-color: var(--teal); background: var(--cream); }
.result-item.is-copyrighted { border-color: var(--gold); background: var(--sand); }
.result-icon { font-size: 18px; flex-shrink: 0; }
.result-body { flex: 1; min-width: 0; }
.result-top { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; flex-wrap: wrap; }
.result-type { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--teal-dark); font-weight: 600; }
.result-code { font-size: 10.5px; font-family: monospace; color: var(--muted); background: var(--sand); padding: 1px 6px; border-radius: 6px; }
.result-price { font-size: 12px; font-weight: 700; color: var(--gold-dark); margin-left: auto; }
.result-title-text { display: block; font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.result-reason { font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.4; }

/* ---------- Success stories section ---------- */
.success-section { max-width: none; margin: 0 auto; padding: 64px 24px; text-align: center; }
.success-heading { font-family: Fraunces, Georgia, serif; font-size: 30px; margin: 8px 0 10px; color: var(--ink); }
.success-subhead { font-size: 14.5px; color: var(--muted); max-width: 640px; margin: 0 auto 36px; line-height: 1.5; }
.success-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.success-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--soft-shadow); }
.success-metric { font-family: Fraunces, Georgia, serif; font-size: 34px; font-weight: 700; color: var(--teal-dark); margin-bottom: 2px; }
.success-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--gold-dark); font-weight: 600; margin: 0 0 12px; }
.success-body { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.success-footnote { font-size: 13px; color: var(--muted); margin-top: 32px; }
.success-footnote a { color: var(--teal-dark); font-weight: 600; }

/* ---------- Library showcase section ---------- */
.library-section { max-width: none; margin: 0 auto; padding: 64px 24px 48px; text-align: center; }
.library-heading { font-family: Fraunces, Georgia, serif; font-size: 30px; margin: 8px 0 10px; color: var(--ink); }
.library-subhead { font-size: 14.5px; color: var(--muted); max-width: 620px; margin: 0 auto 36px; line-height: 1.5; }
.library-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: left; }
.library-card { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px; text-decoration: none; color: inherit; transition: transform .15s, box-shadow .15s, border-color .15s; }
.library-card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); border-color: var(--teal); }
.library-count { font-family: Fraunces, Georgia, serif; font-size: 26px; font-weight: 700; color: var(--gold-dark); margin-bottom: 6px; }
.library-card b { display: block; font-size: 14.5px; color: var(--ink); margin-bottom: 6px; }
.library-card p { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; }
.library-cta { display: inline-block; margin-top: 32px; font-size: 14px; font-weight: 600; color: var(--teal-dark); text-decoration: none; }
.library-cta:hover { text-decoration: underline; }

/* ============================================================
   SHOP PAGES: hub, books, bundles, courses
   ============================================================ */
.page-header { max-width: none; margin: 24px auto 36px; padding: 0 clamp(18px, 3vw, 64px); }
.page-header h1 { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 700; margin: 18px 0 8px; }
.page-header p { color: var(--muted); font-size: 15px; margin: 0; max-width: 640px; line-height: 1.5; }

.search-bar-wrap { max-width: none; margin: 0 auto 16px; padding: 0 clamp(18px, 3vw, 64px); }
.search-input {
  width: 100%; padding: 12px 16px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--paper-raised); color: var(--ink); font-size: 14px; font-family: 'Inter', sans-serif;
}
.search-input:focus { outline: none; border-color: var(--teal); }

.filter-bar { max-width: none; margin: 0 auto 28px; padding: 0 clamp(18px, 3vw, 64px); display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 500; cursor: pointer;
  border: 1px solid var(--line); background: var(--paper-raised); color: var(--muted);
  font-family: 'Inter', sans-serif; transition: all .15s;
}
.filter-pill.active { background: var(--sand); color: var(--ink); border-color: var(--teal); }

.tier-banner {
  max-width: none; margin: 0 auto 28px; padding: 12px clamp(18px, 3vw, 64px);
  background: var(--sand); border-top: 1px solid var(--teal); border-bottom: 1px solid var(--teal);
  font-size: 13.5px; color: var(--ink); display: none;
}
.tier-banner.show { display: block; }

.grid {
  max-width: none; margin: 0 auto; padding: 0 clamp(18px, 3vw, 64px) 40px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px;
}

/* Shop hub category cards */
.category-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s;
  padding: 28px; text-decoration: none; color: var(--ink);
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); border-color: var(--teal); }
.category-card.disabled { opacity: 0.5; cursor: default; }
.category-card.disabled:hover { transform: none; box-shadow: none; border-color: var(--line); }
.category-icon { font-size: 32px; margin-bottom: 14px; }
.category-title { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; margin: 0 0 8px; }
.category-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; flex: 1; }
.category-tag { font-size: 11px; color: var(--gold-dark); text-transform: uppercase; font-weight: 600; letter-spacing: 0.03em; margin-top: 14px; }
.category-tag.soon { color: var(--muted); }

/* Book cards */
.book-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s;
}
.book-card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); }
.book-cover { width: 100%; aspect-ratio: 2/3; object-fit: cover; background: var(--sand); }
.book-info { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.book-cat-tag { font-size: 10px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.03em; font-weight: 600; }
.book-title { font-family: 'Fraunces', serif; font-size: 15.5px; font-weight: 600; line-height: 1.3; margin: 6px 0 6px; }
.book-desc { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0 0 10px; flex: 1; }
.book-meta { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.book-price { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.book-actions { display: flex; gap: 8px; }
.book-also-on { font-size: 10.5px; color: var(--muted); margin-top: 8px; }
.book-also-on a { color: var(--teal-dark); }

/* Control bundle cards */
.bundle-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 20px; display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s;
}
.bundle-card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); }
.bundle-title { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; margin: 6px 0 8px; }
.bundle-meta { font-size: 12px; color: var(--muted); margin: 0 0 10px; }
.bundle-price { font-size: 16px; font-weight: 700; margin: 10px 0; }

/* Course cards */
.course-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; padding: 20px;
}
.course-card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); }
.course-cat-tag { font-size: 10px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.03em; font-weight: 600; }
.course-title { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; line-height: 1.3; margin: 6px 0 8px; }
.course-meta { font-size: 12px; color: var(--muted); margin: 0 0 10px; display: flex; gap: 10px; flex-wrap: wrap; }
.cert-badge { font-size: 10.5px; padding: 4px 8px; border-radius: 6px; margin-bottom: 12px; display: inline-block; width: fit-content; font-weight: 600; }
.cert-badge.ready { background: var(--sand); color: var(--teal-dark); }
.cert-badge.pending { background: var(--sand); color: var(--gold-dark); }
.course-footer { display: flex; align-items: baseline; justify-content: space-between; margin-top: auto; margin-bottom: 10px; }
.course-price { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; }
.course-price.included { color: var(--teal-dark); font-size: 13px; font-weight: 600; }
.course-price-strike { text-decoration: line-through; color: var(--muted); font-size: 12px; font-weight: 400; margin-right: 6px; }

.loading-note { max-width: none; margin: 0 auto; color: var(--muted); font-size: 14px; text-align: center; padding: 60px clamp(18px, 3vw, 64px); }

.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(38,27,26,0.5); z-index: 200; align-items: center; justify-content: center; padding: 20px; }
.modal { background: var(--paper); border-radius: 20px; max-width: 640px; width: 100%; max-height: 80vh; display: flex; flex-direction: column; overflow: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1450px) {
  .hero-grid { grid-template-columns: 1.05fr 1.35fr .9fr .95fr; grid-template-areas: "copy photo start preview" "copy photo challenge preview" "copy photo visual preview"; }
  .metrics > div { padding-inline: 12px; }
}
@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "copy photo" "start challenge" "visual preview"; }
  .team-photo { min-height: 520px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics > div { border-right: 0; border-bottom: 1px solid rgba(205,166,112,.45); }
  .metrics > div:last-child { grid-column: 1 / -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid a:nth-child(2) { border-right: 0; }
  .feature-grid a { border-bottom: 1px solid #e7d6bf; }
  .success-grid { grid-template-columns: 1fr; }
  .library-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .site-header { min-height: 66px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "copy" "photo" "start" "challenge" "visual" "preview"; padding-top: 12px; }
  .hero-copy { text-align: left; }
  .team-photo { min-height: 450px; }
  .photo-dashboard { grid-template-columns: 1fr 62px; }
  .photo-dashboard > div:last-child { grid-column: 1 / -1; }
  .mini-donut { width: 58px; height: 58px; }
  .metrics { grid-template-columns: 1fr; }
  .metrics > div:last-child { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid a { border-right: 0; }
  .persona-grid, .need-grid { grid-template-columns: repeat(2, 1fr); }
  .library-grid { grid-template-columns: 1fr; }
}

/* ---------- Pricing page ---------- */
.pricing-section { max-width: none; margin: 0 auto; padding: 48px clamp(18px, 3vw, 64px) 60px; }
.pricing-heading { font-family: Fraunces, Georgia, serif; font-size: clamp(30px, 3vw, 42px); text-align: center; margin: 0 0 12px; }
.pricing-subhead { text-align: center; color: var(--muted); font-size: 15px; max-width: 620px; margin: 0 auto 44px; line-height: 1.6; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.pricing-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
}
.pricing-card.popular { border: 2px solid var(--gold); box-shadow: var(--soft-shadow); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.pricing-tier-name { font-family: Fraunces, Georgia, serif; font-size: 18px; font-weight: 700; margin: 4px 0 6px; }
.pricing-tier-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0 0 18px; min-height: 60px; }
.pricing-amount { font-family: Fraunces, Georgia, serif; font-size: 32px; font-weight: 700; color: var(--ink); }
.pricing-amount .unit { font-family: Inter, sans-serif; font-size: 15px; font-weight: 500; color: var(--muted); }
.pricing-billing { font-size: 12px; color: var(--muted); margin: 2px 0 20px; font-family: monospace; }
.pricing-features { flex: 1; margin: 0 0 20px; }
.pricing-feature { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid #eee3d0; font-size: 13px; }
.pricing-feature:last-child { border-bottom: 0; }
.pricing-feature b { font-weight: 700; text-align: right; }
.pricing-cta-btn {
  width: 100%; text-align: center; padding: 12px; border-radius: 10px;
  font-weight: 700; font-size: 14px; text-decoration: none; border: 1px solid var(--line);
  background: var(--sand); color: var(--ink);
}
.pricing-cta-btn.primary { background: var(--ink); color: #fff; border-color: var(--ink); }

.pricing-faq { max-width: 720px; margin: 0 auto; }
.pricing-faq h2 { font-family: Fraunces, Georgia, serif; font-size: 26px; text-align: center; margin-bottom: 28px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item b { display: block; font-size: 14.5px; margin-bottom: 6px; }
.faq-item p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.back-to-search { display: block; text-align: center; margin-top: 40px; color: var(--teal-dark); text-decoration: none; font-size: 13.5px; font-weight: 600; }

@media (max-width: 980px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---------- Examples page (accordion + filters) ---------- */
.examples-filter-bar { max-width: 900px; margin: 0 auto 32px; padding: 0 clamp(18px,3vw,64px); display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.examples-list { max-width: 900px; margin: 0 auto; padding: 0 clamp(18px,3vw,64px) 60px; }
.example-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 14px; box-shadow: var(--soft-shadow); overflow: hidden; }
.example-item-head { display: flex; align-items: center; gap: 16px; padding: 18px 20px; cursor: pointer; }
.example-item-head:hover { background: var(--sand); }
.example-item-main { flex: 1; min-width: 0; }
.example-item-title { font-size: 16px; font-weight: 700; margin: 0 0 5px; font-family: 'Fraunces', Georgia, serif; }
.example-item-sub { font-size: 13px; color: var(--muted); margin: 0; }
.example-chevron { font-size: 14px; color: var(--muted); transition: transform .2s ease; flex-shrink: 0; }
.example-item.open .example-chevron { transform: rotate(180deg); }
.example-item-body { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.example-item.open .example-item-body { max-height: 900px; }
.example-item-body-inner { padding: 4px 20px 22px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }
.example-detail-block { background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.example-detail-block.wide { grid-column: 1 / -1; }
.example-detail-label { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 6px; }
.example-detail-text { font-size: 13px; line-height: 1.5; color: #493a35; margin: 0; }
@media (max-width: 640px) { .example-item-body-inner { grid-template-columns: 1fr; } }

/* ---------- Richer success story cards (sector + testimonial) ---------- */
.success-card.rich { display: flex; flex-direction: column; }
.sector-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.03em; font-weight: 700; color: var(--gold-dark); margin-bottom: 8px; }
.story-badge-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.testimonial-block { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.testimonial-quote { font-size: 13px; font-style: italic; color: var(--ink); line-height: 1.5; margin: 4px 0 10px; }
.testimonial-person { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.testimonial-attr { font-size: 12px; font-weight: 600; }
.testimonial-attr .role { display: block; font-weight: 400; color: var(--muted); font-size: 11px; }

/* ---------- Expanded How It Works step details ---------- */
.step-details { margin: 10px 0 0; padding-left: 16px; list-style: none; }
.step-details li { position: relative; padding-left: 14px; font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 6px; }
.step-details li::before { content: "\2022"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Examples page (accordion + filters) ---------- */
.examples-filter-bar { max-width: 900px; margin: 0 auto 32px; padding: 0 clamp(18px,3vw,64px); display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.examples-list { max-width: 900px; margin: 0 auto; padding: 0 clamp(18px,3vw,64px) 60px; }
.example-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 14px; box-shadow: var(--soft-shadow); overflow: hidden; }
.example-item-head { display: flex; align-items: center; gap: 16px; padding: 18px 20px; cursor: pointer; }
.example-item-head:hover { background: var(--sand); }
.example-item-main { flex: 1; min-width: 0; }
.example-item-title { font-size: 16px; font-weight: 700; margin: 0 0 5px; font-family: 'Fraunces', Georgia, serif; }
.example-item-sub { font-size: 13px; color: var(--muted); margin: 0; }
.example-chevron { font-size: 14px; color: var(--muted); transition: transform .2s ease; flex-shrink: 0; }
.example-item.open .example-chevron { transform: rotate(180deg); }
.example-item-body { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.example-item.open .example-item-body { max-height: 900px; }
.example-item-body-inner { padding: 4px 20px 22px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }
.example-detail-block { background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.example-detail-block.wide { grid-column: 1 / -1; }
.example-detail-label { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 6px; }
.example-detail-text { font-size: 13px; line-height: 1.5; color: #493a35; margin: 0; }
@media (max-width: 640px) { .example-item-body-inner { grid-template-columns: 1fr; } }

/* ---------- Richer success story cards (sector + testimonial) ---------- */
.success-card.rich { display: flex; flex-direction: column; }
.sector-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.03em; font-weight: 700; color: var(--gold-dark); margin-bottom: 8px; }
.story-badge-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.testimonial-block { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.testimonial-quote { font-size: 13px; font-style: italic; color: var(--ink); line-height: 1.5; margin: 4px 0 10px; }
.testimonial-person { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.testimonial-attr { font-size: 12px; font-weight: 600; }
.testimonial-attr .role { display: block; font-weight: 400; color: var(--muted); font-size: 11px; }

/* ---------- Expanded How It Works step details ---------- */
.step-details { margin: 10px 0 0; padding-left: 16px; list-style: none; }
.step-details li { position: relative; padding-left: 14px; font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 6px; }
.step-details li::before { content: "\2022"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Free-tier upsell banner in search results ---------- */
.upsell-note {
  margin-top: 8px;
  padding: 10px 14px;
  background: var(--sand);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: var(--ink);
}
.upsell-note a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
}
.upsell-note a:hover {
  text-decoration: underline;
}

/* --- picker/synthesis UI (2026-07-29) --- */
.picker-intro { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted); margin: 0 0 10px; }
.picker-group { margin-bottom: 14px; }
.picker-group-label { font-family: Fraunces, serif; font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.picker-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.picker-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--paper-raised); font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink); cursor: pointer; transition: all .15s; }
.picker-chip:hover { border-color: var(--gold); background: var(--sand); }
.picker-chip.is-selected { background: var(--teal); border-color: var(--teal-dark); color: #fff; }
.picker-chip-count { font-size: 11px; opacity: .75; background: rgba(0,0,0,.06); padding: 1px 6px; border-radius: 999px; }
.picker-chip.is-selected .picker-chip-count { background: rgba(255,255,255,.25); }
.picker-actions { display: flex; gap: 14px; align-items: center; margin-top: 14px; flex-wrap: wrap; }
.btn-text { background: none; border: none; color: var(--teal-dark); font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: underline; padding: 0; }
.results-synthesis { background: var(--sand); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 14px 16px; margin: 0 0 14px; font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.55; color: var(--ink); }
.results-synthesis p { margin: 0 0 10px; }
.results-synthesis p:last-child { margin-bottom: 0; }
.synthesis-label { font-family: Fraunces, serif; font-weight: 600; font-size: 13px; color: var(--gold-dark); margin-bottom: 8px; }
.results-refine-row { margin-bottom: 10px; }
.btn-refine { background: none; border: none; color: var(--muted); font-family: 'Inter', sans-serif; font-size: 12px; cursor: pointer; padding: 0; }
.btn-refine:hover { color: var(--teal-dark); }

/* --- search-first hero restructure (2026-07-29) --- */
.hero-intro { max-width: 760px; margin: 0 auto; padding: 44px clamp(18px, 3vw, 64px) 24px; }

.search-hero-shell { background: var(--paper); padding: 0 clamp(18px, 3vw, 64px) 40px; }
.search-hero-inner { max-width: 860px; margin: -18px auto 0; }
.search-hero-inner .challenge-card.is-hero-search { padding: 30px clamp(20px, 3vw, 40px); box-shadow: var(--shadow); }
.search-hero-inner .challenge-card.is-hero-search textarea { min-height: 170px; font-size: 15px; }
.search-hero-inner .card-title-row { margin-bottom: 18px; }
.search-hero-inner .title-icon { font-size: 30px; }

.secondary-row-shell { background: var(--sand); padding: 30px clamp(18px, 3vw, 64px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.secondary-row { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.25fr 1fr; gap: 24px; align-items: stretch; }
.secondary-row .start-card.is-secondary { padding: 18px; }
.secondary-row .start-card.is-secondary .card-title-row h2 { font-size: 22px; }
.secondary-row .team-photo { min-height: 300px; max-height: 340px; }

.explainer-row-shell { padding: 34px clamp(18px, 3vw, 64px); }
.explainer-row { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; align-items: stretch; }
.explainer-row .visual-card { min-height: 320px; }

@media (max-width: 860px) {
  .secondary-row, .explainer-row { grid-template-columns: 1fr; }
  .secondary-row .team-photo { min-height: 220px; max-height: 260px; }
}

/* Footer */
.site-footer { background: linear-gradient(115deg, #fff8e9 0%, #ffe4b5 100%); border-top: 1px solid var(--line); padding: 40px clamp(18px, 3vw, 64px) 0; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 30px; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; max-width: 320px; }
.footer-brand img.brand-mark { height: 28px; width: auto; }
.footer-brand span { font-family: Fraunces, Georgia, serif; font-size: 18px; font-weight: 700; color: var(--ink); }
.footer-brand .brand-dot { color: var(--gold); }
.footer-brand p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-links h3 { font-family: Fraunces, Georgia, serif; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--teal-dark); margin: 0 0 10px; }
.footer-links a { display: block; color: var(--ink); font-size: 13.5px; text-decoration: none; margin-bottom: 8px; }
.footer-links a:hover { color: var(--teal); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(209, 165, 104, .4); padding: 16px clamp(18px, 3vw, 64px); text-align: center; color: var(--muted); font-size: 12px; }

/* --- hero-top 3-column merge (2026-07-29) --- */
/* .hero-shell was renamed to .hero-top-shell during the section merge,
   so we re-apply the same background gradient under the new class name
   rather than duplicate/guess at it. */
.hero-top-shell {
  background:
    radial-gradient(circle at 31% 34%, rgba(255, 237, 184, .72), transparent 34%),
    radial-gradient(circle at 75% 22%, rgba(255, 179, 82, .28), transparent 31%),
    linear-gradient(115deg, #fff8e9 0%, #ffe4b5 48%, #ffedcf 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-top-grid {
  max-width: none;
  margin: 0 auto;
  padding: 28px clamp(18px, 3vw, 64px) 30px;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}
.hero-top-col { min-width: 0; }
.hero-copy-col { padding: 6px 0; }
.hero-copy-col h1 { font-size: clamp(30px, 2.6vw, 42px); }
.hero-copy-col .hero-copy > p { font-size: 14px; max-width: none; }

.search-col .challenge-card.is-hero-search { padding: 18px; box-shadow: var(--soft-shadow); }
.search-col .challenge-card.is-hero-search textarea { min-height: 110px; font-size: 13px; }
.search-col .card-title-row h2 { font-size: 22px; }

.secondary-col { display: flex; flex-direction: column; gap: 16px; }
.secondary-col .start-card.is-secondary { padding: 14px; }
.secondary-col .start-card.is-secondary .card-title-row h2 { font-size: 18px; }
.secondary-col .team-photo { min-height: 180px; max-height: 220px; }

@media (max-width: 1000px) {
  .hero-top-grid { grid-template-columns: 1fr; }
}

/* --- 2-column hero layout fix (2026-07-30) --- */
/* The 2-column restructure reused .hero-top-grid but the old 3-column
   template (1fr 1.15fr 1fr) was left in place with only 2 real children,
   leaving a dead empty third track - this override fixes that and makes
   the search column genuinely ~2x wider than the copy+start column,
   with slightly larger text throughout. */
.hero-top-grid.hero-top-grid-2col {
  grid-template-columns: 0.85fr 2fr;
}
.hero-top-grid.hero-top-grid-2col .hero-copy-and-start-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-top-grid.hero-top-grid-2col .hero-copy-and-start-col .start-card.is-secondary {
  padding: 16px;
}
.hero-top-grid.hero-top-grid-2col .hero-copy-and-start-col .start-card.is-secondary .card-title-row h2 {
  font-size: 18px;
}
.hero-top-grid.hero-top-grid-2col .search-col.is-wide .challenge-card.is-hero-search {
  padding: 30px;
}
.hero-top-grid.hero-top-grid-2col .search-col.is-wide .challenge-card.is-hero-search textarea {
  min-height: 160px;
  font-size: 15.5px;
}
.hero-top-grid.hero-top-grid-2col .search-col.is-wide .card-title-row h2 {
  font-size: 27px;
}
.hero-top-grid.hero-top-grid-2col .search-col.is-wide .card-title-row p {
  font-size: 14.5px;
}
.hero-top-grid.hero-top-grid-2col .search-col.is-wide .resolve-row .btn {
  font-size: 15px;
  padding: 12px 22px;
}
.hero-top-grid.hero-top-grid-2col .search-col.is-wide .examples h3 {
  font-size: 14px;
}
.hero-top-grid.hero-top-grid-2col .search-col.is-wide .examples button {
  font-size: 14px;
}

/* --- streaming synthesis (2026-07-30) --- */
.synthesis-generating {
  font-weight: 400;
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  margin-left: 6px;
  animation: synthesis-pulse 1.4s ease-in-out infinite;
}
@keyframes synthesis-pulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}
.synthesis-body p { margin: 0 0 10px; }
.synthesis-body p:last-child { margin-bottom: 0; }

/* --- book recommendation cards (2026-07-30) --- */
.book-rec {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 16px 10px 10px;
  margin: 6px 8px 6px 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.book-rec:hover {
  border-color: var(--teal, #2F6F5E);
  background: var(--teal-soft, #E1EEE9);
}
.catalog-rec-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-soft, #E1EEE9);
  border-radius: 8px;
  padding: 5px 12px;
  margin: 2px 4px 2px 0;
  text-decoration: none;
  color: var(--teal, #2F6F5E);
  font-weight: 600;
  font-size: 13px;
}
.catalog-rec-link:hover {
  background: var(--teal, #2F6F5E);
  color: #fff;
}
.book-rec-cover {
  width: 64px;
  height: 92px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  flex-shrink: 0;
}
.book-rec-title {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  max-width: 260px;
}

/* --- tabbed results view (2026-07-30) --- */
.results-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.results-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.results-tab:hover { border-color: var(--accent); }
.results-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.results-tab-icon { font-size: 14px; }
.results-tab-count {
  background: rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 11px;
}
.results-tab.is-active .results-tab-count {
  background: rgba(255,255,255,.25);
}

.results-tab-panel { display: none; }
.results-tab-panel.is-active { display: block; }

.results-tab-search { margin-bottom: 10px; }
.results-tab-search input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
}
.results-tab-search input:focus {
  outline: none;
  border-color: var(--accent);
}

.results-tab-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 520px;
  overflow-y: auto;
}

.result-cover {
  width: 64px;
  height: 92px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(0,0,0,.2);
  flex-shrink: 0;
}

/* --- regulation picker rebuild (2026-07-30) --- */
.picker-territory-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.territory-chip {
  background: transparent;
  border: 1px solid var(--line, #DEDACB);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  color: inherit;
}
.territory-chip.is-active {
  background: var(--teal, #2F6F5E);
  border-color: var(--teal, #2F6F5E);
  color: #fff;
}
.territory-chip-count {
  opacity: .7;
  font-size: 11px;
}

.picker-reg-search {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line, #DEDACB);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  margin-bottom: 8px;
}
.picker-reg-search:focus {
  outline: none;
  border-color: var(--teal, #2F6F5E);
}

.picker-reg-scroll {
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: flex-start;
  border: 1px solid var(--line, #DEDACB);
  border-radius: 8px;
  padding: 10px;
}
.reg-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line, #DEDACB);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  cursor: pointer;
  color: inherit;
  white-space: nowrap;
}
.reg-row.has-matches {
  font-weight: 600;
  border-color: var(--gold, #A9822E);
}
.reg-row.is-selected {
  background: var(--teal, #2F6F5E);
  border-color: var(--teal, #2F6F5E);
  color: #fff;
}
.reg-count {
  background: rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 0 6px;
  font-size: 10.5px;
}
.reg-row.is-selected .reg-count {
  background: rgba(255,255,255,.25);
}

/* --- click-to-expand + applied filters (2026-07-30) --- */
.applied-filters-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.applied-filters-label {
  font-size: 12px;
  color: var(--muted, #6E7178);
  font-weight: 600;
  margin-right: 2px;
}
.applied-filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--teal-soft, #E1EEE9);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
}
.applied-filter-reg {
  background: rgba(169,130,46,.15);
}

.result-item.is-expandable {
  cursor: pointer;
}
.result-item.is-expandable .result-reason {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.result-item.is-expandable.is-expanded .result-reason {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.result-item.is-expandable::after {
  content: '▾';
  float: right;
  color: var(--muted, #6E7178);
  font-size: 12px;
  margin-left: 8px;
  transition: transform .15s;
}
.result-item.is-expandable.is-expanded::after {
  transform: rotate(180deg);
}

/* --- regulation overview + tooltips (2026-07-30) --- */
.reg-territory-badge {
  display: inline-block;
  background: var(--teal-soft, #E1EEE9);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.reg-overview-summary {
  background: var(--paper-raised, #FFFFFF);
  border: 1px solid var(--line, #DEDACB);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 14px 0;
}
.reg-overview-summary p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
}
.reg-wiki-source {
  font-size: 12px;
  color: var(--teal, #2F6F5E);
  text-decoration: none;
  font-weight: 600;
}
.reg-wiki-source:hover { text-decoration: underline; }

.reg-overview-stats {
  font-size: 13px;
  color: var(--muted, #6E7178);
  margin: 4px 0 14px;
  font-weight: 500;
}

.reg-tooltip {
  position: absolute;
  z-index: 500;
  max-width: 320px;
  background: var(--ink, #171B2E);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12.5px;
  line-height: 1.5;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  display: none;
  pointer-events: none;
}
.reg-tooltip-title {
  font-weight: 700;
  margin-bottom: 4px;
}
.reg-tooltip-desc {
  opacity: .85;
}
.reg-tooltip-loading {
  opacity: .6;
  font-style: italic;
}

/* --- result card signup CTA (2026-07-31) --- */
.result-signup-cta {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line, #DEDACB);
  font-size: 12.5px;
  color: var(--muted, #6E7178);
}
.result-signup-cta a {
  color: var(--teal, #2F6F5E);
  font-weight: 600;
  text-decoration: none;
}
.result-signup-cta a:hover { text-decoration: underline; }
.result-item.is-expanded .result-signup-cta {
  display: block;
}

/* --- multi-select needs + org fields (2026-07-31) --- */
.legend-optional {
  font-weight: 400;
  color: var(--muted, #6E7178);
  font-size: 12px;
}
.other-input {
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line, #DEDACB);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
}
.other-input:focus {
  outline: none;
  border-color: var(--teal, #2F6F5E);
}
.org-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.org-fields input {
  flex: 1;
  min-width: 160px;
  padding: 10px 12px;
  border: 1px solid var(--line, #DEDACB);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
}
.org-fields input:focus {
  outline: none;
  border-color: var(--teal, #2F6F5E);
}

/* --- synthesis markdown tables/headings/lists (2026-07-31) --- */
.synthesis-body .synthesis-heading {
  font-weight: 700;
  margin: 16px 0 8px;
}
.synthesis-body .synthesis-h1 { font-size: 17px; }
.synthesis-body .synthesis-h2 { font-size: 15.5px; }
.synthesis-body .synthesis-h3 { font-size: 14.5px; }
.synthesis-body .synthesis-h4 { font-size: 13.5px; }

.synthesis-body ul {
  margin: 4px 0 12px;
  padding-left: 20px;
}
.synthesis-body ul li {
  margin-bottom: 4px;
  font-size: 13.5px;
  line-height: 1.55;
}

.synthesis-body .synthesis-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 16px;
  font-size: 12.5px;
}
.synthesis-body .synthesis-table th,
.synthesis-body .synthesis-table td {
  border: 1px solid var(--line, #DEDACB);
  padding: 6px 10px;
  text-align: left;
}
.synthesis-body .synthesis-table th {
  background: var(--teal-soft, #E1EEE9);
  font-weight: 600;
}
.synthesis-body .synthesis-table tr:nth-child(even) td {
  background: rgba(0,0,0,.02);
}

/* --- buy official standard link (2026-07-31) --- */
.reg-buy-standard {
  background: var(--gold-soft, #F1E7D2);
  border: 1px solid var(--gold, #A9822E);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 4px 0 16px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.reg-buy-standard-link {
  color: var(--teal, #2F6F5E);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.reg-buy-standard-link:hover { text-decoration: underline; }

/* --- start over / refresh button (2026-07-31) --- */
.results-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.results-refresh {
  background: none;
  border: 1px solid var(--line, #DEDACB);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal, #2F6F5E);
  cursor: pointer;
}
.results-refresh:hover {
  background: var(--teal-soft, #E1EEE9);
}

/* --- custom sector autocomplete (2026-07-31) --- */
.sector-input-wrap {
  position: relative;
  flex: 1;
  min-width: 160px;
}
.sector-input-wrap input {
  width: 100%;
}
.sector-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 50;
  background: var(--paper-raised, #FFFFFF);
  border: 1px solid var(--line, #DEDACB);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  max-height: 220px;
  min-width: 240px;
  width: max-content;
  overflow-y: auto;
  overflow-x: hidden;
}
.sector-suggestion-item {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.sector-suggestion-item:hover {
  background: var(--teal-soft, #E1EEE9);
}

/* --- challenge textarea clear button (2026-07-31) --- */
.challenge-input-wrap {
  position: relative;
}
.challenge-clear-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,.06);
  border: none;
  border-radius: 999px;
  width: 24px;
  height: 24px;
  font-size: 12px;
  color: var(--muted, #6E7178);
  cursor: pointer;
  line-height: 1;
}
.challenge-clear-btn:hover {
  background: rgba(0,0,0,.12);
  color: var(--ink, #171B2E);
}

/* --- vague-query triage highlight (2026-07-31) --- */
#startTitle.is-highlighted-pulse {
  animation: startHerePulse 1.1s ease-in-out 2;
  border-radius: 6px;
}
@keyframes startHerePulse {
  0%, 100% { background: transparent; }
  50% { background: var(--teal-soft, #E1EEE9); }
}

/* --- refine follow-up prompt (2026-07-31) --- */
.refine-followup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line, #DEDACB);
}
.refine-followup-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted, #6E7178);
  white-space: nowrap;
}
.refine-followup-input {
  flex: 1;
  min-width: 200px;
  padding: 8px 12px;
  border: 1px solid var(--line, #DEDACB);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
}
.refine-followup-input:focus {
  outline: none;
  border-color: var(--teal, #2F6F5E);
}
.refine-followup-btn {
  background: var(--teal, #2F6F5E);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.refine-followup-btn:hover {
  opacity: .9;
}

/* --- benchmark showcase (2026-07-31) --- */
.reg-benchmark-showcase {
  background: var(--teal-soft, #E1EEE9);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.6;
}
.reg-benchmark-cta {
  display: inline-block;
  margin-top: 8px;
  color: var(--teal, #2F6F5E);
  font-weight: 700;
  text-decoration: none;
}
.reg-benchmark-cta:hover {
  text-decoration: underline;
}

/* --- regulation overview stacked sections (2026-07-31) --- */
.reg-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  margin: 22px 0 10px;
}
.reg-section-header:first-child {
  margin-top: 4px;
}
.reg-section-count {
  background: var(--teal-soft, #E1EEE9);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 600;
}
.reg-section-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reg-wiki-footer {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line, #DEDACB);
  font-size: 12px;
  color: var(--muted, #6E7178);
  line-height: 1.6;
}
.reg-wiki-footer a {
  color: var(--muted, #6E7178);
  text-decoration: underline;
}

/* --- contradiction picker widget (2026-07-31) --- */
.contradiction-widget {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line, #DEDACB);
}
.contradiction-widget h3 {
  margin: 0 0 4px;
  font-size: 14px;
}
.contradiction-widget-sub {
  margin: 0 0 12px;
  font-size: 12.5px;
  color: var(--muted, #6E7178);
}
.contradiction-widget-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.contradiction-side-wrap {
  position: relative;
  flex: 1;
  min-width: 160px;
}
.contradiction-side-wrap input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line, #DEDACB);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
}
.contradiction-side-wrap input:focus {
  outline: none;
  border-color: var(--teal, #2F6F5E);
}
.contradiction-vs {
  font-weight: 700;
  color: var(--muted, #6E7178);
  font-size: 13px;
}
.contradiction-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 50;
  background: var(--paper-raised, #FFFFFF);
  border: 1px solid var(--line, #DEDACB);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  max-height: 220px;
  min-width: 220px;
  width: max-content;
  overflow-y: auto;
  overflow-x: hidden;
}
.contradiction-suggestion-item {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.contradiction-suggestion-item:hover {
  background: var(--teal-soft, #E1EEE9);
}

/* --- unified vault-door Run button (2026-07-31) --- */
.picker-with-run {
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.picker-with-run #resultsPicker {
  flex: 1;
  min-width: 0;
}
.type-group-with-run {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.type-group-with-run .picker-chips {
  flex: 1;
}
.run-btn-row {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0;
}
.vault-run-hint {
  max-width: 150px;
  font-size: 11.5px;
}
.vault-run-btn {
  position: relative;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: radial-gradient(circle at 35% 30%, #6fae8f 0%, #4a9070 45%, #2c5c47 100%);
  box-shadow:
    0 10px 22px rgba(0,0,0,.3),
    inset 0 2px 4px rgba(255,255,255,.25),
    inset 0 -6px 12px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.vault-run-btn:hover:not(:disabled) {
  transform: scale(1.03);
  box-shadow:
    0 16px 34px rgba(0,0,0,.4),
    inset 0 2px 4px rgba(255,255,255,.2),
    inset 0 -6px 12px rgba(0,0,0,.5);
}
.vault-run-btn:hover:not(:disabled) .vault-spokes {
  transform: translate(-50%, -50%) rotate(25deg);
}
.vault-run-btn:active:not(:disabled) {
  transform: scale(0.97);
}
.vault-run-btn:disabled {
  cursor: not-allowed;
  filter: grayscale(.6) brightness(.75);
}
.vault-ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.12);
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.08), transparent 60%);
}
.vault-ring-inner {
  inset: 24px;
  border-color: rgba(47,111,94,.55);
}
.vault-spokes {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(224,164,42,.55) 0deg 8deg,
    transparent 8deg 45deg
  );
  transition: transform .4s ease;
}
.vault-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f3c464, #cc9a2e 55%, #8a6413 100%);
  box-shadow: 0 3px 6px rgba(0,0,0,.5), inset 0 1px 2px rgba(255,255,255,.4);
}
.vault-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
  z-index: 5;
}
.vault-run-hint {
  max-width: 420px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted, #6E7178);
  margin: 0;
}
