@charset "utf-8";

@font-face {
  font-family: "DinAnniv";
  src: url("../fonts/dinBlack.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "AvrAnniv";
  src: url("../fonts/avrnir.woff") format("woff");
  font-display: swap;
}

:root {
  --ink: #151a1d;
  --night: #3f070e;
  --wine: #93131f;
  --red: #c5312b;
  --gold: #d8ad5d;
  --gold-soft: #f4dfae;
  --jade: #1f6d62;
  --paper: #f7efe2;
  --paper-deep: #ead8ba;
  --muted: rgba(247, 239, 226, .74);
  --ink-muted: rgba(21, 26, 29, .68);
  --line: rgba(216, 173, 93, .3);
  --shadow: 0 28px 70px rgba(0, 0, 0, .24);
  --motion-ease: cubic-bezier(.16, 1, .3, 1);
  --home-content-max: 1660px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--paper);
  background: var(--night);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Microsoft YaHei", "PingFang SC", serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 64px;
  color: var(--paper);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(76, 9, 18, .92);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(244, 223, 174, .72);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(244, 223, 174, .24), rgba(31, 109, 98, .16)),
    rgba(78, 12, 20, .4);
  color: var(--gold-soft);
  font: 900 .86rem/1 DinAnniv, Impact, sans-serif;
}

.brand-text {
  display: grid;
  gap: 5px;
  min-width: 0;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-text em {
  color: rgba(244, 223, 174, .74);
  font: 700 .68rem/1 AvrAnniv, "Microsoft YaHei", sans-serif;
  font-style: normal;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .95rem;
}

.top-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(247, 239, 226, .84);
  white-space: nowrap;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .48s var(--motion-ease);
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--gold-soft);
}

.top-nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after,
.top-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(244, 223, 174, .42);
  border-radius: 50%;
  background: rgba(247, 239, 226, .08);
  color: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .46s var(--motion-ease), opacity .46s var(--motion-ease);
}

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

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

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 128px 64px 40px;
  background:
    radial-gradient(circle at 52% 22%, rgba(190, 48, 48, .14), transparent 44%),
    linear-gradient(180deg, rgba(244, 223, 174, .04), rgba(244, 223, 174, 0) 46%),
    linear-gradient(90deg, rgba(66, 7, 15, .9) 0%, rgba(160, 24, 36, .68) 50%, rgba(90, 12, 22, .68) 100%),
    url("../images/bg2.jpg") center/cover no-repeat;
}

.home-page {
  min-height: 100svh;
  background: var(--night);
}

.home-hero {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  min-height: 100svh;
  padding-top: 112px;
  padding-bottom: 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(244, 223, 174, .07) 1px, transparent 1px),
    linear-gradient(rgba(244, 223, 174, .06) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -24%;
  height: 48%;
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(180deg, rgba(244, 223, 174, .16), transparent 74%),
    repeating-radial-gradient(circle at 50% 100%, rgba(244, 223, 174, .24) 0 1px, transparent 1px 28px);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  top: 12%;
  right: -12%;
  width: 760px;
  max-width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(244, 223, 174, .18);
  background:
    repeating-radial-gradient(circle, rgba(244, 223, 174, .24) 0 1px, transparent 1px 48px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 100%);
  animation: slowTurn 34s linear infinite;
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 3px 3px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 430px);
  gap: 72px;
  align-items: center;
  width: 100%;
  max-width: 1460px;
  min-height: calc(100svh - 332px);
  margin: 0 auto;
}

.home-hero .hero-inner {
  max-width: var(--home-content-max);
  min-height: 0;
  gap: 54px;
  align-self: center;
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font: 700 .95rem/1.4 AvrAnniv, "Microsoft YaHei", sans-serif;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  color: var(--paper);
  font-size: 4.75rem;
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 16px 38px rgba(104, 18, 22, .28);
}

.hero-en {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--gold-soft);
  font: 700 .95rem/1.65 AvrAnniv, "Microsoft YaHei", sans-serif;
  overflow-wrap: anywhere;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 22px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(244, 223, 174, .32);
  border-radius: 999px;
  background: rgba(82, 14, 21, .34);
  color: rgba(247, 239, 226, .9);
  font-size: .95rem;
}

.theme-desc {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.95;
}

.home-hero .theme-desc {
  max-width: 620px;
  font-size: 1.15rem;
  color: rgba(247, 239, 226, .84);
}

.service-team {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(244, 223, 174, .82);
  font-size: .98rem;
  line-height: 1.75;
}

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

