@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400..800&display=swap');

:root {
  /* Typography: change these two variables to test another direction. */
  --font-display: var(--font-body);
  --font-body: "Manrope", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --ink: #111312;
  --ink-soft: #1b1e1c;
  --paper: #f4f1e8;
  --white: #fff;
  --mint: #5f9f78;
  --mint-light: #cfe5d4;
  --mint-dark: #205a3b;
  --accent-coral: #e98b72;
  --accent-coral-hover: #d97860;
  --accent-gold: #d8a85b;
  --muted: #6f716b;
  --line: #d2cfc5;
  --content: 1180px;
  --radius: 22px;
  --shadow: 0 24px 70px rgb(17 19 18 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: rgb(17 19 18 / 96%);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  text-decoration: none;
}

.brand strong {
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -.05em;
}

.brand span {
  color: #c6c9c6;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
}

.desktop-nav a,
.site-footer nav a {
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta {
  padding: 8px 11px;
  border: 1px solid var(--mint-light);
  border-radius: 8px;
  background: var(--mint-light);
  color: var(--ink);
  font-size: .78rem !important;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.mobile-nav {
  display: none;
}

.hero {
  display: block;
  min-height: calc(100vh - 78px);
  padding: clamp(72px, 9vw, 128px) max(24px, calc((100vw - var(--content)) / 2));
  background:
    radial-gradient(circle at 88% 18%, rgb(255 255 255 / 32%), transparent 34%),
    var(--mint);
  color: var(--ink);
}

.hero-copy {
  max-width: 650px;
}

.hero-heading {
  max-width: 1080px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.hero-heading h1 {
  max-width: 1080px;
}

.hero-body {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(42px, 7vw, 104px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--mint-dark);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--ink);
}

.contact-section .eyebrow {
  color: var(--mint);
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 6.4vw, 6.7rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .9;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 0;
  color: #294536;
  font: 600 clamp(1.18rem, 2vw, 1.55rem)/1.52 var(--font-body);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.hero-body > .hero-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 13px 18px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--mint);
  color: var(--ink);
}

.hero .button-primary {
  min-height: 62px;
  padding: 16px 26px;
  font-size: 1rem;
  border-color: var(--accent-coral);
  background: var(--accent-coral);
  color: var(--ink);
}

.hero .button-primary:hover {
  background: var(--accent-coral-hover);
  border-color: var(--accent-coral-hover);
}

.button-showreel {
  border-color: var(--ink);
  background: rgb(255 255 255 / 28%);
  color: var(--ink);
}

.button-showreel:hover {
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  font-size: .9rem;
  font-weight: 900;
}

.text-link-light {
  color: var(--white);
}

.hero .text-link-light {
  color: var(--ink);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 3px;
}

.facts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.facts-list li {
  padding: 8px 11px;
  border: 1px solid rgb(17 19 18 / 25%);
  border-radius: 999px;
  background: rgb(255 255 255 / 30%);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgb(17 19 18 / 18%);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgb(29 92 59 / 24%);
}

.hero-media figcaption {
  margin-top: 12px;
  color: #294536;
  font-size: .76rem;
  font-weight: 750;
}

.proof-strip {
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.proof-strip p {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proof-strip ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(24px, 4vw, 54px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-strip li {
  display: flex;
  min-width: 0;
  height: 58px;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
}

.proof-strip img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  opacity: .82;
}

.proof-strip .logo-ad-alliance {
  filter: brightness(0);
}

.process-section {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  padding-top: clamp(74px, 9vw, 124px);
  padding-bottom: clamp(74px, 9vw, 124px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 42px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  list-style: none;
  background: var(--line);
}

.process-grid li {
  min-height: 190px;
  padding: 28px;
  background: var(--paper);
}

.process-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--mint-dark);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.process-grid h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

.lead-quote {
  width: min(calc(100% - 48px), 980px);
  margin-inline: auto;
  padding: clamp(90px, 12vw, 160px) 0;
}

.lead-quote blockquote {
  margin: 0;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgb(32 90 59 / 18%);
  border-radius: var(--radius);
  background: var(--mint-light);
}

.lead-quote p {
  margin-bottom: 26px;
  font: 700 clamp(1.8rem, 3.7vw, 3.6rem)/1.12 var(--font-display);
  letter-spacing: -.045em;
}

.lead-quote blockquote > .eyebrow {
  margin-bottom: 24px;
  color: var(--mint-dark);
  font: 900 .74rem/1 var(--font-body);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lead-quote .quote-logo {
  width: min(230px, 48vw);
  height: auto;
  max-height: 52px;
  margin-bottom: 30px;
  object-fit: contain;
  object-position: left center;
}

.lead-quote .quote-attribution {
  display: block;
  width: min(100%, 430px);
  margin-top: 34px;
  padding: 20px 0 0;
  border-top: 1px solid rgb(32 90 59 / 22%);
}

.quote-attribution span {
  display: grid;
  gap: 2px;
}

.quote-attribution strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.quote-attribution small {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.lead-quote footer {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 850;
}

.section {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  padding: clamp(86px, 11vw, 145px) 0;
}

.section-heading {
  max-width: 910px;
  margin-bottom: 54px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.8vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .92;
}

.section-heading > p:last-child,
.contact-copy > p {
  max-width: 720px;
  color: var(--muted);
  font: 500 clamp(1.1rem, 2vw, 1.38rem)/1.55 var(--font-body);
}

.outcomes {
  border-top: 1px solid var(--line);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.outcome-grid article {
  min-height: 330px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.outcome-grid span {
  display: block;
  margin-bottom: 70px;
  color: var(--mint-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.outcome-grid h3,
.format-card h3,
.speaker-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: 1;
}

.outcome-grid p,
.format-card p,
.speaker-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.showreel {
  padding-top: 20px;
}

.mission-teaser {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: clamp(42px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}

.mission-teaser h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 1.02;
}

.mission-teaser > div:last-child {
  max-width: 470px;
}

.mission-teaser > div:last-child p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.mission-page-hero {
  padding-top: clamp(88px, 13vw, 170px);
  padding-bottom: clamp(72px, 10vw, 130px);
  background: var(--mint-light);
}

.mission-page-hero h1 {
  max-width: 980px;
  margin-bottom: 38px;
}

.mission-intro {
  max-width: 760px;
  margin-bottom: 0;
  color: #294536;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.5;
}

.mission-story {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(44px, 10vw, 150px);
  padding-top: clamp(86px, 12vw, 160px);
  padding-bottom: clamp(86px, 12vw, 160px);
}

.mission-story-label > p:last-child {
  max-width: 260px;
  color: var(--mint-dark);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.4;
}

.mission-copy {
  max-width: 720px;
}

.mission-copy p {
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.mission-copy p:last-child {
  margin-bottom: 0;
}

.mission-invitation {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
  background: var(--ink);
  color: var(--white);
}

.mission-invitation .eyebrow {
  color: var(--mint);
}

.mission-invitation h2 {
  max-width: 850px;
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
}

.mission-invitation .button-showreel {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.mission-invitation .button-showreel:hover {
  background: var(--white);
  color: var(--ink);
}

.fde-page-hero {
  padding-top: clamp(88px, 13vw, 170px);
  padding-bottom: clamp(72px, 10vw, 130px);
  background: var(--mint-light);
}

.fde-page-hero h1 {
  max-width: 980px;
  margin-bottom: 36px;
}

.fde-intro {
  max-width: 760px;
  margin-bottom: 0;
  color: #294536;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.5;
}

.fde-page-hero .hero-actions {
  margin-top: 38px;
}

.fde-story {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(44px, 10vw, 150px);
  padding-top: clamp(86px, 12vw, 160px);
  padding-bottom: clamp(86px, 12vw, 160px);
}

.fde-copy {
  max-width: 720px;
}

.fde-copy p {
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.fde-copy p:last-child {
  margin-bottom: 0;
}

.fde-grid-section {
  background: var(--paper);
}

.fde-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.fde-grid article {
  min-height: 220px;
  padding: 32px;
  background: var(--white);
}

.fde-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--mint-dark);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.fde-grid h3 {
  margin-bottom: 10px;
}

.fde-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.fde-cta {
  background: var(--ink);
  color: var(--white);
}

.fde-cta .eyebrow {
  color: var(--mint);
}

.fde-cta h2 {
  max-width: 850px;
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
}

.agent-page-hero {
  width: min(calc(100% - 32px), var(--content));
  padding-top: clamp(88px, 13vw, 170px);
  padding-bottom: clamp(72px, 10vw, 130px);
  padding-inline: clamp(24px, 5vw, 64px);
  border-radius: 30px;
  background: var(--mint-light);
  box-shadow: 0 18px 55px rgb(32 90 59 / 9%);
}

.agent-page-hero h1 {
  max-width: 980px;
  margin-bottom: 36px;
}

.agent-intro {
  max-width: 800px;
  margin-bottom: 0;
  color: #294536;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.5;
}

.agent-page-hero .hero-actions {
  margin-top: 38px;
}

.agent-story,
.agent-tools,
.agent-costs {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(44px, 10vw, 150px);
  padding-top: clamp(86px, 12vw, 160px);
  padding-bottom: clamp(86px, 12vw, 160px);
}

.agent-copy {
  max-width: 720px;
}

.agent-copy p {
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.agent-copy p:last-child {
  margin-bottom: 0;
}

.agent-grid-section {
  background: var(--paper);
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.agent-grid article {
  min-height: 220px;
  padding: 32px;
  background: var(--white);
}

.agent-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--mint-dark);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.agent-grid h3 {
  margin-bottom: 10px;
}

.agent-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.agent-costs {
  width: min(calc(100% - 32px), var(--content));
  padding-inline: clamp(24px, 5vw, 64px);
  border-radius: 30px;
  box-shadow: 0 18px 55px rgb(32 90 59 / 9%);
  background: var(--mint-light);
}

.agent-cost-list {
  display: grid;
  gap: 1px;
  background: rgb(32 90 59 / 18%);
}

.agent-cost-list > div {
  padding: 24px 28px;
  background: rgb(255 255 255 / 48%);
}

.agent-cost-list strong {
  font-size: 1.1rem;
}

.agent-cost-list p {
  margin: 5px 0 0;
  color: #294536;
}

.agent-cta {
  width: min(calc(100% - 32px), var(--content));
  padding-inline: clamp(24px, 5vw, 64px);
  border-radius: 30px;
  background: var(--ink);
  color: var(--white);
}

.agent-cta .eyebrow {
  color: var(--mint);
}

.agent-cta h2 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
}

.agent-cta > p:not(.eyebrow) {
  max-width: 680px;
  color: #cbd0cc;
  font-size: 1.1rem;
}

.event-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  align-items: end;
  gap: clamp(42px, 7vw, 96px);
  padding: clamp(82px, 11vw, 150px) max(24px, calc((100vw - var(--content)) / 2));
  background: var(--mint);
}

.event-hero-inner {
  max-width: 650px;
}

.event-page-hero h1 {
  max-width: 780px;
  margin-bottom: 34px;
  font-size: clamp(3.6rem, 7.1vw, 7.4rem);
}

.event-intro {
  max-width: 680px;
  margin-bottom: 0;
  color: #294536;
  font-size: clamp(1.2rem, 2.1vw, 1.58rem);
  line-height: 1.52;
}

.event-page-hero .hero-actions {
  margin-top: 36px;
}

.event-page-hero .facts-list {
  margin-top: 28px;
}

.event-hero-media {
  margin: 0;
}

.event-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgb(17 19 18 / 18%);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgb(29 92 59 / 24%);
}

.event-hero-media figcaption {
  margin-top: 13px;
  color: #294536;
  font-size: .82rem;
  font-weight: 750;
}

.event-proof {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
}

.event-proof-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

.event-proof-copy p:last-child {
  margin-bottom: 0;
}

.event-use-cases {
  border-top: 1px solid var(--line);
}

.event-case-grid,
.event-share-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-case-grid article,
.event-share-grid article {
  min-height: 360px;
  padding: clamp(26px, 3.4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.event-case-grid span {
  display: block;
  margin-bottom: 62px;
  color: var(--mint-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.event-case-grid h3,
.event-share-grid h3 {
  margin-bottom: 15px;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: 1;
}

.event-case-grid p,
.event-share-grid p {
  margin-bottom: 24px;
  color: var(--muted);
}

.event-case-grid strong {
  display: block;
  margin-top: auto;
  color: var(--mint-dark);
  font-size: .86rem;
  line-height: 1.4;
}

.event-live {
  padding-top: 0;
}

.event-live-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 30px;
  padding: clamp(32px, 5vw, 64px);
  border-radius: 30px;
  background: var(--mint-light);
}

.event-live-card h2,
.event-info h2,
.event-share h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(2.6rem, 5.3vw, 5.3rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .94;
}

.event-live-card > div:first-child > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 30px;
  color: #294536;
  font-size: 1.12rem;
}

.event-qr-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgb(32 90 59 / 18%);
  border-radius: 20px;
  background: rgb(255 255 255 / 50%);
}

.event-qr-card strong {
  margin: 14px 0 18px;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  letter-spacing: -.05em;
  line-height: 1;
}

.event-qr-card p:last-child {
  margin: 0;
  color: #294536;
  font-size: .9rem;
}

.event-process {
  border-top: 1px solid var(--line);
}

.event-share {
  background: var(--paper);
}

.event-share-grid article {
  min-height: 230px;
  background: var(--mint-light);
  box-shadow: none;
}

.event-info {
  border-top: 1px solid var(--line);
}

.event-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.event-details div {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
}

.event-details dt {
  margin-bottom: 22px;
  color: var(--mint-dark);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.event-details dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.4;
}

.event-source {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.knowledge-hero {
  background: var(--mint-light);
}

.knowledge-hero .section {
  padding-top: clamp(84px, 12vw, 160px);
  padding-bottom: clamp(72px, 10vw, 130px);
}

.knowledge-hero h1 {
  max-width: 980px;
  margin-bottom: 34px;
}

.knowledge-intro {
  max-width: 780px;
  margin-bottom: 24px;
  color: #294536;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.5;
}

.knowledge-byline {
  margin-bottom: 0;
  color: var(--mint-dark);
  font-size: .9rem;
  font-weight: 850;
}

.knowledge-layout {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: clamp(44px, 9vw, 140px);
  align-items: start;
}

.knowledge-aside {
  position: sticky;
  top: 112px;
}

.knowledge-aside nav {
  display: grid;
  gap: 12px;
}

.knowledge-aside a {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
}

.knowledge-aside a:hover,
.knowledge-aside a[aria-current="page"] {
  color: var(--mint-dark);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.knowledge-content {
  max-width: 760px;
}

.knowledge-content > p,
.knowledge-content li {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.knowledge-content > p {
  margin-bottom: 28px;
}

.knowledge-content h2 {
  margin: 64px 0 22px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}

.knowledge-content h2:first-child {
  margin-top: 0;
}

.knowledge-content a {
  color: var(--mint-dark);
  font-weight: 800;
}

.knowledge-callout,
.knowledge-example {
  margin: 42px 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgb(32 90 59 / 18%);
  border-radius: var(--radius);
  background: var(--mint-light);
}

.knowledge-callout p:last-child,
.knowledge-example p:last-child {
  margin-bottom: 0;
}

.knowledge-callout p:last-child {
  color: #294536;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.knowledge-links {
  display: grid;
  gap: 12px;
}

.knowledge-links a {
  display: grid;
  gap: 4px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  text-decoration: none;
}

.knowledge-links span {
  color: var(--muted);
  font-size: .92rem;
}

.knowledge-numbered {
  margin: 0 0 40px;
  padding-left: 28px;
}

.knowledge-numbered li {
  margin-bottom: 24px;
  padding-left: 10px;
}

.knowledge-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 50px;
  background: var(--line);
}

.knowledge-list div {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
}

.knowledge-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--mint-dark);
  font-size: 1.25rem;
}

.knowledge-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.knowledge-meta {
  display: block;
  margin-top: 70px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.6;
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.format-section {
  background: var(--mint);
}

.format-inner {
  padding-block: clamp(86px, 11vw, 145px);
}

.format-section .eyebrow {
  color: var(--ink);
}

.format-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}

.format-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 42px);
  border: 1px solid rgb(17 19 18 / 20%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 70%);
}

.format-card-featured {
  background: var(--white);
}

.card-label {
  margin-bottom: 62px !important;
  color: var(--mint-dark) !important;
  font-size: .72rem !important;
  font-weight: 900 !important;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.format-card ul {
  margin: 24px 0 30px;
  padding-left: 20px;
}

.format-card .button,
.format-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.reviews {
  border-bottom: 1px solid var(--line);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-grid blockquote {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  margin: 0;
  padding: clamp(26px, 3.5vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.review-grid blockquote p {
  margin-bottom: 40px;
  font: 600 clamp(1.16rem, 2vw, 1.42rem)/1.5 var(--font-display);
}

.review-logo {
  width: min(190px, 72%);
  height: 42px;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
}

.review-grid footer {
  margin-top: auto;
  font-size: .85rem;
  font-weight: 900;
}

.review-grid .review-attribution {
  display: grid;
  gap: 3px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .95rem;
}

.review-grid .review-attribution strong {
  font-size: 1rem;
}

.review-grid footer span {
  color: var(--muted);
  font-weight: 700;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.speaker-card {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(24px, 4vw, 42px);
  overflow: hidden;
  padding: clamp(24px, 3.5vw, 38px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.speaker-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 15px;
  object-fit: cover;
}

.speaker-photo {
  transform-origin: center;
}

.speaker-photo-jum {
  object-position: center 50%;
  transform: none;
}

.speaker-photo-silvester {
  object-position: center top;
  transform: translateX(-2%) scale(1.04);
}

.speaker-card .card-label {
  margin-bottom: 20px !important;
  color: var(--accent-gold) !important;
}

.speaker-card p:not(.card-label) {
  margin-bottom: 24px;
  color: #cbd0cc;
}

.practical {
  background: var(--ink);
  color: var(--white);
}

.practical-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 110px);
}

.practical .eyebrow {
  color: var(--mint);
}

.practical dl {
  margin: 0;
}

.practical dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgb(255 255 255 / 20%);
}

.practical dl div:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.practical dt {
  color: var(--mint);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.practical dd {
  margin: 0;
  font: 500 1.1rem/1.5 var(--font-body);
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-size: clamp(1.08rem, 2.3vw, 1.35rem);
  font-weight: 900;
}

.faq-list details p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: clamp(50px, 8vw, 110px);
  padding: clamp(86px, 11vw, 145px) max(24px, calc((100vw - var(--content)) / 2));
  background: var(--mint);
}

.contact-page {
  min-height: calc(100vh - 78px);
}

.contact-page h1 {
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  color: var(--ink);
}

.contact-copy {
  align-self: start;
}

.contact-section .eyebrow {
  color: var(--ink);
}

.contact-copy > p {
  color: #2f4938;
}

.contact-direct {
  margin-top: 32px !important;
  font-family: inherit !important;
  font-size: .9rem !important;
  font-weight: 850;
}

.contact-form {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgb(17 19 18 / 18%);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-size: .8rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #babbb5;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfbf8;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.form-submit p {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
}

.form-submit p.is-success {
  color: #176537;
  font-weight: 800;
}

.form-submit p.is-error {
  color: #a72d22;
  font-weight: 800;
}

.contact-form[aria-busy="true"] button {
  cursor: wait;
  opacity: .65;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  padding: 48px max(24px, calc((100vw - var(--content)) / 2));
  background: var(--ink);
  color: var(--white);
}

.brand-footer {
  margin-bottom: 9px;
}

.site-footer > div > p,
.site-footer > p {
  margin: 0;
  color: #aeb6b0;
  font-size: .78rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 980px) {
  .knowledge-layout {
    grid-template-columns: 1fr;
  }

  .knowledge-aside {
    position: static;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    cursor: pointer;
    font-size: .86rem;
    font-weight: 900;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: 42px;
    right: 0;
    display: grid;
    width: min(310px, calc(100vw - 32px));
    gap: 2px;
    padding: 12px;
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 12px;
    background: var(--ink-soft);
    box-shadow: 0 20px 50px rgb(0 0 0 / 35%);
  }

  .mobile-nav nav a {
    padding: 12px;
    font-weight: 800;
    text-decoration: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-body {
    grid-template-columns: 1fr;
  }

  .mission-teaser,
  .mission-story,
  .fde-story,
  .agent-story,
  .agent-tools,
  .agent-costs,
  .event-page-hero,
  .event-proof,
  .event-live-card {
    grid-template-columns: 1fr;
  }

  .fde-grid,
  .agent-grid,
  .event-case-grid,
  .event-share-grid {
    grid-template-columns: 1fr;
  }

  .event-page-hero {
    align-items: start;
  }

  .event-hero-media {
    width: min(100%, 760px);
  }

  .event-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-media {
    width: min(100%, 760px);
  }

  .format-grid {
    grid-template-columns: 1fr 1fr;
  }

  .format-card-featured {
    grid-column: 1 / -1;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .review-grid blockquote {
    min-height: 280px;
  }

  .speaker-grid {
    grid-template-columns: 1fr;
  }

  .contact-section,
  .practical-inner {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .knowledge-list {
    grid-template-columns: 1fr;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .contact-page {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5.2rem);
  }

  .hero .button-primary {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .proof-strip ul {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .proof-strip li {
    max-width: 135px;
    flex-basis: 120px;
    justify-content: flex-start;
  }

  .outcome-grid,
  .format-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .event-details {
    grid-template-columns: 1fr;
  }

  .event-page-hero {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .event-page-hero h1 {
    font-size: clamp(3.35rem, 16vw, 5.2rem);
  }

  .event-page-hero .button-primary,
  .event-live-card .button-dark {
    width: 100%;
  }

  .event-case-grid article,
  .event-share-grid article {
    min-height: 0;
  }

  .event-case-grid span {
    margin-bottom: 44px;
  }

  .format-card-featured {
    grid-column: auto;
  }

  .outcome-grid article {
    min-height: 265px;
  }

  .outcome-grid span {
    margin-bottom: 44px;
  }

  .speaker-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .speaker-card img {
    width: min(100%, 330px);
  }

  .speaker-photo-jum {
    transform: none;
  }

  .speaker-photo-silvester {
    transform: translateX(-1%) scale(1.02);
  }

  .practical dl div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
