:root {
  color-scheme: light;
  --ink: #14161f;
  --soft-ink: #4f5867;
  --muted-ink: #737b8a;
  --line: #dbe0e8;
  --paper: #ffffff;
  --mist: #f4f6f9;
  --blue: #155dfc;
  --blue-dark: #0a2f8f;
  --green: #1f8a70;
  --coral: #e25544;
  --gold: #c58a1f;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(20, 22, 31, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

button,
input,
textarea {
  font: inherit;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 13, 23, 0.72), rgba(10, 13, 23, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 10px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 22px rgba(57, 213, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nav,
.admin-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #111827;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 13, 23, 0.92) 0%, rgba(10, 13, 23, 0.72) 42%, rgba(10, 13, 23, 0.26) 100%),
    linear-gradient(180deg, rgba(10, 13, 23, 0.06), rgba(10, 13, 23, 0.72));
}

.hero-content {
  position: relative;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 92px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 26px;
  left: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
}

.hero-facts span {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0 18px;
  font-weight: 700;
}

.hero-facts span:last-child {
  border-right: 0;
}

.section {
  padding: 92px clamp(20px, 5vw, 76px);
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading.compact {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section h2,
.admin-shell h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.demand-copy p {
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.75;
}

.pillar-grid,
.guest-grid,
.partner-grid,
.ticket-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

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

.pillar,
.guest,
.partner,
.ticket {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.pillar {
  padding: 26px;
}

.pillar strong,
.guest strong,
.ticket strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.pillar p,
.guest p,
.ticket p,
.partner p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.65;
}

.agenda-layout {
  display: grid;
  gap: 22px;
}

.agenda-day {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-top: 2px solid var(--ink);
  padding-top: 24px;
  gap: 34px;
}

.agenda-day h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.agenda-day p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.7;
}

.timeline,
.forum-grid {
  display: grid;
  gap: 10px;
}

.timeline-item,
.forum-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
}

.time {
  color: var(--blue);
  font-weight: 900;
}

.item-title {
  font-weight: 900;
}

.item-meta {
  color: var(--muted-ink);
  font-size: 14px;
}

.summit-agenda-day {
  grid-template-columns: minmax(260px, 350px) 1fr;
  align-items: start;
}

.agenda-intro {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(92, 225, 255, 0.2);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.76), rgba(7, 9, 20, 0.42)),
    linear-gradient(90deg, rgba(57, 213, 255, 0.06), transparent 58%, rgba(255, 79, 216, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.agenda-date-card {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(92, 225, 255, 0.32);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 20%, rgba(57, 213, 255, 0.22), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(255, 79, 216, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(57, 213, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 22px 22px, 22px 22px;
}

.agenda-date-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.agenda-date-card strong {
  margin-top: 2px;
  color: #fff;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(57, 213, 255, 0.28);
}

.agenda-date-card em {
  margin-top: 8px;
  color: var(--soft-ink);
  font-style: normal;
  font-weight: 900;
}

.agenda-intro-copy {
  display: grid;
  gap: 14px;
}

.agenda-intro-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08;
}

.agenda-intro-copy div {
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.75;
}

.summit-timeline {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 8px 0 8px 34px;
}

.summit-timeline::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 9px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(57, 213, 255, 0.82), rgba(255, 79, 216, 0.42), transparent);
  box-shadow: 0 0 18px rgba(57, 213, 255, 0.22);
}

.summit-group {
  display: grid;
  gap: 12px;
}

.summit-group-head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  border: 1px solid rgba(92, 225, 255, 0.16);
  border-radius: 12px;
  padding: 11px 14px;
  background: rgba(7, 9, 20, 0.52);
}

.summit-group-head span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.summit-group-head strong {
  color: #fff;
  font-size: 17px;
}

.summit-group-head em {
  margin-left: auto;
  color: var(--muted-ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.summit-group-list {
  display: grid;
  gap: 10px;
}

.summit-session {
  position: relative;
  display: grid;
  grid-template-columns: minmax(112px, 140px) 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(92, 225, 255, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(11, 15, 30, 0.46)),
    linear-gradient(90deg, rgba(57, 213, 255, 0.045), transparent 42%, rgba(255, 79, 216, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.summit-session::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.42;
}

.summit-session:hover {
  border-color: rgba(92, 225, 255, 0.42);
  box-shadow: 0 0 34px rgba(57, 213, 255, 0.12), 0 20px 48px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.summit-time,
.summit-session-main {
  position: relative;
  z-index: 1;
}

.summit-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.summit-time i {
  position: absolute;
  left: -44px;
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border: 3px solid #071018;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(130, 247, 93, 0.1), 0 0 22px rgba(130, 247, 93, 0.48);
}

.summit-session-main h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.35;
}

.summit-session-main p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 8px 0 0;
  color: var(--soft-ink);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.45;
}

.summit-session-main strong {
  color: rgba(239, 246, 255, 0.92);
  font-weight: 800;
}

.summit-break {
  position: relative;
  display: grid;
  grid-template-columns: minmax(112px, 140px) auto 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(130, 247, 93, 0.2);
  border-radius: 12px;
  padding: 14px 18px;
  background: linear-gradient(90deg, rgba(130, 247, 93, 0.12), rgba(57, 213, 255, 0.05), rgba(255, 79, 216, 0.06));
}

.summit-break::before {
  position: absolute;
  left: -44px;
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border: 3px solid #071018;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.1), 0 0 22px rgba(255, 209, 102, 0.38);
}

.summit-break span {
  color: var(--gold);
  font-weight: 900;
}

.summit-break strong {
  color: #fff;
  font-size: 17px;
}

.summit-break p {
  color: var(--soft-ink);
  font-size: 14px;
}

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

.forum-agenda-day .agenda-intro {
  position: relative;
  top: auto;
  grid-template-columns: 180px 1fr;
  align-items: center;
}

.forum-agenda-day .agenda-date-card {
  min-height: 124px;
}

.forum-modules {
  display: grid;
  gap: 30px;
}

.forum-module {
  position: relative;
  border: 1px solid rgba(155, 190, 255, 0.38);
  border-radius: 28px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(57, 213, 255, 0.16), transparent 28%),
    radial-gradient(circle at 80% 6%, rgba(255, 79, 216, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(205, 230, 255, 0.16), rgba(57, 213, 255, 0.06)),
    rgba(8, 14, 31, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 28px 80px rgba(0, 0, 0, 0.28);
}

.forum-module::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(139, 180, 255, 0.28);
  border-radius: 22px;
  content: "";
  pointer-events: none;
}

.forum-module::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 76%);
  opacity: 0.5;
}

.forum-module-head,
.forum-tabs,
.forum-panels {
  position: relative;
  z-index: 1;
}

.forum-module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 0 8px;
}

.forum-module-head p {
  margin: 0 0 4px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.forum-module-head h4 {
  margin: 0;
  color: #fff;
  font-size: 24px;
}

.forum-module-head span {
  border: 1px solid rgba(92, 225, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--soft-ink);
  background: rgba(7, 9, 20, 0.48);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.forum-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.forum-tabs button {
  min-height: 58px;
  border: 1px solid rgba(92, 225, 255, 0.2);
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(239, 246, 255, 0.72);
  background: rgba(239, 246, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 14px 34px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 900;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.forum-tabs button:nth-child(2) {
  border-color: rgba(255, 79, 216, 0.24);
}

.forum-tabs button:nth-child(3) {
  border-color: rgba(130, 247, 93, 0.22);
}

.forum-tabs button:hover,
.forum-tabs button.is-active {
  color: #fff;
  transform: translateY(-2px);
}

.forum-tabs button.is-active {
  border-color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(90deg, rgba(57, 213, 255, 0.28), rgba(255, 79, 216, 0.22));
  box-shadow: 0 0 32px rgba(57, 213, 255, 0.2), 0 16px 34px rgba(255, 79, 216, 0.16);
}

.forum-panel {
  display: none;
}

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

.forum-panel-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 8px 18px;
}

.forum-panel-title span {
  color: var(--blue);
  font-weight: 900;
}

.forum-panel-title strong {
  color: #fff;
  font-size: 22px;
}

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

.forum-session-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 24px;
  color: #18356c;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(212, 234, 255, 0.92)),
    linear-gradient(135deg, rgba(57, 213, 255, 0.22), transparent);
  box-shadow: 0 18px 46px rgba(76, 149, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.forum-session-time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #203d82;
  font-size: 18px;
  font-weight: 900;
}

.forum-session-time span {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #39d5ff, #8bbcff);
  box-shadow: 0 8px 18px rgba(36, 145, 255, 0.35);
}

.forum-session-time span::before,
.forum-session-time span::after {
  position: absolute;
  left: 12px;
  top: 6px;
  width: 2px;
  height: 9px;
  border-radius: 9px;
  content: "";
  background: rgba(255, 255, 255, 0.84);
  transform-origin: bottom;
}

.forum-session-time span::after {
  top: 13px;
  height: 7px;
  transform: rotate(125deg);
}

.forum-session-card h5 {
  margin: 38px 0 22px;
  color: #162f73;
  font-size: clamp(19px, 1.5vw, 25px);
  line-height: 1.45;
}

.forum-speaker {
  border-top: 1px solid rgba(32, 61, 130, 0.16);
  padding-top: 16px;
}

.forum-speaker strong {
  display: block;
  color: #142a67;
  font-size: 18px;
}

.forum-speaker p,
.forum-summary {
  color: #2f4a87;
  line-height: 1.7;
}

.forum-speaker p {
  margin: 6px 0 0;
  font-weight: 700;
}

.forum-summary {
  margin: 20px 0 0;
  font-weight: 700;
}

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

.guest {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.guest::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 20, 0.78));
}

.guest:hover {
  border-color: rgba(92, 225, 255, 0.48);
  box-shadow: 0 0 34px rgba(57, 213, 255, 0.12), 0 20px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.guest-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.1) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 45%, rgba(130, 247, 93, 0.13) 45% 45.4%, transparent 45.4%);
  background-size: 26px 26px, 26px 26px, auto;
  opacity: 0.72;
}