.primary-link,
.ghost-link,
.back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: .95rem;
  transition:
    transform .66s var(--motion-ease),
    border-color .66s var(--motion-ease),
    background .66s var(--motion-ease),
    box-shadow .66s var(--motion-ease),
    color .66s var(--motion-ease);
}

.primary-link {
  background: var(--gold);
  color: #2d1609;
  font-weight: 700;
}

.ghost-link {
  border: 1px solid rgba(244, 223, 174, .46);
  color: var(--gold-soft);
}

.primary-link:hover,
.ghost-link:hover,
.back-top:hover {
  transform: translate3d(0, -4px, 0);
}

.conference-panel {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(244, 223, 174, .34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 239, 226, .18), rgba(247, 239, 226, .06)),
    rgba(82, 14, 21, .52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform .74s var(--motion-ease), box-shadow .74s var(--motion-ease), border-color .74s var(--motion-ease);
}

.conference-panel:hover,
.conference-panel:focus-within {
  transform: translate3d(0, -8px, 0);
  border-color: rgba(244, 223, 174, .52);
  box-shadow: 0 36px 86px rgba(0, 0, 0, .3);
}

.home-hero .conference-panel {
  padding: 26px;
}

.conference-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 223, 174, .18);
  pointer-events: none;
}

.panel-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font: 700 .75rem/1 AvrAnniv, "Microsoft YaHei", sans-serif;
}

.conference-panel h2 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  line-height: 1.25;
}

.conference-panel time {
  display: block;
  color: var(--gold-soft);
  font: 900 2.8rem/1 DinAnniv, Impact, sans-serif;
}

.home-hero .conference-panel time {
  font-size: 2.45rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 26px 0 0;
}

.countdown span {
  display: grid;
  min-height: 84px;
  place-items: center;
  border: 1px solid rgba(244, 223, 174, .24);
  background: rgba(247, 239, 226, .12);
}

.home-hero .countdown {
  margin: 20px 0 0;
}

.home-hero .countdown span {
  min-height: 68px;
}

.countdown strong {
  color: var(--gold-soft);
  font: 900 1.86rem/.95 DinAnniv, Impact, sans-serif;
}

.home-hero .countdown strong {
  font-size: 1.82rem;
}

.countdown em {
  color: rgba(247, 239, 226, .7);
  font-style: normal;
  font-size: .82rem;
}

.portal-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 1460px;
  margin: 28px auto 0;
  border: 1px solid rgba(244, 223, 174, .22);
  background: rgba(244, 223, 174, .28);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.home-portals {
  max-width: var(--home-content-max);
  margin-top: 24px;
}

.portal-card {
  position: relative;
  min-height: 148px;
  padding: 22px 18px;
  overflow: hidden;
  background: rgba(60, 11, 17, .7);
  transition: background .6s var(--motion-ease), transform .65s var(--motion-ease), box-shadow .65s var(--motion-ease);
}

.home-portals .portal-card {
  min-height: 112px;
  padding: 18px 16px;
}

.portal-card::before {
  content: attr(data-portal);
  position: absolute;
  right: -10px;
  bottom: -22px;
  color: rgba(244, 223, 174, .08);
  font-size: 3.2rem;
  font-weight: 900;
}

.portal-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .62s var(--motion-ease);
}

.portal-card:hover,
.portal-card:focus-visible,
.portal-card.is-active {
  background:
    linear-gradient(145deg, rgba(176, 40, 38, .7), rgba(31, 109, 98, .14)),
    rgba(74, 14, 21, .78);
  transform: translate3d(0, -6px, 0);
}

.portal-card:hover::after,
.portal-card:focus-visible::after,
.portal-card.is-active::after {
  transform: scaleX(1);
}

.portal-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(244, 223, 174, .44);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: .95rem;
}

.home-portals .portal-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
}

.portal-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--paper);
  font-size: 1.18rem;
}

.portal-card em {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: rgba(247, 239, 226, .66);
  font-style: normal;
  font-size: .82rem;
  line-height: 1.55;
}

