:root {
  --ink: #172321;
  --ink-soft: #52605d;
  --paper: #ffffff;
  --mist: #f2f5f3;
  --line: #d8dfdc;
  --teal: #087b75;
  --teal-dark: #075d59;
  --lime: #b7d433;
  --coral: #df654b;
  --coral-dark: #b84331;
  --blue: #2572a8;
  --shadow: 0 14px 34px rgba(23, 35, 33, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open,
body.search-open {
  overflow: hidden;
}

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

a {
  color: var(--teal-dark);
  text-underline-offset: 3px;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(183, 212, 51, 0.9);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.deadline-bar {
  min-height: 38px;
  color: #fff;
  background: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.deadline-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
}

.deadline-bar a {
  color: #fff;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(216, 223, 220, 0.9);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  color: #fff;
  background: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 19px;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link,
.nav-more-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 11px;
  border: 0;
  border-radius: 4px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-more-button:hover,
.nav-link[aria-current="page"],
.nav-more-button.is-active {
  color: var(--teal-dark);
  background: #eaf3f1;
}

.nav-more {
  position: relative;
}

.nav-more-button svg {
  width: 14px;
  margin-left: 4px;
}

.nav-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 10;
  display: none;
  min-width: 190px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.nav-more:hover .nav-menu,
.nav-more:focus-within .nav-menu {
  display: grid;
}

.nav-menu a {
  padding: 9px 11px;
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--teal-dark);
  background: var(--mist);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button svg {
  width: 17px;
  height: 17px;
  margin-right: 8px;
}

.button-primary {
  color: #fff;
  background: var(--coral);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: #fff;
}

.button-secondary:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.mobile-panel {
  position: fixed;
  inset: 114px 0 0;
  z-index: 99;
  display: none;
  padding: 18px 20px 32px;
  overflow-y: auto;
  background: #fff;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-nav {
  display: grid;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-nav a[aria-current="page"] {
  color: var(--teal-dark);
}

.mobile-panel .button {
  width: 100%;
  margin-top: 22px;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: #fff;
  background-color: #22312e;
  background-image: url("venue/cyberport-entry.png");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(12, 35, 33, 0.72);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 610px;
}

.hero-content {
  width: min(850px, 100%);
  padding: 72px 0 82px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.45;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 750;
}

.hero-meta svg {
  width: 19px;
  color: var(--lime);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  padding: 84px 0;
}

.section-compact {
  padding: 58px 0;
}

.section-muted {
  background: var(--mist);
}

.section-dark {
  color: #fff;
  background: var(--ink);
}

.section-accent {
  background: #edf4d1;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.section-heading p {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
}

.section-dark .section-heading p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.lede {
  max-width: 820px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
  gap: 64px;
}

.prose h2,
.prose h3 {
  line-height: 1.25;
}

.prose h2 {
  margin: 0 0 24px;
  font-size: 38px;
}

.prose h3 {
  margin: 32px 0 12px;
  font-size: 23px;
}

.prose p {
  color: var(--ink-soft);
}

.key-facts {
  margin: 0;
  border-top: 3px solid var(--teal);
}

.key-facts div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.key-facts dt {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.key-facts dd {
  margin: 0;
  font-weight: 750;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline-item {
  min-height: 160px;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item time {
  color: var(--coral-dark);
  font-size: 14px;
  font-weight: 900;
}

.timeline-item h3 {
  margin: 13px 0 5px;
  font-size: 20px;
  line-height: 1.25;
}

.timeline-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.feature-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-link {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.feature-link:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.feature-link svg {
  width: 27px;
  height: 27px;
  color: var(--teal);
}

.feature-link h3 {
  margin: 25px 0 7px;
  font-size: 21px;
}

.feature-link p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.banner-image {
  width: 100%;
  aspect-ratio: 1206 / 591;
  object-fit: cover;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: 32px;
}

.cta-band p {
  margin: 0;
}

.cta-band .button {
  white-space: nowrap;
}

.page-hero {
  padding: 70px 0 58px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.page-hero .eyebrow {
  margin-bottom: 12px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
}

.page-hero p {
  max-width: 760px;
  margin: 19px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px 19px;
  border-left: 4px solid var(--coral);
  background: #fff1ed;
}

.notice svg {
  flex: 0 0 auto;
  width: 20px;
  margin-top: 2px;
  color: var(--coral-dark);
}

.notice strong {
  display: block;
}

.notice p {
  margin: 2px 0 0;
}

.notice-info {
  border-left-color: var(--blue);
  background: #edf5fa;
}

.notice-info svg {
  color: var(--blue);
}

.schedule-list {
  border-top: 1px solid var(--line);
}

.schedule-day {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--line);
}

.schedule-date {
  padding: 24px 24px 24px 0;
}

.schedule-date strong,
.schedule-date span {
  display: block;
}

.schedule-date strong {
  font-size: 19px;
}

.schedule-date span {
  color: var(--ink-soft);
  font-size: 14px;
}

.schedule-events {
  margin: 0;
  padding: 13px 0 13px 30px;
  border-left: 1px solid var(--line);
  list-style: none;
}

.schedule-events li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 9px 0;
}

.schedule-events time {
  color: var(--teal-dark);
  font-weight: 850;
}

.program-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 180px 190px 46px;
  align-items: end;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.program-filter {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
}

.program-filter .field-with-icon,
.program-filter input,
.program-filter select {
  width: 100%;
}

.program-filter select {
  height: 46px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.program-filter-reset {
  width: 46px;
  height: 46px;
}

.program-result-summary {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.program-block {
  margin-top: 52px;
}

.program-block + .program-block {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.program-block-heading {
  margin-bottom: 24px;
}

.program-block-heading h2 {
  margin: 2px 0 0;
  font-size: 32px;
}

.program-session {
  margin-top: 30px;
}

.program-session-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}

.program-session-heading h3 {
  margin: 3px 0 0;
  font-size: 22px;
}

.program-session-heading p:last-child {
  max-width: 52%;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: right;
}

.program-table {
  min-width: 1160px;
  table-layout: fixed;
}

.program-table th:nth-child(1) { width: 120px; }
.program-table th:nth-child(2) { width: 120px; }
.program-table th:nth-child(3) { width: 210px; }
.program-table th:nth-child(4) { width: 250px; }

.program-table td {
  line-height: 1.45;
}

.program-table time {
  color: var(--teal-dark);
  font-weight: 850;
  white-space: nowrap;
}

.program-code {
  display: inline-block;
  max-width: 100%;
  padding: 3px 7px;
  border-radius: 3px;
  color: var(--teal-dark);
  background: var(--mist);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
}

.program-affiliation {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
}

.program-venue {
  color: var(--ink-soft);
  font-size: 12px;
}

.program-topic-mobile {
  display: none;
}

.program-activity td {
  background: #edf5f2;
}

.program-activity-detail {
  margin-left: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.program-empty {
  min-height: 180px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.segmented {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.segmented button {
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  border-radius: 4px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.segmented button[aria-pressed="true"] {
  color: #fff;
  background: var(--teal);
}

.field-with-icon {
  position: relative;
}

.field-with-icon svg {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  color: var(--ink-soft);
  transform: translateY(-50%);
}

.field-with-icon input {
  width: min(340px, 100%);
  height: 46px;
  padding: 0 14px 0 43px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
}

.speaker-summary {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.speaker-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  min-height: 138px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.speaker-card img {
  width: 88px;
  height: 88px;
  aspect-ratio: 1 / 1;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: var(--mist);
  box-shadow: 0 0 0 1px var(--line);
}

#speaker-yi-yuan img {
  object-position: center -4px;
}

.speaker-card-copy {
  min-width: 0;
  padding-left: 15px;
}

.speaker-card .speaker-type {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.speaker-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.speaker-card p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
}

.empty-state {
  display: none;
  padding: 54px 0;
  color: var(--ink-soft);
  text-align: center;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table th:last-child,
.data-table td:last-child {
  border-right: 0;
}

.data-table thead th {
  color: #fff;
  background: var(--teal-dark);
  font-size: 13px;
}

.data-table tbody th {
  background: var(--mist);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 58px;
}

.content-grid > * {
  min-width: 0;
}

.side-nav {
  position: sticky;
  top: 126px;
  align-self: start;
  border-top: 3px solid var(--teal);
}

.side-nav a {
  display: block;
  padding: 12px 3px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.side-nav a:hover {
  color: var(--teal-dark);
}

.policy-section {
  padding: 0 0 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}

.policy-section:last-child {
  border-bottom: 0;
}

.policy-section h2 {
  margin: 0 0 18px;
  font-size: 31px;
}

.policy-section h3 {
  margin: 26px 0 9px;
  font-size: 20px;
}

.policy-section ul {
  padding-left: 22px;
}

.payment-links,
.download-list,
.hotel-list {
  display: grid;
  gap: 12px;
}

.payment-link,
.download-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
}

.payment-link:hover,
.download-item:hover {
  border-color: var(--teal);
}

.payment-link > svg,
.download-item > svg {
  width: 22px;
  color: var(--teal);
}

.payment-link strong,
.download-item strong {
  display: block;
}

.payment-link span,
.download-item span {
  color: var(--ink-soft);
  font-size: 13px;
}

.payment-link .arrow,
.download-item .arrow {
  width: 18px;
  color: var(--ink-soft);
}

.hotel-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.hotel-item:first-child {
  border-top: 1px solid var(--line);
}

.hotel-item h3 {
  margin: 0 0 7px;
  font-size: 23px;
}

.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.hotel-price {
  margin: 0;
  font-weight: 800;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.venue-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.venue-copy {
  padding: 44px;
  background: var(--ink);
  color: #fff;
}

.venue-copy h2 {
  margin: 0 0 16px;
  font-size: 35px;
}

.venue-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.venue-copy .button {
  margin-top: 18px;
}

.shuttle-days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.shuttle-day {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shuttle-day header {
  min-height: 92px;
  padding: 20px 22px;
  color: #fff;
  background: var(--teal-dark);
}

.shuttle-day header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.shuttle-day h3 {
  margin: 3px 0 0;
  font-size: 24px;
}

.shuttle-trips {
  margin: 0;
  padding: 8px 20px 14px;
  list-style: none;
}

.shuttle-trips li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.shuttle-trips li:last-child {
  border-bottom: 0;
}

.shuttle-trips time {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.shuttle-trips strong,
.shuttle-trips small {
  display: block;
}

.shuttle-trips strong {
  font-size: 14px;
  line-height: 1.45;
}

.shuttle-trips small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
}

.pickup-section {
  margin-top: 54px;
}

.pickup-section .section-heading {
  margin-bottom: 20px;
}

.pickup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.pickup-grid > div {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pickup-grid dt {
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 900;
}

.pickup-grid dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.pickup-grid dd span {
  color: var(--ink);
}

.shuttle-actions {
  margin-top: 20px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

@media (min-width: 561px) {
  .logo-grid[data-partner-group="academic"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.logo-cell {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.logo-cell img {
  max-width: 190px;
  max-height: 96px;
  object-fit: contain;
}

.logo-cell img[src*="neware-logo-en.png"] {
  max-width: 245px;
  max-height: 120px;
}

.logo-cell img[src*="ees-"] {
  max-width: 230px;
  max-height: 86px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 64px;
}

.contact-methods {
  border-top: 3px solid var(--teal);
}

.contact-method {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-method svg {
  width: 21px;
  color: var(--teal);
}

.contact-method strong,
.contact-method span,
.contact-method a {
  display: block;
}

.contact-method span {
  color: var(--ink-soft);
  font-size: 14px;
}

.search-dialog {
  width: min(760px, calc(100% - 30px));
  max-height: min(760px, calc(100dvh - 34px));
  padding: 0;
  border: 0;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.conference-search-band {
  position: relative;
  z-index: 3;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.conference-search-box {
  width: min(880px, 100%);
  margin: 0 auto;
}

.conference-search-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 62px;
  border: 2px solid var(--teal);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 35, 33, 0.12);
}

.conference-search-form:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(183, 212, 51, 0.36), 0 12px 30px rgba(23, 35, 33, 0.14);
}

.conference-search-form > svg {
  position: absolute;
  left: 20px;
  width: 23px;
  color: var(--teal-dark);
  pointer-events: none;
}

.conference-search-form input {
  min-width: 0;
  height: 58px;
  padding: 0 16px 0 58px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 18px;
}

.conference-search-form input::placeholder {
  color: #66726f;
  opacity: 1;
}

.conference-search-form .icon-button {
  width: 46px;
  height: 46px;
  margin-right: 7px;
  border-color: var(--teal);
  color: #fff;
  background: var(--teal);
}

.conference-search-form .icon-button:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.conference-search-results {
  max-height: min(560px, 68vh);
  margin-top: 10px;
  padding: 8px 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow-y: auto;
  background: #fff;
  box-shadow: var(--shadow);
}

.conference-search-results[hidden] {
  display: none;
}

.conference-search-results .search-empty {
  min-height: 150px;
}

.search-dialog::backdrop {
  background: rgba(12, 25, 23, 0.68);
  backdrop-filter: blur(4px);
}

.search-shell {
  display: flex;
  flex-direction: column;
  max-height: min(760px, calc(100dvh - 34px));
}

.search-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 22px;
  color: var(--ink-soft);
  transform: translateY(-50%);
}

.search-field input {
  width: 100%;
  height: 50px;
  padding: 0 15px 0 48px;
  border: 0;
  color: var(--ink);
  background: var(--mist);
  font-size: 18px;
}

.search-results {
  min-height: 260px;
  padding: 10px 14px 20px;
  overflow-y: auto;
}

.search-status {
  margin: 5px 5px 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.search-result {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: start;
  gap: 14px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.search-result:hover {
  background: var(--mist);
}

.search-result-category {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-result strong {
  display: block;
  line-height: 1.3;
}

.search-result p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.search-result > svg {
  width: 17px;
  color: var(--ink-soft);
}

.search-result mark {
  color: inherit;
  background: #e6efac;
}

.search-slot {
  grid-template-columns: 84px minmax(0, 1fr);
  cursor: default;
}

.search-slot:hover {
  background: transparent;
}

.search-slot-content {
  min-width: 0;
}

.search-slot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 14px;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 850;
}

.search-result .search-slot-title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.search-empty {
  display: grid;
  place-items: center;
  min-height: 240px;
  color: var(--ink-soft);
  text-align: center;
}

.site-footer {
  padding: 60px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #121c1a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.footer-copy {
  max-width: 420px;
  margin: 13px 0 0;
  font-size: 14px;
}

.footer-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 12px;
}

.muted {
  color: var(--ink-soft);
}

.small {
  font-size: 13px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: inline-grid;
  }

  .speaker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .mobile-panel {
    inset: 114px 0 0;
  }

  .hero,
  .hero .container {
    min-height: 590px;
  }

  .hero-content {
    padding: 64px 0 72px;
  }

  .hero h1 {
    font-size: clamp(41px, 12vw, 62px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading,
  .cta-band,
  .about-grid,
  .content-grid,
  .contact-grid,
  .venue-grid,
  .shuttle-days,
  .pickup-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

  .about-grid,
  .content-grid,
  .contact-grid {
    gap: 38px;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-item:nth-child(2) {
    border-right: 0;
  }

  .timeline-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .field-with-icon input {
    width: 100%;
  }

  .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-day {
    grid-template-columns: 1fr;
  }

  .schedule-events {
    padding-left: 0;
    border-left: 0;
  }

  .program-session .table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .program-table,
  .program-table tbody {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .program-table {
    table-layout: auto;
  }

  .program-table thead {
    display: none;
  }

  .program-table tbody {
    display: grid;
    gap: 10px;
  }

  .program-table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
  }

  .program-table td {
    min-width: 0;
    padding: 0;
    border: 0;
  }

  .program-table td:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    padding: 14px 8px 8px 16px;
  }

  .program-table td:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    padding: 14px 16px 8px 8px;
    text-align: right;
  }

  .program-table td:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 3;
    padding: 9px 16px;
    border-top: 1px solid var(--line);
  }

  .program-table td:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 3px 16px 12px;
  }

  .program-table td:nth-child(5) {
    grid-column: 1 / -1;
    grid-row: 4;
    padding: 0 16px;
    border-top: 1px solid var(--line);
  }

  .program-venue::before {
    content: "Venue: ";
    color: var(--ink);
    font-weight: 800;
  }

  .program-topic-desktop {
    display: none;
  }

  .program-topic-mobile {
    display: block;
  }

  .program-topic-mobile summary {
    padding: 11px 0;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
  }

  .program-topic-mobile p {
    margin: 0;
    padding: 0 0 14px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.5;
  }

  .program-activity {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }

  .program-activity td:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    padding: 13px 8px 13px 16px;
  }

  .program-activity td:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    padding: 13px 16px 13px 8px;
    text-align: left;
  }

  .program-activity-detail {
    display: block;
    margin: 2px 0 0;
  }

  .side-nav {
    position: static;
    order: -1;
    display: flex;
    gap: 5px;
    padding: 5px 0;
    overflow-x: auto;
  }

  .side-nav a {
    flex: 0 0 auto;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 4px;
    white-space: nowrap;
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .deadline-bar .container {
    justify-content: flex-start;
    min-height: 42px;
    overflow: hidden;
    white-space: nowrap;
  }

  .deadline-bar a {
    display: none;
  }

  .site-header .header-inner {
    min-height: 68px;
  }

  .mobile-panel {
    inset: 110px 0 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  .hero,
  .hero .container {
    min-height: 600px;
  }

  .hero {
    background-position: 58% center;
    background-size: auto 124%;
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero-content {
    padding: 34px 0 40px;
  }

  .hero-content .eyebrow {
    margin-bottom: 12px;
  }

  .hero-lede {
    margin-top: 16px;
  }

  .hero-meta {
    display: grid;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .section {
    padding: 54px 0;
  }

  .page-hero {
    padding: 50px 0 44px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  body[data-page="partners"] .page-hero h1 {
    font-size: 36px;
  }

  .conference-search-band {
    padding: 20px 0;
  }

  .conference-search-form {
    min-height: 54px;
  }

  .conference-search-form > svg {
    left: 15px;
    width: 20px;
  }

  .conference-search-form input {
    height: 50px;
    padding-left: 46px;
    font-size: 16px;
  }

  .conference-search-form .icon-button {
    width: 40px;
    height: 40px;
    margin-right: 5px;
  }

  .conference-search-results {
    padding-inline: 10px;
  }

  .timeline,
  .feature-links,
  .logo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .speaker-card-copy {
    min-height: 0;
  }

  .speaker-card h3 {
    font-size: 16px;
  }

  .speaker-card {
    display: block;
    min-height: 230px;
    padding: 15px 12px;
    text-align: center;
  }

  .speaker-card img {
    width: 76px;
    height: 76px;
    margin: 0 auto;
  }

  .speaker-card-copy {
    padding: 13px 0 0;
  }

  .timeline-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .program-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 14px;
  }

  .program-filter-search {
    grid-column: 1 / -1;
  }

  .program-filter-reset {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .program-session-heading {
    display: block;
  }

  .program-session-heading p:last-child {
    max-width: none;
    margin-top: 8px;
    text-align: left;
  }

  .segmented {
    width: 100%;
    overflow-x: auto;
  }

  .segmented button {
    flex: 1 0 auto;
  }

  .schedule-events li {
    grid-template-columns: 102px 1fr;
    gap: 10px;
    font-size: 14px;
  }

  .hotel-item {
    grid-template-columns: 1fr;
  }

  .hotel-item .button {
    justify-self: start;
  }

  .venue-copy {
    padding: 30px 24px;
  }

  .venue-grid img {
    min-height: 260px;
  }

  .shuttle-day header {
    min-height: 0;
  }

  .pickup-grid > div {
    min-height: 0;
  }

  .search-result {
    grid-template-columns: 1fr auto;
  }

  .search-slot {
    grid-template-columns: 1fr;
  }

  .search-result-category {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
