:root {
  color-scheme: light;
  --ink: #07111f;
  --ink-2: #13223b;
  --paper: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #eaf0fa;
  --line: #d7e0ee;
  --line-strong: #aebbd1;
  --text: #111827;
  --muted: #637086;
  --accent: #6d5dfc;
  --accent-dark: #3d2a8a;
  --accent-soft: #ecebff;
  --teal: #22d3ee;
  --hot: #e879f9;
  --signal: #f59e0b;
  --success: #0f766e;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(7, 20, 22, 0.12);
  --shadow-soft: 0 16px 40px rgba(7, 20, 22, 0.08);
  --radius: 8px;
  --max: 1280px;
  font-family: "Be Vietnam Pro", "IBM Plex Sans", 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(--text);
  background: var(--paper);
}

a {
  color: inherit;
}

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

button {
  border: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
}

.btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 160ms ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(109, 93, 252, 0.24);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: #fff;
  border-color: var(--line-strong);
  color: #263638;
}

.btn.secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
}

.btn.ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.btn.danger {
  background: #fff4f2;
  color: var(--danger);
  border-color: #fac8c0;
}

/* Public site */
.public-page {
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  padding: 0 clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #fff;
  background: rgba(7, 18, 21, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.site-brand strong {
  color: var(--accent);
  font-size: 14px;
  margin-left: 4px;
}

.site-brand-mark,
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: #fff;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
  font-size: 14px;
  font-weight: 780;
  text-transform: uppercase;
}

.site-nav a,
.site-admin-link {
  color: #eef8f7;
  text-decoration: none;
  letter-spacing: 0;
}

.site-nav a:hover,
.site-admin-link:hover {
  color: #fff;
}

.site-admin-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, 0.5);
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(34, 211, 238, 0.12);
}

.event-hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100svh - 24px));
  color: #fff;
  background-image: url("/assets/conference-hero.png");
  background-size: cover;
  background-position: center;
  overflow: visible;
}

.event-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98) 0%, rgba(14, 20, 45, 0.92) 41%, rgba(18, 75, 97, 0.48) 72%, rgba(40, 18, 58, 0.78) 100%),
    linear-gradient(135deg, rgba(109, 93, 252, 0.28), rgba(34, 211, 238, 0.14) 46%, rgba(232, 121, 249, 0.16)),
    linear-gradient(180deg, rgba(10, 8, 31, 0.18), rgba(10, 8, 31, 0.95));
}

.event-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(82, 36, 155, 0.38);
  mix-blend-mode: color;
  pointer-events: none;
}

.event-hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vh, 118px) 0 146px;
  display: grid;
  gap: clamp(38px, 7vw, 76px);
}

.event-copy {
  max-width: 790px;
}

.event-copy .hero-kicker {
  width: fit-content;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.event-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
}

.event-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #e1eeee;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.6;
  font-weight: 650;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: #f2fbfa;
  font-size: 15px;
  font-weight: 860;
  text-transform: uppercase;
}

.hero-meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-meta span::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--accent);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-actions .btn {
  min-width: 178px;
  min-height: 58px;
  font-size: 16px;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 28px;
}

.fact-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
}

.fact-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}

.fact-card small {
  color: #b7c8c9;
  font-size: 13px;
  font-weight: 800;
}

.fact-card strong {
  min-width: 0;
  color: #fff;
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.25;
}

.countdown-panel {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -58px;
  width: min(1040px, calc(100% - 40px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px clamp(22px, 4vw, 42px);
  background: linear-gradient(135deg, var(--accent), #118ca1);
  color: #fff;
  box-shadow: 0 26px 80px rgba(109, 93, 252, 0.32);
}

.countdown-panel > div:first-child span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 850;
}

.countdown-panel > div:first-child strong {
  display: block;
  margin-top: 5px;
  font-size: 25px;
  line-height: 1.1;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 118px);
  justify-content: end;
  gap: 18px;
}

.countdown-ring {
  position: relative;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  overflow: hidden;
  background:
    conic-gradient(rgba(255, 255, 255, 0.96) var(--progress, 0%), rgba(255, 255, 255, 0.22) 0),
    rgba(255, 255, 255, 0.16);
  box-shadow:
    0 16px 36px rgba(39, 14, 82, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.countdown-ring::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20, 22, 54, 0.96), rgba(33, 48, 96, 0.88));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.countdown-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1;
}

