/* =============================================================================
   TYPOGRAPHY SYSTEM
   ============================================================================= */

/* Typography variables - Desktop */
:root {
  --type-h1-size: 96px;
  --type-h1-line: 96px;
  --type-h2-size: 56px;
  --type-h2-line: 60px;
  --type-h3-size: 40px;
  --type-h3-line: 46px;
  --type-headline-l-size: 32px;
  --type-headline-l-line: 36px;
  --type-headline-size: 20px;
  --type-headline-line: 24px;
  --type-headline-semibold-size: 20px;
  --type-headline-semibold-line: 24px;
  --type-body-size: 16px;
  --type-body-line: 24px;
  --anchor-offset: 100px;
  --Primary-Gradient: linear-gradient(90deg, #0A60FF 5%, #02C8FF 37%, #02C8FF 44%, #FF007F 75%, #FF9000 95%);
  --gradient-border-lr: linear-gradient(90deg, #0A60FF 0%, #02C8FF 28.36%, #02C8FF 47.86%, #FF007F 75%, #FF9000 100%);
}

/* Typography base styles */
.typo-h1,
.typo-h2,
.typo-h3,
.typo-headline-l,
.typo-headline,
.typo-headline-semibold,
.typo-body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  letter-spacing: 0;
  margin: 0;
}

.typo-h1 {
  font-size: var(--type-h1-size);
  line-height: var(--type-h1-line);
  font-weight: 600;
}

.typo-h2 {
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-line);
  font-weight: 600;
}

.typo-h3 {
  font-size: var(--type-h3-size);
  line-height: var(--type-h3-line);
  font-weight: 400;
}

.typo-headline-l {
  font-size: var(--type-headline-l-size);
  line-height: var(--type-headline-l-line);
  font-weight: 400;
}

.typo-headline {
  font-size: var(--type-headline-size);
  line-height: var(--type-headline-line);
  font-weight: 400;
}

.typo-headline-semibold {
  font-size: var(--type-headline-semibold-size);
  line-height: var(--type-headline-semibold-line);
  font-weight: 600;
}

.typo-body {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  font-weight: 400;
}

/* Typography responsive - Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --type-h1-size: 84px;
    --type-h1-line: 84px;
    --type-h2-size: 56px;
    --type-h2-line: 60px;
    --type-h3-size: 40px;
    --type-h3-line: 46px;
    --type-headline-l-size: 32px;
    --type-headline-l-line: 36px;
    --type-headline-size: 20px;
    --type-headline-line: 24px;
    --type-headline-semibold-size: 20px;
    --type-headline-semibold-line: 24px;
    --type-body-size: 16px;
    --type-body-line: 24px;
    --anchor-offset: 68px;
  }
}

/* Typography responsive - Mobile (< 768px) */
@media (max-width: 767px) {
  :root {
    --type-h1-size: 72px;
    --type-h1-line: 72px;
    --type-h2-size: 32px;
    --type-h2-line: 38px;
    --type-h3-size: 20px;
    --type-h3-line: 24px;
    --type-headline-l-size: 20px;
    --type-headline-l-line: 24px;
    --type-headline-size: 16px;
    --type-headline-line: 20px;
    --type-headline-semibold-size: 16px;
    --type-headline-semibold-line: 20px;
    --type-body-size: 16px;
    --type-body-line: 24px;
    --anchor-offset: 100px;
  }
}

/* =============================================================================
   LAYOUT + COMPONENT STYLES
   ORDER: 1) DESKTOP  2) TABLET  3) MOBILE
   ============================================================================= */

