:root {
  --ink: #0c1726;
  --muted: #5e6a78;
  --line: #dbe3ec;
  --panel: #ffffff;
  --wash: #f5f8fb;
  --navy: #092f63;
  --navy-deep: #061f43;
  --accent: #c89b3c;
  --accent-soft: #f1dfb8;
  --shadow: 0 24px 70px rgba(8, 32, 63, 0.12);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  line-height: 1.6;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: relative;
  background: var(--navy-deep);
}

.header-tools {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 20;
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(6, 31, 67, 0.72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.language-button {
  min-width: 54px;
  min-height: 38px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease;
}

.language-button:first-child {
  border-left: 0;
}

.language-button:hover,
.language-button:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.language-button.is-active {
  color: var(--navy-deep);
  background: #fff;
}

.banner {
  width: 100%;
  background: var(--navy-deep);
  overflow: hidden;
}

.banner img {
  display: block;
  width: 100%;
  min-height: 180px;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

.tabs {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 2px;
  overflow-x: auto;
  padding: 0 18px;
  background: rgba(6, 31, 67, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.tab-button {
  flex: 0 0 auto;
  min-width: 132px;
  min-height: 62px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.tab-button:hover,
.tab-button:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.tab-button.is-active {
  color: #fff;
  border-bottom-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.home-panel {
  min-height: 68svh;
  padding: clamp(72px, 10vw, 128px) 20px clamp(58px, 8vw, 96px);
  background: #fff;
}

.home-hero {
  width: min(1080px, 100%);
  margin: 0 auto;
  text-align: center;
}

.home-logos {
  display: grid;
  grid-template-columns: 1fr 1.22fr 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  width: min(1120px, 100%);
  margin: 0 auto clamp(36px, 5vw, 56px);
  padding: 0 clamp(12px, 3vw, 24px);
}

.home-logos a {
  display: block;
}

.home-logos a:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(200, 155, 60, 0.5);
  outline-offset: 6px;
}

.home-logos img {
  display: block;
  width: 100%;
  max-height: 132px;
  object-fit: contain;
}

.home-logos > :nth-child(2) img {
  max-height: 168px;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 28px;
  border: 2px solid #d99943;
  border-radius: 999px;
  padding: 0 26px;
  color: #c37c2e;
  background: #fffaf2;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--navy-deep);
  font-size: clamp(2.15rem, 4vw, 3.9rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.home-subtitle {
  max-width: 820px;
  margin: 26px auto 0;
  color: #2d3f55;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.home-meta {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.22rem);
  font-weight: 750;
}

.home-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.home-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 0 30px;
  color: #fff;
  background: #d9913f;
  box-shadow: 0 18px 36px rgba(217, 145, 63, 0.32);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  text-decoration: none;
}

.home-action:hover,
.home-action:focus-visible {
  background: #c77f31;
  box-shadow: 0 22px 42px rgba(217, 145, 63, 0.4);
  transform: translateY(-1px);
  outline: none;
}

.home-action-stream {
  gap: 12px;
  min-width: 210px;
  color: var(--navy-deep);
  background: #fff;
  border: 1px solid rgba(9, 47, 99, 0.14);
  box-shadow: 0 18px 36px rgba(8, 32, 63, 0.12);
}

.home-action-stream img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
}

.home-action-stream:hover,
.home-action-stream:focus-visible {
  color: var(--navy-deep);
  background: #fffaf2;
  box-shadow: 0 22px 42px rgba(8, 32, 63, 0.16);
}

.panel-shell h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-meta {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.event-meta span {
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 11px;
  color: #344153;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 700;
}

.agenda-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 58px);
  width: min(1220px, calc(100% - 40px));
  margin: clamp(34px, 5vw, 64px) auto clamp(56px, 7vw, 100px);
}

.agenda-day {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 8px 0 0;
}

.day-label {
  display: block;
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agenda-day strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1;
}

.agenda-day p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 92px;
  width: 1px;
  background: linear-gradient(var(--accent), var(--line));
}

.agenda-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 26px;
  margin-bottom: 18px;
}

.agenda-item::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 86px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--wash);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(200, 155, 60, 0.45);
}

.agenda-item time {
  padding-top: 19px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.agenda-content {
  border: 1px solid rgba(9, 47, 99, 0.1);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 34px);
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.agenda-content:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 155, 60, 0.36);
  box-shadow: 0 30px 80px rgba(8, 32, 63, 0.16);
}

