:root {
  --primary-color: #e64d25;
  --secondary-color: #283b82;
  --text-color: #3f3f3f;
  --text-muted: #666;
  --border-color: #eee;
  --background-light: #fff;
  --background-muted: #f9f9f9;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --transition: 0.25s ease;
  --max-width: 1200px;
  --border-radius: 14px;
  --font-primary: "Ubuntu", system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  --overlay-from: rgba(40, 59, 130, 1);
  --overlay-to: rgba(230, 77, 37, 1);
  --on-hero: #fff;
  --hero-gradient: linear-gradient(
    50deg,
    rgba(40, 59, 130, 0.7),
    rgba(230, 77, 37, 0.55)
  );
  --btn-ring: 0 0 0 4px rgba(230, 77, 37, 0.28);
}


img[loading="lazy"] {
  contain-intrinsic-size: 1px 1px;
}

h1 {
  font-size: clamp(36px, 6vw, 62px);
  line-height: clamp(42px, 6.8vw, 72px);
  margin: 0;
}

h1, h2, h3, h4, h5, h6{
  font-family: "Ubuntu Condensed", system-ui, sans-serif !important;
}

.container-1200 {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 28px);
}
.container-900 {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 28px);
}

.hero-inner > * {
  margin-bottom: 25px !important;
}
.hero-inner > *:last-child {
  margin-bottom: 0 !important;
}

.hero-banner-lp {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: clamp(420px, 58vh, 640px);
  color: var(--on-hero);
  background-image: var(--hero-bg, var(--hero-gradient));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: clip;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.hero-badges > * {
  white-space: nowrap;
  color: #fff;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 2px solid rgb(0 0 0 / 0);
  background: transparent;
}
.badge-eyebrow {
  background: rgb(0 0 0 / 0.3);
}
.badge-date {
  background: transparent;
  border-color: rgb(0 0 0 / 0.35);
}
.badge svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.hero-banner-lp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(50deg, var(--overlay-from), var(--overlay-to));
  z-index: -1;
}
.hero-banner-lp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 50% 40%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
  mix-blend-mode: multiply;
  z-index: -1;
}