.year-orbit {
  position: absolute;
  right: 56px;
  top: 50%;
  z-index: 1;
  width: 620px;
  max-width: 42%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 140px 64px 72px;
  background:
    radial-gradient(circle at 52% 18%, rgba(190, 48, 48, .13), transparent 42%),
    linear-gradient(180deg, rgba(244, 223, 174, .04), rgba(244, 223, 174, 0) 48%),
    linear-gradient(90deg, rgba(66, 7, 15, .9) 0%, rgba(160, 24, 36, .68) 56%, rgba(90, 12, 22, .66) 100%),
    url("../images/bg2.jpg") center/cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -180px;
  top: 40px;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(244, 223, 174, .18);
  background: repeating-radial-gradient(circle, rgba(244, 223, 174, .2) 0 1px, transparent 1px 42px);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(244, 223, 174, .06) 1px, transparent 1px),
    linear-gradient(rgba(244, 223, 174, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1460px;
  margin: 0 auto;
}

.page-hero h1,
.inner-page #pageTitle {
  margin: 0;
  color: #f4dfae !important;
  font-size: 3.8rem;
  line-height: 1.12;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.85;
}

.page-content {
  min-height: 46svh;
}

.status-page-content {
  background:
    linear-gradient(180deg, rgba(247, 239, 226, .96), rgba(234, 216, 186, .96)),
    url("../images/bg4s.jpg") center/cover no-repeat;
}

.year-orbit span {
  position: absolute;
  inset: var(--inset, 0);
  border: 1px solid rgba(244, 223, 174, .18);
  border-radius: 50%;
}

.year-orbit span:nth-child(2) {
  --inset: 14%;
  border-color: rgba(31, 109, 98, .28);
}

.year-orbit span:nth-child(3) {
  --inset: 29%;
}

.content-band {
  position: relative;
  padding: 92px 64px;
  background: var(--paper);
  color: var(--ink);
}

.content-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 8, 16, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 8, 16, .035) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.section-heading,
.section-note,
.guest-section-heading,
.person-grid,
.status-panel,
.letter-strip,
.guest-directory,
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading p {
  margin: 0;
  color: var(--red);
  font: 700 .78rem/1.2 AvrAnniv, "Microsoft YaHei", sans-serif;
}

.section-heading h2 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.2;
}

.section-note {
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.person-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 76px 62px;
}

.person-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.person-card {
  --portrait-size: clamp(190px, 16vw, 260px);
  --avatar-size: calc(var(--portrait-size) * .58);
  position: relative;
  min-height: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  text-align: center;
  transition: transform .72s var(--motion-ease);
}

.person-card::before {
  content: "";
  display: block;
  width: var(--portrait-size);
  max-width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0 auto 24px;
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(244, 223, 174, .08), rgba(255, 255, 255, 0) 36%),
    linear-gradient(160deg, #bd342f 0%, #9f1722 56%, #68111a 100%);
  box-shadow:
    0 28px 56px rgba(110, 8, 16, .18),
    inset 0 0 0 1px rgba(244, 223, 174, .14);
  transition: transform .78s var(--motion-ease), box-shadow .78s var(--motion-ease), filter .78s var(--motion-ease);
}

.person-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(var(--portrait-size) * .2);
  width: var(--avatar-size);
  height: calc(var(--avatar-size) * 1.12);
  pointer-events: none;
  transform: translate3d(-50%, 0, 0) scale(1);
  background:
    radial-gradient(circle at 50% 17%, rgba(246, 225, 185, .92) 0 18%, transparent 19%),
    radial-gradient(ellipse at 50% 80%, rgba(246, 225, 185, .84) 0 38%, transparent 39%);
  filter: drop-shadow(0 13px 18px rgba(54, 10, 12, .28));
  opacity: .84;
  transition: transform .78s var(--motion-ease), opacity .78s var(--motion-ease), filter .78s var(--motion-ease);
}

.person-card-with-image::before,
.person-card-with-image::after {
  display: none;
}

.person-card-with-image .person-avatar {
  display: block;
  width: var(--portrait-size);
  max-width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0 auto 24px;
  border-radius: 2px;
  object-fit: cover;
  object-position: center top;
  box-shadow:
    0 28px 56px rgba(110, 8, 16, .18),
    inset 0 0 0 1px rgba(244, 223, 174, .14);
  transition: transform .78s var(--motion-ease), box-shadow .78s var(--motion-ease), filter .78s var(--motion-ease);
}

.person-card-with-image:hover .person-avatar,
.person-card-with-image:focus-within .person-avatar {
  transform: translate3d(0, -6px, 0) scale(1.018);
  filter: saturate(1.08) brightness(1.04);
  box-shadow:
    0 36px 72px rgba(110, 8, 16, .28),
    inset 0 0 0 1px rgba(244, 223, 174, .28);
}

.person-card strong {
  display: block;
  color: #1e1d1b;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  transition: color .62s var(--motion-ease), transform .62s var(--motion-ease);
}