.agenda-content h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.agenda-role {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.agenda-role.compact {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.agenda-role h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-role h3 span {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.agenda-role p,
.agenda-role ul {
  margin: 0;
  color: #2f3b48;
}

.agenda-role ul {
  display: grid;
  gap: 11px;
  padding-left: 19px;
}

.agenda-role li::marker {
  color: var(--accent);
}

.tagline {
  display: inline-flex;
  margin: 22px 0 0;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--accent-soft);
  font-weight: 800;
}

.break-item .agenda-content,
.dinner-item .agenda-content {
  background: linear-gradient(135deg, #fff, #f8fbff);
}

.placeholder {
  min-height: 48svh;
  padding: clamp(54px, 8vw, 110px) 20px;
}

.panel-shell {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0;
}

.panel-shell h1 {
  color: var(--navy);
}

.panel-shell p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.critiques-panel {
  min-height: 58svh;
  padding: clamp(58px, 8vw, 96px) 20px clamp(76px, 9vw, 118px);
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.critiques-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.critiques-shell h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1.08;
}

.critiques-shell > p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.critique-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  margin-top: clamp(38px, 6vw, 66px);
}

.critique-card {
  display: grid;
  gap: 22px;
  min-width: 0;
  border: 1px solid rgba(9, 47, 99, 0.12);
  border-radius: 8px;
  padding: clamp(18px, 2vw, 24px);
  color: inherit;
  background: #fff;
  box-shadow: 0 20px 54px rgba(8, 32, 63, 0.1);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.critique-card:hover,
.critique-card:focus-visible,
.critique-card.is-active {
  border-color: rgba(200, 155, 60, 0.46);
  box-shadow: 0 30px 72px rgba(8, 32, 63, 0.16);
  transform: translateY(-3px);
  outline: none;
}

.critique-cover {
  display: block;
  aspect-ratio: 2186 / 3071;
  overflow: hidden;
  border-radius: 6px;
  background: #eef3f8;
  box-shadow: inset 0 0 0 1px rgba(9, 47, 99, 0.08);
}

.critique-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.critique-card-body {
  display: grid;
  gap: 9px;
}

.critique-card-label {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.critique-card strong {
  color: var(--navy-deep);
  font-size: 1.12rem;
  line-height: 1.26;
}

.critique-card-body span:last-child {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.modal-open {
  overflow: hidden;
}

.critique-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background: rgba(6, 20, 38, 0.72);
  backdrop-filter: blur(10px);
}

.critique-viewer[hidden] {
  display: none;
}

.critique-viewer-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  width: min(1280px, 100%);
  height: min(92svh, 920px);
  border: 1px solid rgba(9, 47, 99, 0.12);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 30px);
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.critique-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(9, 47, 99, 0.14);
  border-radius: 50%;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(8, 32, 63, 0.12);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.critique-close:hover,
.critique-close:focus-visible {
  color: #fff;
  background: var(--accent);
  transform: translateY(-1px);
  outline: none;
}

.critique-viewer-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding-right: 54px;
}

.critique-back,
.critique-open-link,
.critique-title-button {
  border: 1px solid rgba(9, 47, 99, 0.14);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--navy-deep);
  background: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.critique-back:hover,
.critique-back:focus-visible,
.critique-open-link:hover,
.critique-open-link:focus-visible,
.critique-title-button:hover,
.critique-title-button:focus-visible,
.critique-title-button.is-active {
  border-color: rgba(200, 155, 60, 0.6);
  color: var(--navy);
  background: #fff8eb;
  outline: none;
  transform: translateY(-1px);
}

.critique-open-link {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.critique-open-link:hover,
.critique-open-link:focus-visible {
  color: #fff;
  background: #c77f31;
}

.critique-open-link.is-disabled {
  color: var(--navy-deep);
  background: #f3efe5;
  border-color: rgba(200, 155, 60, 0.45);
  cursor: default;
  pointer-events: none;
}

.critique-preview-label {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.critique-viewer h2 {
  margin: 0;
}

.critique-viewer-title-button {
  display: inline;
  border: 0;
  padding: 0;
  color: var(--navy-deep);
  background: transparent;
  font: inherit;
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  font-weight: 900;
  line-height: 1.16;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.critique-viewer-title-button:hover,
.critique-viewer-title-button:focus-visible {
  color: var(--accent);
  outline: none;
}

.critique-title-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.critique-forthcoming {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 22px;
  min-height: 0;
  margin-top: 24px;
  border: 1px solid rgba(9, 47, 99, 0.12);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: linear-gradient(180deg, #fff, #f7f9fc);
  overflow: auto;
}

.critique-forthcoming[hidden] {
  display: none;
}

.critique-forthcoming img {
  width: min(280px, 72vw);
  max-height: 56svh;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 20px 54px rgba(8, 32, 63, 0.16);
}

.critique-forthcoming p {
  margin: 0;
  color: var(--accent);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.critique-pdf-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin-top: 24px;
  border: 1px solid rgba(9, 47, 99, 0.12);
  border-radius: 8px;
  background: #eef3f8;
}

.critique-pdf-frame[hidden] {
  display: none;
}

.contact-panel {
  min-height: 58svh;
  padding: clamp(58px, 8vw, 96px) 20px clamp(70px, 9vw, 110px);
  background: #f7f9fc;
}

.contact-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-shell h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.contact-shell > p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 36px);
  margin-top: clamp(42px, 6vw, 64px);
}

.contact-card {
  border: 1px solid rgba(9, 47, 99, 0.12);
  border-radius: 8px;
  padding: clamp(30px, 4vw, 46px);
  background: #fff;
  box-shadow: 0 18px 46px rgba(8, 32, 63, 0.09);
  text-align: center;
}

.contact-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #3f77b6);
  font-size: 1.55rem;
  font-weight: 900;
}

.contact-card h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 1.28rem;
}

.contact-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.contact-card dl div {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #405069;
}

.contact-card dt {
  font-weight: 800;
}

.contact-card dd {
  margin: 0;
}

.contact-card a {
  color: #2f73c9;
  font-weight: 750;
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--navy);
  text-decoration: underline;
  outline: none;
}

.participants-panel {
  padding: clamp(58px, 8vw, 96px) 20px clamp(76px, 9vw, 118px);
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.participants-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.participants-shell h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1.08;
}

.participants-shell > p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.participants-stats {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(9, 47, 99, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(8, 32, 63, 0.08);
}

.participants-stats div {
  padding: 18px 30px;
  border-left: 1px solid var(--line);
}

.participants-stats div:first-child {
  border-left: 0;
}

.participants-stats strong {
  display: block;
  color: var(--accent);
  font-size: 1.85rem;
  line-height: 1;
}

.participants-stats span {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.participants-group {
  margin-top: clamp(46px, 7vw, 76px);
}

.participants-group h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.participant-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.participant-card {
  min-height: 245px;
  border: 1px solid rgba(9, 47, 99, 0.1);
  border-radius: 8px;
  padding: 28px 24px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 32, 63, 0.08);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.participant-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 155, 60, 0.36);
  box-shadow: 0 24px 54px rgba(8, 32, 63, 0.13);
}

.participant-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #3d73ae);
  box-shadow: 0 16px 34px rgba(8, 32, 63, 0.18);
  overflow: hidden;
  font-size: 1.35rem;
  font-weight: 900;
}