.guest-copy,
.guest-topic {
  position: relative;
  z-index: 1;
}

.guest-avatar {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(92, 225, 255, 0.62);
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(57, 213, 255, 0.34), transparent 34%),
    linear-gradient(90deg, rgba(57, 213, 255, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.16) 1px, transparent 1px),
    linear-gradient(135deg, #10192f, #1b0f32);
  background-position: center;
  background-size: auto, 12px 12px, 12px 12px, auto;
  box-shadow:
    0 0 0 5px rgba(7, 9, 20, 0.94),
    0 0 0 7px rgba(255, 79, 216, 0.22),
    0 0 32px rgba(57, 213, 255, 0.22),
    inset 0 0 18px rgba(255, 79, 216, 0.08);
}

.guest-avatar.has-image {
  background: #10192f;
}

.guest-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
}

.guest-avatar span {
  color: rgba(239, 246, 255, 0.9);
  font-size: 22px;
  font-weight: 900;
}

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

.guest-copy {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.guest-copy strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.guest-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.guest-topic {
  margin-top: auto;
  border-top: 1px solid rgba(92, 225, 255, 0.16);
  width: 100%;
  padding-top: 18px;
}

.guest-topic span {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.guest-topic b {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 17px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.highlights-section {
  overflow: hidden;
}

.highlights-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(57, 213, 255, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(57, 213, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.05) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  opacity: 0.74;
}

.highlights-heading {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.highlights-orbit {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 420px) minmax(260px, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  margin-top: 36px;
}

.highlight-stack {
  display: grid;
  gap: 16px;
}

.highlight-stack-left .highlight-card:nth-child(2) {
  transform: translateX(-26px);
}

.highlight-stack-right .highlight-card:nth-child(2) {
  transform: translateX(26px);
}

.highlight-core {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(92, 225, 255, 0.22);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 32%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 50% 55%, rgba(57, 213, 255, 0.2), transparent 45%),
    linear-gradient(145deg, rgba(8, 17, 38, 0.88), rgba(7, 9, 20, 0.72));
  box-shadow:
    0 0 62px rgba(57, 213, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 60px rgba(255, 79, 216, 0.05);
  pointer-events: none;
}

.highlight-core::before {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(92, 225, 255, 0.24);
  border-radius: 22px;
  content: "";
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(130, 247, 93, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.7;
}

.highlight-core::after {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(57, 213, 255, 0.22), transparent 66%);
  filter: blur(16px);
}

.highlight-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(57, 213, 255, 0.26) 44% 44.5%, transparent 44.5%),
    linear-gradient(64deg, transparent 0 52%, rgba(255, 79, 216, 0.2) 52% 52.5%, transparent 52.5%);
  opacity: 0.76;
}

.highlight-ring {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(92, 225, 255, 0.26);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-18deg);
  box-shadow: 0 0 28px rgba(57, 213, 255, 0.12);
}

.ring-two {
  inset: 23%;
  border-color: rgba(255, 79, 216, 0.24);
  transform: rotateX(68deg) rotateZ(58deg);
}

.ring-three {
  inset: 28%;
  border-color: rgba(130, 247, 93, 0.22);
  transform: rotateX(68deg) rotateZ(118deg);
}

.highlight-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(132px, 16vw, 176px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #39d5ff, #255dff 48%, #ff4fd8);
  box-shadow:
    0 0 54px rgba(57, 213, 255, 0.42),
    0 24px 64px rgba(0, 0, 0, 0.34),
    inset -18px -22px 36px rgba(5, 19, 80, 0.34),
    inset 14px 12px 28px rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%) rotateX(8deg) rotateZ(-2deg);
}

