/* toc.css: the layer this build adds on top of the de-hydrated template markup.
   Tokens are the template's own (ink #081014, ground #f2f3f5, grey #707070, Geist, square corners). */
:root {
  --toc-ink: #081014;
  --toc-ground: #f2f3f5;
  --toc-white: #ffffff;
  --toc-grey: #707070;
  --toc-soft: #c8c8c8;
  --toc-line: rgba(8, 16, 20, 0.12);
  --toc-line-dark: rgba(255, 255, 255, 0.14);
  --toc-font: "Geist", "Geist Placeholder", system-ui, -apple-system, "Segoe UI", sans-serif;
  --toc-wrap: 1160px;
}

[data-toc-hidden] { display: none !important; }

/* ------------------------------------------------------------------ header */
.toc-nav { position: absolute; top: 0; left: 0; right: 0; z-index: 60; font-family: var(--toc-font); color: var(--toc-white); }
.toc-nav--light { color: var(--toc-ink); }
.toc-nav__bar {
  max-width: var(--toc-wrap); margin: 0 auto; height: 86px; display: flex; align-items: center; gap: 32px;
  border-bottom: 1px solid var(--toc-line-dark);
}
.toc-nav--light .toc-nav__bar { border-bottom-color: var(--toc-line); }
.toc-nav a { color: inherit; text-decoration: none; }
.toc-nav__brand { display: flex; align-items: baseline; gap: 12px; margin-right: auto; white-space: nowrap; }
.toc-nav__sub { font-size: 13px; letter-spacing: 0; opacity: 0.62; }
.toc-wordmark { font-family: var(--toc-font); font-weight: 500; font-size: 19px; letter-spacing: -0.02em; line-height: 1; white-space: nowrap; color: var(--toc-white); }
.toc-nav--light .toc-wordmark { color: var(--toc-ink); }
.toc-nav__links { display: flex; gap: 32px; }
.toc-nav__link { font-size: 15px; font-weight: 500; opacity: 0.86; transition: opacity 0.2s; }
.toc-nav__link:hover, .toc-nav__link.is-current { opacity: 1; }
.toc-nav__link.is-current { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.toc-nav__cta {
  display: inline-flex; align-items: center; height: 50px; padding: 0 20px; font-size: 16px; font-weight: 500;
  border: 1px solid var(--toc-line-dark); background: rgba(8, 16, 20, 0.18); transition: background 0.2s, color 0.2s;
}
.toc-nav--light .toc-nav__cta { border-color: var(--toc-line); background: var(--toc-white); }
.toc-nav__cta:hover { background: var(--toc-white); color: var(--toc-ink); }
.toc-nav--light .toc-nav__cta:hover { background: var(--toc-ink); color: var(--toc-white); }
.toc-nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--toc-line-dark); background: transparent; color: inherit; cursor: pointer; position: relative; }
.toc-nav--light .toc-nav__toggle { border-color: var(--toc-line); }
.toc-nav__toggle span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: currentColor; transition: transform 0.25s, top 0.25s; }
.toc-nav__toggle span:first-child { top: 17px; }
.toc-nav__toggle span:last-child { top: 25px; }
.toc-nav.is-open .toc-nav__toggle span:first-child { top: 21px; transform: rotate(45deg); }
.toc-nav.is-open .toc-nav__toggle span:last-child { top: 21px; transform: rotate(-45deg); }
.toc-drawer { position: fixed; inset: 0; top: 0; background: var(--toc-ink); color: var(--toc-white); padding: 110px 20px 40px; z-index: -1; overflow-y: auto; }
.toc-drawer nav { display: flex; flex-direction: column; }
.toc-drawer .toc-nav__link { font-size: 30px; font-weight: 400; letter-spacing: -0.03em; padding: 16px 0; border-bottom: 1px solid var(--toc-line-dark); opacity: 1; text-decoration: none; }
.toc-drawer__cta { margin-top: 32px; display: flex; align-items: center; justify-content: center; height: 56px; background: var(--toc-white); color: var(--toc-ink) !important; font-size: 17px; font-weight: 500; }
.toc-nav.is-open { color: var(--toc-white); position: fixed; }
.toc-nav.is-open .toc-wordmark { color: var(--toc-white); }
.toc-nav.is-open .toc-nav__bar { border-bottom-color: var(--toc-line-dark); }