.participant-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 18%;
}

.participant-avatar--chris img {
  object-position: center 34%;
}

.participant-avatar.has-image span {
  display: none;
}

.participant-card h3 {
  margin: 20px 0 0;
  color: var(--navy-deep);
  font-size: 1.15rem;
}

.participant-card p {
  margin: 12px 0 0;
  color: #4d5c70;
  font-size: 0.94rem;
  line-height: 1.62;
}

.media-group {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(9, 47, 99, 0.1);
  border-radius: 8px;
  padding: clamp(46px, 6vw, 70px) clamp(18px, 4vw, 42px) clamp(54px, 7vw, 78px);
  background: #fff;
  box-shadow: 0 26px 70px rgba(8, 32, 63, 0.11);
}

.media-group::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.media-group h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.media-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1060px;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.media-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px;
  color: var(--navy-deep);
  background: #fff;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  transition: color 180ms ease, background 180ms ease;
}

.media-chip:hover {
  color: var(--accent);
  background: #fbfcfe;
}

.event-info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1060px;
  margin: clamp(44px, 6vw, 72px) auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-info-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  border-top: 0;
  border-left: 1px solid var(--line);
  padding: 26px 24px;
  text-align: left;
}

.event-info-list div:first-child {
  border-left: 0;
}

.event-info-list dt {
  color: #c37c2e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-info-list dd {
  margin: 0;
  color: #1c2d42;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
  white-space: pre-line;
}

.home-about {
  position: relative;
  max-width: 1080px;
  margin: clamp(70px, 9vw, 120px) auto 0;
  padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 18%, rgba(200, 155, 60, 0.1), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
  text-align: center;
}

.about-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-about h2 {
  position: relative;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.08em;
}

.home-about h2::before {
  content: attr(data-title);
  position: absolute;
  z-index: 0;
  top: 34px;
  left: 50%;
  width: 100%;
  color: rgba(9, 47, 99, 0.12);
  filter: blur(7px);
  transform: translateX(-50%);
  pointer-events: none;
}