.person-card span {
  display: block;
  margin-top: 12px;
  color: rgba(21, 26, 29, .62);
  font-size: clamp(.92rem, 1vw, 1.08rem);
  line-height: 1.65;
  overflow-wrap: anywhere;
  transition: color .62s var(--motion-ease), transform .62s var(--motion-ease);
}

.person-card:hover,
.person-card:focus-within {
  transform: translate3d(0, -12px, 0);
}

.person-card:hover::before,
.person-card:focus-within::before {
  transform: translate3d(0, -6px, 0);
  filter: saturate(1.08) brightness(1.04);
  box-shadow:
    0 36px 72px rgba(110, 8, 16, .28),
    inset 0 0 0 1px rgba(244, 223, 174, .28);
}

.person-card:hover::after,
.person-card:focus-within::after {
  opacity: .96;
  transform: translate3d(-50%, -7px, 0) scale(1.035);
  filter: drop-shadow(0 18px 22px rgba(54, 10, 12, .34));
}

.person-card:hover strong,
.person-card:focus-within strong {
  color: var(--wine);
  transform: translate3d(0, -2px, 0);
}

.person-card:hover span,
.person-card:focus-within span {
  color: rgba(110, 8, 16, .7);
}

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

.speaker-pending-card::before {
  background:
    linear-gradient(145deg, rgba(244, 223, 174, .11), rgba(255, 255, 255, 0) 34%),
    repeating-linear-gradient(135deg, rgba(244, 223, 174, .1) 0 1px, transparent 1px 18px),
    linear-gradient(160deg, #b92e2b 0%, #981520 56%, #68111a 100%);
}

.status-band,
.agenda-band {
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(64, 8, 16, .94), rgba(104, 17, 28, .88)),
    url("../images/bg1.jpg") center/cover no-repeat;
}

.status-band::before,
.agenda-band::before {
  background-image:
    linear-gradient(90deg, rgba(244, 223, 174, .08) 1px, transparent 1px),
    linear-gradient(rgba(244, 223, 174, .07) 1px, transparent 1px);
  background-size: 54px 54px;
}

.status-band .section-heading p,
.agenda-band .section-heading p {
  color: var(--gold);
}

.status-panel {
  min-height: 260px;
  padding: 42px;
  border: 1px solid rgba(244, 223, 174, .28);
  border-radius: 8px;
  background: rgba(62, 13, 22, .56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform .75s var(--motion-ease), box-shadow .75s var(--motion-ease), background .75s var(--motion-ease);
}

.status-panel:hover,
.status-panel:focus-within {
  transform: translate3d(0, -8px, 0);
  background: rgba(88, 17, 27, .62);
  box-shadow: 0 36px 86px rgba(0, 0, 0, .3);
}

.status-panel span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(244, 223, 174, .46);
  color: var(--gold-soft);
  font-size: .88rem;
}

.status-panel h3 {
  margin: 26px 0 12px;
  color: var(--paper);
  font-size: 2rem;
  line-height: 1.3;
}

.status-panel p {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 239, 226, .72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.status-panel-light {
  background: rgba(76, 15, 24, .58);
}

.academicians-band {
  background:
    linear-gradient(180deg, rgba(247, 239, 226, .96), rgba(234, 216, 186, .96)),
    url("../images/bg4s.jpg") center/cover no-repeat;
}

.guests-band {
  background: var(--paper);
}

.letter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 42px;
}

.letter-strip span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(110, 8, 16, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .46);
  color: var(--wine);
  font: 900 .9rem/1 DinAnniv, Impact, sans-serif;
  transition: transform .62s var(--motion-ease), background .62s var(--motion-ease), color .62s var(--motion-ease), border-color .62s var(--motion-ease);
}

.letter-strip span:hover {
  border-color: rgba(168, 40, 31, .42);
  background: var(--wine);
  color: var(--gold-soft);
  transform: translate3d(0, -5px, 0);
}

.guest-section-heading {
  margin-bottom: 64px;
  text-align: center;
}

.guest-section-heading p {
  margin: 0 0 14px;
  color: rgba(110, 8, 16, .64);
  font-size: 1rem;
  line-height: 1.7;
}

.guest-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
}

.guest-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 72px;
}

.guest-card {
  position: relative;
  min-height: 0;
  padding: 0 0 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: transform .72s var(--motion-ease);
}

.guest-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 2px;
  height: 34px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  opacity: .42;
  transform: scaleY(.72);
  transform-origin: top center;
  transition: transform .72s var(--motion-ease), opacity .72s var(--motion-ease);
}