.hero-inner {
  width: 100%;
  display: grid;
  gap: 14px;
  align-items: start;
  padding-block: clamp(48px, 10vh, 96px);
}
.hero-eyebrow {
  font: 500 14px/1.2 var(--font-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0;
}
.hero-title {
  font: 700 clamp(28px, 4vw, 44px) / 1.1 var(--font-primary);
  margin: 0;
}
.hero-subtitle {
  font: 400 clamp(16px, 2.2vw, 18px) / 1.55 var(--font-primary);
  opacity: 0.95;
  margin: 0;
}

.hero-meta {
  display: flex;
  gap: 18px;
  padding: 0 !important;
  background-color: transparent !important;
  border: 0 !important;
  margin: 8px 0 0;
  list-style: none;
  font: 500 15px/1.4 var(--font-primary);
  opacity: 0.95;
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  transition: transform 0.05s ease, background 0.15s ease,
    border-color 0.15s ease;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
.btn-outline:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.btn-primary {
  display: inline-block;
  background: #e64d25;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: filter 0.2s ease, transform 0.05s ease;
}
.btn-primary:hover {
  background: #ef4f32;
  transform: translateY(-1px);
}
.btn-primary:focus-visible {
  outline: none;
  box-shadow: var(--btn-ring);
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .btn-outline,
  .speaker-card,
  .participant-card img {
    transition: none;
  }
  .btn-primary:hover,
  .btn-outline:hover,
  .speaker-card:hover,
  .participant-card img:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-meta {
    flex-direction: column;
    gap: 6px;
  }
  .hero-badges {
    flex-wrap: wrap;
  }
}

.entry-content > .hero-banner-lp,
.site-content > .hero-banner-lp,
.full-width.webinar-hero-bg {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.container-narrow {
  max-width: 1200px;
  padding-inline: clamp(16px, 3vw, 28px);
  text-align: left;
}

.section-about {
  background: transparent;
  padding-block: clamp(48px, 10vh, 96px);
}
.section-eyebrow {
  font: 600 13px/1 var(--font-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section-title {
  font: 700 clamp(22px, 3.2vw, 32px) / 1.2 var(--font-primary);
  color: var(--text-color);
  max-width: 28ch;
}
.lead {
  font: 400 clamp(16px, 2vw, 18px) / 1.7 var(--font-primary);
}
.section-about .btn-primary {
  margin-top: clamp(12px, 2vw, 16px);
}

@media (max-width: 640px) {
  .section-title {
    max-width: 32ch;
  }
  .section-about p {
    max-width: 60ch;
  }
}

p.lead {
  margin: 0 !important;
  text-align: left !important;
}

.section-about .container-narrow {
  display: block;
  margin-inline: auto;
  max-width: 1200px;
  text-align: left;
}
.section-about .btn-primary {
  display: inline-block;
  margin: 16px auto 0;
}

.section-topics {
  padding-block: clamp(56px, 12vh, 110px);
  text-align: left;
  background: linear-gradient(67deg, #ffffff 4.2%, #f9f9fb 22.27%, #e9ebf3);
}
.section-topics .container-narrow {
  display: block;
  max-width: 1200px;
  margin-inline: auto;
  text-align: left;
}

.topics-icon-wrap {
  justify-content: center;
  width: 100%;
}
.topics-icon {
  font-family: "Material Symbols Outlined";
  font-size: clamp(80px, 12vw, 120px);
  color: var(--primary-color);
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 48;
}
.section-topics .section-title {
  margin: 0;
  font: 700 clamp(22px, 3vw, 32px) / 1.3 var(--font-primary);
  color: var(--text-color);
}

.topics-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.topics-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.topics-list .li-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  margin-top: 0.15em;
}

.section-speakers {
  padding-block: clamp(56px, 10vh, 100px);
  position: relative;
  isolation: isolate;
}
.section-speakers::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.speakers-header {
  margin-bottom: clamp(24px, 5vw, 40px);
  text-align: left;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.speaker-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.speaker-card:hover {
  transform: translateY(-4px);
}
.speaker-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f6f6f6;
}
.speaker-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speaker-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 16px;
}
.speaker-head {
  margin-bottom: 12px;
}
.speaker-name {
  margin: 0;
  font: 700 18px/1.3 var(--font-primary);
  color: var(--text-color);
}
.speaker-role {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}
.speaker-bio {
  font-size: 15px;
  color: var(--text-color);
  margin: 12px 0 16px;
  line-height: 1.5;
  flex: 1;
}
.full-bio {
  display: inline-block;
  text-align: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  transition: all 0.2s ease;
}
.full-bio:hover {
  background: var(--secondary-color);
  color: #fff;
}

@media (max-width: 1024px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
}

.section-speakers .speakers-header {
  text-align: center;
  margin-inline: auto;
  max-width: 68ch;
}
.section-speakers .section-title {
  margin-inline: auto;
}
.section-speakers .speakers-intro {
  margin-inline: auto;
}

.section-speakers .speakers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  max-width: 1200px;
}
.section-speakers .speaker-card {
  width: 320px;
  flex: 0 0 320px;
}

@media (max-width: 1024px) {
  .section-speakers .speaker-card {
    width: 300px;
    flex-basis: 300px;
  }
}
@media (max-width: 640px) {
  .section-speakers .speaker-card {
    width: 100%;
    flex-basis: 100%;
    max-width: 520px;
    margin-inline: 16px;
  }
}

.section-participants {
  padding-block: clamp(48px, 8vh, 96px);
  background: linear-gradient(67deg, #ffffff 4.2%, #f9f9fb 22.27%, #e9ebf3);
  text-align: center;
}
.participants-header {
  margin-bottom: clamp(24px, 5vw, 40px);
}
.participants-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}
.participant-card {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 110px;
  background-color: #fff;
}
.participant-card img {
  width: 200px;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  image-rendering: -webkit-optimize-contrast;
}
.participant-card img:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .participant-card img {
    width: 160px;
  }
}
@media (max-width: 768px) {
  .participants-grid {
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .participant-card img {
    width: 120px;
  }
}

.section-hubspot {
  padding-block: clamp(56px, 10vh, 104px);
  position: relative;
  isolation: isolate;
}

.section-hubspot .hbspt-form {
  font-family: var(--font-primary);
  color: var(--text-color);
}
.section-hubspot .hbspt-form h1,
.section-hubspot .hbspt-form h2,
.section-hubspot .hbspt-form h3 {
  margin: 0 0 18px 0;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--text-color);
  text-align: center;
}

.section-hubspot .hs-form fieldset.form-columns-2 .field,
.section-hubspot .hs-form fieldset.form-columns-3 .field,
.section-hubspot .hs-form .hs-form-field {
  width: 100% !important;
}
.section-hubspot .hs-form form .hs-form-field {
  margin: 0;
}
.section-hubspot .hs-form form .hs-form-field + .hs-form-field {
  margin-top: 14px;
}

.section-hubspot .hs-form form .hs-form-field-group,
.section-hubspot .hs-form form .inputs-list,
.section-hubspot .hs-form form .form-columns-2,
.section-hubspot .hs-form form .form-columns-3 {
  display: contents;
}

.section-hubspot .hs-form form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 860px) {
  .section-hubspot .hs-form form {
    grid-template-columns: 1fr 1fr;
  }
  .section-hubspot .hs-form form .hs-richtext,
  .section-hubspot .hs-form form .legal-consent-container,
  .section-hubspot .hs-form form .hs-dependent-field,
  .section-hubspot .hs-form form .actions {
    grid-column: 1 / -1;
  }
}

.section-hubspot .hs-form label {
  display: block;
  font: 600 13px/1.2 var(--font-primary);
  color: var(--text-muted);
  margin: 0 0 6px 2px;
}
.section-hubspot .hs-form .hs-required {
  color: var(--primary-color);
  margin-left: 2px;
}

.section-hubspot .hs-form input[type="text"],
.section-hubspot .hs-form input[type="email"],
.section-hubspot .hs-form input[type="tel"],
.section-hubspot .hs-form input[type="number"],
.section-hubspot .hs-form select,
.section-hubspot .hs-form textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--text-color);
  border-radius: 10px;
  padding: 12px 14px;
  font: 500 15px/1.4 var(--font-primary);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02) inset;
}

