/* ==========================================================================
   Finance 360 — presented by The Adviser
   Design tokens first, then components in document order.
   Type scale is deliberately restrained: display sizes cap at 76px so
   headings never crowd their own descenders.
   ========================================================================== */

:root {
  /* surfaces — reference canvas */
  --ink:            #05100E;
  --ink-raised:     #0B1A17;
  --bone:           #F0EFEA;
  --bone-dim:       rgba(240, 239, 234, 0.86);
  --bone-quiet:     rgba(240, 239, 234, 0.68);
  --rule:           rgba(240, 239, 234, 0.16);
  --rule-soft:      rgba(240, 239, 234, 0.12);

  /* accents */
  --teal:           #14C8A0;
  --teal-deep:      #0A6E5B;
  --violet:         #C77BEE;
  --yellow:         #F2DC28;
  --lime:           #9BD62A;
  --blue:           #3B7BE8;
  --mint:           #7BE8B4;
  --orange:         #F2913B;
  --pink:           #E88AD8;

  /* type */
  --sans:  'Poppins', Helvetica, Arial, sans-serif;
  --serif: 'Poppins', Helvetica, Arial, sans-serif;

  /* rhythm */
  --wrap:      1320px;
  --gutter:    clamp(20px, 5vw, 72px);
  --section-y: clamp(64px, 8vw, 140px);
  --stack:     clamp(16px, 2vw, 26px);
}

/* ------------------------------------------------------------------ reset */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, p, dl, dd, ol, ul, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video { display: block; max-width: 100%; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--bone); }

button { font: inherit; cursor: pointer; white-space: nowrap; }
p { text-wrap: pretty; }

::selection { background: var(--teal); color: var(--ink); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.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;
}

.skip-link {
  position: absolute; top: -100%; left: 0; z-index: 200;
  padding: 14px 20px; background: var(--teal); color: var(--ink); font-weight: 700;
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------- structure */

.wrap { max-width: var(--wrap); margin: 0 auto; }
.wrap--narrow { max-width: 760px; }

.section { padding: var(--section-y) var(--gutter); }
.section--head { padding-bottom: clamp(32px, 4vw, 56px); }
.section--hero { padding-top: clamp(32px, 4.5vw, 64px); padding-bottom: clamp(56px, 7vw, 104px); }
.section--raised { background: var(--ink-raised); }

.stack { display: flex; flex-direction: column; gap: var(--stack); }

.grid { display: grid; gap: clamp(32px, 5vw, 80px); align-items: start; }
.grid--prop    { grid-template-columns: 1.15fr 1fr; }
.grid--halves  { grid-template-columns: 1fr 1.05fr; align-items: center; }
.grid--head    { grid-template-columns: 1.1fr 1fr; align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.grid--outcome { grid-template-columns: 0.85fr 1.15fr; }

/* -------------------------------------------------------------------- type */

.h1 {
  font-weight: 800; font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.02; letter-spacing: -0.025em;
  max-width: 20ch; text-wrap: balance;
}

.h2 {
  font-weight: 800; font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em;
  max-width: 24ch; text-wrap: balance;
}
.h2--display { font-size: clamp(34px, 4.6vw, 62px); line-height: 1.03; letter-spacing: -0.022em; }

.standfirst { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.6; color: rgba(240,239,234,0.88); max-width: 56ch; }
.lede       { font-size: clamp(18px, 1.5vw, 23px); line-height: 1.5; font-weight: 500; max-width: 52ch; }
.body       { font-size: clamp(17px, 1.2vw, 19px); line-height: 1.7; color: var(--bone-dim); max-width: 62ch; }
.footnote   { font-size: 14px; color: var(--bone-quiet); }
.placeholder{ font-size: 15px; color: var(--bone-quiet); }

.pullquote {
  font-family: var(--sans); font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3; letter-spacing: -0.01em; max-width: 34ch; font-weight: 500;
}
.pullquote--lg {
  font-size: clamp(24px, 2.6vw, 38px); line-height: 1.22;
  margin: clamp(18px, 2vw, 28px) 0 clamp(40px, 5vw, 72px);
  color: var(--violet);
}
.pullquote--lg em { font-style: italic; }

/* Small uppercase labels. Only ever used on 1–4 word strings — never on a
   sentence, which is why there is no wrapping variant. */
.kicker, .eyebrow {
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal);
}
.eyebrow { color: var(--bone-quiet); }

.kicker--rule { display: flex; align-items: center; gap: 14px; margin-bottom: clamp(28px, 4vw, 52px); }
.kicker--rule::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

.prose p { margin-bottom: 1em; color: var(--bone-dim); }

/* ----------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 19px 28px; border: 0;
  font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn--primary { background: var(--teal); color: var(--ink); }
.btn--primary:hover { background: var(--bone); color: var(--ink); }

.btn--ghost {
  background: rgba(240, 239, 234, 0.08); color: var(--bone);
  border: 1px solid rgba(240, 239, 234, 0.4); font-weight: 600;
}
.btn--ghost:hover { background: rgba(240, 239, 234, 0.16); color: var(--bone); }

.btn--compact { padding: 13px 20px; font-size: 15px; }
.btn--lg      { padding: 22px 34px; font-size: 17px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; margin-top: clamp(40px, 5vw, 72px); }

/* ------------------------------------------------------------------ header */

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: var(--ink); border-bottom: 1px solid rgba(240, 239, 234, 0.14);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 clamp(16px, 3vw, 40px);
  height: clamp(62px, 6vw, 78px);
}

.wordmark { display: flex; align-items: center; color: var(--bone); min-width: 0; flex: 0 1 auto; }
.wordmark:hover { color: var(--bone); }
.wordmark__logo {
  display: block;
  width: auto;
  height: clamp(28px, 3.2vw, 40px);
  max-width: min(220px, 42vw);
  object-fit: contain;
}
.wordmark__logo--lg {
  height: clamp(40px, 5vw, 56px);
  max-width: min(320px, 70vw);
}

.site-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); flex-shrink: 0; }
.site-nav__link {
  color: rgba(240, 239, 234, 0.8);
  font-weight: 500; font-size: 12.5px; letter-spacing: 0.13em;
  text-transform: uppercase; white-space: nowrap; padding: 6px 0;
}
.site-nav__link:hover, .site-nav__link.is-current { color: var(--teal); }
.site-nav .btn--compact {
  padding: 13px 18px; font-weight: 600; font-size: 12.5px; letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-header__mobile { display: none; align-items: center; gap: 12px; flex-shrink: 0; }
.site-header__mobile .btn { width: auto; white-space: nowrap; }
.site-header__mobile .btn--compact { padding: 10px 14px; font-size: 14px; }
.menu-toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  width: 44px; height: 44px; flex-shrink: 0; background: transparent;
  border: 1px solid rgba(240, 239, 234, 0.3);
}
.menu-toggle span { display: block; width: 16px; height: 1.5px; background: var(--bone); }

/* Author display must not override the HTML [hidden] attribute (UA display:none loses to .class). */
.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid rgba(240, 239, 234, 0.14);
}
.mobile-nav__link {
  padding: 18px clamp(16px, 3vw, 40px); color: var(--bone);
  font-weight: 700; font-size: 20px; letter-spacing: -0.01em;
  border-bottom: 1px solid var(--rule-soft);
}

/* --------------------------------------------------------------- hero film */

.hero-film { background: var(--ink); }
.hero-film__frame {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9;             /* never add max-height — it crops the film */
  overflow: hidden;
  background-color: var(--ink);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-film__video {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
  opacity: 0; transition: opacity 0.9s ease;
}
.hero-film__video.is-ready { opacity: 1; }
.hero-film__fade {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg,
    rgba(10, 20, 18, 0) 88%, rgba(10, 20, 18, 0.7) 97%, rgba(10, 20, 18, 1) 100%);
}

