:root {
  /* Brand colors */
  --ds-blue: #005686;
  --digital-blue: #0870d3;
  --solidworks-red: #da291c;
  --white: #ffffff;

  /* Text */
  --text-primary: rgba(0, 0, 0, 0.8);
  --text-secondary: rgba(0, 0, 0, 0.64);

  /* Tinted surfaces */
  --tint-blue: rgba(8, 112, 211, 0.04);
  --tint-red: rgba(218, 41, 28, 0.04);
  --border-subtle: rgba(0, 0, 0, 0.1);

  /* Hero / banner gradient */
  --overlay-from: #002244;
  --overlay-to: rgba(0, 86, 134, 0.5);

  /* Typography — "3DS V2" is a proprietary font; we set it first and
     fall back to a neutral sans-serif stack when it is unavailable. */
  --font: "3DS V2", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

/* Scope the font under .landing so this rule carries class-level
   specificity and wins over platform stylesheets that set a different
   font-family on element/class selectors. */
.landing,
.landing * {
  font-family: var(--font);
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Shared layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 40px;
}

.semi-bold {
  font-weight: 600;
}
.image-position-top {
  object-position: top;
}
.section-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.8px;
  text-transform: capitalize;
  color: var(--text-primary);
  margin: 0;
}

.section-title.no-capitalized {
  text-transform: none;
}

.prose {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-primary);
}
.prose p {
  margin: 0 0 24px;
}
.prose p.no-margin {
  margin: 0;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose strong {
  font-weight: 700;
}
.prose a {
  color: var(--digital-blue);
  text-decoration: underline;
  letter-spacing: -0.2px;
}

/* Brand lockup: 3D (bold) + EXPERIENCE (regular) + ® */
.brand {
  font-weight: 400;
}
.brand b {
  font-weight: 700;
}
.brand sup {
  font-size: 0.64em;
  vertical-align: super;
  line-height: 0;
}

/* Inline "read more" style link with red underline + arrow */
.arrow-link {
  /* Override the platform link colors so the link renders SOLIDWORKS red */
  --rf-comp-link-color: var(--solidworks-red);
  --rf-comp-link-hover-color: var(--solidworks-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--solidworks-red);
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
}
.arrow-link img {
  width: 14px;
  height: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 0;
  padding: 16px 32px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.2px;
  cursor: pointer;
  text-align: center;
}
.btn img {
  width: 16px;
  height: 16px;
}
.btn--primary,
.btn--ghost {
  --rf-comp-link-color: var(--white);
  --rf-comp-link-hover-color: var(--white);
}
.btn--primary {
  background: var(--solidworks-red);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 24px;
  min-height: 48px;
}

.btn--ghost.glass-button {
    border-color: transparent;
  background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    color: #fff;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.btn--ghost.glass-button .mdBtnR-text {
  color: #fff;
}

.btn--ghost.glass-button::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
          165deg,
          rgba(255, 255, 255, 0.6) 0%,
          rgba(255, 255, 255, 0) 35%,
          rgba(255, 255, 255, 0) 65%,
          rgba(255, 255, 255, 0.5) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.btn--ghost.glass-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost.glass-button:hover .mdBtnR-text {
  color: #fff;
}

/* Two-column media + text section */
.media-row {
  display: flex;
  gap: 72px;
  align-items: flex-start;
}
.media-row__image {
  flex: 0 0 420px;
  width: 420px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}
.media-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-row__body {
  flex: 1 1 0;
  min-width: 0;
}
.media-row__body .prose {
  padding-top: 24px;
}
.media-row__body .arrow-link,
.media-row__body .btn {
  margin-top: 40px;
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--overlay-from), var(--overlay-to));
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.hero__content {
  max-width: 800px;
  padding: 72px 40px;
}
.overline {
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.display-title {
  color: var(--white);
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.96px;
  margin: 12px 0 0;
}
.display-title .brand {
  font-weight: 400;
}
.display-title .brand b {
  font-weight: 700;
}
.display-title__line {
  display: block;
}
.hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* =====================================================================
   WHY ATTEND
   ===================================================================== */
.why {
  background: var(--tint-blue);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.attend-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.attend-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background: var(--tint-red);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.attend-card__icon img {
  width: 32px;
  height: 32px;
}
.attend-card__title {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.8px;
  margin: 0;
}
.attend-card__desc {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

/* =====================================================================
   AGENDA
   ===================================================================== */
.agenda .container > .section-title {
  margin-bottom: 40px;
}
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.agenda-note {
  margin: 24px 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--text-secondary);
  text-align: end;
}
.day {
  border-radius: 16px;
  overflow: hidden;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
  background: var(--white);
}
.day__header {
  background: var(--solidworks-red);
  color: var(--white);
  padding: 20px 24px;
}
.day__header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.day__name {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.8px;
  margin: 0;
}
.day__pill {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 5px 11px;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
}
.day__date {
  margin: 4px 0 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: -0.2px;
}

/* A timed slot within a day */
.slot {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.slot:last-child {
  border-bottom: 0;
}
.slot--general {
  background: var(--tint-red);
}
.slot__label {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: var(--solidworks-red);
  text-transform: uppercase;
  margin: 0;
}
.slot__time {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.2px;
  color: var(--solidworks-red);
  margin: 2px 0 0;
}
.slot__note {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--text-secondary);
  margin: 4px 0 0;
}
.slot__heading {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 8px 0 0;
}

/* An individual session entry (title + speaker) inside a general slot */
.entry {
  padding: 8px 0 11px;
  border-bottom: 1px solid var(--border-subtle);
}
.entry:last-child {
  border-bottom: 0;
}
.entry__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0;
}
.entry__desc {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--text-secondary);
  margin: 4px 0 0;
}
.speaker {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 8px;
}
.speaker__avatar {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--solidworks-red);
  object-fit: cover;
}
.speaker__name {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: var(--text-primary);
  margin: 0;
}
.speaker__role {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--text-secondary);
  margin: 4px 0 0;
}
/* Stack of small avatars (attendees) */
.avatar-stack {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.avatar-stack img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--solidworks-red);
  object-fit: cover;
}

/* =====================================================================
   VIDEOS
   ===================================================================== */
.videos {
  background: var(--tint-blue);
}
.video-container {
  margin-top: 40px;
}
.video-container .rf-video-player {
  border-radius: 10px;
  overflow: hidden;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
}
.video-card__thumb {
  position: relative;
  aspect-ratio: 384 / 216;
  background: rgba(0, 0, 0, 0.8);
}

.video-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.video-card__play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__play span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(218, 41, 28, 0.9);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__play img {
  width: 22px;
  height: 22px;
  margin-left: 4px;
}
.video-card__duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.64);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
}
.video-card__body {
  padding: 16px 20px 20px;
}
.video-card__kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--solidworks-red);
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
}
.video-card__kicker img {
  width: 16px;
  height: 16px;
}
.video-card__title {
  margin: 8px 0 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--overlay-from), var(--overlay-to));
  z-index: 1;
}
.cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 20px;
}
.cta .display-title {
  margin: 0;
}
.cta .btn {
  margin-top: 24px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .agenda-grid {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .media-row {
    flex-direction: column;
    gap: 32px;
  }
  .media-row__image {
    flex: none;
    width: 100%;
  }
  .hero__inner {
    padding: 0 24px;
  }
  .hero__content {
    padding: 48px 0;
  }
  .display-title {
    font-size: 44px;
    line-height: 46px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 48px 20px;
  }
  .section-title {
    font-size: 30px;
    line-height: 36px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .display-title {
    font-size: 34px;
    line-height: 38px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
}