.highlight-chip b {
  font-size: clamp(52px, 7vw, 78px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.44), 8px 10px 18px rgba(0, 0, 0, 0.22);
}

.chip-pin {
  position: absolute;
  background: linear-gradient(90deg, rgba(57, 213, 255, 0), rgba(57, 213, 255, 0.8), rgba(57, 213, 255, 0));
}

.pin-a,
.pin-b {
  left: -34px;
  right: -34px;
  height: 2px;
}

.pin-a {
  top: 34%;
}

.pin-b {
  bottom: 34%;
}

.pin-c,
.pin-d {
  top: -34px;
  bottom: -34px;
  width: 2px;
  background: linear-gradient(180deg, rgba(57, 213, 255, 0), rgba(130, 247, 93, 0.72), rgba(57, 213, 255, 0));
}

.pin-c {
  left: 34%;
}

.pin-d {
  right: 34%;
}

.highlight-signal {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(57, 213, 255, 0), rgba(57, 213, 255, 0.72), rgba(130, 247, 93, 0.28));
  transform-origin: left center;
}

.signal-a {
  width: 42%;
  transform: rotate(22deg);
}

.signal-b {
  width: 36%;
  transform: rotate(146deg);
}

.signal-c {
  width: 39%;
  transform: rotate(268deg);
}

.highlight-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eff6ff;
  box-shadow: 0 0 18px rgba(57, 213, 255, 0.7);
}

.dot-a {
  left: 78%;
  top: 58%;
}

.dot-b {
  left: 24%;
  top: 34%;
}

.dot-c {
  left: 46%;
  top: 84%;
}

.dot-d {
  left: 66%;
  top: 22%;
}

.highlight-card {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(92, 225, 255, 0.24);
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 24, 48, 0.9), rgba(7, 10, 24, 0.76)),
    linear-gradient(90deg, rgba(57, 213, 255, 0.08), transparent 48%, rgba(130, 247, 93, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.highlight-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.38;
}

.highlight-card:hover {
  border-color: rgba(92, 225, 255, 0.46);
  box-shadow: 0 0 28px rgba(57, 213, 255, 0.12), 0 22px 52px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.highlight-card > * {
  position: relative;
  z-index: 1;
}

.highlight-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.2;
}

.highlight-card p {
  margin: 12px 0 0;
  color: var(--soft-ink);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.8;
}

.highlight-icon {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 225, 255, 0.58);
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(57, 213, 255, 0.24), rgba(255, 79, 216, 0.14));
  box-shadow: 0 0 22px rgba(57, 213, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.highlight-icon::before {
  position: absolute;
  content: attr(data-icon);
  color: #eff6ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 12px rgba(57, 213, 255, 0.5);
}

.highlight-icon::after {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: #82f75d;
  box-shadow: 0 0 12px rgba(130, 247, 93, 0.7);
}

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

.partner {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
}

.partner-logo {
  max-width: 180px;
  max-height: 56px;
}

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

.ticket {
  position: relative;
  padding: 26px;
}

.ticket.featured {
  border-color: rgba(21, 93, 252, 0.5);
  box-shadow: var(--shadow);
}

.price {
  margin: 16px 0;
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
}

.demand-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
  background: #111827;
  color: #fff;
}