/* Home hero — full-bleed responsive video behind content (PME structure) */
.hero--film {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(100vh, 920px);
  overflow: hidden;
  background: var(--ink);
  padding: clamp(96px, 12vw, 160px) 0 clamp(56px, 7vw, 104px);
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-bg-video.is-ready { opacity: 1; }

.hero-bg-video--desktop,
.hero-bg-video--tablet { display: none; }
.hero-bg-video--mobile { display: block; }

@media (min-width: 768px) {
  .hero-bg-video--mobile { display: none; }
  .hero-bg-video--tablet { display: block; }
}

@media (min-width: 1024px) {
  .hero-bg-video--tablet { display: none; }
  .hero-bg-video--desktop { display: block; }
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: var(--stack);
}

.hero__logo { max-width: min(500px, 100%); }
.hero-event-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.hero { display: flex; flex-direction: column; gap: var(--stack); }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-weight: 500; font-size: 15px; color: rgba(240,239,234,0.85); }
.hero__eyebrow { font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
.hero__dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(240, 239, 234, 0.45); }

/* ------------------------------------------------------------------- chips */

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 11px 14px; font-weight: 500; font-size: 15px; line-height: 1;
  white-space: nowrap; border: 1px solid rgba(240, 239, 234, 0.28);
}

/* ------------------------------------------------------------------- stats */

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: clamp(48px, 6vw, 96px);
}
.stat {
  display: flex; flex-direction: column; gap: 8px; padding: 26px 18px;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule-soft);
}
.stat:last-child { border-right: 0; }
.stat__figure { font-weight: 800; font-size: clamp(34px, 4vw, 54px); line-height: 1; letter-spacing: -0.03em; color: var(--teal); }
.stat__label  { font-size: 15px; line-height: 1.4; color: var(--bone-quiet); }

/* --------------------------------------------------------------- accordion */

.accordion { display: flex; flex-direction: column; border-top: 1px solid rgba(240, 239, 234, 0.16); }
.accordion__row { border-bottom: 1px solid rgba(240, 239, 234, 0.16); }
.accordion__trigger {
  display: flex; align-items: center; gap: 16px; width: 100%;
  padding: 20px 4px; background: transparent; border: 0;
  color: var(--bone); text-align: left;
}
.accordion__trigger:hover { color: var(--teal); }
.accordion__n { font-weight: 600; font-size: 14px; color: var(--teal); }
.accordion__title { flex: 1; font-weight: 700; font-size: clamp(17px, 1.5vw, 21px); letter-spacing: -0.015em; white-space: normal; }
.accordion__sign { font-weight: 600; font-size: 20px; line-height: 1; }
.accordion__panel { padding: 0 4px 24px 34px; }
.accordion__panel[hidden] { display: none; }
.accordion__panel p { color: var(--bone-dim); max-width: 56ch; }

/* --------------------------------------------------------- opportunity rows */

.opportunities { border-top: 1px solid rgba(240, 239, 234, 0.2); }
.opportunity { border-bottom: 1px solid rgba(240, 239, 234, 0.2); }
.opportunity__trigger {
  display: flex; align-items: baseline; gap: clamp(12px, 2vw, 32px); width: 100%;
  padding: clamp(20px, 2.4vw, 32px) 4px;
  background: transparent; border: 0; color: var(--bone); text-align: left;
}
.opportunity__trigger:hover { color: var(--teal); }
.opportunity__index { display: flex; align-items: center; gap: 10px; width: 56px; flex-shrink: 0; }
.opportunity__swatch { width: 12px; height: 12px; flex-shrink: 0; }
.opportunity__n { font-weight: 600; font-size: 14px; color: var(--teal); }
.opportunity__title {
  flex: 1; font-weight: 800; font-size: clamp(26px, 4vw, 58px);
  line-height: 0.95; letter-spacing: -0.022em; white-space: normal;
}
.opportunity__sign { font-weight: 600; font-size: 20px; line-height: 1; flex-shrink: 0; }
.opportunity__panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 48px);
  padding: 0 4px clamp(28px, 3vw, 44px) clamp(34px, 4vw, 66px);
}
.opportunity__panel[hidden] { display: none; }
.opportunity__body { font-size: clamp(17px, 1.5vw, 22px); line-height: 1.45; font-weight: 500; letter-spacing: -0.01em; max-width: 38ch; }
.opportunity__items { display: flex; flex-direction: column; border-top: 1px solid rgba(240, 239, 234, 0.14); }
.opportunity__items li { padding: 14px 0; font-weight: 600; font-size: 15px; border-bottom: 1px solid rgba(240, 239, 234, 0.14); }
.opportunity__items li:last-child { border-bottom: 0; }

/* -------------------------------------------------------- framework diagram */

.framework-diagram {
  position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 620px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.framework-diagram__ring { position: absolute; border-radius: 50%; }
.framework-diagram__ring--outer { inset: 0;   border: 1px solid rgba(240, 239, 234, 0.12); }
.framework-diagram__ring--mid   { inset: 11%; border: 1px dashed rgba(20, 200, 160, 0.45); }
.framework-diagram__ring--inner { inset: 24%; border: 1px solid rgba(240, 239, 234, 0.14); }
.framework-diagram__labels {
  position: relative; display: grid; grid-template-columns: repeat(2, auto);
  gap: 12px 40px; text-align: center;
}
.framework-diagram__labels li { font-weight: 700; font-size: 14px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--bone-quiet); }
.framework-diagram__caption {
  position: absolute; bottom: 12%; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 20px; color: var(--teal);
}

/* ----------------------------------------------------------------- roadmap */
/* The one light panel in the site: it is the tangible output of the day. */

.roadmap { background: var(--bone); color: var(--ink); padding: clamp(24px, 3vw, 44px); }
.roadmap__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid rgba(10, 20, 18, 0.2);
}
.roadmap .eyebrow { color: var(--ink); }
.roadmap__time { font-weight: 700; font-size: 13px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--teal-deep); }
.roadmap__row {
  display: flex; gap: clamp(14px, 2vw, 26px); padding: 20px 0;
  border-bottom: 1px solid rgba(10, 20, 18, 0.14);
}
.roadmap__n { font-weight: 600; font-size: 14px; color: var(--teal-deep); padding-top: 3px; }
.roadmap__text { font-weight: 500; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.35; letter-spacing: -0.01em; }
.roadmap__close { padding-top: 20px; font-size: 15px; line-height: 1.6; color: rgba(10, 20, 18, 0.7); }

/* ------------------------------------------------------------------ venues */

.venues__list { margin-top: 20px; border-top: 1px solid var(--rule); }
.venue {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px);
  padding: clamp(32px, 4vw, 56px) 0; border-bottom: 1px solid var(--rule);
}
.venue__place { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.venue__state { font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone-quiet); }
.venue__city  { font-weight: 800; font-size: clamp(38px, 6vw, 84px); line-height: 1; letter-spacing: -0.03em; text-transform: uppercase; }
.venue__detail { display: flex; flex-direction: column; gap: 10px; }
.venue__detail dd { font-weight: 600; font-size: 16px; }
.venue__date { color: var(--teal); }
.venue__address { color: var(--bone-quiet); }
.venue__status { color: var(--teal); }

/* ---------------------------------------------------------------- ticket cta */

.ticket { display: flex; flex-direction: column; align-items: flex-start; gap: var(--stack); }

/* ------------------------------------------------------------------ agenda */

.agenda__meta { margin-top: 20px; font-weight: 600; font-size: 15px; line-height: 1.8; color: var(--teal); }

.agenda { border-top: 1px solid var(--rule); }
.agenda__item {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(24px, 4vw, 64px);
  padding: clamp(28px, 3.5vw, 48px) 0; border-bottom: 1px solid var(--rule);
}
.agenda__rail { display: flex; flex-direction: column; gap: 8px; }
.agenda__n    { font-weight: 600; font-size: 14px; color: var(--bone-quiet); }
.agenda__time { font-weight: 700; font-size: clamp(16px, 1.4vw, 19px); letter-spacing: -0.01em; }
.agenda__kind { font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }

/* Networking blocks are part of the program, not filler — they read quieter
   but keep the same structure. */
.agenda__item--networking .agenda__kind   { color: var(--violet); }
.agenda__item--roadmap .agenda__kind      { color: var(--yellow); }
.agenda__item--masterclass .agenda__kind  { color: var(--lime); }
.agenda__item--framework .agenda__kind    { color: var(--blue); }

