:root {
  --navy: #0A0D31;
  --navy-soft: #1a1e4a;
  --red: #FF494A;
  --white: #FFFFFF;
  --grey-bg: #F5F5F5;
  --grey-text: #5F6567;
  --text: #242627;
  --border: rgba(0, 0, 0, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter Tight", Arial, sans-serif;
  color: var(--text);
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.utility-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 8px 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.utility-bar a { color: rgba(255,255,255,.85); text-decoration: none; }
.utility-bar .util-left, .utility-bar .util-right { display: flex; align-items: center; gap: 16px; }
.site-header { border-bottom: 1px solid var(--border); background: var(--white); }
.site-header .container { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; gap: 18px; }
.brand img { height: 40px; width: auto; }
.primary-nav { display: flex; align-items: center; gap: 22px; }
.primary-nav a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 15px; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 6px; text-decoration: none; font-weight: 600; }
.btn-dark { background: var(--navy); color: var(--white); border: 1px solid transparent; }
.btn-dark:hover { background: var(--navy-soft); }
.btn-primary { background: var(--red); color: var(--white); }
.hero { background: var(--navy); color: var(--white); padding: 64px 0; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .7px; color: var(--red); font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.hero h1 { margin: 0 0 14px; font-size: clamp(34px, 5vw, 52px); }
.hero-subhead {
  margin: 0 0 18px;
  max-width: none;
  color: rgba(255,255,255,.95);
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.hero-content-card {
  max-width: none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
}
.hero-content-card p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.6;
}
.hero-content-card p:last-child { margin-bottom: 0; }
.hero-intro { padding: 44px 0 52px; }
.hero-intro-card {
  max-width: 980px;
  margin: 0 auto;
  color: var(--grey-text);
  font-size: 18px;
  line-height: 1.65;
  text-align: center;
}
.hero-intro-card p { margin: 0 0 16px; }
.hero-intro-card p:last-child { margin-bottom: 0; }
.hero-speakers-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.speaker-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 12px;
}
.speaker-card img {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.18);
}
.speaker-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.speaker-card span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.35;
}
.video-section { background: var(--grey-bg); padding: 56px 0; }
.video-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: stretch; }
.video-copy { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.video-copy h2 { margin: 0 0 12px; color: var(--navy); font-size: 30px; }
.video-copy p { margin: 0 0 12px; line-height: 1.6; color: var(--grey-text); }
.video-copy ul { margin: 0 0 18px; padding-left: 18px; }
.video-copy li { margin-bottom: 8px; }
.video-player {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy);
  aspect-ratio: 16 / 9;
}
.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-topics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}
.video-topics-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  overflow: hidden;
}
.video-topics-panel h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  flex-shrink: 0;
}
.video-topics-list {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 6px;
}
.video-topics-list .point-card {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 6px 10px 6px 30px;
}
.video-topics-list .point-card::before {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.video-topics-list .point-card p {
  font-size: 14px;
  line-height: 1.35;
}
.video-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--grey-text);
  font-size: 16px;
  line-height: 1.55;
}
.section { padding: 62px 0; }
.section-light { background: var(--white); }
.section-alt { background: var(--grey-bg); }
.section-head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-head h2 { margin: 0 0 10px; color: var(--navy); font-size: clamp(28px, 4.2vw, 42px); }
.section-head p { margin: 0 0 16px; color: var(--grey-text); font-size: 18px; line-height: 1.55; }
.section-head p:last-child { margin-bottom: 0; }
.point-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.point-card {
  background: linear-gradient(160deg, #ffffff 0%, #f9f9ff 100%);
  border: 1px solid #e3e6f6;
  border-radius: 12px;
  padding: 18px 18px 18px 44px;
  position: relative;
}
.point-card::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 20px;
  top: 24px;
  background: var(--red);
}
.point-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 22px; }
.point-card p { margin: 0; color: var(--grey-text); line-height: 1.55; }
.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.hubspot-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 20px 50px -30px rgba(10, 13, 49, 0.18);
}
.hubspot-form-wrap .hs-form-frame { min-height: 380px; }
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 48px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 34px;
}
.footer-brand img { height: 40px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { margin: 0 0 10px; line-height: 1.55; }
.footer-col h4 { color: var(--white); font-size: 14px; text-transform: uppercase; margin: 0 0 12px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,.75); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom a { margin-left: 14px; }
@media (max-width: 900px) {
  .hero-speakers-row { grid-template-columns: 1fr; }
  .video-topics-layout { grid-template-columns: 1fr; gap: 28px; }
  .video-topics-panel { height: auto; }
  .video-topics-list {
    grid-template-rows: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .video-topics-list .point-card { padding: 12px 12px 12px 34px; }
  .video-grid { grid-template-columns: 1fr; }
  .point-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .primary-nav { display: none; }
}
@media (max-width: 640px) {
  .utility-bar { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom a { margin-left: 0; margin-right: 14px; }
}