.section-hubspot .hs-form textarea {
  min-height: 120px;
  resize: vertical;
}
.section-hubspot .hs-form input:focus,
.section-hubspot .hs-form select:focus,
.section-hubspot .hs-form textarea:focus {
  outline: none;
  border-color: color-mix(in oklab, var(--secondary-color) 65%, #fff);
  box-shadow: 0 0 0 4px
    color-mix(in oklab, var(--secondary-color) 20%, transparent);
}

.section-hubspot .hs-form .inputs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}
.section-hubspot .hs-form .inputs-list input[type="checkbox"],
.section-hubspot .hs-form .inputs-list input[type="radio"] {
  accent-color: var(--primary-color);
}
.section-hubspot .hs-form .legal-consent-container {
  font-size: 13px;
  color: var(--text-muted);
}

.section-hubspot .hs-form .actions {
  margin-top: 8px;
  text-align: left;
}
.section-hubspot .hs-form .hs-button,
.section-hubspot .hs-submit .actions input[type="submit"] {
  appearance: none;
  border: 0;
  background: var(--primary-color);
  color: #fff;
  font: 800 14px/1 var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.05s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.section-hubspot .hs-form .hs-button:hover,
.section-hubspot .hs-submit .actions input[type="submit"]:hover {
  background: #ef4f32;
  transform: translateY(-1px);
}
.section-hubspot .hs-form .hs-button:focus-visible,
.section-hubspot .hs-submit .actions input[type="submit"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px
    color-mix(in oklab, var(--primary-color) 30%, transparent);
}

.section-hubspot .hs-error-msg {
  color: #b42318;
  font-size: 13px;
  margin-top: 6px;
}
.section-hubspot .submitted-message {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.section-participants .participants-header,
.section-participants .section-title {
  text-align: center;
}
.section-participants .section-title {
  max-width: none;
  margin-inline: auto;
}

.stack > * {
  margin: 0;
}
.stack > * + * {
  margin-top: clamp(12px, 2.2vw, 18px);
  margin-bottom: clamp(12px, 2.2vw, 18px);
}


.bg-secondary {
  color: var(--on-hero);
  background-color: var(--secondary-color);
}

@media (min-width: 1281px) {
  .container-1200,
  .container-900,
  .container-narrow {
    padding-inline: 28px;
  }
}

@media (max-width: 899px) {
  .hero-title {
    line-height: 1.15;
  }
}

@media (max-width: 480px) {
  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* Performance hints */
.section-about,
.section-topics,
.section-speakers,
.section-participants,
.section-hubspot {
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}


.section-about p,
.section-about span,
.section-about li,
.section-topics p,
.section-topics span,
.section-topics li,
.section-speakers p,
.section-speakers span,
.section-speakers li,
.section-participants p,
.section-participants span,
.section-participants li,
.section-hubspot p,
.section-hubspot span,
.section-hubspot li {
  font-size: 16px !important;
}