.agenda__body { display: flex; flex-direction: column; gap: 18px; }
.agenda__title { font-weight: 800; font-size: clamp(24px, 2.6vw, 38px); line-height: 1.08; letter-spacing: -0.02em; max-width: 28ch; }
.agenda__lede  { font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); line-height: 1.28; color: var(--teal); max-width: 34ch; }
.agenda__topic { font-size: 15px; color: var(--bone-quiet); }
.agenda__close { font-weight: 600; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.5; letter-spacing: -0.01em; }

.agenda__copy { display: flex; flex-direction: column; gap: 1em; max-width: 62ch; }
.agenda__copy p,
.agenda__copy li { margin: 0; font-size: clamp(17px, 1.2vw, 19px); line-height: 1.7; color: var(--bone-dim); }
.agenda__copy ul,
.agenda__copy ol {
  margin: 0;
  padding-left: 1.35em;
  display: block;
}
.agenda__copy ul { list-style: disc outside; }
.agenda__copy ol { list-style: decimal outside; }
.agenda__copy li { margin: 0 0 0.55em; }
.agenda__copy li:last-child { margin-bottom: 0; }
.agenda__copy li::marker { color: var(--teal); }
.agenda__copy strong { color: var(--bone); font-weight: 700; }
.agenda__copy > p:first-child:has(> em:only-child),
.agenda__copy > p:first-child em:only-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.28;
  color: var(--teal);
  max-width: 34ch;
}
.agenda__copy > p:first-child:has(> em:only-child) { color: var(--teal); }

.agenda__speakers { display: flex; flex-wrap: wrap; gap: 12px; }
.agenda__speaker {
  display: flex; align-items: center; gap: 14px; align-self: flex-start;
  padding: 12px 16px 12px 12px; border: 1px solid var(--rule); color: var(--bone);
}
.agenda__speaker:hover { border-color: var(--teal); color: var(--bone); }
.agenda__speaker-photo {
  width: 130px; height: 150px; flex-shrink: 0; overflow: hidden;
  background: var(--ink-raised); border: 1px solid var(--rule-soft);
}
.agenda__speaker-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.agenda__speaker-photo .hs-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; color: var(--teal);
  background: rgba(20, 200, 160, 0.12);
}
.agenda__speaker-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.agenda__speaker-name { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.agenda__speaker-role { font-size: 14px; color: var(--bone-quiet); }
.agenda__subs { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--rule-soft); }
.agenda__sub { display: flex; flex-direction: column; gap: 12px; }
.agenda__sub-title { margin: 0; font-weight: 700; font-size: clamp(18px, 1.6vw, 24px); letter-spacing: -0.02em; }
.agenda__sub-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 0; font-size: 14px; color: var(--bone-quiet); }
.agenda__sub-track { font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal); }

.agenda__items { display: flex; flex-direction: column; border-top: 1px solid var(--rule-soft); }
.agenda__item-row { padding: 16px 0; border-bottom: 1px solid var(--rule-soft); }
.agenda__item-row dt { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.agenda__item-row dd { margin-top: 4px; font-size: 16px; line-height: 1.55; color: var(--bone-quiet); }

.agenda__bullets { display: flex; flex-direction: column; gap: 10px; }
.agenda__bullets li { position: relative; padding-left: 22px; font-size: 17px; line-height: 1.55; color: var(--bone-dim); }
.agenda__bullets li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 8px; height: 1.5px; background: var(--teal); }

/* ---------------------------------------------------------------- speakers */

.speakers { display: grid; gap: clamp(40px, 5vw, 80px); }
.speaker { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.speaker__portrait { aspect-ratio: 4 / 5; background: var(--ink-raised); border: 1px solid var(--rule-soft); overflow: hidden; }
.speaker__portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.speaker__portrait-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  padding: 20px; text-align: center;
  font-size: 14px; font-weight: 600; color: var(--bone-quiet); background: var(--ink-raised);
}
.speaker__portrait-placeholder .hs-placeholder {
  font-weight: 700; font-size: clamp(36px, 5vw, 64px); color: var(--teal);
}
.speaker__body { display: flex; flex-direction: column; gap: 16px; }
.speaker__name { font-weight: 800; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.04; letter-spacing: -0.025em; }
.speaker__role { font-weight: 600; font-size: 16px; color: var(--teal); }
.speaker__positioning { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: var(--bone-dim); max-width: 56ch; }
.speaker__sessions ul { display: flex; flex-direction: column; margin-top: 10px; border-top: 1px solid var(--rule-soft); }
.speaker__sessions li { padding: 12px 0; font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--rule-soft); }
.speaker__cities { font-size: 15px; color: var(--bone-quiet); }
.speaker__bio summary { font-weight: 700; font-size: 15px; color: var(--teal); cursor: pointer; }
.speaker__bio p { margin-top: 12px; color: var(--bone-dim); }

/* ---------------------------------------------------------------- partners */

.partner-logos { display: flex; flex-wrap: wrap; gap: clamp(24px, 3vw, 48px); align-items: center; }
.partner-logos img,
.partner-logo__img { max-height: 64px; width: auto; display: block; }
.partner-logo { list-style: none; }
.partner-logo-fallback { font-weight: 700; font-size: 18px; color: var(--bone); }

.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--rule); }
.benefit { background: var(--ink-raised); padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 12px; }
.benefit__title { font-weight: 700; font-size: clamp(19px, 1.8vw, 24px); line-height: 1.15; letter-spacing: -0.015em; }

/* ----------------------------------------------------------------- contact */

.contact-details { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.contact-details__row { padding: 20px 0; border-bottom: 1px solid var(--rule); }
.contact-details__row dt { font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone-quiet); }
.contact-details__row dd { margin-top: 6px; font-weight: 600; font-size: clamp(17px, 1.6vw, 22px); letter-spacing: -0.01em; }

.grid--enquiry { align-items: start; gap: clamp(32px, 5vw, 72px); }

.partner-enquiry__copy { gap: 18px; }
.partner-enquiry__sponsors { margin-top: 12px; display: flex; flex-direction: column; gap: 14px; }
.partner-enquiry__contacts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.partner-enquiry__contact { display: flex; flex-direction: column; gap: 6px; padding-top: 16px; border-top: 1px solid var(--rule); }
.partner-enquiry__name { font-weight: 700; font-size: clamp(17px, 1.5vw, 20px); letter-spacing: -0.01em; }
.partner-enquiry__contact a { color: var(--teal); font-weight: 600; font-size: 16px; }
.partner-enquiry__contact a:hover { color: var(--bone); }

.partner-enquiry__form { min-width: 0; }

/* ------------------------------------------------------------------- forms */
/* Shared Grav + Mautic form styling for Finance 360. */

.form-panel {
  padding: clamp(24px, 3vw, 36px);
  background: rgba(240, 239, 234, 0.04);
  border: 1px solid var(--rule);
}

.form-panel > form,
form[name],
.form-panel .form-messages { width: 100%; }

.form-field,
.form-fieldset,
fieldset.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  min-width: 0;
}

.form-label,
.form-field > label,
.form-field .label,
label.form-label {
  display: block;
  margin: 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-quiet);
}