.demand-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.demand-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demand-list li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.gallery-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.gallery-item {
  min-height: 280px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item span {
  width: 100%;
  padding: 22px;
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 13, 23, 0), rgba(10, 13, 23, 0.82));
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 76px);
  color: var(--soft-ink);
  border-top: 1px solid var(--line);
}

.footer a {
  color: var(--blue);
  font-weight: 800;
}

.admin-body {
  min-height: 100vh;
  background: var(--mist);
}

.admin-shell {
  min-height: 100vh;
}

.login-panel {
  width: min(880px, calc(100% - 40px));
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
  margin: 0 auto;
}

.login-form,
.editor-surface,
.password-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.login-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.55;
}

.hidden {
  display: none !important;
}

.admin-panel {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: #111827;
  color: #fff;
}

.admin-nav {
  align-items: stretch;
  flex-direction: column;
  gap: 6px;
}

.admin-nav button,
.admin-preview {
  border: 0;
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}

.admin-nav button.active,
.admin-nav button:hover,
.admin-preview:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.admin-preview {
  margin-top: auto;
}

.admin-main {
  min-width: 0;
  padding: 28px;
}

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

.editor-surface {
  padding: 24px;
}

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

.editor-grid .wide {
  grid-column: 1 / -1;
}

.list-editor {
  display: grid;
  gap: 14px;
}

.list-item {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
}

.list-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.list-item-head strong {
  font-size: 18px;
}

.remove-button,
.add-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.remove-button {
  color: #b42318;
}

.add-button {
  color: var(--blue);
}

.json-help {
  margin: 0 0 14px;
  color: var(--soft-ink);
  line-height: 1.6;
}

.json-editor {
  min-height: 480px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--soft-ink);
  font-weight: 800;
}

.form-message.error {
  color: #b42318;
}

.form-message.success {
  color: var(--green);
}

.password-card {
  display: grid;
  max-width: 520px;
  gap: 16px;
  padding: 22px;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-facts,
  .pillar-grid,
  .guest-grid,
  .partner-grid,
  .ticket-grid,
  .gallery-grid,
  .demand-section,
  .login-panel,
  .admin-panel {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: -72px 20px 24px;
    background: rgba(10, 13, 23, 0.7);
  }

  .hero-facts span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .agenda-day,
  .timeline-item,
  .forum-item,
  .editor-grid {
    grid-template-columns: 1fr;
  }

  .summit-agenda-day,
  .summit-session,
  .summit-break {
    grid-template-columns: 1fr;
  }

  .agenda-intro {
    position: static;
  }

  .forum-agenda-day .agenda-intro {
    grid-template-columns: 1fr;
  }

  .summit-timeline {
    padding-left: 24px;
  }

  .summit-session {
    gap: 14px;
  }

  .summit-group-head em {
    width: 100%;
    margin-left: 0;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  body:not(.admin-body) .topbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  body:not(.admin-body) .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  body:not(.admin-body) .nav a {
    min-width: max-content;
  }

  .nav-cta {
    display: none;
  }

  .forum-tabs,
  .forum-session-grid {
    grid-template-columns: 1fr;
  }

  .forum-session-card {
    min-height: 0;
  }

  .highlights-orbit {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .highlight-core {
    width: min(340px, 76vw);
    order: -1;
  }

  .highlight-stack {
    gap: 16px;
  }

  .highlight-stack-left .highlight-card:nth-child(2),
  .highlight-stack-right .highlight-card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 68px 20px;
  }

  .hero {
    min-height: 820px;
  }

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

  .hero-content {
    padding-top: 132px;
  }

  .section-heading.compact,
  .admin-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

body:not(.admin-body) {
  --ink: #eff6ff;
  --soft-ink: #b8c7df;
  --muted-ink: #7f90ad;
  --line: rgba(92, 225, 255, 0.2);
  --paper: #070914;
  --mist: #0c1020;
  --blue: #39d5ff;
  --blue-dark: #155dfc;
  --green: #82f75d;
  --coral: #ff4fd8;
  --gold: #ffd166;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.035) 1px, transparent 1px),
    #070914;
  background-size: 72px 72px, 72px 72px, auto;
}

body:not(.admin-body)::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 6px),
    linear-gradient(115deg, transparent 0 18%, rgba(57, 213, 255, 0.08) 18% 18.35%, transparent 18.35% 54%, rgba(130, 247, 93, 0.06) 54% 54.3%, transparent 54.3% 100%);
  opacity: 0.7;
}

body:not(.admin-body) .topbar {
  --nav-light-x: 50%;
  --nav-light-y: 50%;
  top: 18px;
  right: clamp(14px, 3vw, 48px);
  left: clamp(14px, 3vw, 48px);
  width: auto;
  align-items: center;
  border: 1px solid rgba(92, 225, 255, 0.24);
  border-radius: 18px;
  padding: 10px 12px 10px 14px;
  background:
    radial-gradient(circle at var(--nav-light-x) var(--nav-light-y), rgba(57, 213, 255, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(12, 18, 36, 0.78), rgba(12, 10, 30, 0.64));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(1.4);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease, transform 0.25s ease;
}

body:not(.admin-body) .topbar::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, rgba(57, 213, 255, 0.68), rgba(255, 79, 216, 0.52), rgba(130, 247, 93, 0.42), rgba(57, 213, 255, 0.68));
  opacity: 0.38;
  filter: blur(9px);
  transition: opacity 0.25s ease;
}