.countdown-ring small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.event-highlights {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.highlight-card {
  min-height: 172px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.highlight-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.highlight-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-band {
  padding: clamp(64px, 8vw, 110px) max(24px, calc((100vw - var(--max)) / 2));
  background: #fff;
}

.topics-band {
  padding-top: clamp(64px, 8vw, 110px);
}

.dates-band,
.submission-band {
  background: var(--paper);
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 72%, var(--paper) 72%, var(--paper) 100%);
}

.about-media {
  min-height: clamp(300px, 45vw, 560px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 45vw, 560px);
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-content {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 46px);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.about-content .section-heading h2,
.about-content .section-heading span {
  color: #fff;
}

.about-content h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.15;
}

.about-content p {
  margin: 18px 0 0;
  color: #d7e4e3;
  font-size: 17px;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.about-stats span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.about-stats strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

.about-stats small {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2,
.site-footer h2 {
  position: relative;
  margin: 0;
  padding-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.section-heading h2::after,
.site-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--accent);
}

.section-heading span,
.site-footer h2 span {
  margin-left: 8px;
  color: var(--ink-2);
  font-size: 17px;
  text-transform: uppercase;
  white-space: nowrap;
}

.outline-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink-2);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.outline-link:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
}

.topics-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.95fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.numbered-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 22px;
}

.topic-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.topic-row span {
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

.topic-row strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.topic-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.admin-preview {
  min-height: 500px;
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.preview-sidebar {
  padding: 22px 16px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: var(--ink);
  color: #cbd9d8;
  font-size: 13px;
}

.preview-sidebar strong {
  color: #fff;
  margin-bottom: 12px;
}

.preview-sidebar span {
  padding: 10px 11px;
  border-radius: var(--radius);
}

.preview-sidebar .active {
  color: #fff;
  background: var(--accent);
}

.preview-panel {
  padding: 22px;
  min-width: 0;
}

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

.preview-toolbar strong {
  font-size: 19px;
}

.preview-toolbar button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.preview-table {
  display: grid;
  border: 1px solid var(--line);
  border-bottom: 0;
}

.preview-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.preview-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-row em {
  border-radius: 999px;
  background: #e6fffb;
  color: var(--success);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 36px;
  height: 2px;
  background: #c7d3d1;
}

.timeline-item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.timeline-item span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(109, 93, 252, 0.26);
}

.timeline-item:last-child span {
  background: var(--ink);
}

.timeline-item strong {
  font-size: 16px;
}

.timeline-item time {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
}

.timeline-item small {
  color: var(--muted);
  font-weight: 850;
}

.split-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-card + .split-card {
  border-left: 1px solid var(--line);
  padding-left: clamp(30px, 5vw, 70px);
}

.award-list {
  display: grid;
  gap: 20px;
}

.award-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.award-icon,
.award-image-frame {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid var(--accent);
  background: rgba(109, 93, 252, 0.05);
  color: var(--accent);
}

.award-image-frame {
  overflow: hidden;
  background: #f7f5fb;
}

.award-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.award-icon svg {
  width: 27px;
  height: 27px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.award-item strong {
  display: block;
  font-size: 18px;
}

.award-item p {
  margin: 5px 0;
  color: var(--muted);
  line-height: 1.55;
}

.award-item small {
  color: var(--ink-2);
  font-weight: 850;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.journal-card {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: 160ms ease;
}

a.journal-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

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

.journal-card strong {
  font-size: 18px;
  line-height: 1.25;
}

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

.submission-grid h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

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

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: #334345;
  line-height: 1.65;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  background: var(--accent);
}

.org-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.org-showcase-card {
  min-height: 104px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.org-logo-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface-2);
  overflow: hidden;
  color: var(--teal);
  font-weight: 950;
}

.org-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}

.org-showcase-card small {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 5px;
}

.org-showcase-card strong {
  display: block;
  line-height: 1.35;
}