.required .form-label::after,
.form-field.required > label::after,
.mauticform-required .mauticform-label::after {
  content: ' *';
  color: var(--teal);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field input[type="number"],
.form-field input[type="password"],
.form-field input[type="date"],
.form-field select,
.form-field textarea,
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="url"],
form input[type="number"],
form select,
form textarea {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding: 16px 18px;
  background: rgba(240, 239, 234, 0.06);
  color: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field select,
form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--bone-quiet) 50%),
    linear-gradient(135deg, var(--bone-quiet) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.form-field textarea,
form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover,
form input:hover,
form select:hover,
form textarea:hover {
  border-color: rgba(240, 239, 234, 0.32);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(240, 239, 234, 0.1);
}

.form-field ::placeholder,
form ::placeholder {
  color: rgba(240, 239, 234, 0.4);
}

.form-field option,
form option {
  background: var(--ink);
  color: var(--bone);
}

.form-field .hint,
.form-field .form-help,
.form-help {
  font-size: 13px;
  color: var(--bone-quiet);
}

.form-field .form-error,
.form-errors,
.form-field .error,
span.form-error {
  font-size: 13px;
  font-weight: 600;
  color: #ff8f8f;
}

.buttons,
.form-field.form-field--buttons,
.button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.buttons .button,
.buttons button,
form button[type="submit"],
form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 19px 28px;
  border: 0;
  border-radius: 0;
  background: var(--teal);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.buttons .button:hover,
.buttons button:hover,
form button[type="submit"]:hover,
form input[type="submit"]:hover {
  background: var(--bone);
  color: var(--ink);
}

.form-messages,
.alert,
.form-success,
.form-errors-list {
  margin: 0 0 20px;
  padding: 18px 20px;
  border-left: 2px solid var(--teal);
  background: rgba(20, 200, 160, 0.08);
  font-size: 16px;
  color: var(--bone-dim);
}

.alert-error,
.form-messages .alert-error {
  border-left-color: #ff8f8f;
  background: rgba(255, 143, 143, 0.08);
}

/* Honeypot — keep invisible */
.form-field.honeypot,
.form-field[style*="display:none"] { display: none !important; }

/* ----------------------------------------------------------- mautic forms */

.mautic-form-wrap,
.mm-form-enquiry {
  display: block;
  width: 100%;
}

.mautic-form-wrap .mauticform_wrapper,
.mautic-form-wrap .mauticform-innerform,
.mautic-form-wrap .mauticform-page-wrapper,
.mm-form-enquiry .mauticform_wrapper,
.mm-form-enquiry .mauticform-innerform,
.mm-form-enquiry .mauticform-page-wrapper {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.mautic-form-wrap .mauticform-page-wrapper,
.mm-form-enquiry .mauticform-page-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.mautic-form-wrap .mauticform-row,
.mm-form-enquiry .mauticform-row {
  grid-column: span 1 !important;
  width: auto !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.mautic-form-wrap .mauticform-row.mauticform-textarea,
.mautic-form-wrap .mauticform-row:has(textarea),
.mautic-form-wrap .mauticform-row.mauticform-checkboxgrp,
.mautic-form-wrap .mauticform-row.mauticform-radiogrp,
.mautic-form-wrap .mauticform-row.mauticform-freetext,
.mautic-form-wrap .mauticform-row.mauticform-button-wrapper,
.mautic-form-wrap .mauticform-row.full-width,
.mm-form-enquiry .mauticform-row.mauticform-textarea,
.mm-form-enquiry .mauticform-row:has(textarea),
.mm-form-enquiry .mauticform-row.mauticform-checkboxgrp,
.mm-form-enquiry .mauticform-row.mauticform-radiogrp,
.mm-form-enquiry .mauticform-row.mauticform-freetext,
.mm-form-enquiry .mauticform-row.mauticform-button-wrapper,
.mm-form-enquiry .mauticform-row.full-width {
  grid-column: 1 / -1 !important;
}

.mautic-form-wrap .mauticform-label,
.mm-form-enquiry .mauticform-label {
  display: block !important;
  float: none !important;
  width: auto !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  font-family: var(--sans) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--bone-quiet) !important;
}

.mautic-form-wrap .mauticform-input,
.mautic-form-wrap .mauticform-select,
.mautic-form-wrap .mauticform-textarea,
.mautic-form-wrap input[type="text"],
.mautic-form-wrap input[type="email"],
.mautic-form-wrap input[type="tel"],
.mautic-form-wrap input[type="url"],
.mautic-form-wrap input[type="number"],
.mautic-form-wrap select,
.mautic-form-wrap textarea,
.mm-form-enquiry .mauticform-input,
.mm-form-enquiry .mauticform-select,
.mm-form-enquiry .mauticform-textarea,
.mm-form-enquiry input[type="text"],
.mm-form-enquiry input[type="email"],
.mm-form-enquiry input[type="tel"],
.mm-form-enquiry select,
.mm-form-enquiry textarea {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
  float: none !important;
  margin: 0 !important;
  padding: 16px 18px !important;
  background: rgba(240, 239, 234, 0.06) !important;
  color: var(--bone) !important;
  border: 1px solid var(--rule) !important;
  border-radius: 0 !important;
  font-family: var(--sans) !important;
  font-size: 17px !important;
  line-height: 1.4 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: border-color 0.2s ease, background 0.2s ease !important;
}

.mautic-form-wrap textarea,
.mautic-form-wrap .mauticform-textarea,
.mm-form-enquiry textarea,
.mm-form-enquiry .mauticform-textarea {
  min-height: 150px !important;
  resize: vertical !important;
}

.mautic-form-wrap .mauticform-input:focus,
.mautic-form-wrap .mauticform-select:focus,
.mautic-form-wrap .mauticform-textarea:focus,
.mautic-form-wrap input:focus,
.mautic-form-wrap select:focus,
.mautic-form-wrap textarea:focus,
.mm-form-enquiry .mauticform-input:focus,
.mm-form-enquiry .mauticform-select:focus,
.mm-form-enquiry .mauticform-textarea:focus,
.mm-form-enquiry input:focus,
.mm-form-enquiry select:focus,
.mm-form-enquiry textarea:focus {
  border-color: var(--teal) !important;
  background: rgba(240, 239, 234, 0.1) !important;
  box-shadow: none !important;
}

.mautic-form-wrap option,
.mm-form-enquiry option {
  background: var(--ink);
  color: var(--bone);
}

.mautic-form-wrap .mauticform-errormsg,
.mm-form-enquiry .mauticform-errormsg {
  float: none !important;
  margin-top: 6px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #ff8f8f !important;
}

.mautic-form-wrap .mauticform-button-wrapper,
.mm-form-enquiry .mauticform-button-wrapper {
  display: flex !important;
  justify-content: flex-start !important;
  margin-top: 4px !important;
}

.mautic-form-wrap .mauticform-button,
.mautic-form-wrap button.mauticform-button,
.mm-form-enquiry .mauticform-button,
.mm-form-enquiry button.mauticform-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-height: 54px !important;
  padding: 19px 28px !important;
  background: var(--teal) !important;
  color: var(--ink) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--sans) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  letter-spacing: -0.01em !important;
  cursor: pointer !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.mautic-form-wrap .mauticform-button:hover,
.mm-form-enquiry .mauticform-button:hover {
  background: var(--bone) !important;
  color: var(--ink) !important;
  box-shadow: none !important;
}

.mautic-form-wrap .mauticform-message,
.mm-form-enquiry .mauticform-message {
  margin: 0 0 16px !important;
  font-size: 15px !important;
  color: var(--bone-dim) !important;
}

@media (max-width: 700px) {
  .mautic-form-wrap .mauticform-page-wrapper,
  .mm-form-enquiry .mauticform-page-wrapper {
    grid-template-columns: 1fr !important;
  }

  .buttons .button,
  .buttons button,
  form button[type="submit"],
  .mautic-form-wrap .mauticform-button,
  .mm-form-enquiry .mauticform-button {
    width: 100%;
  }
}

/* ------------------------------------------------------- register drawer */

.drawer { position: fixed; inset: 0; z-index: 120; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(4, 8, 7, 0.72); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(520px, 100%); overflow-y: auto;
  background: var(--ink); border-left: 1px solid var(--rule);
}
.drawer__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 26px clamp(20px, 4vw, 36px); border-bottom: 1px solid var(--rule);
}
.drawer__title { font-weight: 800; font-size: 26px; letter-spacing: -0.025em; }
.drawer__close { background: transparent; border: 0; color: var(--bone); font-size: 30px; line-height: 1; padding: 0 6px; }