body:not(.admin-body) .topbar::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, 0.16) 18% 18.4%, transparent 18.4% 100%),
    repeating-linear-gradient(90deg, rgba(92, 225, 255, 0.08) 0 1px, transparent 1px 18px);
  opacity: 0.58;
}

body:not(.admin-body) .topbar:hover::before {
  opacity: 0.62;
}

body:not(.admin-body) .topbar.is-scrolled {
  border-color: rgba(92, 225, 255, 0.38);
  padding-top: 8px;
  padding-bottom: 8px;
  transform: translateY(-4px);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.38), 0 0 32px rgba(57, 213, 255, 0.11);
}

body:not(.admin-body) .brand-mark {
  border-color: rgba(57, 213, 255, 0.7);
  background: linear-gradient(135deg, rgba(57, 213, 255, 0.25), rgba(255, 79, 216, 0.18));
  box-shadow: 0 0 28px rgba(57, 213, 255, 0.22);
}

body:not(.admin-body) .brand-logo {
  filter: none;
}

body:not(.admin-body) .brand,
body:not(.admin-body) .nav,
body:not(.admin-body) .nav-cta {
  position: relative;
  z-index: 2;
}

body:not(.admin-body) .nav {
  gap: 4px;
  border: 1px solid rgba(92, 225, 255, 0.14);
  border-radius: 999px;
  padding: 5px;
  background: rgba(3, 7, 18, 0.34);
  box-shadow: inset 0 0 28px rgba(57, 213, 255, 0.06);
}

body:not(.admin-body) .nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 15px;
  overflow: hidden;
  color: rgba(239, 246, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body:not(.admin-body) .nav a::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(57, 213, 255, 0.22), rgba(255, 79, 216, 0.2), transparent);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 0.22s ease, transform 0.32s ease;
}

body:not(.admin-body) .nav a::after {
  position: absolute;
  right: 16px;
  bottom: 6px;
  left: 16px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #39d5ff, #ff4fd8);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body:not(.admin-body) .nav a:hover,
body:not(.admin-body) .nav a.is-active {
  border-color: rgba(92, 225, 255, 0.28);
  color: #fff;
  background: rgba(57, 213, 255, 0.11);
  box-shadow: 0 0 22px rgba(57, 213, 255, 0.12), inset 0 0 18px rgba(255, 79, 216, 0.07);
  transform: translateY(-1px);
}

body:not(.admin-body) .nav a:hover::before,
body:not(.admin-body) .nav a.is-active::before {
  opacity: 1;
  transform: translateX(70%);
}

body:not(.admin-body) .nav a:hover::after,
body:not(.admin-body) .nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(130, 247, 93, 0.5);
  border-radius: 999px;
  padding: 0 17px;
  color: #04101d;
  background: linear-gradient(90deg, #39d5ff, #82f75d);
  box-shadow: 0 0 26px rgba(57, 213, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(130, 247, 93, 0.28), 0 0 24px rgba(255, 79, 216, 0.12);
}

body:not(.admin-body) .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 20px 58px;
  isolation: isolate;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(57, 213, 255, 0.16), transparent 38%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 79, 216, 0.12), transparent 42%),
    linear-gradient(180deg, #060914 0%, #08101f 54%, #070914 100%);
}

body:not(.admin-body) .hero-media {
  filter: saturate(1.08) contrast(1.04) brightness(0.34);
  opacity: 0.36;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.07) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px;
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.72) 44%, transparent 78%);
  opacity: 0.46;
}

body:not(.admin-body) .hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 0 18%, rgba(57, 213, 255, 0.08) 18.2%, transparent 19.2%),
    linear-gradient(63deg, transparent 0 78%, rgba(255, 79, 216, 0.08) 78.2%, transparent 79.2%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 20%);
  mix-blend-mode: screen;
  opacity: 0.58;
}

body:not(.admin-body) .hero-shade {
  background:
    radial-gradient(ellipse at center, rgba(7, 9, 20, 0.04) 0%, rgba(7, 9, 20, 0.62) 68%, rgba(7, 9, 20, 0.92) 100%),
    linear-gradient(180deg, rgba(7, 9, 20, 0.32), rgba(7, 9, 20, 0.94) 100%);
}

body:not(.admin-body) .hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(7, 9, 20, 0.9)),
    repeating-linear-gradient(0deg, rgba(57, 213, 255, 0.09) 0 1px, transparent 1px 20px);
}

.hero-center {
  position: relative;
  z-index: 4;
  width: min(1120px, 100%);
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2vh, 26px);
  margin: 0 auto;
}

.hero-visual {
  position: relative;
  width: min(680px, 86vw);
  aspect-ratio: 16 / 8.4;
  margin: 0 auto;
  perspective: 1200px;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.42));
  --ai-rotate-x: 8deg;
  --ai-rotate-y: -12deg;
  --ai-light-x: 50%;
  --ai-light-y: 42%;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 4% 5%;
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--ai-light-x) var(--ai-light-y), rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 34% 44%, rgba(57, 213, 255, 0.24), transparent 26%),
    radial-gradient(circle at 68% 42%, rgba(255, 79, 216, 0.18), transparent 29%),
    radial-gradient(circle at 50% 72%, rgba(130, 247, 93, 0.12), transparent 32%);
  filter: blur(18px);
  opacity: 0.86;
}