.guest-card strong {
  display: block;
  color: #1e1d1b;
  font-size: clamp(1.35rem, 1.55vw, 1.75rem);
  font-weight: 800;
  line-height: 1.28;
  transition: color .62s var(--motion-ease), transform .62s var(--motion-ease);
}

.guest-card span {
  display: block;
  margin-top: 10px;
  color: rgba(21, 26, 29, .58);
  font-size: .98rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  transition: color .62s var(--motion-ease), transform .62s var(--motion-ease);
}

.guest-card:hover,
.guest-card:focus-within {
  transform: translate3d(0, -8px, 0);
}

.guest-card:hover::before,
.guest-card:focus-within::before {
  opacity: .85;
  transform: scaleY(1.28);
}

.guest-card:hover strong,
.guest-card:focus-within strong {
  color: var(--wine);
  transform: translate3d(0, -2px, 0);
}

.guest-card:hover span,
.guest-card:focus-within span {
  color: rgba(110, 8, 16, .68);
}

.about-band {
  background:
    linear-gradient(180deg, rgba(247, 239, 226, .96), rgba(247, 239, 226, .98)),
    url("../images/bg5s.jpg") center/cover no-repeat;
}

.about-band .status-panel {
  background:
    linear-gradient(145deg, rgba(90, 16, 26, .94), rgba(56, 9, 16, .9));
}

.site-footer {
  padding: 42px 64px;
  color: rgba(247, 239, 226, .78);
  background:
    linear-gradient(90deg, #3f070e, #70101a 52%, #3f070e);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, auto) minmax(210px, auto) auto;
  gap: 24px;
  align-items: center;
}

.footer-title strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 1.25rem;
}

.footer-title span,
.support {
  color: rgba(247, 239, 226, .68);
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

address a,
.footer-links a {
  display: inline-block;
  color: var(--gold-soft);
  transition: color .58s var(--motion-ease), transform .58s var(--motion-ease);
}

address a:hover,
address a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
  transform: translate3d(0, -2px, 0);
}

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

.support {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  font-size: .92rem;
}

.back-top {
  border: 1px solid rgba(244, 223, 174, .34);
  color: var(--gold-soft);
  white-space: nowrap;
}