.site-footer {
  padding: 54px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  color: #fff;
  background: var(--ink);
}

.site-footer h2 {
  font-size: 30px;
}

.site-footer h2 span {
  color: #c3d1d0;
}

.site-footer p {
  margin: 12px 0 0;
  color: #d8e5e4;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 12px 30px;
  align-content: start;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

/* Admin */
.admin-page {
  background: var(--paper);
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--ink);
  color: #e8f2f1;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand strong {
  display: block;
  font-size: 19px;
  line-height: 1.15;
}

.brand span:not(.brand-mark) {
  display: block;
  margin-top: 4px;
  color: #a9c4c0;
  font-size: 13px;
}

.nav-list {
  display: grid;
  gap: 8px;
}

.nav-link {
  padding: 11px 12px;
  border-radius: var(--radius);
  color: #bdd3d0;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
}

.nav-link.is-active,
.nav-link:hover {
  background: var(--accent);
  color: #fff;
}

.nav-link:not(.is-active):hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.sidebar-note {
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.sidebar-note span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sidebar-note strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.35;
}

.main {
  min-width: 0;
}

.topbar {
  min-height: 76px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar h1 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}

.topbar p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-live-dot {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  background: #f8fbfb;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--success);
}

.content {
  padding: 30px 32px 100px;
  max-width: 1320px;
}

.admin-intro {
  margin-bottom: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(7, 18, 21, 0.98), rgba(7, 18, 21, 0.84)),
    url("/assets/conference-hero.png");
  background-size: cover;
  background-position: center right;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.admin-intro span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-intro h2 {
  margin: 8px 0 0;
  max-width: 720px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
}