.hero-visual::after {
  right: 16%;
  bottom: 7%;
  left: 16%;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(57, 213, 255, 0.28), rgba(255, 79, 216, 0.12) 38%, transparent 70%);
  filter: blur(10px);
  transform: rotateX(58deg);
}

.ai-sculpture {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: rotateX(var(--ai-rotate-x)) rotateY(var(--ai-rotate-y)) rotateZ(-1deg);
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ai-sculpture::before {
  position: absolute;
  inset: 10% 12%;
  border: 1px solid rgba(92, 225, 255, 0.2);
  border-radius: 50%;
  content: "";
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.06) 1px, transparent 1px),
    rgba(7, 12, 28, 0.28);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: inset 0 0 36px rgba(57, 213, 255, 0.08), 0 0 44px rgba(57, 213, 255, 0.08);
  transform: translateZ(-42px) rotateX(68deg);
}

.ai-sculpture::after {
  position: absolute;
  inset: 22% 23%;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(130, 247, 93, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse at center, #000 0 38%, transparent 70%);
  opacity: 0.56;
  transform: translateZ(18px) rotateX(66deg);
}

.ai-orbit-shell {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: ai-orbit-spin 16s linear infinite;
}

.ai-orbit-ring {
  position: absolute;
  inset: 18% 7%;
  border: 1px solid rgba(92, 225, 255, 0.52);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(57, 213, 255, 0.16), inset 0 0 22px rgba(57, 213, 255, 0.08);
  transform-style: preserve-3d;
  transform: translateZ(28px) rotateX(67deg) rotateZ(0deg);
}

.ring-middle {
  inset: 24% 15%;
  border-color: rgba(255, 79, 216, 0.42);
  box-shadow: 0 0 24px rgba(255, 79, 216, 0.12), inset 0 0 24px rgba(255, 79, 216, 0.08);
  transform: translateZ(58px) rotateX(64deg) rotateZ(-16deg);
}

.ring-inner {
  inset: 29% 23%;
  border-color: rgba(130, 247, 93, 0.42);
  box-shadow: 0 0 22px rgba(130, 247, 93, 0.12), inset 0 0 20px rgba(130, 247, 93, 0.06);
  transform: translateZ(86px) rotateX(62deg) rotateZ(22deg);
}

.ai-orbit-ring::before,
.ai-orbit-ring::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #eff6ff;
  box-shadow: 0 0 16px currentColor;
}

.ai-orbit-ring::before {
  top: 18%;
  left: 8%;
  color: #39d5ff;
}

.ai-orbit-ring::after {
  right: 12%;
  bottom: 20%;
  color: #ff4fd8;
}

.ai-core {
  position: absolute;
  left: 50%;
  top: 51%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.8vw, 22px);
  transform: translate(-50%, -50%) translateZ(118px) rotateX(2deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 0 36px rgba(57, 213, 255, 0.3));
}

.ai-letter {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, #f8fbff 0%, #9eeaff 24%, #39d5ff 48%, #ff4fd8 74%, #fff0a8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.52);
  font-family: "Arial Black", Impact, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(118px, 17vw, 238px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow:
    1px 1px 0 #12667f,
    2px 2px 0 #105a74,
    3px 3px 0 #0e506c,
    4px 4px 0 #0c455f,
    5px 5px 0 #0a3b52,
    6px 6px 0 #092f44,
    13px 18px 28px rgba(0, 0, 0, 0.54),
    0 0 32px rgba(57, 213, 255, 0.35);
  transform: translateZ(36px) skewY(-4deg);
}

.ai-letter::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: attr(data-letter);
  color: rgba(7, 20, 36, 0.96);
  -webkit-text-stroke: 2px rgba(57, 213, 255, 0.28);
  transform: translate3d(17px, 19px, -58px);
}

.ai-letter::after {
  position: absolute;
  inset: 8% 2% auto 8%;
  height: 20%;
  border-radius: 50%;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
  filter: blur(8px);
  opacity: 0.48;
  transform: translateZ(34px);
}

.ai-letter-i {
  background-image: linear-gradient(135deg, #fff 0%, #d8f8ff 18%, #82f75d 42%, #39d5ff 68%, #ff4fd8 100%);
  text-shadow:
    1px 1px 0 #237e59,
    2px 2px 0 #1f704f,
    3px 3px 0 #1a6145,
    4px 4px 0 #15523b,
    5px 5px 0 #104431,
    6px 6px 0 #0c3428,
    13px 18px 28px rgba(0, 0, 0, 0.54),
    0 0 30px rgba(130, 247, 93, 0.26);
}

.ai-keyword {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--tone), transparent 38%);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(239, 246, 255, 0.9);
  background:
    radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--tone), transparent 68%), transparent 54%),
    rgba(8, 15, 32, 0.74);
  box-shadow: 0 0 20px color-mix(in srgb, var(--tone), transparent 76%), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: clamp(11px, 1.3vw, 15px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(var(--angle)) translateX(var(--distance)) rotate(var(--label)) translateZ(var(--depth));
  transform-style: preserve-3d;
}

.ai-keyword.strong {
  min-height: 36px;
  padding: 0 14px;
  color: #fff;
  font-size: clamp(12px, 1.45vw, 17px);
}

.ai-keyword::before {
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  content: "";
  background: color-mix(in srgb, var(--tone), transparent 82%);
  filter: blur(10px);
  opacity: 0.72;
  z-index: -1;
}