/* =============================================================================
   1) DESKTOP STYLES (Default / >= 1025px)
   ============================================================================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: "Inter", sans-serif;
}
html {
  scroll-padding-top: var(--anchor-offset);
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  width: 1600px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

.section {
  padding: 80px 150px;
}

.eyebrow {
  margin: 0 0 12px;
}

.pill {
  border: 1px solid #0a60ff;
  border-radius: 999px;
  background: #fff;
  color: #0a60ff;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  cursor: pointer;
}

.pill.blue {
  background: #0a60ff;
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background: var(--general-on-bg-bg, #FFF);
}

.site-header-inner {
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 100px;
  padding: 0 var(--spacing-xxxxxxlarge, 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: 340px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  margin-left: auto;
  padding: 24px 40px;
  border-radius: 10000px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px;
  color: #07182d;
  white-space: nowrap;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.site-nav a:is(:hover, :focus-visible) {
  color: #0a60ff;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #07182d;
}

.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100dvh;
  background: #07182d;
  color: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 220ms ease;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
}

.nav-drawer-close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-drawer-links a {
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  text-decoration: none;
}

.nav-drawer-links a:is(:hover, :focus-visible) {
  color: #0a60ff;
}

body.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  display: flex;
  width: 1600px;
  height: 700px;
  padding: 0;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  background: var(--color-midnight-blue, #07182D);
  background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/PS26_LivingRoom_Hero_Desktop.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 180px;
    background: linear-gradient(180deg, rgba(7, 24, 45, 0) 0%, rgba(7, 24, 45, 0.92) 82%, #07182d 100%);
    pointer-events: none;
    z-index: 2;
  }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-fallback {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  border: 1px solid #0a60ff;
  border-radius: 1000px;
  background: #ffffff;
  color: #0a60ff;
  padding: 12px 24px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  display: none;
}

.hero-video-fallback.is-visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.28) 100%);
  z-index: 1;
}

.hero-details {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 707px;
  max-width: calc(100% - 120px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-date,
.hero-location {
  margin: 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  letter-spacing: 0;
  text-align: center;
}

.hero-date {
  font-size: 40px;
  line-height: 44px;
  font-weight: 600;
}

.hero-location {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

/* Join */
.section-join {
  display: flex;
  position: relative;
  padding: var(--h1-spacing-In-between, 80px) var(--spacing-Edge, 120px);
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  background-color: var(--general-on-bg-bg, #07182D);
  background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/join-us-in-vancouver-desktop-1600x656.png') !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.join-grid {
  width: 100%;
  max-width: 1360px;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: flex-start;
}

.join-copy p {
  margin: 0 0 20px;
  max-width: 620px;
}

.section-join .join-copy .eyebrow {
  align-self: stretch;
  color: var(--color-white, #FFF);
  font-family: var(--typography-font-family-title, Inter), sans-serif;
  font-size: var(--typography-font-size-header-small, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--typography-line-height-header-small, 28px);
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
}

.section-join .join-copy h2 {
  align-self: stretch;
  color: var(--color-white, #FFF);
  font-family: var(--typography-font-family-title, Inter), sans-serif;
  font-size: var(--typography-font-size-header-xxlarge, 56px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--typography-line-height-header-xxlarge, 60px);
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  margin: 0 0 24px; 

}

.section-join .join-copy .typo-headline {
  color: var(--general-on-bg-text-primary, #FFF);
  /* Body/xxlarge */
  font-family: var(--typography-font-family-body, Inter);
  font-size: var(--typography-font-size-body-xxlarge, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--typography-line-height-body-xxlarge, 32px); /* 133.333% */
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);

}

.join-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.join-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  padding: 40px;
  border-bottom: 1px solid #a1a9b2;
}

.join-item img {
  width: 80px;
  height: 80px;
  fill: var(--general-on-bg-icon-primary, #FFF);
  object-fit: contain;
}

.join-item p {
  margin: 0;
  color: var(--general-on-bg-text-primary, #FFF);
  font-family: var(--typography-font-family-title, Inter), sans-serif;
  font-size: var(--typography-font-size-header-small, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--typography-line-height-header-small, 28px);
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
}

.join-item.no-border {
  border-bottom: 0;
}

/* Agenda */
.section-agenda {
  display: flex;
  padding: var(--h1-spacing-In-between, 80px) var(--spacing-Edge, 120px);
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background: #07182D;
}

.agenda-head {
  max-width: 1063px;
  margin: 0 auto 40px;
  text-align: center;
}

.agenda-head h2 {
  margin: 0 0 16px;
}

.section-agenda .agenda-head .eyebrow {
  color: var(--color-white, #FFF);
  text-align: center;
  /* Headline/small-semibold */
  font-family: var(--typography-font-family-title, Inter);
  font-size: var(--typography-font-size-header-small, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--typography-line-height-header-small, 28px); /* 116.667% */
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
}

.section-agenda .agenda-head .typo-headline {
  font-size: 24px;
  line-height: 32px;
}

.agenda-head p {
  margin: 0 0 24px;
}

.section-agenda .pill {
  padding: 12px 24px;
  border: 1px solid #0a60ff;
  border-radius: 1000px;
  background: #fff;
  color: var(--general-on-bg-button-secondary-text, #0A60FF);
  font-family: var(--typography-font-family-button, Inter);
  font-size: var(--typography-font-size-button-medium, 12px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--typography-line-height-button-medium, 16px);
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
}

.agenda-cards {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.agenda-card {
  border: 1px solid #a1a9b2;
  border-radius: 12px;
  text-align: left;
  padding: 32px 24px;
  height: 209px;
  background: #07182d;
}

.agenda-card h3,
.agenda-card p {
  margin: 0 0 8px;
}

.agenda-card .card-sub {
  color: var(--color-white, #FFF);
  /* Headline/xxsmall-semibold */
  font-family: var(--typography-font-family-title, Inter);
  font-size: var(--typography-font-size-header-xxsmall, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--typography-line-height-header-xxsmall, 20px); /* 125% */
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
}

.agenda-card h3 {
  color: var(--color-white, #FFF);
  font-family: var(--typography-font-family-title, Inter);
  font-size: var(--typography-font-size-header-small, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--typography-line-height-header-small, 28px);
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
}

.agenda-card .typo-body {
  color: var(--color-white, #FFF);
  /* Body/large */
  font-family: var(--typography-font-family-body, Inter);
  font-size: var(--typography-font-size-body-large, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--typography-line-height-body-large, 24px); /* 150% */
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
}

/* Accommodations */
.section-accommodations {
  background-color: #07182d;
  background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/accommodations-desktop-1600x576.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.accommodations-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.accommodations-copy h2 {
  margin: 0;
  max-width: 500px;
}

.accommodations-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-accommodations .accommodations-copy .eyebrow {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

.section-accommodations .accommodations-copy .typo-h2 {
  font-size: 56px;
  line-height: 60px;
  font-weight: 600;
}

.glass-card {
  border: 2px solid #425062;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(20, 118, 164, 0.14));
  padding: 32px;
}

.glass-card h3,
.glass-card p {
  margin: 0 0 16px;
}

.section-accommodations .glass-card h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

.section-accommodations .glass-card .typo-body {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}

.section-accommodations .glass-card .pill {
  margin-top: 8px;
  padding: 12px 24px;
  border: 0;
  border-radius: 1000px;
  background: #fff;
  color: #07182d;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

/* Speakers */
.section-speakers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  padding: 80px 0;
  background-color: #07182d;
  background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/speakers-section-bg-desktop-1600x2163.png');
  background-repeat: no-repeat;
  background-size: 1600px 2163px;
  background-position: center -333.5px;
}

.speakers-head {
  width: 100%;
  max-width: none;
  padding: 0 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.speakers-head h2,
.speakers-head p {
  margin: 0;
}

.section-speakers .speakers-head .eyebrow {
  margin: 0 0 20px;
}

.speakers-grid-wrap {
  max-width: 1460px;
  width: 1460px;
  margin: 0 auto;
  border-radius: 24px;
  background: #07182d;
  padding: 40px;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (min-width: 1024px) {
  .speakers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .speaker-card {
    width: calc((100% - 72px) / 4);
  }
}

.speaker-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid rgba(105, 133, 167, 0.8);
  border-radius: 10px;
}

.speaker-card h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.speaker-card p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 20px;
}

/* Networking */
.section-networking {
  display: flex;
  padding: var(--h1-spacing-In-between, 80px) var(--spacing-Edge, 120px);
  justify-content: center;
  align-items: flex-start;
  gap: 53px;
  align-self: stretch;
  background-color: var(--general-on-bg-bg, #07182D);
  background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/cultivate-desktop-1600x613.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.networking-grid {
  width: 100%;
  max-width: 1360px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 53px;
  align-items: flex-start;
}

.networking-grid > .networking-image {
  flex: 1 1 0;
  min-width: 368px;
}

.networking-grid > div {
  flex: 1 1 0;
  min-width: 320px;
}

.networking-image {
  display: block;
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 635 / 440;
  object-fit: cover;
}

.networking-image > img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.networking-grid h2,
.networking-grid p {
  margin: 0 0 14px;
}

.section-networking .eyebrow {
  color: #fff;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

.section-networking .typo-headline {
  font-size: 24px;
  line-height: 32px;
}

.section-speakers .speakers-title {
  width: 633px;
  margin-top: 24px;
}
.section-speakers p.typo-headline{
  margin-left: -124px;
}


.section-speakers .speakers-head p.typo-headline {
  color: var(--color-white, #FFF);
  font-family: var(--typography-font-family-body, Inter);
  font-size: var(--typography-font-size-body-xxlarge, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--typography-line-height-body-xxlarge, 32px);
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
}


/* Featured Programming */
.section-featured {
  background-color: var(--general-on-bg-bg, #07182D);
  background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/featured-programming-desktop-1600x1052.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.featured-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 398px 1fr;
  gap: 54px;
}

.featured-grid h2 {
  margin: 0;
}

.featured-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 40px;
  border-bottom: 1px solid #a1a9b2;
}

.featured-item.no-border {
  border-bottom: 0;
}

.featured-item img {
  width: 80px;
  height: 80px;
  margin-top: 0;
}

.featured-item h3,
.featured-item p {
  margin: 0 0 16px;
}

.featured-item h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

.featured-item p.typo-headline {
  font-size: 24px;
  line-height: 32px;
}

/* Bumper */
.section-bumper {
  display: flex;
  width: 1600px;
  min-height: 400px;
  padding: 50px var(--spacing-Edge, 120px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background-color: var(--New-Blue, #07182D);
  background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/bumper-desktop-1600x400.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.section-bumper h2,
.section-bumper p {
  margin: 0 auto;
  max-width: 980px;
}

.section-bumper p {
  margin-top: 14px;
}

/* Footer */
.site-footer {
  display: flex;
  padding: var(--spacing-xxxlarge, 64px);
  align-items: center;
  align-content: center;
  gap: 16px var(--spacing-xsmall, 16px);
  align-self: stretch;
  flex-wrap: wrap;
  position: relative;
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  background: var(--general-on-bg-bg, #FFF);
  color: #07182d;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 11px;
  background: var(--gradient-border-lr);
  pointer-events: none;
}

.footer-top,
.footer-bottom {
  width: 100%;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 48px;
  align-items: center;
}

.footer-top h3,
.footer-top p {
  margin: 0;
}

.footer-top h3 {
  font-size: 40px;
  line-height: 44px;
  font-weight: 600;
}

.footer-top  .typo-headline-l {
  margin-left: -130px;
}

.footer-top .footer-social #CiscoPS26 {
  margin-left: 0;
  align-self: flex-start;
  text-align: left;
}

.footer-buttons {
  display: flex;
  gap: 24px;
}

.footer-questions,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-questions {
  align-items: flex-start;
}

.footer-social {
  align-items: flex-end;
  text-align: right;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links a img {
  width: 40px;
  height: 40px;
  background: transparent;
  object-fit: contain;
}

.social-links::before {
  content:
    url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/button-social-facebook-hover-40x40.png')
    url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/button-social-linkedin-hover-40x40.png')
    url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/button-social-x-hover-40x40.png')
    url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/button-social-instagram-hover-40x40.png');
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.social-links a[aria-label="Facebook"]:is(:hover, :focus-visible) img {
  content: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/button-social-facebook-hover-40x40.png');
}

.social-links a[aria-label="LinkedIn"]:is(:hover, :focus-visible) img {
  content: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/button-social-linkedin-hover-40x40.png');
}

.social-links a[aria-label="X"]:is(:hover, :focus-visible) img {
  content: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/button-social-x-hover-40x40.png');
}

.social-links a[aria-label="Instagram"]:is(:hover, :focus-visible) img {
  content: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/button-social-instagram-hover-40x40.png');
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #d0d5de;
  padding-top: 40px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 89px;
  height: 48px;
  background: transparent;
  object-fit: contain;
}

.footer-mobile-contact {
  display: none;
  color: #0a60ff;
  font-size: 12px;
  line-height: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: #0a60ff;
  font-size: 12px;
  line-height: 16px;
}

.footer-buttons .pill {
  padding: 12px 24px;
  font-size: 12px;
  line-height: 16px;
  border-radius: 1000px;
}



/* Agenda Modal */
body.agenda-open {
  overflow: hidden;
}

.agenda-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  overflow-y: auto;
}

.agenda-modal.is-open {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 12px 16px;
}

.agenda-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.agenda-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 1328px;
  margin: 0 auto;
  border-radius: 12px;
  background: #f5f5f5;
  color: #07182d;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.agenda-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #0a60ff;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.agenda-modal-header {
  text-align: center;
  padding: 40px 24px 20px;
}

.agenda-modal-title {
  margin: 0;
  color: var(--color-midnight-blue, #07182D);
  text-align: center;
  font-family: var(--typography-font-family-title, Inter);
  font-size: var(--typography-font-size-header-large, 40px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--typography-line-height-header-large, 44px);
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
}

.agenda-modal-subtitle {
  margin: 8px 0 0;
  color: var(--color-midnight-blue, #07182D);
  text-align: center;
  font-family: var(--typography-font-family-title, Inter);
  font-size: var(--typography-font-size-header-xxsmall, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--typography-line-height-header-xxsmall, 20px);
  letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
}

.agenda-modal-body {
  padding: 0 24px 24px;
  overflow: visible;
}

.agenda-modal-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}



/* FAQ Modal */
body.faq-open {
  overflow: hidden;
}

.faq-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.faq-modal.is-open {
  display: block;
}

.faq-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.faq-modal-dialog {
  position: relative;
  display: flex;
  width: 1216px;
  max-width: calc(100% - 24px);
  height: 1986px;
  max-height: calc(100dvh - 24px);
  margin: 12px auto;
  padding: var(--spacing-spacing-120, 120px) var(--spacing-large, 40px) 0 var(--spacing-xxxxxlarge, 96px);
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-spacing-64, 64px);
  background: #f5f5f5;
  color: #07182d;
  border-radius: 12px;
  overflow: hidden;
}

.faq-modal-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #0a60ff;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.faq-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.faq-modal-title {
  color: #07182d;
  margin: 0;
}

.faq-modal-body {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.faq-modal-left {
  flex: 1;
  min-height: 0;
  width: 100%;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  padding-right: 16px;
}

.faq-modal-left::-webkit-scrollbar {
  width: 8px;
}

.faq-modal-left::-webkit-scrollbar-thumb {
  background: #0a60ff;
  border-radius: 999px;
}

.faq-item {
  border-top: 1px solid #bcc6d4;
  padding: 10px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #bcc6d4;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: #07182d;
  font-size: var(--type-headline-l-size);
  line-height: var(--type-headline-l-line);
  font-weight: 600;
  padding: 8px 44px 8px 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 3px solid #0a60ff;
  border-bottom: 3px solid #0a60ff;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-40%) rotate(-135deg);
}

.faq-answer {
  color: #07182d;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  padding: 0 0 14px;
}

.faq-answer a {
  color: #0a60ff;
  text-decoration: underline;
}

/* =============================================================================
   1.5) MEDIUM HEADER STYLES (1024px - 1439px)
   ============================================================================= */

/* =============================================================================
   1.4) LARGE BREAKPOINT STYLES (1440px - 1600px)
   ============================================================================= */

@media (min-width: 1440px) and (max-width: 1600px) {
  .site-header-inner,
  .page,
  .hero {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .page,
  .hero {
    width: 100%;
  }

  .site-header-inner {
    max-width: 100%;
    height: 100px;
    padding: 0 64px;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
}

/* =============================================================================
  2) TABLET STYLES (768px - 1023px)
  ============================================================================= */

@media (min-width: 768px) and (max-width: 1023px) {
  /* ---------------------------------------------------------------------------
     Global Layout
     --------------------------------------------------------------------------- */
  .page {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
  }

  .section {
    padding: 64px 80px;
  }

  /* ---------------------------------------------------------------------------
     Header / Navigation (Tablet)
     --------------------------------------------------------------------------- */
  .site-header-inner {
    height: 100px;
    min-height: 100px;
    padding: 0 16px;
  }

  .brand img {
    width: 297px;
    max-width: calc(100vw - 96px);
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 48px;
    height: 48px;
    padding: 8px;
    gap: 5px;
    position: relative;
    z-index: 1301;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: #0a60ff;
  }

  .nav-drawer-overlay {
    background: transparent;
  }

  .nav-drawer {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    top: 100px;
    height: auto;
    max-height: calc(100dvh - 100px);
    transform: translateY(-120%);
    transition: transform 220ms ease, opacity 180ms ease;
    opacity: 0;
    pointer-events: none;
    background: var(--color-white, #FFF);
    border-right: 0;
    border-radius: 0 0 12px 12px;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    position: fixed;
  }

  .nav-drawer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: var(--Primary-Gradient);
    pointer-events: none;
  }

  .nav-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-drawer-head,
  .nav-drawer-brand,
  .nav-drawer-close {
    display: none;
  }

  .nav-drawer-links {
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--spacing-small, 24px);
    width: 100%;
    border-radius: 0 0 12px 12px;
    background: var(--color-white, #FFF);
  }

  .nav-drawer-links a {
    color: var(--general-on-bg-text-primary, #07182D);
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0;
    padding: 10px;
    text-decoration: none;
  }

  /* ---------------------------------------------------------------------------
     Hero
     --------------------------------------------------------------------------- */
  .hero {
    height: 700px;
    min-height: 700px;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/PS26_LivingRoom_Hero_Tablet.png');
  }

  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 180px;
    background: linear-gradient(180deg, rgba(7, 24, 45, 0) 0%, rgba(7, 24, 45, 0.92) 82%, #07182d 100%);
    pointer-events: none;
    z-index: 2;
  }

  .hero-details {
    width: 100%;
    max-width: calc(100% - 160px);
    bottom: 34px;
    gap: 8px;
  }

  .hero-date {
    font-size: 32px;
    line-height: 36px;
  }

  .hero-location {
    font-size: 20px;
    line-height: 24px;
  }

  /* ---------------------------------------------------------------------------
     Join Us
     --------------------------------------------------------------------------- */
  .section-join {
    padding: 64px 80px;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/join-us-in-vancouver-tablet-1024x916.png') !important;
    background-position: center top;
    background-size: cover;
  }

  .join-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .join-copy {
    margin-bottom: 20px;
  }

  .section-join .join-copy .eyebrow {
    font-size: 20px;
    line-height: 24px;
  }

  .section-join .join-copy h2 {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .section-join .join-copy .typo-headline,
  .join-item p {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xxsmall, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-header-xxsmall, 20px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .join-item {
    padding: 32px 0;
  }

  /* ---------------------------------------------------------------------------
     Agenda
     --------------------------------------------------------------------------- */
  .section-agenda {
    padding: 64px 80px;
  }

  .agenda-head {
    margin: 0 auto 40px;
  }

  .section-agenda .agenda-head .eyebrow {
    font-size: 20px;
    line-height: 24px;
  }

  .section-agenda .agenda-head h2 {
    color: var(--color-white, #FFF);
    text-align: center;
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .section-agenda .agenda-head .typo-headline {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xxsmall, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-header-xxsmall, 20px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .agenda-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .agenda-card {
    display: flex;
    height: 250px;
    padding: 24px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    border-color: #425062;
  }

  .agenda-card h3 {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-small, 20px);
    line-height: var(--typography-line-height-header-small, 24px);
    font-style: normal;
    font-weight: 600;
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    margin: 0;
  }

  .agenda-card .card-sub {
    color: var(--color-white, #FFF);

    /* Headline/xxsmall-semibold */
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xxsmall, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-xxsmall, 20px); /* 125% */
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    margin: 0;
  }

  .agenda-card .typo-body {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-body, Inter);
    font-size: var(--typography-font-size-body-large, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-body-large, 20px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    margin: 0;
  }

  /* ---------------------------------------------------------------------------
     Accommodations
     --------------------------------------------------------------------------- */
  .section-accommodations {
    padding: 64px 80px;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/accommodations-tablet-1024x616.png');
    background-position: center top;
    background-size: cover;
  }

  .accommodations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
  }

  .section-accommodations .accommodations-copy .typo-h2 {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  /* ---------------------------------------------------------------------------
     Speakers
     --------------------------------------------------------------------------- */
  .section-speakers {
    padding: 64px 80px;
    gap: 40px;
    background-color: #07182d;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/speakers-section-bg-tablet-2059x2784.png');
    background-position: center -320px;
    background-size: 2059px 2784px;
    background-repeat: no-repeat;
  }

  .speakers-head {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: flex-start;
  }

  .section-speakers .speakers-head h2 {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .section-speakers .speakers-head p.typo-headline {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-body, Inter);
    font-size: var(--typography-font-size-body-xxlarge, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-body-xxlarge, 28px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    margin-left: 0;
  }

  .speakers-grid-wrap {
    width: 100%;
    max-width: 100%;
    padding: 64px 40px;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .speaker-card h3 {
    margin: 24px 0 10px;
    font-size: 16px;
    line-height: 20px;
  }

  .speaker-card p {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 20px;
  }

  /* ---------------------------------------------------------------------------
     Networking
     --------------------------------------------------------------------------- */
  .section-networking {
    padding: 64px 80px;
    gap: 40px;
    background-color: #07182d;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/cultivate-tablet-1024x632.png');
    background-position: center top;
    background-size: 1024px 632px;
    background-repeat: no-repeat;
  }

  .networking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .networking-grid > .networking-image,
  .networking-grid > div {
    min-width: 0;
  }

  .section-networking h2 {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .section-networking .typo-headline {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xxsmall, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-header-xxsmall, 20px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  /* ---------------------------------------------------------------------------
     Featured Programming
     --------------------------------------------------------------------------- */
  .section-featured {
    padding: 64px 80px;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/featured-programming-tablet-1024x974.png');
    background-position: center top;
    background-size: cover;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .featured-item {
    grid-template-columns: 80px 1fr;
    padding: 32px 40px;
  }

  .section-featured h2 {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    max-width: 320px;
  }

  .featured-item h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
  }

  .featured-item p.typo-headline {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xxsmall, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-header-xxsmall, 20px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  /* ---------------------------------------------------------------------------
     Bumper
     --------------------------------------------------------------------------- */
  .section-bumper {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 400px;
    padding: 50px 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: var(--New-Blue, #07182D);
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/bumper-tablet-1024x400.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
  }

  .section-bumper h2 {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .section-bumper p {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xxsmall, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-header-xxsmall, 20px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  /* ---------------------------------------------------------------------------
     Footer
     --------------------------------------------------------------------------- */
  .site-footer {
    padding: 56px;
  }

  /* ---------------------------------------------------------------------------
     Section Layouts
     --------------------------------------------------------------------------- */
  .footer-top {
    row-gap: 40px;
  }

  .footer-social {
    text-align: left;
    align-items: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  /* ---------------------------------------------------------------------------
     FAQ Modal
     --------------------------------------------------------------------------- */
  .faq-modal-dialog {
    width: calc(100% - 28px);
    max-height: calc(100dvh - 28px);
    margin: 14px auto;
    padding: 74px 24px 24px;
  }

  .faq-modal-body {
    grid-template-columns: 1fr;
    gap: 18px;
    max-height: calc(100dvh - 170px);
  }

  .faq-modal-right {
    border-left: 0;
    border-top: 1px solid #d8dde3;
    padding-left: 0;
    padding-top: 14px;
  }

  .agenda-modal-header {
    padding: 32px 20px 16px;
  }

  .agenda-modal-title {
    color: var(--color-midnight-blue, #07182D);
    text-align: center;
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .agenda-modal-body {
    padding: 0 14px 14px;
  }

  .faq-item summary {
    font-size: 22px;
    line-height: 28px;
  }
}

/* =============================================================================
   3) MOBILE STYLES (<= 767px)
   ============================================================================= */

@media (max-width: 767px) {
  /* ---------------------------------------------------------------------------
     Global Layout
     --------------------------------------------------------------------------- */
  .page {
    width: 100%;
  }

  .section {
    padding: 64px 20px;
  }

  .hero,
  .section-bumper,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  /* ---------------------------------------------------------------------------
     Header / Navigation
     --------------------------------------------------------------------------- */
  .site-header-inner {
    height: 100px;
    min-height: 100px;
    padding: 0 16px;
  }

  .brand img {
    width: 297px;
    max-width: calc(100vw - 96px);
  }

  .site-nav {
    display: none;
  }

  /* Mobile nav toggle */
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 48px;
    height: 48px;
    padding: 8px;
    gap: 5px;
    position: relative;
    z-index: 1301;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: #0a60ff;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile drawer */
  .nav-drawer-overlay {
    background: transparent;
  }

  .nav-drawer {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    top: 100px;
    height: auto;
    max-height: calc(100dvh - 100px);
    transform: translateY(-120%);
    transition: transform 220ms ease, opacity 180ms ease;
    opacity: 0;
    pointer-events: none;
    background: var(--color-white, #FFF);
    border-right: 0;
    border-radius: 0 0 12px 12px;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    position: fixed;
  }

  .nav-drawer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: var(--Primary-Gradient);
    pointer-events: none;
  }

  .nav-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-drawer-head,
  .nav-drawer-brand,
  .nav-drawer-close {
    display: none;
  }

  .nav-drawer-links {
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--spacing-small, 24px);
    width: 100%;
    border-radius: 0 0 12px 12px;
    background: var(--color-white, #FFF);
  }

  .nav-drawer-links a {
    color: var(--general-on-bg-text-primary, #07182D);
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0;
    padding: 10px;
    text-decoration: none;
  }

  /* ---------------------------------------------------------------------------
     Hero
     --------------------------------------------------------------------------- */
  .hero {
    height: 345px;
    height: 345px;
    padding-bottom: 32px;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/PS26_LivingRoom_Hero_Mobile.png');
    background-position: center top;
    background-size: cover;
  }

  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 160px;
    background: linear-gradient(180deg, rgba(7, 24, 45, 0) 0%, rgba(7, 24, 45, 0.92) 82%, #07182d 100%);
    pointer-events: none;
    z-index: 2;
  }

  .hero-details {
    width: 100%;
    max-width: calc(100% - 40px);
    gap: 8px;
  }

  .hero-date {
    color: var(--general-on-bg-text-primary-inverse, #FFF);
    text-align: center;

    /* Headline/xsmall-semibold */
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xsmall, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-xsmall, 20px); /* 125% */
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    order: 2;
  }

  .hero-location {
    color: var(--general-on-bg-text-primary-inverse, #FFF);
    text-align: center;

    /* Headline/medium-semibold */
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-medium, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-medium, 28px); /* 116.667% */
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    order: 1;
  }

  /* ---------------------------------------------------------------------------
     Join Us
     --------------------------------------------------------------------------- */
  .section-join {
    padding: 64px 20px;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/join-us-in-vancouver-mobile-400x1048.png') !important;
    background-position: center top;
    background-size: cover;
  }

  .join-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .join-copy,
  .accommodations-copy,
  .agenda-head {
    margin-bottom: 20px;
  }

  .join-item {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .join-item img {
    width: 64px;
    height: 64px;
  }

  .section-join .join-copy .eyebrow {
    font-size: 20px;
    line-height: 24px;
  }

  .section-join .join-copy h2 {
    color: var(--general-on-bg-text-primary, #FFF);
    /* Headline/xlarge-semibold */
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xlarge, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-xlarge, 44px); /* 110% */
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .section-join .join-copy .typo-headline,
  .join-item p {
    color: var(--general-on-bg-text-primary, #FFF);
    /* Headline/small */
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-small, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-header-small, 24px); /* 120% */
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  /* ---------------------------------------------------------------------------
     Agenda
     --------------------------------------------------------------------------- */
  .section-agenda {
    padding: 64px 20px;
    align-items: center;
  }

  .agenda-head {
    margin: 0 0 32px;
    text-align: center;
  }

  .section-agenda .agenda-head .eyebrow {
    font-size: 20px;
    line-height: 24px;
  }

  .section-agenda .agenda-head .typo-h2 {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xlarge, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-xlarge, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .section-agenda .agenda-head .typo-headline {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-small, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-header-small, 24px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .agenda-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .agenda-card {
    margin-bottom: 0;
    height: auto;
    padding: 24px 20px;
  }

  .agenda-card h3 {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-small, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-small, 24px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    margin: 0 0 8px;
  }

  .agenda-card .card-sub {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xxsmall, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-xxsmall, 20px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    margin: 0 0 8px;
  }

  .agenda-card .typo-body {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-body, Inter);
    font-size: var(--typography-font-size-body-large, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-body-large, 20px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    margin: 0;
  }

  /* ---------------------------------------------------------------------------
     Accommodations
     --------------------------------------------------------------------------- */
  .section-accommodations {
    padding: 64px 20px;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/accommodations-mobile-400x785.png');
    background-position: center top;
    background-size: cover;
  }

  .accommodations-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .section-accommodations .accommodations-copy .eyebrow {
    font-size: 20px;
    line-height: 24px;
  }

  .section-accommodations .accommodations-copy .typo-h2 {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .accommodations-cards {
    gap: 16px;
  }

  .glass-card {
    padding: 24px;
  }

  .section-accommodations .glass-card h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .section-accommodations .glass-card .typo-body {
    font-size: 16px;
    line-height: 20px;
  }

  /* ---------------------------------------------------------------------------
     Speakers
     --------------------------------------------------------------------------- */
  .section-speakers {
    padding: 48px 20px;
    gap: 32px;
    background: var(--color-midnight-blue, #07182D);
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/speakers-section-bg-mobile-2059x2784.png');
    background-position: right -1096.181px top -220px;
    background-size: 2059.362px 2784px;
    background-repeat: no-repeat;
  }

  .speakers-head,
  .featured-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .speakers-head {
    padding: 0;
    gap: 20px;
    align-items: flex-start;
  }

  .section-speakers .speakers-title {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .section-speakers .speakers-head h2 {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .section-speakers .speakers-head p.typo-headline {
    color: var(--color-white, #FFF);
    font-family: var(--typography-font-family-body, Inter);
    font-size: var(--typography-font-size-body-xxlarge, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-body-xxlarge, 28px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    margin-left: 0;
  }

  .speakers-grid-wrap {
    width: 100%;
    max-width: none;
    padding: 0;
    border-radius: 24px;
    background: var(--color-midnight-blue, #07182D);
  }

  .speakers-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .speaker-card {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .speaker-card h3 {
    margin: 24px 0 10px;
    font-size: 16px;
    line-height: 20px;
  }

  .speaker-card p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 20px;
  }

  /* ---------------------------------------------------------------------------
     Networking
     --------------------------------------------------------------------------- */
  .section-networking {
    padding: 48px 20px;
    gap: 32px;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/cultivate-mobile-400x758.png');
    background-position: center top;
    background-size: cover;
  }

  .networking-grid {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
  }

  .networking-grid > .networking-image,
  .networking-grid > div {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
  }

  .networking-image {
    margin-bottom: 0;
    aspect-ratio: 376 / 261;
  }

  .section-networking .eyebrow {
    font-size: 20px;
    line-height: 24px;
  }

  .section-networking h2 {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .section-networking .typo-headline {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xxsmall, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-header-xxsmall, 20px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  /* ---------------------------------------------------------------------------
     Featured Programming
     --------------------------------------------------------------------------- */
  .section-featured {
    padding: 64px 20px;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/featured-programming-mobile-400x1398.png');
    background-position: center top;
    background-size: cover;
  }

  .section-featured h2 {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xlarge, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-xlarge, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
    max-width: 320px;
  }

  .featured-item {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .featured-item img {
    width: 64px;
    height: 64px;
  }

  .featured-item p.typo-headline {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-small, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-header-small, 24px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  /* ---------------------------------------------------------------------------
     Bumper
     --------------------------------------------------------------------------- */
  .section-bumper {
    min-height: 400px;
    padding: 56px 20px;
    background-image: url('https://www.cisco.com/c/dam/en_us/training-events/le21/le34/partnersummit/images/ps26_images/bumper-mobile-400x400.png');
    background-position: center;
    background-size: cover;
  }

  .section-bumper h2 {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-xlarge, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-xlarge, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .section-bumper p {
    color: var(--general-on-bg-text-primary, #FFF);
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-small, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--typography-line-height-header-small, 24px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  /* ---------------------------------------------------------------------------
     Footer
     --------------------------------------------------------------------------- */
  .site-footer {
    padding: 40px 20px 22px;
  }

  .footer-top {
    row-gap: 32px;
    align-items: flex-start;
  }

  .footer-questions,
  .footer-social {
    gap: 24px;
    align-items: flex-start;
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-buttons {
    flex-wrap: wrap;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    column-gap: 24px;
    row-gap: 20px;
  }

  .footer-mobile-contact {
    display: inline-flex;
    order: 2;
    white-space: nowrap;
    align-self: end;
    justify-self: start;
  }

  .footer-logo {
    order: 1;
    align-self: end;
  }

  .footer-links {
    order: 3;
    grid-column: 1 / -1;
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: 28px;
    row-gap: 14px;
    justify-content: start;
    align-items: end;
    margin: 0;
    padding: 0;
  }

  .footer-links > span:first-child {
    display: none;
  }

  .footer-links > span {
    display: block;
    min-width: 0;
  }

  /* ---------------------------------------------------------------------------
     FAQ Modal
     --------------------------------------------------------------------------- */

  .faq-modal-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    margin: 8px auto;
    border-radius: 10px;
    padding: 64px 16px 16px;
  }

  .faq-modal-close {
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }

  .faq-modal-header {
    margin-bottom: 16px;
  }

  .faq-modal-body {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 130px);
    gap: 12px;
  }

  .faq-modal-left {
    padding-right: 2px;
  }

  .faq-item summary {
    font-size: 18px;
    line-height: 24px;
    padding-right: 28px;
  }

  .faq-item summary::after {
    right: 2px;
    font-size: 22px;
  }

  .faq-answer {
    font-size: 15px;
    line-height: 22px;
  }

  .faq-modal-right {
    border-left: 0;
    border-top: 1px solid #d8dde3;
    padding: 10px 0 0;
  }

  .agenda-modal-dialog {
    border-radius: 10px;
  }

  .agenda-modal-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .agenda-modal-header {
    padding: 26px 16px 10px;
  }

  .agenda-modal-title {
    color: var(--color-midnight-blue, #07182D);
    text-align: center;
    font-family: var(--typography-font-family-title, Inter);
    font-size: var(--typography-font-size-header-large, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--typography-line-height-header-large, 44px);
    letter-spacing: var(--typography-letter-spacing-letter-spacing-0, 0);
  }

  .agenda-modal-body {
    padding: 0 10px 10px;
  }

  .faq-policy-links a {
    font-size: 14px;
    line-height: 20px;
  }
}