/* Webinar campaign landings: only rules that are not already in interior.css.
   ul.hero-points is the checkmark list used on webinars; interior .hero-points
   still styles the numbered span lists on other pages. */

.webinar-hero { padding: 56px 0 64px; border-bottom: 0; }
.webinar-hero .hero-lead { margin-top: 18px; margin-bottom: 0; font-size: 17px; line-height: 1.62; max-width: 34em; }

ul.hero-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  border-top: 0;
}
ul.hero-points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--pine-dark);
}
ul.hero-points svg {
  width: 19px;
  height: 19px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 3px;
}
ul.hero-points span { display: block; min-height: 0; border: 0; grid-template-columns: none; }
ul.hero-points li span::before,
ul.hero-points li span:nth-child(1)::before,
ul.hero-points li span:nth-child(2)::before,
ul.hero-points li span:nth-child(3)::before {
  content: none;
}

.session-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.meta-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--sand-light);
  border: 1px solid var(--orange-line);
  border-radius: 10px;
  padding: 11px 16px;
  min-width: 132px;
}
.meta-chip span {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--orange-dark);
}
.meta-chip strong {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--pine-dark);
}

.cohost {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--pine);
}
.cohost b {
  font-family: var(--heading);
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-weight: 600;
}
.cohost img {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
}

.reg-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px 28px;
  box-shadow: 0 14px 34px rgba(31, 42, 40, .10);
}
.reg-card h2 { font-size: 24px; line-height: 1.15; letter-spacing: -.03em; margin-bottom: 0; }
.reg-card > p { margin-top: 8px; font-size: 14px; color: var(--pine); }
.reg-card .field { margin-top: 16px; }
.reg-card .field label {
  display: block;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--moss-dark);
  margin-bottom: 6px;
}
.reg-card .field input,
.reg-card .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--pine-dark);
  background: var(--white);
  min-height: 44px;
}
.reg-card .field input:focus,
.reg-card .field select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}
.reg-card .button {
  width: 100%;
  justify-content: center;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}
.reg-card .button:disabled { cursor: wait; opacity: .68; }
.reg-note { margin-top: 14px; font-size: 12px; color: var(--moss-dark); line-height: 1.5; }
.reg-note.success { color: var(--orange-dark); font-weight: 700; }
.reg-note.error { color: var(--orange-dark); font-weight: 700; }

.page-section.sand { background: var(--sand-light); }

.section-head { max-width: 720px; margin-bottom: 38px; }
.section-head h2 { margin-bottom: 0; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.12; letter-spacing: -.045em; }
.section-head p { margin-top: 14px; font-size: 17px; color: var(--pine); }

.card-grid .card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.card-grid .card:hover {
  border-color: var(--orange-line);
  box-shadow: 0 8px 22px rgba(31, 42, 40, .10);
}
.card-grid .card .icon-tile {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--sand-light);
  display: grid;
  place-items: center;
  color: var(--orange);
  margin-bottom: 16px;
}
.card-grid .card .icon-tile svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-grid .card h3 { margin: 0 0 9px; font-size: 18px; line-height: 1.3; }
.card-grid .card p { font-size: 14.5px; line-height: 1.62; }

.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 40px;
}
.audience div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.audience svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}
.audience p { margin: 0; font-size: 15.5px; color: var(--pine-dark); }

.speakers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.speaker {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
}
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: var(--sand);
  display: grid;
  place-items: center;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange-dark);
  object-fit: cover;
}
img.avatar {
  display: block;
  padding: 0;
}
.speaker h3 { margin-bottom: 3px; }
.speaker .role {
  font-size: 13.5px;
  color: var(--orange-dark);
  font-family: var(--heading);
  font-weight: 600;
  margin-bottom: 9px;
}
.speaker p { margin: 0; font-size: 14.5px; line-height: 1.6; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
}
.step b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--heading);
  font-size: 14px;
  margin-bottom: 14px;
}
.step h3 { font-size: 16px; margin-bottom: 7px; }
.step p { margin: 0; font-size: 14px; line-height: 1.6; }

.closing {
  background: var(--pine-dark);
  color: var(--sand);
  padding: 64px 0;
  text-align: center;
}
.closing h2 {
  color: var(--white);
  max-width: 16em;
  margin-inline: auto;
  font-size: 38px;
}
.closing p {
  margin: 16px auto 26px;
  max-width: 36em;
  font-size: 16.5px;
  color: var(--sand);
}

.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s cubic-bezier(.22, .9, .3, 1);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .card-grid,
  .steps { grid-template-columns: 1fr; }
  .audience,
  .speakers { grid-template-columns: 1fr; }
  .closing h2 { font-size: 30px; }
}

@media (max-width: 620px) {
  .page-section { padding: 52px 0; }
  .meta-chip { min-width: calc(50% - 5px); flex: 1; }
  .closing h2 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