.ai-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(239, 246, 255, 0.78);
  border-radius: 50%;
  background: #071020;
  box-shadow: 0 0 16px rgba(57, 213, 255, 0.48), inset 0 0 8px rgba(57, 213, 255, 0.3);
  transform-style: preserve-3d;
}

.node-a {
  transform: rotate(16deg) translateX(clamp(116px, 25vw, 224px)) translateZ(82px);
}

.node-b {
  transform: rotate(112deg) translateX(clamp(124px, 26vw, 236px)) translateZ(58px);
}

.node-c {
  transform: rotate(206deg) translateX(clamp(118px, 24vw, 226px)) translateZ(66px);
}

.node-d {
  transform: rotate(306deg) translateX(clamp(126px, 27vw, 244px)) translateZ(72px);
}

.ai-circuit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(112px, 22vw, 226px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 213, 255, 0.72), rgba(255, 79, 216, 0.48), transparent);
  box-shadow: 0 0 14px rgba(57, 213, 255, 0.24);
  transform-origin: left center;
}

.circuit-a {
  transform: translateZ(64px) rotate(16deg);
}

.circuit-b {
  transform: translateZ(54px) rotate(136deg);
}

.circuit-c {
  transform: translateZ(76px) rotate(258deg);
}

.ai-core-glint {
  position: absolute;
  left: 47%;
  top: 18%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
  filter: blur(0.2px);
  opacity: 0.72;
  transform: translateZ(148px) rotate(-16deg);
}

@keyframes ai-orbit-spin {
  to {
    transform: rotateZ(360deg);
  }
}

body:not(.admin-body) .hero-content {
  z-index: 4;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 0;
}

body:not(.admin-body) .eyebrow,
body:not(.admin-body) .section-kicker {
  color: var(--coral);
  text-shadow: 0 0 18px rgba(255, 79, 216, 0.38);
}

body:not(.admin-body) .hero h1 {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 1.02;
  text-shadow: 0 0 34px rgba(57, 213, 255, 0.32);
}

body:not(.admin-body) .hero h1::after {
  display: block;
  width: min(380px, 72vw);
  height: 3px;
  margin: 16px auto 0;
  content: "";
  background: linear-gradient(90deg, transparent, #39d5ff, #ff4fd8 54%, transparent);
  box-shadow: 0 0 24px rgba(57, 213, 255, 0.46);
}

body:not(.admin-body) .hero-subtitle {
  max-width: 700px;
  margin-top: 14px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(239, 246, 255, 0.84);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.5;
}

body:not(.admin-body) .button.primary {
  color: #05111f;
  background: linear-gradient(90deg, #39d5ff, #82f75d);
  box-shadow: 0 0 28px rgba(57, 213, 255, 0.28);
}

body:not(.admin-body) .button.ghost {
  border-color: rgba(255, 79, 216, 0.46);
  color: #eff6ff;
  background: rgba(255, 79, 216, 0.1);
}

body:not(.admin-body) .hero-facts {
  position: static;
  width: auto;
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  margin: 18px auto 0;
  border: 1px solid rgba(92, 225, 255, 0.22);
  border-radius: 999px;
  padding: 4px;
  background: rgba(7, 9, 20, 0.66);
  backdrop-filter: blur(14px);
}

body:not(.admin-body) .hero-facts span {
  min-height: 34px;
  border-color: rgba(92, 225, 255, 0.18);
  padding: 0 18px;
  color: rgba(239, 246, 255, 0.82);
  font-size: 14px;
}

body:not(.admin-body) .hero-actions {
  justify-content: center;
  margin-top: 18px;
}

@media (min-height: 820px) and (min-width: 900px) {
  body:not(.admin-body) .hero {
    padding-top: 126px;
    padding-bottom: 76px;
  }

  .hero-center {
    gap: 28px;
  }

  .hero-visual {
    width: min(720px, 82vw);
  }

  body:not(.admin-body) .hero h1 {
    font-size: clamp(58px, 7vw, 108px);
  }

  body:not(.admin-body) .hero-subtitle {
    font-size: clamp(18px, 1.8vw, 24px);
  }
}

body:not(.admin-body) .section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(57, 213, 255, 0.04), transparent 30%),
    linear-gradient(225deg, rgba(255, 79, 216, 0.04), transparent 32%);
}

body:not(.admin-body) .section.muted,
body:not(.admin-body) .tickets-section {
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.055) 1px, transparent 1px),
    #0a0f1e;
  background-size: 64px 64px, 64px 64px, auto;
}

body:not(.admin-body) .section h2 {
  color: #f8fbff;
  text-shadow: 0 0 24px rgba(57, 213, 255, 0.16);
}

body:not(.admin-body) .section-heading p:not(.section-kicker),
body:not(.admin-body) .demand-copy p {
  color: var(--soft-ink);
}