.drawer__city {
  display: flex; flex-direction: column; gap: 6px;
  padding: 26px clamp(20px, 4vw, 36px); border-bottom: 1px solid var(--rule); color: var(--bone);
}
.drawer__city:hover { background: rgba(240, 239, 234, 0.05); color: var(--bone); }
.drawer__city-name   { font-weight: 800; font-size: 30px; line-height: 1; letter-spacing: -0.03em; text-transform: uppercase; }
.drawer__city-meta   { font-weight: 600; font-size: 15px; color: var(--bone-quiet); }
.drawer__city-status { font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
.drawer__city-cta    { margin-top: 10px; font-weight: 700; font-size: 16px; color: var(--teal); }

.drawer__note { padding: 22px clamp(20px, 4vw, 36px); font-weight: 500; font-size: 15px; line-height: 1.6; color: rgba(240, 239, 234, 0.72); }

/* --------------------------------------------------------- capacity note */

.capacity-note {
  background: var(--ink);
  border-top: 1px solid var(--rule);
  padding: clamp(48px, 6vw, 88px) var(--gutter);
}
.capacity-note__text {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--bone);
}

/* ------------------------------------------------------------------ footer */

.site-footer {
  background: var(--ink);
  color: var(--bone);
  border-top: 1px solid rgba(240, 239, 234, 0.16);
  padding: clamp(40px, 5vw, 76px) var(--gutter) clamp(48px, 6vw, 80px);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  max-width: none;
  margin: 0;
  width: 100%;
}
.site-footer__brand {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.site-footer__tagline {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 239, 234, 0.62);
  line-height: 1.7;
  max-width: none;
}
.site-footer__nav {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.site-footer__nav a {
  color: rgba(240, 239, 234, 0.8);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer__nav a:hover { color: var(--teal); }
.site-footer__cta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.site-footer__loc {
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 239, 234, 0.7);
  line-height: 1.6;
}
.site-footer__actions {
  margin-top: 4px;
  max-width: 100%;
}
.site-footer__actions .btn {
  padding: 16px 20px;
  font-size: 15px;
}
.site-footer__legal {
  margin-top: clamp(36px, 4.5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: rgba(240, 239, 234, 0.45);
  max-width: none;
}

/* -------------------------------------------------------------- responsive */

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-header__mobile { display: flex; }
  .mobile-nav:not([hidden]) { display: flex; }

  .site-header__bar {
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .grid--prop, .grid--halves, .grid--head, .grid--outcome,
  .grid--enquiry,
  .opportunity__panel, .venue, .agenda__item, .speaker,
  .site-footer__inner { grid-template-columns: 1fr; }

  .agenda__rail { flex-direction: row; align-items: baseline; gap: 14px; flex-wrap: wrap; }
  .framework-diagram { display: none; }

  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .btn-row--center .btn { width: auto; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; }
  .venue__city { font-size: clamp(34px, 12vw, 52px); }

  .site-header__mobile { gap: 8px; }
  .site-header__mobile .btn--compact { padding: 9px 12px; font-size: 13px; }
  .menu-toggle { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-film__video,
  .hero-bg-video { opacity: 1; }
}

@media print {
  .site-header, .drawer, .btn, .hero-film { display: none; }
  body { background: #fff; color: #000; }
}

/* ------------------------------------------------------------------ agenda-single (PMS structure, F360 tokens) */

.agenda-wrapper {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}

.agenda-timeline {
  position: relative;
  padding-left: 40px;
}

.agenda-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--rule);
  overflow: hidden;
}

.agenda-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal), var(--teal-deep));
  transform-origin: top;
  transform: scaleY(0);
  will-change: transform;
}

.agenda-item {
  position: relative;
  margin-bottom: 20px;
  padding: 28px 0 28px 8px;
  border-bottom: 1px solid var(--rule-soft);
}

.agenda-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 36px;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
  z-index: 2;
}

.agenda-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.agenda-time {
  margin: 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.agenda-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  background: rgba(20, 200, 160, 0.12);
  color: var(--teal);
  line-height: 1.2;
  white-space: nowrap;
}

.agenda-item h4 {
  margin: 12px 0 10px;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bone);
}

.agenda-topic {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--bone-quiet);
}

.agenda-topic-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.agenda-speakers-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin: 12px 0 10px;
}

.agenda-speakers-names {
  font-size: 14px;
  color: var(--bone-quiet);
}

.agenda-speaker {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.agenda-speaker-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.agenda-speaker-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--bone);
  line-height: 1.3;
}

.agenda-speaker-role {
  font-size: 13px;
  color: var(--bone-quiet);
  line-height: 1.35;
}

.agenda-headshot {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ink-raised);
  border: 1px solid var(--rule);
  position: relative;
}

.agenda-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.agenda-headshot .hs-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: var(--teal);
  background: rgba(20, 200, 160, 0.12);
}

.agenda-sub-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 4px;
  padding: 14px 16px;
  border: 1px solid var(--rule-soft);
  background: var(--ink-raised);
}

.agenda-sub-preview-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--bone-dim);
}

.agenda-sub-track {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 3px 8px;
  border: 1px solid var(--rule);
}

.agenda-sub-preview-title {
  color: var(--bone);
  font-weight: 600;
}

.agenda-details {
  display: none;
  margin-top: 16px;
}

.agenda-item.expanded .agenda-details {
  display: block;
}

.agenda-item.expanded .agenda-sub-preview {
  display: none;
}

.agenda-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--bone-dim);
}

.agenda-desc--open {
  display: block;
  margin-top: 12px;
}

.agenda-desc.text-content p {
  margin: 0 0 0.85em;
}

.agenda-desc.text-content p:last-child {
  margin-bottom: 0;
}

.agenda-desc.text-content ul,
.agenda-desc.text-content ol {
  margin: 0 0 0.85em;
  padding-left: 1.2em;
}

.agenda-desc.text-content strong {
  color: var(--bone);
  font-weight: 700;
}

.agenda-desc.text-content em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--teal);
  font-size: 1.15em;
}

.agenda-subs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.agenda-sub-item {
  padding: 20px 22px;
  border: 1px solid var(--rule-soft);
  background: var(--ink-raised);
}

.agenda-sub-item h4 {
  font-size: 18px;
  margin: 10px 0 8px;
}

.agenda-expand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 0 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bone-quiet);
  text-align: left;
}

.agenda-expand:hover {
  color: var(--teal);
}

.agenda-break-item {
  position: relative;
  margin-bottom: 20px;
  padding: 24px 16px;
  text-align: center;
  border: 1px dashed var(--rule);
  background: rgba(20, 200, 160, 0.04);
}

.agenda-break-item .agenda-meta {
  justify-content: center;
}

.agenda-break-item h4 {
  margin: 8px 0 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--bone-quiet);
}

.agenda-footer {
  margin-top: 48px;
  text-align: center;
}

.agenda-footer .footnote {
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .agenda-timeline {
    padding-left: 28px;
  }

  .agenda-item::before {
    left: -34px;
    width: 10px;
    height: 10px;
  }

  .agenda-headshot {
    width: 56px;
    height: 56px;
  }
}

/* ==========================================================================
   Reference redesign — film, dates, about, difference, locations, cards
   ========================================================================== */

.colour-stripe { display: flex; height: 2px; width: 100%; }
.colour-stripe span { flex: 1; }

.film { background: var(--ink); }
.film__frame {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden; background: var(--ink);
}
.film__video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
  opacity: 0; transition: opacity 0.9s ease;
}
.film__video.is-ready { opacity: 1; }
.film__video--desktop,
.film__video--tablet { display: none; }
.film__video--mobile { display: block; }
@media (min-width: 768px) {
  .film__video--mobile { display: none; }
  .film__video--tablet { display: block; }
}
@media (min-width: 1024px) {
  .film__video--tablet { display: none; }
  .film__video--desktop { display: block; }
}
.film__fade {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(5, 16, 14, 0) 90%, rgba(5, 16, 14, 0.75) 97%, rgba(5, 16, 14, 1) 100%);
}