.home-about h2 {
  z-index: 1;
}

.about-rule {
  width: 88px;
  height: 4px;
  margin: 26px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--navy));
}

.about-copy {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: clamp(36px, 5vw, 58px) auto 0;
  color: #1f3148;
  text-align: left;
}

.about-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.95;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 820px) {
  .banner img {
    min-height: 156px;
    object-position: center;
  }

  .home-panel {
    padding-top: 58px;
  }

  .home-logos {
    gap: 18px;
    margin-bottom: 32px;
  }

  .home-logos img {
    max-height: 88px;
  }

  .home-logos > :nth-child(2) img {
    max-height: 108px;
  }

  .home-kicker {
    min-height: 38px;
    margin-bottom: 22px;
    padding: 0 18px;
    font-size: 0.74rem;
  }

  .home-subtitle {
    letter-spacing: 0.03em;
  }

  .event-info-list {
    grid-template-columns: minmax(0, 1fr);
    max-width: 640px;
  }

  .home-about {
    margin-top: 62px;
    padding: 48px 0;
  }

  .home-about h2 {
    letter-spacing: 0.04em;
  }

  .home-about h2::before {
    top: 28px;
  }

  .contact-card-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }

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

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

  .critique-viewer {
    padding: 10px;
  }

  .critique-viewer-dialog {
    width: 100%;
    height: 96svh;
    padding: 18px;
  }

  .critique-viewer-header {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    padding-right: 48px;
  }

  .critique-open-link,
  .critique-back {
    justify-self: start;
  }

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

  .participants-stats {
    width: min(100%, 560px);
  }

  .event-info-list div,
  .event-info-list div:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0;
    text-align: center;
  }

  .event-info-list div:first-child {
    border-top: 0;
  }

  .header-tools {
    top: 10px;
    right: 10px;
  }

  .language-button {
    min-width: 48px;
    min-height: 34px;
    font-size: 0.82rem;
  }

  .tabs {
    justify-content: flex-start;
    padding: 0 10px;
  }

  .tab-button {
    min-width: 124px;
    min-height: 58px;
    font-size: 0.98rem;
  }

  .agenda-wrap {
    display: block;
    width: min(100% - 28px, 680px);
  }

  .agenda-day {
    position: static;
    margin-bottom: 30px;
  }

  .timeline::before {
    left: 10px;
  }

  .agenda-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding-left: 30px;
  }

  .agenda-item::before {
    top: 24px;
    left: 4px;
  }

  .agenda-item time {
    padding-top: 0;
  }

  .agenda-role.compact {
    display: block;
  }
}

@media (max-width: 520px) {
  .banner img {
    min-height: 126px;
  }

  .home-panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .home-logos {
    gap: 12px;
    margin-bottom: 28px;
    padding: 0;
  }

  .home-logos img {
    max-height: 64px;
  }

  .home-logos > :nth-child(2) img {
    max-height: 78px;
  }

  .home-action {
    width: min(100%, 220px);
    min-height: 52px;
  }

  .home-actions {
    display: grid;
    width: min(100%, 260px);
    gap: 12px;
  }

  .home-actions .home-action {
    width: 100%;
  }

  .home-action-stream {
    min-width: 0;
  }

  .home-about {
    margin-top: 50px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .about-copy {
    gap: 18px;
  }

  .about-copy p {
    line-height: 1.82;
    font-weight: 650;
  }

  .contact-card {
    padding: 28px 18px;
  }

  .contact-card dl div {
    display: grid;
    gap: 2px;
  }

  .contact-card a {
    overflow-wrap: anywhere;
  }

  .participants-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .participants-stats div,
  .participants-stats div:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .participants-stats div:first-child {
    border-top: 0;
  }

  .participant-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .critique-card {
    padding: 16px;
  }

  .critique-title-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .critique-title-button {
    width: 100%;
    border-radius: 8px;
    text-align: left;
  }

  .critique-pdf-frame {
    height: 100%;
    min-height: 0;
  }

  .participant-card {
    min-height: auto;
    padding: 26px 18px;
  }

  .participant-avatar {
    width: 104px;
    height: 104px;
  }

  .media-chip-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-chip {
    min-height: 88px;
    padding: 18px;
  }

  .event-info-list div {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .agenda-wrap {
    width: calc(100% - 22px);
  }

  .agenda-content {
    padding: 18px;
  }

  .agenda-role ul {
    padding-left: 17px;
  }
}