body:not(.admin-body) .pillar,
body:not(.admin-body) .guest,
body:not(.admin-body) .partner,
body:not(.admin-body) .ticket,
body:not(.admin-body) .timeline-item,
body:not(.admin-body) .forum-item {
  border-color: rgba(92, 225, 255, 0.22);
  color: #eff6ff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(17, 24, 39, 0.72)),
    linear-gradient(90deg, rgba(57, 213, 255, 0.06), transparent 44%, rgba(255, 79, 216, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 42px rgba(0, 0, 0, 0.2);
}

body:not(.admin-body) .pillar,
body:not(.admin-body) .ticket,
body:not(.admin-body) .partner {
  position: relative;
  overflow: hidden;
}

body:not(.admin-body) .pillar::before,
body:not(.admin-body) .ticket::before,
body:not(.admin-body) .partner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #39d5ff, #ff4fd8);
  box-shadow: 0 0 18px rgba(57, 213, 255, 0.55);
}

body:not(.admin-body) .pillar p,
body:not(.admin-body) .guest p,
body:not(.admin-body) .ticket p,
body:not(.admin-body) .partner p,
body:not(.admin-body) .agenda-day p {
  color: var(--soft-ink);
}

body:not(.admin-body) .agenda-day {
  border-top-color: rgba(57, 213, 255, 0.62);
}

body:not(.admin-body) .agenda-day h3,
body:not(.admin-body) .item-title,
body:not(.admin-body) .guest-topic {
  color: #fff;
}

body:not(.admin-body) .time,
body:not(.admin-body) .price {
  color: var(--blue);
  text-shadow: 0 0 18px rgba(57, 213, 255, 0.28);
}

body:not(.admin-body) .item-meta {
  color: var(--muted-ink);
}

body:not(.admin-body) .forum-session-card {
  color: #18356c;
}

body:not(.admin-body) .forum-session-card h5 {
  color: #162f73;
}

body:not(.admin-body) .forum-speaker strong {
  color: #142a67;
}

body:not(.admin-body) .forum-speaker p,
body:not(.admin-body) .agenda-day .forum-summary {
  color: #2f4a87;
}

body:not(.admin-body) .guest-avatar {
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.16) 1px, transparent 1px),
    linear-gradient(135deg, #10192f, #1b0f32);
  background-size: 18px 18px, 18px 18px, auto;
}

body:not(.admin-body) .guest-avatar.has-image {
  background-size: cover;
}

body:not(.admin-body) .ticket.featured {
  border-color: rgba(130, 247, 93, 0.52);
  box-shadow: 0 0 40px rgba(130, 247, 93, 0.12), 0 24px 70px rgba(0, 0, 0, 0.32);
}

body:not(.admin-body) .demand-section {
  background:
    linear-gradient(90deg, rgba(57, 213, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #080b18, #11172a 58%, #160d2a);
  background-size: 56px 56px, 56px 56px, auto;
}

body:not(.admin-body) .demand-list li {
  border-color: rgba(92, 225, 255, 0.22);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: inset 3px 0 0 rgba(255, 79, 216, 0.72);
}

body:not(.admin-body) .gallery-item {
  border: 1px solid rgba(92, 225, 255, 0.22);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  filter: saturate(1.1) contrast(1.04);
}

body:not(.admin-body) .gallery-item span {
  background:
    linear-gradient(180deg, transparent, rgba(7, 9, 20, 0.9)),
    linear-gradient(90deg, rgba(57, 213, 255, 0.18), rgba(255, 79, 216, 0.1));
}

body:not(.admin-body) .footer {
  color: var(--soft-ink);
  border-top-color: rgba(92, 225, 255, 0.18);
  background: #070914;
}

body:not(.admin-body) .footer a {
  color: var(--blue);
}

@media (max-width: 1180px) {
  body:not(.admin-body) .hero-content {
    margin-right: auto;
    margin-left: auto;
  }

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

@media (max-width: 980px) {
  .guest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body:not(.admin-body) .hero {
    min-height: 840px;
    padding: 112px 16px 54px;
  }

  body:not(.admin-body) .hero-content {
    width: 100%;
  }

  .hero-center {
    gap: 16px;
  }

  .hero-visual {
    width: min(520px, 96vw);
  }

  body:not(.admin-body) .hero h1 {
    font-size: clamp(42px, 15vw, 58px);
  }

  body:not(.admin-body) .hero-subtitle {
    font-size: 16px;
  }

  body:not(.admin-body) .hero-facts {
    width: min(100%, 430px);
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  body:not(.admin-body) .hero-facts span {
    justify-content: center;
    border-right: 0;
    border-bottom: 1px solid rgba(92, 225, 255, 0.18);
  }

  body:not(.admin-body) .hero-facts span:last-child {
    border-bottom: 0;
  }

  body:not(.admin-body) .topbar {
    gap: 8px;
    padding: 10px;
  }

  body:not(.admin-body) .nav-cta {
    display: none;
  }

  body:not(.admin-body) .nav {
    justify-content: space-between;
  }

  body:not(.admin-body) .nav a {
    padding: 0 12px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .highlights-heading {
    text-align: left;
  }

  .highlight-card {
    min-height: 0;
    border-radius: 14px;
    padding: 18px;
  }

  .highlight-card h3 {
    font-size: 20px;
  }

  .forum-module {
    border-radius: 18px;
    padding: 16px;
  }

  .forum-module::before {
    inset: 7px;
    border-radius: 14px;
  }

  .forum-module-head,
  .forum-panel-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .forum-tabs {
    gap: 10px;
  }

  .forum-tabs button {
    min-height: 50px;
    font-size: 16px;
  }

  .forum-session-card {
    padding: 20px;
  }

  .forum-session-card h5 {
    margin-top: 24px;
  }

  .summit-timeline {
    gap: 18px;
    padding-left: 18px;
  }

  .summit-session {
    border-radius: 12px;
    padding: 20px;
  }

  .summit-break {
    padding: 14px 20px;
  }

  .summit-time i {
    left: -39px;
  }

  .summit-session-main p {
    flex-direction: column;
    gap: 4px;
  }

  .agenda-intro {
    padding: 14px;
  }

  .agenda-date-card {
    min-height: 96px;
  }
}

@media (max-width: 460px) {
  .guest-grid {
    grid-template-columns: 1fr;
  }

  .guest {
    min-height: 210px;
  }
}