@keyframes slowTurn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes mobileFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(.985);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes mobileFadeSoft {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(.992);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes mobileFadeScale {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(.97);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@media (min-width: 1121px) {
  .site-header {
    justify-content: flex-end;
  }

  .site-header .brand {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-boot body:not(.motion-ready) .site-header .brand,
  html.motion-boot body:not(.motion-ready) .site-header .top-nav a,
  html.motion-boot body:not(.motion-ready) .site-header .nav-toggle,
  html.motion-boot body:not(.motion-ready) .home-page .hero-copy > *,
  html.motion-boot body:not(.motion-ready) .home-page .conference-panel,
  html.motion-boot body:not(.motion-ready) .home-page .home-portals .portal-card,
  html.motion-boot body:not(.motion-ready) .inner-page .page-hero-inner > *,
  html.motion-boot body:not(.motion-ready) .inner-page .guest-section-heading > *,
  html.motion-boot body:not(.motion-ready) .inner-page .letter-strip > *,
  html.motion-boot body:not(.motion-ready) .inner-page .status-panel,
  html.motion-boot body:not(.motion-ready) .inner-page .person-card,
  html.motion-boot body:not(.motion-ready) .inner-page .guest-card,
  html.motion-boot body:not(.motion-ready) .site-footer .footer-inner > * {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(.976);
    filter: blur(14px);
  }

  html.motion-boot body:not(.motion-ready) .site-header .brand,
  html.motion-boot body:not(.motion-ready) .site-header .top-nav a,
  html.motion-boot body:not(.motion-ready) .site-header .nav-toggle,
  html.motion-boot body:not(.motion-ready) .home-page .hero-copy > *,
  html.motion-boot body:not(.motion-ready) .inner-page .page-hero-inner > *,
  html.motion-boot body:not(.motion-ready) .inner-page .guest-section-heading > *,
  html.motion-boot body:not(.motion-ready) .site-footer .footer-inner > * {
    transform-origin: left center;
  }

  html.motion-boot body:not(.motion-ready) .home-page .conference-panel,
  html.motion-boot body:not(.motion-ready) .home-page .home-portals .portal-card,
  html.motion-boot body:not(.motion-ready) .inner-page .status-panel,
  html.motion-boot body:not(.motion-ready) .inner-page .person-card,
  html.motion-boot body:not(.motion-ready) .inner-page .guest-card {
    transform: translate3d(0, 52px, 0) scale(.962);
    filter: blur(16px);
    transform-origin: center bottom;
  }

  html.motion-boot body:not(.motion-ready) .inner-page .letter-strip > * {
    transform: translate3d(0, 18px, 0) scale(.94);
    filter: blur(8px);
  }

  .motion-ready .reveal-item {
    opacity: 0;
    transform: translate3d(0, var(--reveal-y, 42px), 0) scale(var(--reveal-scale, .976));
    filter: blur(var(--reveal-blur, 14px));
    transition:
      opacity .5s var(--motion-ease),
      transform .5s var(--motion-ease),
      filter .5s var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  .motion-ready .reveal-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  .motion-ready .site-header .reveal-item,
  .motion-ready .page-hero-inner > .reveal-item,
  .motion-ready .hero-copy > .reveal-item,
  .motion-ready .footer-inner > .reveal-item {
    transform-origin: left center;
  }

  .motion-ready .portal-card.reveal-item,
  .motion-ready .conference-panel.reveal-item,
  .motion-ready .status-panel.reveal-item,
  .motion-ready .person-card.reveal-item,
  .motion-ready .guest-card.reveal-item {
    --reveal-y: 48px;
    --reveal-scale: .962;
    --reveal-blur: 16px;
    transform-origin: center bottom;
  }

  .motion-ready .letter-strip span.reveal-item {
    --reveal-y: 18px;
    --reveal-scale: .94;
    --reveal-blur: 8px;
  }

  .motion-ready .portal-card.reveal-item.is-visible:hover,
  .motion-ready .portal-card.reveal-item.is-visible:focus-visible,
  .motion-ready .portal-card.reveal-item.is-visible.is-active {
    transform: translate3d(0, -6px, 0);
  }

  .motion-ready .conference-panel.reveal-item.is-visible:hover,
  .motion-ready .conference-panel.reveal-item.is-visible:focus-within,
  .motion-ready .status-panel.reveal-item.is-visible:hover,
  .motion-ready .status-panel.reveal-item.is-visible:focus-within {
    transform: translate3d(0, -8px, 0);
  }

  .motion-ready .person-card.reveal-item.is-visible:hover,
  .motion-ready .person-card.reveal-item.is-visible:focus-within {
    transform: translate3d(0, -12px, 0);
  }

  .motion-ready .guest-card.reveal-item.is-visible:hover,
  .motion-ready .guest-card.reveal-item.is-visible:focus-within {
    transform: translate3d(0, -8px, 0);
  }

  .motion-ready .letter-strip span.reveal-item.is-visible:hover {
    transform: translate3d(0, -5px, 0);
  }
}

@media (max-width: 1240px) {
  .site-header,
  .hero,
  .page-hero,
  .content-band,
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-inner {
    gap: 42px;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .home-hero {
    min-height: 100svh;
  }

  .portal-wrap {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 1120px) {
  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    min-width: 0;
  }

  .top-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    padding: 1px;
    border: 1px solid rgba(244, 223, 174, .24);
    background: rgba(244, 223, 174, .24);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .top-nav a {
    padding: 18px;
    background: rgba(68, 8, 16, .96);
    text-align: center;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .home-hero {
    min-height: 100svh;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .conference-panel {
    max-width: 560px;
  }

  .year-orbit {
    width: 560px;
    max-width: 72%;
    opacity: .42;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header,
  .hero,
  .page-hero,
  .content-band,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: .75rem;
  }

  .brand-text strong {
    max-width: 210px;
    font-size: .92rem;
    white-space: normal;
  }

  .brand-text em {
    font-size: .62rem;
  }

  .top-nav {
    inset: 74px 12px auto;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 24px;
    background:
      radial-gradient(circle at 50% 16%, rgba(190, 48, 48, .11), transparent 42%),
      linear-gradient(180deg, rgba(64, 7, 15, .9), rgba(160, 24, 36, .64) 48%, rgba(64, 7, 15, .84)),
      url("../images/m/bgs.jpg") center top/cover no-repeat;
  }

  .home-hero {
    min-height: 100svh;
    padding-top: 88px;
    padding-bottom: 14px;
    grid-template-rows: auto 1fr;
  }

  .home-hero .hero-inner {
    align-self: start;
    gap: 0;
  }

  .home-hero .conference-panel {
    display: none;
  }

  .hero-backdrop,
  .year-orbit {
    opacity: .24;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: .82rem;
  }

  .hero h1 {
    font-size: 2.55rem;
    line-height: 1.16;
  }

  .home-hero .hero h1,
  .home-hero h1 {
    font-size: 2.28rem;
  }

  .hero-en {
    margin-top: 16px;
    font-size: .78rem;
    line-height: 1.65;
  }

  .hero-meta {
    margin: 22px 0 18px;
  }

  .hero-meta span {
    width: 100%;
    min-height: 38px;
    font-size: .88rem;
  }

  .theme-desc {
    font-size: .96rem;
    line-height: 1.85;
  }

  .home-hero .theme-desc {
    font-size: .92rem;
    line-height: 1.6;
  }

  .service-team {
    font-size: .9rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-link,
  .ghost-link {
    width: 100%;
    min-height: 48px;
  }

  .conference-panel {
    padding: 24px;
  }

  .conference-panel time {
    font-size: 2.1rem;
  }

  .countdown {
    gap: 8px;
  }

  .countdown span {
    min-height: 74px;
  }

  .countdown strong {
    font-size: 1.7rem;
  }

  .portal-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0;
    background: transparent;
    gap: 10px;
    box-shadow: none;
  }

  .home-portals {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: end;
    margin: 18px 0 0;
  }

  .portal-card {
    min-height: 132px;
    border: 1px solid rgba(244, 223, 174, .22);
    border-radius: 8px;
  }

  .home-portals .portal-card {
    min-height: 86px;
    padding: 14px 12px;
  }

  .home-portals .portal-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
    font-size: .8rem;
  }

  .portal-card strong {
    font-size: 1.03rem;
  }

  .portal-card em {
    font-size: .78rem;
  }

  .home-portals .portal-card em {
    margin-top: 4px;
    font-size: .68rem;
    line-height: 1.35;
  }

  .page-hero {
    min-height: 290px;
    padding-top: 108px;
    padding-bottom: 46px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 12vw, 2.35rem);
    line-height: 1.16;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .page-hero p:not(.eyebrow) {
    font-size: .98rem;
    line-height: 1.75;
  }

  .content-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-bottom: 10px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .section-note {
    margin-bottom: 22px;
  }

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

  .person-card {
    --portrait-size: min(38vw, 150px);
    padding: 0;
  }

  .person-card::before {
    margin-bottom: 18px;
  }

  .person-card-with-image::before,
  .person-card-with-image::after {
    display: none;
  }

  .person-card-with-image .person-avatar {
    margin-bottom: 18px;
  }

  .person-card strong {
    font-size: 1.42rem;
  }

  .person-card span {
    margin-top: 8px;
    font-size: .9rem;
    line-height: 1.52;
  }

  .guest-section-heading {
    margin-bottom: 44px;
  }

  .guest-section-heading p {
    font-size: .92rem;
  }

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

  .guest-card {
    padding-left: 13px;
  }

  .guest-card strong {
    font-size: 1.18rem;
  }

  .guest-card span {
    margin-top: 7px;
    font-size: .84rem;
    line-height: 1.48;
  }

  .status-panel {
    min-height: auto;
    padding: 26px;
  }

  .status-panel h3 {
    font-size: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support {
    margin: 0;
  }

  .back-top {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) and (max-width: 0px) {
  .site-header .brand,
  .site-header .nav-toggle,
  .home-page .hero-copy > *,
  .home-page .conference-panel,
  .home-page .home-portals .portal-card,
  .inner-page .page-hero-inner > *,
  .inner-page .guest-section-heading > *,
  .inner-page .letter-strip > *,
  .inner-page .status-panel,
  .inner-page .person-card,
  .inner-page .guest-card,
  .site-footer .footer-inner > * {
    opacity: 0;
    animation-fill-mode: both;
    animation-duration: 2.45s;
    animation-timing-function: var(--motion-ease);
    will-change: opacity, transform, filter;
  }

  .site-header .brand,
  .site-header .nav-toggle,
  .home-page .hero-copy > *,
  .inner-page .page-hero-inner > *,
  .inner-page .guest-section-heading > *,
  .site-footer .footer-inner > * {
    animation-name: mobileFadeUp;
  }

  .home-page .conference-panel,
  .home-page .home-portals .portal-card,
  .inner-page .status-panel,
  .inner-page .person-card,
  .inner-page .guest-card {
    animation-name: mobileFadeScale;
    transform-origin: center bottom;
    animation-duration: 2.65s;
  }

  .inner-page .letter-strip > * {
    animation-name: mobileFadeSoft;
  }

  .site-header .brand { animation-delay: .18s; }
  .site-header .nav-toggle { animation-delay: .36s; }

  .home-page .hero-copy > :nth-child(1) { animation-delay: .42s; }
  .home-page .hero-copy > :nth-child(2) { animation-delay: .66s; }
  .home-page .hero-copy > :nth-child(3) { animation-delay: .90s; }
  .home-page .hero-copy > :nth-child(4) { animation-delay: 1.14s; }
  .home-page .hero-copy > :nth-child(5) { animation-delay: 1.38s; }
  .home-page .conference-panel { animation-delay: 1.62s; }

  .home-page .home-portals .portal-card:nth-child(1) { animation-delay: 1.42s; }
  .home-page .home-portals .portal-card:nth-child(2) { animation-delay: 1.66s; }
  .home-page .home-portals .portal-card:nth-child(3) { animation-delay: 1.90s; }
  .home-page .home-portals .portal-card:nth-child(4) { animation-delay: 2.14s; }
  .home-page .home-portals .portal-card:nth-child(5) { animation-delay: 2.38s; }
  .home-page .home-portals .portal-card:nth-child(6) { animation-delay: 2.62s; }

  .inner-page .page-hero-inner > :nth-child(1) { animation-delay: .36s; }
  .inner-page .page-hero-inner > :nth-child(2) { animation-delay: .62s; }
  .inner-page .page-hero-inner > :nth-child(3) { animation-delay: .88s; }
  .inner-page .guest-section-heading > :nth-child(1) { animation-delay: .92s; }
  .inner-page .guest-section-heading > :nth-child(2) { animation-delay: 1.18s; }
  .inner-page .status-panel { animation-delay: 1.10s; }

  .inner-page .letter-strip > :nth-child(8n+1) { animation-delay: 1.18s; }
  .inner-page .letter-strip > :nth-child(8n+2) { animation-delay: 1.32s; }
  .inner-page .letter-strip > :nth-child(8n+3) { animation-delay: 1.46s; }
  .inner-page .letter-strip > :nth-child(8n+4) { animation-delay: 1.60s; }
  .inner-page .letter-strip > :nth-child(8n+5) { animation-delay: 1.74s; }
  .inner-page .letter-strip > :nth-child(8n+6) { animation-delay: 1.88s; }
  .inner-page .letter-strip > :nth-child(8n+7) { animation-delay: 2.02s; }
  .inner-page .letter-strip > :nth-child(8n+8) { animation-delay: 2.16s; }

  .inner-page .person-card:nth-child(8n+1),
  .inner-page .guest-card:nth-child(8n+1) { animation-delay: 1.18s; }
  .inner-page .person-card:nth-child(8n+2),
  .inner-page .guest-card:nth-child(8n+2) { animation-delay: 1.38s; }
  .inner-page .person-card:nth-child(8n+3),
  .inner-page .guest-card:nth-child(8n+3) { animation-delay: 1.58s; }
  .inner-page .person-card:nth-child(8n+4),
  .inner-page .guest-card:nth-child(8n+4) { animation-delay: 1.78s; }
  .inner-page .person-card:nth-child(8n+5),
  .inner-page .guest-card:nth-child(8n+5) { animation-delay: 1.98s; }
  .inner-page .person-card:nth-child(8n+6),
  .inner-page .guest-card:nth-child(8n+6) { animation-delay: 2.18s; }
  .inner-page .person-card:nth-child(8n+7),
  .inner-page .guest-card:nth-child(8n+7) { animation-delay: 2.38s; }
  .inner-page .person-card:nth-child(8n),
  .inner-page .guest-card:nth-child(8n) { animation-delay: 2.58s; }

  .site-footer .footer-inner > :nth-child(1) { animation-delay: .48s; }
  .site-footer .footer-inner > :nth-child(2) { animation-delay: .70s; }
  .site-footer .footer-inner > :nth-child(3) { animation-delay: .92s; }
  .site-footer .footer-inner > :nth-child(4) { animation-delay: 1.14s; }
  .site-footer .footer-inner > :nth-child(5) { animation-delay: 1.36s; }
}

@media (max-width: 380px) {
  .brand-text strong {
    max-width: 180px;
    font-size: .86rem;
  }

  .inner-page .portal-wrap {
    grid-template-columns: 1fr;
  }

  .person-grid,
  .person-grid-compact,
  .speaker-grid {
    grid-template-columns: 1fr;
  }

  .guest-directory {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.28rem;
  }

  .home-hero h1 {
    font-size: 2.05rem;
  }

  .home-portals .portal-card {
    min-height: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

.team-list span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(244, 223, 174, .28);
  border-radius: 999px;
  background: rgba(62, 13, 22, .06);
  color: var(--ink);
  font-size: 1rem;
}