@media (max-width: 1199px) { .toc-nav__bar { margin: 0 32px; } .toc-nav__sub { display: none; } }
@media (max-width: 809px) {
  .toc-nav__bar { margin: 0 20px; height: 72px; }
  .toc-nav__links, .toc-nav__cta { display: none; }
  .toc-nav__toggle { display: block; }
}

/* ----------------------------------------------------------- credentials */
.toc-strip { width: 100%; align-self: stretch; box-sizing: border-box; background: var(--toc-ground); border-bottom: 1px solid var(--toc-line); font-family: var(--toc-font); }
.toc-strip ul {
  list-style: none; margin: 0 auto; padding: 0; max-width: var(--toc-wrap); min-height: 90px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.toc-strip li { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--toc-grey); white-space: nowrap; }
.toc-strip li + li::before { content: ""; display: inline-block; width: 5px; height: 5px; background: var(--toc-soft); margin: 0 24px 2px 0; vertical-align: middle; }
@media (max-width: 1199px) { .toc-strip ul { margin: 0 32px; } }
@media (max-width: 809px) {
  .toc-strip ul { margin: 0 20px; padding: 22px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
  .toc-strip li { white-space: normal; font-size: 12px; }
  .toc-strip li + li::before { display: none; }
}

/* ------------------------------------------------------------- accordion */
.toc-acc { width: 100%; font-family: var(--toc-font); }
.toc-acc__item { border-bottom: 1px solid var(--toc-line); }
.toc-acc__item[open] { border-bottom-color: var(--toc-ink); }
.toc-acc summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 26px 0; }
.toc-acc summary::-webkit-details-marker { display: none; }
.toc-acc__q { font-size: 20px; line-height: 1.25; letter-spacing: -0.02em; color: var(--toc-grey); transition: color 0.2s; }
.toc-acc__item[open] .toc-acc__q, .toc-acc summary:hover .toc-acc__q { color: var(--toc-ink); }
.toc-acc__icon { flex: none; width: 18px; height: 18px; margin-top: 4px; position: relative; }
.toc-acc__icon::before, .toc-acc__icon::after { content: ""; position: absolute; left: 0; right: 0; top: 8.5px; height: 1.2px; background: var(--toc-ink); transition: transform 0.25s; }
.toc-acc__icon::after { transform: rotate(90deg); }
.toc-acc__item[open] .toc-acc__icon::after { transform: rotate(0deg); }
.toc-acc__num { flex: none; font-size: 18px; color: var(--toc-ink); margin-top: 3px; }
.toc-acc__a { padding: 0 42px 28px 0; }
.toc-acc__a p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--toc-grey); }
.toc-acc--steps .toc-acc__q { font-size: 24px; color: var(--toc-ink); }
.toc-acc--steps summary { padding: 22px 0; }
.toc-acc--steps .toc-acc__item:first-child summary { padding-top: 0; }

/* -------------------------------------------------------- speaker portrait */
.toc-portrait { margin: 0 0 48px; }
.toc-portrait img { display: block; width: 100%; max-width: 720px; height: auto; aspect-ratio: 3 / 2; object-fit: cover; object-position: 60% 30%; }

/* -------------------------------------------------- course: authored blocks */
.toc-sec { font-family: var(--toc-font); color: var(--toc-ink); }
.toc-wrap { max-width: var(--toc-wrap); margin: 0 auto; }
.toc-eyebrow { margin: 0 0 20px; font-size: 14px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--toc-ink); }
.toc-h2 { margin: 0; font-size: 56px; font-weight: 400; line-height: 1.08; letter-spacing: -0.05em; }
.toc-lead { margin: 24px 0 0; font-size: 17px; line-height: 1.6; color: var(--toc-grey); max-width: 46ch; }
.toc-cur { background: var(--toc-ground); padding: 140px 0 120px; }
.toc-cur__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.toc-cur__head { position: sticky; top: 40px; }
.toc-quote { margin: 48px 0 0; padding: 28px 0 0; border-top: 1px solid var(--toc-line); }
.toc-quote blockquote { margin: 0; font-size: 20px; line-height: 1.4; letter-spacing: -0.02em; }
.toc-quote figcaption { margin-top: 18px; display: flex; flex-direction: column; gap: 4px; padding-left: 20px; border-left: 1px solid var(--toc-ink); }
.toc-quote strong { font-weight: 400; font-size: 17px; }
.toc-quote span { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--toc-grey); }
.toc-cur__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--toc-ink); }
.toc-cur__list li { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--toc-line); }
.toc-cur__n { font-size: 14px; color: var(--toc-grey); padding-top: 4px; font-variant-numeric: tabular-nums; }
.toc-cur__list h3 { margin: 0; font-size: 20px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.3; }
.toc-cur__list p { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: var(--toc-grey); }