.admin-intro-stats {
  min-width: 110px;
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.admin-intro-stats strong {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.admin-intro-stats span {
  color: #d8e5e4;
  text-transform: none;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.panel-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.panel-header h2,
.section h2 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0;
}

.panel-header h3 {
  margin: 0;
  font-size: 17px;
}

.panel-header p,
.section-note {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

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

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label,
.field-label {
  font-size: 13px;
  color: #425255;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d5d7;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 10px 11px;
  min-height: 42px;
  font-size: 14px;
}

textarea {
  min-height: 86px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(109, 93, 252, 0.18);
  border-color: var(--accent);
}

.table-editor {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.editor-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  background: #fbfcfc;
}

.row-actions {
  display: grid;
  grid-template-columns: repeat(3, 38px);
  gap: 8px;
  align-content: start;
  justify-items: stretch;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: #263638;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.icon-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.icon-btn.danger {
  border-color: #fac8c0;
  background: #fff4f2;
  color: var(--danger);
}

.icon-btn.danger:hover:not(:disabled) {
  border-color: var(--danger);
  background: #ffe9e5;
}

.icon-btn:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.editor-row-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.editor-row-fields.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editor-row-fields.topics-wide {
  grid-template-columns: minmax(360px, 2fr) minmax(220px, 1fr);
}

.editor-row-fields.one {
  grid-template-columns: 1fr;
}

.org-logo {
  display: flex;
  gap: 12px;
  align-items: center;
}

.org-logo input {
  min-width: 0;
}

.logo-preview {
  width: 54px;
  height: 54px;
  border: 1px dashed #b7c7c9;
  border-radius: var(--radius);
  background: #f3f7f7;
  display: grid;
  place-items: center;
  color: #6c7b7e;
  overflow: hidden;
  flex: 0 0 auto;
}

.logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.file-upload {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #263638;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  min-height: 38px;
  padding: 0 12px;
}

.file-upload:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.file-upload input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.sticky-save {
  position: fixed;
  left: 268px;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--line);
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(12px);
  z-index: 25;
  box-shadow: 0 -12px 36px rgba(7, 18, 21, 0.08);
}

.status {
  color: var(--muted);
  font-size: 13px;
}

.status.error {
  color: var(--danger);
}

.empty {
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 1120px) {
  .site-nav {
    display: none;
  }

  .event-facts,
  .event-highlights,
  .about-band,
  .topics-layout,
  .split-band,
  .submission-grid {
    grid-template-columns: 1fr;
  }

  .split-card + .split-card {
    border-left: 0;
    padding-left: 0;
  }

  .numbered-list {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    left: 35px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .timeline-item {
    grid-template-columns: 72px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .timeline-item time,
  .timeline-item small {
    grid-column: 2;
  }
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .admin-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .sticky-save {
    left: 0;
  }

  .editor-row,
  .editor-row-fields,
  .editor-row-fields.two,
  .editor-row-fields.topics-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    min-height: 66px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-brand {
    font-size: 20px;
  }

  .site-admin-link {
    padding: 0 10px;
  }

  .event-hero {
    min-height: auto;
  }

  .event-hero-content {
    width: min(100% - 32px, var(--max));
    padding: 58px 0 38px;
  }

  .event-copy h1 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .event-facts {
    grid-template-columns: 1fr;
  }

  .event-highlights {
    width: min(100% - 32px, var(--max));
    padding-top: 58px;
  }

  .countdown-panel {
    position: static;
    width: min(100% - 32px, var(--max));
    transform: none;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
  }

  .countdown-ring {
    width: min(118px, 38vw);
  }

  .topics-band {
    padding-top: 64px;
  }

  .about-band {
    gap: 0;
  }

  .about-content {
    padding: 24px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .topbar,
  .sticky-save,
  .admin-intro,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .section-heading {
    display: grid;
  }

  .section-heading span,
  .site-footer h2 span {
    display: block;
    margin: 7px 0 0;
  }

  .admin-preview {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .content,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-band,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

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

@media (max-width: 520px) {
  .hero-actions .btn,
  .hero-actions {
    width: 100%;
  }

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

  .countdown-ring {
    width: min(132px, 40vw);
  }

  .preview-sidebar {
    grid-template-columns: 1fr;
  }

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

/* Product Design refresh */
:root {
  --ink: #07111f;
  --ink-2: #13223b;
  --paper: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #eaf0fa;
  --line: #d7e0ee;
  --line-strong: #aebbd1;
  --text: #121621;
  --muted: #637086;
  --accent: #6d5dfc;
  --accent-dark: #3d2a8a;
  --accent-soft: #ecebff;
  --teal: #22d3ee;
  --hot: #e879f9;
  --signal: #f59e0b;
  --success: #0f766e;
  --shadow: 0 28px 80px rgba(7, 17, 31, 0.16);
  --shadow-soft: 0 16px 44px rgba(7, 17, 31, 0.09);
}

.public-page {
  background: var(--paper);
}

.site-header {
  height: 70px;
  padding: 0 clamp(18px, 4vw, 64px);
  background: rgba(7, 17, 31, 0.92);
  border-bottom: 1px solid rgba(34, 211, 238, 0.16);
}

.site-brand {
  font-size: 22px;
  letter-spacing: 0.08em;
}

.site-brand strong {
  color: var(--teal);
  letter-spacing: 0.14em;
}

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

.site-nav {
  gap: clamp(18px, 3vw, 54px);
  font-size: 13px;
  font-weight: 850;
  text-transform: none;
}

.site-admin-link {
  border-color: rgba(34, 211, 238, 0.5);
  background: transparent;
  color: var(--teal);
}

.event-hero {
  min-height: min(760px, calc(100svh - 70px));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background-image: url("/assets/conference-stage-violet.png");
  background-color: rgba(32, 28, 76, 0.52);
  background-blend-mode: color;
  background-size: cover;
  background-position: center;
}

.event-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.99) 0%, rgba(12, 20, 48, 0.94) 37%, rgba(9, 66, 86, 0.48) 65%, rgba(52, 21, 66, 0.7) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0) 0%, rgba(7, 17, 31, 0.94) 100%);
}

.event-hero::after {
  display: none;
}

.event-hero-content {
  width: min(1360px, calc(100% - 48px));
  padding: clamp(48px, 8vh, 78px) 0 clamp(56px, 8vh, 82px);
  grid-template-columns: minmax(360px, 0.95fr) minmax(430px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
}

.event-copy {
  max-width: 760px;
  min-width: 0;
}

.event-copy h1 {
  font-size: clamp(46px, 5.35vw, 76px);
  line-height: 0.96;
  text-wrap: balance;
  overflow-wrap: anywhere;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.event-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.65;
}

.hero-meta {
  gap: 12px 30px;
  color: rgba(255, 255, 255, 0.86);
  text-transform: none;
}

.hero-meta span::before {
  width: 32px;
  height: 1px;
  background: var(--teal);
}

.hero-actions .btn {
  border-radius: 4px;
  min-height: 52px;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 42px rgba(109, 93, 252, 0.28);
}

.btn.primary:hover {
  background: #5947e8;
}

.btn.ghost {
  border-color: rgba(34, 211, 238, 0.55);
  color: var(--teal);
}

.hero-control-stack {
  display: grid;
  gap: 12px;
  justify-self: end;
  width: min(100%, 560px);
  min-width: 0;
}

.agenda-panel,
.hero-info-panel,
.countdown-panel {
  min-width: 0;
  border: 1px solid rgba(34, 211, 238, 0.24);
  background: rgba(8, 13, 31, 0.76);
  color: #fff;
  box-shadow: 0 24px 80px rgba(7, 17, 31, 0.28);
  backdrop-filter: blur(18px);
}

.agenda-panel {
  min-height: 0;
  padding: 18px 20px;
}

.agenda-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.agenda-panel-header strong {
  font-size: 17px;
  letter-spacing: 0.02em;
}

.agenda-switcher {
  display: inline-flex;
  gap: 6px;
}

.agenda-day-toggle {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 850;
}

.agenda-day-toggle.is-active {
  background: rgba(34, 211, 238, 0.14);
  color: var(--teal);
}

.agenda-list {
  position: relative;
  margin: 14px 0 0;
  padding: 0 0 0 22px;
  list-style: none;
}

.agenda-list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(34, 211, 238, 0.45);
}

.agenda-list li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  min-height: 30px;
  align-items: start;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.agenda-list li::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.1);
}

.agenda-list time {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.hero-info-panel {
  display: grid;
  gap: 0;
}

.hero-info-panel > div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-info-panel > div:last-child {
  border-bottom: 0;
}

.hero-info-panel small {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.hero-info-panel strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.countdown-panel {
  position: static;
  left: auto;
  bottom: auto;
  width: auto;
  transform: none;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px 20px 18px;
  background: rgba(10, 13, 36, 0.82);
}

.countdown-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.countdown-title span,
.countdown-panel > div:first-child span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: none;
}

.countdown-title strong,
.countdown-panel > div:first-child strong {
  margin: 0;
  color: #fff;
  font-size: 17px;
}

.countdown-grid {
  grid-template-columns: repeat(4, 1fr);
  justify-content: stretch;
  gap: 14px;
}

.countdown-ring {
  width: min(86px, 100%);
  justify-self: center;
  background:
    conic-gradient(var(--teal) var(--progress, 0%), rgba(255, 255, 255, 0.16) 0),
    rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.countdown-ring::before {
  inset: 8px;
  background: rgba(8, 10, 26, 0.94);
}

.countdown-grid strong {
  font-size: clamp(22px, 2.5vw, 31px);
}

.hero-watermark {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  bottom: 18px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(86px, 16vw, 224px);
  line-height: 0.78;
  font-weight: 950;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.conference-deck {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(380px, 1.4fr) minmax(260px, 0.84fr);
  gap: 0;
  width: min(1360px, calc(100% - 48px));
  margin: clamp(-64px, -4vw, -44px) auto 0;
  color: #fff;
  background: rgba(7, 17, 31, 0.98);
  border: 1px solid rgba(34, 211, 238, 0.14);
  box-shadow: 0 24px 80px rgba(7, 17, 31, 0.26);
}

.conference-deck article {
  min-height: 312px;
  padding: clamp(24px, 3vw, 36px);
}

.conference-deck article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.conference-deck h2 {
  margin: 0 0 26px;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
}

.conference-deck h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--hot);
}

.deck-date-rail {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 26px;
}

.deck-date-rail::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  bottom: 7px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.deck-date-rail span {
  position: relative;
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.deck-date-rail span::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.deck-date-rail .is-active {
  color: var(--teal);
}

.deck-date-rail .is-active::before {
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.12);
}

.deck-date-rail strong {
  color: inherit;
  font-size: 15px;
}

.conference-deck a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.workflow-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(50% + 42px);
  width: calc(100% - 62px);
  border-top: 1px dashed rgba(255, 255, 255, 0.24);
}

.workflow-steps span {
  width: 76px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.34);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.workflow-steps strong {
  color: #fff;
  font-size: 15px;
}

.workflow-steps small {
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.5;
}

.deck-topic-index ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.deck-topic-index li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  min-height: 40px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.deck-topic-index li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hot);
}