.dates-bar {
  background: var(--ink);
  padding: clamp(14px, 1.6vw, 22px) var(--gutter) clamp(18px, 2vw, 26px);
}
.dates-bar__inner {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(14px, 2.4vw, 40px);
}
.dates-bar__item {
  display: flex; align-items: baseline; gap: 10px;
  background: transparent; border: 0; padding: 6px 0;
  color: var(--bone); text-decoration: none; font: inherit; cursor: pointer;
}
.dates-bar__item:hover { color: var(--teal); }
.dates-bar__date {
  font-weight: 600; font-size: clamp(15px, 1.3vw, 18px); letter-spacing: -0.02em; white-space: nowrap;
}
.dates-bar__sep { color: var(--teal); font-weight: 400; }
.dates-bar__venue {
  font-weight: 400; font-size: clamp(14px, 1.15vw, 16px); color: rgba(240, 239, 234, 0.78);
}
.dates-bar__spacer { flex: 1; min-width: 12px; }
.dates-bar__register {
  background: transparent; border: 0; padding: 6px 0;
  color: var(--teal); font-weight: 600; font-size: clamp(12px, 1vw, 13px);
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
}
.dates-bar__register:hover { color: var(--bone); }
@media (max-width: 700px) {
  .dates-bar__spacer { display: none; }
}

.idea {
  position: relative; overflow: hidden; background: var(--ink);
  padding: clamp(40px, 6vh, 72px) clamp(18px, 3.2vw, 48px) clamp(48px, 7vh, 84px);
}
.idea__field {
  position: absolute; inset: 0; pointer-events: none; user-select: none;
  overflow: hidden; opacity: 0.05;
  -webkit-mask-image: linear-gradient(180deg, #000 0, transparent 480px);
  mask-image: linear-gradient(180deg, #000 0, transparent 480px);
}
.idea__field-text {
  position: absolute; top: 0; left: 0; right: 0;
  font-weight: 300; font-size: clamp(34px, 5.6vw, 86px);
  line-height: 1.55; letter-spacing: 0.02em; color: var(--teal);
  white-space: pre; animation: f360drift 150s linear infinite;
}
@keyframes f360drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-12%, -18%, 0); }
}
.idea__inner {
  position: relative; max-width: 1720px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(36px, 7vh, 80px);
}
.idea__line {
  font-weight: 600; font-size: clamp(24px, 2.6vw, 48px);
  line-height: 1.2; letter-spacing: -0.025em;
}
.idea__chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  max-width: 900px; list-style: none; margin: 0; padding: 0;
}
.idea__chips li {
  background: rgba(240, 239, 234, 0.08); white-space: nowrap;
  padding: 10px 16px; font-weight: 500;
  font-size: clamp(13px, 1vw, 15px); letter-spacing: 0.1em; text-transform: uppercase;
}
.idea__finale {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(22px, 2.6vw, 36px);
}
.idea__finale-heading {
  font-weight: 700; font-size: clamp(40px, 6.4vw, 104px);
  line-height: 0.95; letter-spacing: -0.05em;
}
.idea__finale-body {
  font-weight: 700; font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.75; max-width: 62ch;
}
.idea__path {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(10px, 1.4vw, 20px);
  font-weight: 600; font-size: clamp(16px, 1.5vw, 21px);
  letter-spacing: -0.015em; padding-top: clamp(6px, 1vw, 14px);
}
.idea__path-arrow { color: rgba(240, 239, 234, 0.5); }

.journey {
  background: var(--ink);
  padding: clamp(48px, 8vh, 100px) clamp(18px, 3.2vw, 48px) clamp(64px, 10vh, 120px);
}
.journey__inner { position: relative; max-width: 1080px; margin: 0 auto; }
.journey__rail {
  position: absolute; top: clamp(20px, 2.6vw, 40px); bottom: 0;
  left: calc(clamp(44px, 7vw, 120px) / 2 - 1px);
  width: 2px; background: rgba(240, 239, 234, 0.14);
}
.journey__fill {
  position: absolute; inset: 0; transform-origin: top; transform: scaleY(0);
  background: linear-gradient(180deg, #14C8A0 0%, #C77BEE 50%, #F2DC28 100%);
}
.journey__step {
  position: relative;
  display: grid; grid-template-columns: clamp(44px, 7vw, 120px) minmax(0, 1fr);
  column-gap: clamp(16px, 3vw, 48px);
  padding-bottom: clamp(56px, 10vh, 120px);
}
.journey__step:last-child { padding-bottom: 0; }
.journey__marker { position: relative; display: flex; justify-content: center; }
.journey__node {
  position: relative; z-index: 1; margin-top: clamp(14px, 2vw, 30px);
  width: clamp(14px, 1.4vw, 20px); height: clamp(14px, 1.4vw, 20px);
  background: var(--ink); border: 2px solid var(--node, var(--teal));
  color: var(--node, var(--teal)); transition: background 0.5s;
}
.journey__copy {
  display: flex; flex-direction: column; gap: clamp(18px, 2.2vw, 30px);
}
.journey__kicker {
  display: flex; align-items: baseline; flex-wrap: wrap;
  column-gap: clamp(14px, 2vw, 28px); row-gap: 6px;
}
.journey__n {
  font-weight: 700; font-size: clamp(54px, 6.4vw, 110px);
  line-height: 0.85; letter-spacing: -0.06em;
}
.journey__question {
  font-weight: 500; font-size: clamp(12px, 1vw, 13.5px);
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(240, 239, 234, 0.85);
}
.journey__heading {
  font-weight: 600; font-size: clamp(26px, 3vw, 46px);
  line-height: 1.18; letter-spacing: -0.025em; max-width: 28ch;
}
.journey__body {
  font-weight: 300; font-size: clamp(17.5px, 1.45vw, 20.5px);
  line-height: 1.7; max-width: 68ch;
}
.journey__pull {
  display: flex; gap: 14px; align-items: baseline;
  font-weight: 600; font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.4; letter-spacing: -0.015em;
}

.idea-close {
  background: var(--ink-raised);
  padding: clamp(56px, 8vw, 120px) clamp(18px, 3.2vw, 48px);
}
.idea-close__inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(28px, 3.4vw, 48px);
}
.idea-close__heading {
  display: flex; flex-direction: column;
  font-weight: 700; font-size: clamp(32px, 4.6vw, 76px);
  line-height: 1.1; letter-spacing: -0.03em;
}
.idea-close__body {
  font-weight: 300; font-size: clamp(17.5px, 1.45vw, 20.5px);
  line-height: 1.7; max-width: 64ch;
}
.idea-close__actions {
  display: flex; flex-wrap: wrap; gap: 1px; width: fit-content; max-width: 100%;
}
.idea-close__actions .btn {
  flex: 1 1 auto; border: 0; border-radius: 0; padding: 20px 26px;
  font-size: 16px; letter-spacing: -0.01em;
}
.btn--quiet {
  background: rgba(240, 239, 234, 0.1); color: var(--bone);
  border: 0; font-weight: 500;
}
.btn--quiet:hover,
.btn--quiet:active { background: rgba(240, 239, 234, 0.18); color: var(--bone); }
.idea-close__actions .btn--quiet .arrow { display: none; }
.btn--primary:active { background: var(--bone); color: var(--ink); }

.cta-pair {
  display: flex; flex-wrap: wrap; gap: 1px;
  border: 1px solid rgba(240, 239, 234, 0.3);
  width: fit-content; max-width: 100%; align-self: start;
}
.cta-pair .btn {
  flex: 1 1 auto; border-radius: 0;
  border: 0; padding: 20px 26px;
}
.cta-pair--outline .btn--ghost {
  background: transparent; border: 0;
}
.cta-pair--outline .btn--ghost:hover {
  background: rgba(240, 239, 234, 0.08);
}

.locations {
  background: var(--ink);
  padding: clamp(36px, 4.5vw, 72px) var(--gutter) clamp(44px, 5.5vw, 88px);
}
.location-rows {
  max-width: 1080px; margin: 0 auto;
  border-top: 1px solid rgba(240, 239, 234, 0.22);
}
.location-rows__item {
  border-bottom: 1px solid rgba(240, 239, 234, 0.22);
  padding: clamp(20px, 2.6vw, 34px) 0;
}
.location-rows__item:hover { background: rgba(240, 239, 234, 0.03); }
.location-rows__row {
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px, 2vw, 32px);
}
.location-rows__day {
  font-weight: 700; font-size: clamp(44px, 6vw, 96px);
  letter-spacing: -0.06em; line-height: 0.82;
}
.location-rows__meta {
  display: flex; flex-direction: column; gap: 1px;
  font-weight: 500; font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-quiet);
}
.location-rows__venue {
  flex: 1; min-width: 200px;
  font-weight: 600; font-size: clamp(18px, 1.7vw, 26px);
  letter-spacing: -0.02em; line-height: 1.25;
}
.location-rows__cta { white-space: nowrap; }