.toc-enrol { background: var(--toc-ground); padding: 0 20px 140px; }
.toc-enrol__grid {
  max-width: none; background: var(--toc-ink); color: var(--toc-white);
  display: grid; grid-template-columns: 1fr 460px; gap: 80px; padding: 120px max(120px, calc((100% - var(--toc-wrap)) / 2));
}
.toc-enrol .toc-eyebrow, .toc-enrol .toc-h2 { color: var(--toc-white); }
.toc-enrol .toc-lead { color: var(--toc-soft); }
.toc-enrol__aside { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--toc-line-dark); max-width: 46ch; }
.toc-enrol__aside h3 { margin: 0; font-size: 20px; font-weight: 400; letter-spacing: -0.02em; }
.toc-enrol__aside p { margin: 10px 0 18px; font-size: 15px; line-height: 1.6; color: var(--toc-soft); }
.toc-link { color: var(--toc-white); font-size: 16px; font-weight: 500; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.toc-enrol__card { background: var(--toc-white); color: var(--toc-ink); padding: 40px; align-self: start; }
.toc-enrol__label { margin: 0; font-size: 14px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.toc-enrol__price { margin: 28px 0 0; font-size: 72px; line-height: 1; letter-spacing: -0.05em; display: flex; align-items: baseline; gap: 14px; }
.toc-enrol__price span { font-size: 15px; letter-spacing: 0; color: var(--toc-grey); }
.toc-enrol__inc { list-style: none; margin: 32px 0; padding: 0; border-top: 1px solid var(--toc-line); }
.toc-enrol__inc li { padding: 14px 0 14px 26px; border-bottom: 1px solid var(--toc-line); font-size: 15px; line-height: 1.45; position: relative; }
.toc-enrol__inc li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 10px; height: 5px; border-left: 1.4px solid var(--toc-ink); border-bottom: 1.4px solid var(--toc-ink); transform: rotate(-45deg); }
.toc-btn { display: flex; align-items: center; justify-content: center; gap: 10px; height: 58px; background: var(--toc-ink); color: var(--toc-white) !important; text-decoration: none; font-size: 17px; font-weight: 500; transition: background 0.2s; }
.toc-btn:hover { background: #1d262b; }
.toc-enrol__fine { margin: 14px 0 0; font-size: 13px; color: var(--toc-grey); text-align: center; }

@media (max-width: 1199px) {
  .toc-wrap { margin: 0 32px; }
  .toc-cur__grid { gap: 48px; }
  .toc-enrol__grid { grid-template-columns: 1fr; gap: 56px; padding: 96px 32px; }
  .toc-enrol__card { max-width: 520px; }
}
@media (max-width: 809px) {
  .toc-wrap { margin: 0 20px; }
  .toc-h2 { font-size: 40px; }
  .toc-cur { padding: 96px 0 80px; }
  .toc-cur__grid { grid-template-columns: 1fr; gap: 40px; }
  .toc-cur__head { position: static; }
  .toc-cur__list li { grid-template-columns: 44px 1fr; }
  .toc-enrol { padding: 0 10px 96px; }
  .toc-enrol__grid { padding: 72px 20px; }
  .toc-enrol__card { padding: 28px 22px; }
  .toc-enrol__price { font-size: 60px; }
}

/* ------------------------------------------------------------ contact form */
.toc-contact .toc-err { outline: 1px solid #b3261e; outline-offset: -1px; }
.toc-sent { margin-top: 20px; padding: 18px 20px; border: 1px solid var(--toc-line); background: var(--toc-ground); font-family: var(--toc-font); font-size: 15px; line-height: 1.55; color: var(--toc-ink); }
.toc-news-note { font-family: var(--toc-font); }

/* no hover underline flicker on Framer text links we repointed */
a[href^="/course#"], a[href="#enrol"], a[href="#curriculum"] { cursor: pointer; }
html { scroll-behavior: smooth; }
#curriculum, #enrol { scroll-margin-top: 0; }

/* the footer logo slot was sized for a 97px raster; the live wordmark needs its own width */
a[class*="framer-"]:has(> div > .toc-wordmark) { width: auto !important; aspect-ratio: auto !important; display: flex !important; align-items: center; }
a[class*="framer-"] > div:has(> .toc-wordmark) { position: static !important; }