.deck-topic-index li span {
  grid-column: 2;
}

.deck-topic-index li a {
  grid-column: 3;
  margin: 0;
  justify-content: end;
}

.section-band {
  padding: clamp(74px, 9vw, 132px) max(24px, calc((100vw - 1280px) / 2));
}

.about-band {
  margin-top: 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.76fr);
  background: #fff;
}

.about-media {
  min-height: clamp(360px, 44vw, 590px);
  box-shadow: none;
}

.about-content {
  background: #0b1024;
  border-left: 4px solid var(--hot);
  box-shadow: var(--shadow-soft);
}

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

.topics-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.86fr);
}

.numbered-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
  border-top: 1px solid var(--line-strong);
}

.topic-row {
  min-height: 86px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.topic-row span {
  color: var(--accent);
}

.admin-preview {
  box-shadow: none;
  border-color: var(--line-strong);
}

.dates-band {
  background: #07111f;
  color: #fff;
}

.dates-band .section-heading h2,
.dates-band .section-heading span {
  color: #fff;
}

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

.timeline::before {
  background: rgba(255, 255, 255, 0.16);
}

.timeline-item span {
  background: transparent;
  border: 1px solid rgba(109, 93, 252, 0.58);
  color: var(--teal);
  box-shadow: none;
}

.timeline-item:last-child span {
  background: var(--signal);
  border-color: rgba(245, 158, 11, 0.72);
  color: #07111f;
}

.timeline-item time,
.timeline-item strong {
  color: #fff;
}

.timeline-item small {
  color: rgba(255, 255, 255, 0.58);
}

.split-band {
  background: #fff;
}

.journal-card,
.org-showcase-card {
  border-radius: 0;
}

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

.site-footer {
  background: #050712;
}

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

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

.event-hero .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .event-hero {
    min-height: auto;
  }

  .event-hero-content {
    grid-template-columns: 1fr;
    padding: 78px 0 92px;
  }

  .hero-control-stack {
    justify-self: stretch;
    width: 100%;
  }

  .conference-deck {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .conference-deck article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .about-band,
  .topics-layout {
    grid-template-columns: 1fr;
  }

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

  .workflow-steps {
    grid-template-columns: repeat(5, minmax(86px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

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

  .site-brand {
    font-size: 18px;
  }

  .event-hero {
    background-position: 62% center;
  }

  .event-hero-content {
    width: min(100% - 32px, 1360px);
    padding: 54px 0 42px;
  }

  .event-copy h1 {
    max-width: 100%;
    font-size: clamp(31px, 9.2vw, 40px);
    line-height: 1.04;
    text-wrap: wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .event-copy p {
    font-size: 17px;
  }

  .hero-actions .btn,
  .hero-actions {
    width: 100%;
  }

  .agenda-panel {
    min-height: 0;
  }

  .agenda-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .agenda-switcher {
    width: 100%;
  }

  .agenda-day-toggle {
    flex: 1;
  }

  .agenda-list li {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .hero-info-panel > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .countdown-ring {
    width: min(128px, 38vw);
  }

  .conference-deck {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .workflow-steps li {
    grid-template-columns: 58px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .workflow-steps li:not(:last-child)::after {
    left: 29px;
    top: 58px;
    width: 1px;
    height: 32px;
    border-top: 0;
    border-left: 1px dashed rgba(255, 255, 255, 0.24);
  }

  .workflow-steps span {
    grid-row: span 2;
    width: 58px;
  }

  .hero-watermark {
    display: none;
  }

  .section-band {
    padding-left: 18px;
    padding-right: 18px;
  }
}