.home-video {
  background: var(--ink);
  padding: 0 clamp(18px, 3.2vw, 48px) clamp(48px, 6vw, 88px);
}
.home-video__frame {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
}
.home-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-speakers {
  background: var(--ink-raised);
  border-top: 1px solid rgba(240, 239, 234, 0.16);
  padding: clamp(44px, 5.5vw, 90px) var(--gutter);
}
.home-speakers__grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.5vw, 56px);
}

.speaker-compact { display: flex; flex-direction: column; gap: 18px; }
.speaker-compact__portrait {
  position: relative; aspect-ratio: 4 / 5;
  background: #16302A; border-top: 3px solid var(--teal);
  overflow: hidden;
}
.speaker-compact__img,
.speaker-compact__portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.speaker-compact__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 16px;
  font-weight: 500; font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(240, 239, 234, 0.62);
}
.speaker-compact__name {
  margin: 0; font-weight: 700; font-size: clamp(26px, 3vw, 44px);
  letter-spacing: -0.045em; line-height: 0.92;
}
.speaker-compact__role {
  margin: 0; font-weight: 500; font-size: 12.5px; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--teal); line-height: 1.7;
}

.speakers-page__head {
  padding: clamp(44px, 6vw, 96px) var(--gutter) clamp(28px, 3.4vw, 48px);
}
.speakers-page__title {
  margin: 0; font-weight: 700; letter-spacing: -0.045em; line-height: 0.88;
  font-size: clamp(48px, 10vw, 140px);
}
.speakers-page__grid-wrap {
  border-top: 1px solid rgba(240, 239, 234, 0.16);
  padding: clamp(44px, 5.5vw, 90px) var(--gutter);
}

.home-partners {
  background: var(--ink);
  padding: clamp(10px, 1.2vw, 18px) clamp(18px, 3.2vw, 48px) clamp(22px, 2.4vw, 34px);
}
.partner-tiers {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; flex-direction: column; gap: clamp(26px, 3vw, 42px);
}
.partner-tiers__group { display: flex; flex-direction: column; gap: 12px; }
.partner-tiers__label {
  font-weight: 500; font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bone-quiet);
}
.partner-tiers__label--accent { color: var(--teal); }
.partner-tiers__grid {
  display: grid; gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.partner-tiers__grid--principal { grid-template-columns: 1fr; }
.partner-tiers__card {
  background: #fff;
  border-top: 2px solid rgba(240, 239, 234, 0.28);
  height: 200px;
  width: 100%;
  aspect-ratio: auto;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.partner-tiers__card--principal {
  border-top-width: 3px;
  height: 280px;
}
.partner-tiers__card--event,
.partner-tiers__card--supporting { border-top-width: 1px; }
.partner-tiers__link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.partner-tiers__logo { max-width: 80%; max-height: 70%; width: auto; height: auto; object-fit: contain; }

.home-partners .partner-tiers {
  max-width: 1640px;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
}
.home-partners .partner-tiers__group { align-items: center; gap: 8px; width: 100%; }
.home-partners .partner-tiers__label {
  text-align: center; font-size: 11px; color: rgba(240, 239, 234, 0.78);
}
.home-partners .partner-tiers__grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  width: 100%; margin: 0 auto;
}
.home-partners .partner-tiers__grid--principal { max-width: 520px; }
.home-partners .partner-tiers__grid--platinum { max-width: 620px; }
.home-partners .partner-tiers__grid--gold { max-width: 720px; }
.home-partners .partner-tiers__grid--event { max-width: 820px; }
.home-partners .partner-tiers__grid--media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  width: 100%;
}
.home-partners .partner-tiers__card {
  background: #fff;
  flex: 1 1 140px; min-width: 120px; width: auto; height: clamp(40px, 3.4vw, 50px);
  border-top-width: 2px; padding: 6px;
}
.home-partners .partner-tiers__card--principal { height: clamp(56px, 5vw, 72px); }
.home-partners .partner-tiers__card--platinum { height: clamp(46px, 4vw, 58px); }
.home-partners .partner-tiers__card--event,
.home-partners .partner-tiers__card--supporting { height: clamp(36px, 3vw, 44px); border-top-width: 1px; }
.home-partners .partner-tiers__card--media {
  flex: none;
  width: auto;
  min-width: 0;
  height: clamp(40px, 3.2vw, 48px);
  border-top-width: 1px;
}
.home-partners .partner-tiers__logo { max-width: 78%; max-height: 68%; }
.home-partners .partner-tiers__card--media .partner-tiers__logo {
  max-width: 46%;
  max-height: 62%;
}
.partner-tiers__actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 24px; padding-top: 2px;
}
.partner-tiers__cta {
  display: inline-flex; align-items: center; min-height: 44px; padding: 10px 4px;
  color: rgba(240, 239, 234, 0.78); font-weight: 500; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.partner-tiers__cta--accent { color: var(--teal); font-weight: 600; }
.partner-tiers__cta:hover,
.partner-tiers__cta:active { color: var(--bone); }

[data-st] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2, .7, .2, 1), transform 0.9s cubic-bezier(.2, .7, .2, 1);
}
[data-st].st-in { opacity: 1; transform: none; }
[data-st="dim"].st-in.st-past { opacity: 0.72; }
[data-node].st-on { background: currentColor; }
[data-glow] { position: relative; }
[data-glow]::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, #14C8A0, transparent);
  opacity: 0; transform: scaleX(0.2); transform-origin: left;
  transition: opacity 0.9s ease, transform 1.1s cubic-bezier(.2, .7, .3, 1);
}
[data-glow].rv-in::before { opacity: 0.9; transform: scaleX(1); }

.page-display-title {
  margin: 0; font-weight: 700; letter-spacing: -0.045em; line-height: normal;
  font-size: clamp(48px, 10vw, 180px);
}
.page-display-head {
  padding: clamp(44px, 6vw, 96px) var(--gutter) clamp(28px, 3.4vw, 48px);
  background: var(--ink);
}

.agenda-rows { border-top: 1px solid rgba(240, 239, 234, 0.22); background: var(--ink); }
.agenda-row {
  display: grid; grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 44px);
  max-width: var(--wrap); margin: 0 auto; width: 100%;
  padding: clamp(26px, 3vw, 48px) clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(240, 239, 234, 0.16);
  border-left: 3px solid var(--teal);
}
.agenda-row__time { display: flex; flex-direction: column; gap: 6px; }
.agenda-row__start {
  font-weight: 600; font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: -0.01em; color: var(--teal);
}
.agenda-row__dur {
  font-weight: 500; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--bone-quiet);
}
.agenda-row__kind {
  font-weight: 500; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--bone-quiet);
}
.agenda-row__body { display: flex; flex-direction: column; gap: clamp(16px, 1.8vw, 24px); }
.agenda-row__title {
  margin: 0; font-weight: 700; font-size: clamp(26px, 3.4vw, 50px);
  letter-spacing: -0.04em; line-height: 1;
}
.agenda-row__copy {
  font-weight: 300; font-size: 17.5px; line-height: 1.8;
  color: rgba(240, 239, 234, 0.84); max-width: 84ch;
}
.agenda-row__copy p { margin-bottom: 1em; }

.contact-page__head { padding: clamp(44px, 6vw, 96px) var(--gutter) clamp(28px, 3vw, 48px); }
.contact-page__title {
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-weight: 700; letter-spacing: -0.045em; line-height: 0.92;
  font-size: clamp(40px, 7vw, 96px);
}

[data-rv] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-rv].is-in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .home-speakers__grid,
  .agenda-row { grid-template-columns: 1fr; }
  .idea__path { flex-direction: column; align-items: center; }
  .dates-bar__register { width: 100%; text-align: left; }
  .dates-bar__item:active { color: var(--teal); }
}

