:root {
  --blue: #0056a1;
  --red: #d50b52;
  --ink: #172333;
  --muted: #5f6b7a;
  --surface: #f5f7f9;
  --line: #dfe5eb;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.58;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero: layout recreated with native HTML and assets. */
.hero {
  position: relative;
  overflow: hidden;
  /* background:
    radial-gradient(
      circle at 18% 5%,
      rgba(255, 255, 255, 0.9),
      transparent 30%
    ),
    linear-gradient(180deg, #f1f1f1 0%, #e6e4e5 100%); */
  padding: 76px 0 42px;
  min-height: 540px;
  background: url(../hero.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}
.hero-copy {
  max-width: 560px;
}
.hero-date {
  margin: 0 0 18px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 15px;
}
.hero-branding {
  display: grid;
  gap: 0;
  margin-bottom: 32px;
}

.hero-title-image {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  margin-top: 16px;
}
.hero-visual {
  justify-self: end;
}
.hero-visual img {
  display: block;
  width: min(100%, 620px);
  height: auto;
}

@media (max-width: 900px) {
  .hero {
    padding: 54px 0 32px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }
  .hero-branding {
    align-items: center;
  }
  .hero-bar {
    margin: 0 auto;
  }
  .hero-visual {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 42px 0 24px;
  }
  .hero-date {
    font-size: 14px;
  }
  .hero-bar {
    padding: 12px 20px;
  }
  .hero-bar span {
    font-size: 12px;
  }
  .hero-cta {
    width: 100%;
  }
}

.emblue {
  color: var(--blue);
  font-style: normal;
}
.emred {
  color: var(--red);
  font-style: normal;
}
.section {
  padding: 94px 0;
}
.soft {
  background: var(--surface);
}
.center {
  text-align: center;
}
.eyebrow {
  display: block;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin-bottom: 12px;
}
h2 {
  margin: 0 0 18px;
  font:
    800 clamp(29px, 3.4vw, 45px)/1.16 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: -0.045em;
}
.lead {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}
.split,
.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}
.intro-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}
.statement {
  font:
    800 clamp(31px, 4vw, 55px)/1.12 "Plus Jakarta Sans",
    sans-serif;
  letter-spacing: -0.055em;
}

.quote-card {
  padding: 36px;
  background: #fff;
  border-left: 5px solid var(--red);
  box-shadow: 0 15px 40px rgba(22, 48, 72, 0.08);
  font-size: 18px;
  color: var(--muted);
}
.event-facts {
  border-top: 1px solid var(--line);
  margin-top: 33px;
}
.event-facts div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.event-facts strong {
  color: var(--blue);
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}
.checklist li {
  position: relative;
  padding: 18px 18px 18px 50px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-weight: 600;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--red);
  font-size: 22px;
  font-weight: 800;
}
.event-logo {
  width: 100%;
  max-width: 440px;
  display: block;
  margin: auto;
}
.cta {
  color: #fff;
  padding: 75px 0;
  background: linear-gradient(110deg, #004984, #0056a1);
}
.cta h2 {
  max-width: 760px;
  margin: 0 auto 13px;
}
.cta p {
  margin: 0 auto 25px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}
.eyebrow-light {
  color: #ffb5d1;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  transition: 0.2s;
}
.button:hover {
  background: var(--blue);
  transform: translateY(-2px);
  color: #fff;
}
.button-light {
  color: #fff;
  background: var(--red);
}
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 40px;
}
.audience div {
  min-height: 118px;
  display: flex;
  align-items: end;
  padding: 20px;
  background: var(--surface);
  border-bottom: 3px solid var(--blue);
  font-weight: 800;
}
.timeline {
  margin-top: 43px;
}
.program-day {
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}
.program-day:first-child {
  border-top: none;
}
.program-day h3 {
  margin: 0 0 28px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.session-card {
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 20px;
}
.session-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.session-header h4 {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
}
.session-time {
  margin: 0;
  color: var(--red);
  font-weight: 800;
  font-size: 15px;
}
.session-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.session-speakers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  color: var(--ink);
  font-size: 15px;
}
.session-speakers li {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.session-speakers strong {
  font-weight: 800;
}
.session p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.speaker-grid {
  margin-top: 43px;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.speaker-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
}
.speaker-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--surface);
}
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0056a1 0%, #004984 100%);
}
.speaker-info {
  padding: 22px;
}
.speaker-info h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
}
.role {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.linkedin-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}
footer {
  background: #132232;
  color: #fff;
  padding: 29px 0;
  font-size: 14px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
footer span {
  color: #aeb9c4;
}
@media (max-width: 800px) {
  .section {
    padding: 65px 0;
  }
  .split,
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .audience {
    grid-template-columns: 1fr 1fr;
  }
  .speakers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    background:
      radial-gradient(
        circle at 18% 5%,
        rgba(255, 255, 255, 0.9),
        transparent 30%
      ),
      linear-gradient(180deg, #f1f1f1 0%, #e6e4e5 100%);
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 32px, 1160px);
  }
  .lead {
    font-size: 15px;
  }
  .audience,
  .speakers-grid {
    grid-template-columns: 1fr;
  }
  .session-card {
    padding: 22px 18px;
  }
  .session-header {
    flex-direction: column;
    align-items: stretch;
  }
  .session-badge {
    margin-top: 12px;
  }
  .speaker-card {
    border-radius: 14px;
  }
  footer .wrap {
    display: block;
  }
  footer span {
    display: block;
    margin-top: 5px;
  }
}