@media (prefers-reduced-motion: reduce) {
  .idea__field-text { animation: none !important; }
  [data-rv],
  [data-st] { opacity: 1; transform: none; transition: none; }
  .journey__fill { transform: scaleY(1) !important; }
  .journey__node { background: currentColor; }
  [data-glow]::before { opacity: 0.9; transform: none; transition: none; }
  .film__video { opacity: 1; }
}

@media print {
  [data-st],
  [data-rv] { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Speakers / Partners / Contact pages — reference layouts
   ========================================================================== */

.speakers-page {
  background: var(--ink);
  border-top: 1px solid rgba(240, 239, 234, 0.22);
}
.speakers-page__row {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);
  padding: clamp(28px, 4vw, 72px) var(--gutter);
  border-bottom: 1px solid rgba(240, 239, 234, 0.22);
  align-items: start;
}
.speakers-page__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-raised);
  border-top: 3px solid var(--teal);
  overflow: hidden;
}
.speakers-page__img,
.speakers-page__portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.speakers-page__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 16px;
  font-weight: 500; font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(240, 239, 234, 0.62);
}
.speakers-page__content {
  display: flex; flex-direction: column; gap: 14px;
}
.speakers-page__name {
  margin: 0;
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 92px);
  letter-spacing: -0.05em;
  line-height: 0.88;
}
.speakers-page__role {
  margin: 0;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.7;
}
.speakers-page__sessions {
  display: flex; flex-direction: column;
  margin-top: 8px;
  border-top: 1px solid rgba(240, 239, 234, 0.18);
}
.speakers-page__session {
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: -0.015em;
  line-height: 1.4;
  padding: 14px 0;
  border-bottom: 1px solid rgba(240, 239, 234, 0.14);
}
.speakers-page__cta {
  margin: clamp(36px, 4.5vw, 72px) var(--gutter);
}

.partners-page {
  background: var(--ink-raised);
  padding: clamp(40px, 5vw, 88px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 4.5vw, 72px);
}
.partners-page__tier {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.partners-page__tier-title {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.04em;
  border-bottom: 1px solid rgba(240, 239, 234, 0.22);
  padding-bottom: 12px;
  font-size: clamp(20px, 2.2vw, 32px);
}
.partners-page__tier-title--principal { font-size: clamp(22px, 2.6vw, 38px); }
.partners-page__tier-title--gold { font-size: clamp(19px, 2vw, 27px); letter-spacing: -0.035em; }
.partners-page__tier-title--event { font-size: clamp(18px, 1.7vw, 23px); letter-spacing: -0.03em; }
.partners-page__tier-title--supporting { font-size: clamp(16px, 1.5vw, 20px); letter-spacing: -0.025em; }
.partners-page__tier-title--media { font-size: clamp(18px, 1.7vw, 23px); letter-spacing: -0.03em; }

.partners-page__grid {
  display: grid;
  gap: 10px;
}
.partners-page__grid--principal { grid-template-columns: 1fr; }
.partners-page__grid--platinum { grid-template-columns: repeat(2, 1fr); }
.partners-page__grid--gold { grid-template-columns: repeat(3, 1fr); }
.partners-page__grid--event { grid-template-columns: repeat(4, 1fr); gap: 8px; }
.partners-page__grid--supporting { grid-template-columns: repeat(5, 1fr); gap: 8px; }
.partners-page__grid--media { grid-template-columns: repeat(4, 1fr); gap: 8px; }

.partners-page__card {
  background: #fff;
  border-top: 2px solid rgba(240, 239, 234, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  height: 200px;
}
.partners-page__card--principal {
  border-top-width: 3px;
  height: 280px;
  min-height: 200px;
}
.partners-page__card--event,
.partners-page__card--supporting,
.partners-page__card--media {
  border-top-width: 1px;
  height: 160px;
}
.partners-page__link {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.partners-page__logo {
  max-width: 80%; max-height: 70%;
  width: auto; height: auto; object-fit: contain;
}
.partners-page__card.partner-item {
  cursor: pointer;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.partners-page__card.partner-item:hover,
.partners-page__card.partner-item:focus-visible {
  box-shadow: 0 0 0 2px var(--teal);
  outline: none;
}
.partner-item__meta { display: none !important; }

.partner-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 40px);
  background: rgba(5, 16, 14, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}
.partner-modal.open {
  opacity: 1;
  visibility: visible;
}
.partner-modal__content {
  position: relative;
  width: min(820px, 100%);
  max-height: min(88vh, 720px);
  overflow: auto;
  background: var(--ink-raised);
  border: 1px solid var(--rule);
  padding: clamp(28px, 4vw, 44px);
}
.partner-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--bone);
  font-size: 26px;
  line-height: 1;
  padding: 0;
}
.partner-modal__close:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.partner-modal__layout {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
}
.partner-modal__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--rule);
}
.partner-modal__media .partner-picture {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-modal__body .partner-name {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--bone);
}
.partner-modal__body .partner-url {
  margin-bottom: 14px;
  font-size: 15px;
}
.partner-modal__body .partner-url a {
  color: var(--teal);
}
.partner-modal__body .partner-url a:hover {
  color: var(--bone);
}
.partner-modal__body .partner-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bone-dim);
  max-height: 280px;
  overflow-y: auto;
}
.partner-modal__body .partner-description p {
  margin: 0 0 0.85em;
}
.partner-modal__body .partner-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .partner-modal__layout {
    grid-template-columns: 1fr;
  }
  .partner-modal__media {
    min-height: 120px;
    padding: 18px;
  }
}

.become-partner {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(48px, 6vw, 110px) var(--gutter);
}
.become-partner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.become-partner__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
}
.become-partner__title {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
  font-size: clamp(38px, 6vw, 104px);
}
.become-partner__body {
  margin: 0;
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.8;
  color: var(--bone-dim);
  max-width: 44ch;
}
.become-partner__enquiry {
  border-top: 1px solid rgba(240, 239, 234, 0.2);
  padding-top: clamp(20px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.become-partner__enquiry-label {
  font-weight: 600;
  font-size: clamp(19px, 1.8vw, 25px);
  letter-spacing: -0.025em;
}
.become-partner__enquiry-intro {
  margin: 0;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(240, 239, 234, 0.8);
}
.become-partner__name {
  font-weight: 600;
  font-size: 17.5px;
  letter-spacing: -0.015em;
}
.become-partner__link {
  font-weight: 400;
  font-size: 17px;
  color: var(--teal);
  overflow-wrap: anywhere;
}
.become-partner__link:hover { color: var(--bone); }

.contact-page__lede {
  margin: clamp(22px, 2.6vw, 36px) 0 0;
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.8;
  color: var(--bone-dim);
  max-width: 56ch;
}
.contact-page {
  background: var(--ink);
  border-top: 1px solid rgba(240, 239, 234, 0.22);
  padding: clamp(36px, 4.5vw, 80px) var(--gutter);
}
.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
.contact-page__blocks {
  display: flex;
  flex-direction: column;
}
.contact-page__block {
  padding: 26px 0;
  border-bottom: 1px solid rgba(240, 239, 234, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-page__block:first-child { padding-top: 0; }
.contact-page__block:last-child { border-bottom: 0; }
.contact-page__block-title {
  font-weight: 600;
  font-size: clamp(19px, 1.8vw, 25px);
  letter-spacing: -0.025em;
}
.contact-page__block-body {
  margin: 0;
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(240, 239, 234, 0.8);
}
.contact-page__block-name {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
}
.contact-page__block-link {
  font-weight: 400;
  font-size: 16.5px;
  color: var(--teal);
  overflow-wrap: anywhere;
}
.contact-page__block-link:hover { color: var(--bone); }

@media (max-width: 900px) {
  .speakers-page__row,
  .become-partner__grid,
  .contact-page__grid {
    grid-template-columns: 1fr;
  }
  .partners-page__grid--platinum,
  .partners-page__grid--gold {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-page__grid--event,
  .partners-page__grid--supporting,
  .partners-page__grid--media {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .partners-page__grid--platinum,
  .partners-page__grid--gold,
  .partners-page__grid--event,
  .partners-page__grid--supporting,
  .partners-page__grid--media {
    grid-template-columns: 1fr;
  }
}
