:root {
  --bg: #f4ede1;
  --surface: rgba(255, 250, 244, 0.78);
  --text: #1c2431;
  --muted: #5c6470;
  --primary: #0f766e;
  --primary-dark: #0a4c48;
  --accent: #c46a2b;
  --border: rgba(28, 36, 49, 0.1);
  --shadow: 0 24px 60px rgba(28, 36, 49, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.16), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(196, 106, 43, 0.18), transparent 24%),
    linear-gradient(180deg, #f7f1e7 0%, #efe4d1 100%);
}

body.home-page {
  background:
    radial-gradient(circle at left center, rgba(239, 110, 224, 0.24), transparent 18%),
    radial-gradient(circle at right top, rgba(255, 183, 0, 0.34), transparent 14%),
    radial-gradient(circle at left bottom, rgba(255, 227, 63, 0.24), transparent 14%),
    linear-gradient(180deg, #fcfbff 0%, #fff7ee 100%);
}

body.dashboard-body {
  background:
    radial-gradient(circle at left top, rgba(239, 110, 224, 0.18), transparent 16%),
    radial-gradient(circle at right top, rgba(255, 183, 0, 0.24), transparent 14%),
    linear-gradient(180deg, #f7f8fd 0%, #fff8ef 100%);
}

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

.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 24px 32px;
}

.masthead-card,
.topbar,
.menu-card,
.organizer-card,
.hero,
.section,
.footer,
.dashboard-panel,
.dashboard-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  overflow: visible;
  display: grid;
  gap: 20px;
  padding: 16px 22px;
  margin-bottom: 24px;
}

.masthead-card {
  overflow: visible;
  margin-bottom: 24px;
  border-radius: 18px;
}

.masthead-card .topbar,
.masthead-card .menu-card,
.masthead-card .organizer-card {
  margin-bottom: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.topbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-has-banner {
  min-height: clamp(260px, 18vw, 380px);
  align-content: start;
  background: var(--topbar-banner-image) center top/100% auto no-repeat;
}

.topbar-banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.slsb-page .topbar-banner-image {
  width: auto;
  max-width: 100%;
  max-height: min(40vh, 280px);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

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

.nav {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  display: none;
  z-index: 30;
  min-width: 180px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 20px 40px rgba(28, 36, 49, 0.12);
  transform: translateX(-50%);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--primary-dark);
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary-dark);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.65;
}

.home-page .page-shell {
  padding: 20px 24px 32px;
}

.slsb-page .page-shell {
  padding: 12px 18px 24px;
}

.home-page .section,
.home-page .footer {
  border: none;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 56px rgba(32, 35, 70, 0.08);
  backdrop-filter: none;
}

.home-page .topbar {
  position: static;
  gap: 18px;
  padding: 12px 20px 10px;
  background: transparent;
  backdrop-filter: none;
}

.slsb-page .topbar {
  gap: 4px;
  padding: 2px 12px 0;
}

.home-page .topbar-has-banner {
  min-height: 0;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  background: none;
  background-color: transparent;
}

.home-page .masthead-card {
  border: none;
  background: #fff;
  box-shadow: 0 16px 36px rgba(19, 24, 52, 0.08);
  backdrop-filter: none;
}

.slsb-page .masthead-card {
  margin-bottom: 10px;
}

.home-page .menu-card,
.home-page .organizer-card {
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.menu-card {
  padding: 10px 20px 12px;
  border-top: 1px solid rgba(15, 118, 110, 0.08);
}

.pillar-marquee-section {
  overflow: hidden;
  padding: 8px 20px 18px;
}

.pillar-marquee-surface {
  padding: 8px 0 4px;
}

.pillar-marquee-standalone {
  margin-bottom: 18px;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(19, 24, 52, 0.08);
}

.pillar-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: pillarScroll 28s linear infinite;
}

.pillar-card {
  display: grid;
  gap: 10px;
  width: 240px;
  padding: 16px;
  border: 1px solid rgba(164, 180, 211, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 14px 28px rgba(40, 49, 92, 0.06);
}

.pillar-card-compact {
  width: clamp(300px, 18vw, 340px);
  align-content: start;
}

.pillar-card-image-wrap {
  display: block;
  height: 120px;
  border-radius: 18px;
  background: rgba(237, 245, 255, 0.72);
  overflow: hidden;
}

.pillar-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pillar-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #155e75;
}

.pillar-card-summary {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #657085;
  line-height: 1.6;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.content-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #0b5876;
  font-weight: 800;
  text-decoration: none;
}

.content-link::after {
  content: "›";
  font-size: 1.1em;
  line-height: 1;
}

.content-link:hover {
  text-decoration: underline;
}

@keyframes pillarScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.organizer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 16px 4px;
  border-bottom: none;
  background: transparent;
}

.slsb-page .organizer-card {
  padding: 0 12px;
}

.masthead-card .topbar {
  background-color: transparent;
}

.organizer-image-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.organizer-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 118px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.slsb-page .organizer-image {
  max-height: min(10vh, 84px);
}

.home-brand {
  gap: 16px;
}

.menu-brand,
.organizer-brand {
  flex: 0 0 auto;
}

.brand-burst {
  position: relative;
  display: inline-block;
  width: 132px;
  height: 132px;
}

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

.brand-orb {
  position: absolute;
  border-radius: 50%;
  box-shadow: inset -10px -12px 18px rgba(0, 0, 0, 0.12), 0 10px 16px rgba(0, 0, 0, 0.12);
}

.orb-a {
  top: 2px;
  left: 15px;
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 30% 30%, #58f0ff, #1d84ef 72%);
}

.orb-b {
  top: 20px;
  left: 0;
  width: 26px;
  height: 26px;
  background: radial-gradient(circle at 30% 30%, #f55cff, #7e21d7 72%);
}

.orb-c {
  top: 24px;
  right: 0;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 30% 30%, #ffd86b, #ff9200 72%);
}

.home-page .brand-mark {
  display: none;
}

.home-page .brand-text {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.home-page .nav {
  justify-content: center;
  gap: 12px;
}

.slsb-page .nav {
  gap: 16px;
}

.home-page .topbar-main {
  align-items: flex-start;
}

.menu-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 46px;
}

.slsb-page .menu-card-inner {
  min-height: 40px;
}

.topbar-nav-row {
  padding-top: 0;
  border-top: none;
}

.menu-card .nav {
  justify-content: center;
}

.menu-card {
  padding: 8px 16px 10px;
}

.slsb-page .menu-card {
  padding: 4px 18px 6px;
}

.home-page .nav-link {
  font-size: 0.92rem;
}

.slsb-page .nav-link {
  font-size: 0.9rem;
}

.slsb-page .topbar-actions a {
  padding: 0.72rem 1.1rem;
  font-size: 0.63rem;
}

.menu-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.home-page .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #2f3747;
}

.home-page .nav-link:hover {
  color: #0b5876;
}

.home-page .topbar-actions a {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-page .topbar-actions {
  gap: 8px;
}

.home-page .dropdown-menu {
  left: 0;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(10, 25, 52, 0.12);
  transform: none;
}

.home-page .dropdown-menu::before {
  display: none;
}

.home-page .dropdown-menu a {
  padding: 12px 16px;
  border-radius: 12px;
  color: #20404f;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: none;
}

.home-page .dropdown-menu a:hover {
  background: rgba(15, 118, 110, 0.1);
  color: #0b5876;
}

.home-page .btn {
  background: linear-gradient(135deg, #cb7a34, #d88a45);
  box-shadow: 0 14px 28px rgba(203, 122, 52, 0.24);
}

.home-page .ghost-btn {
  border-color: rgba(23, 117, 144, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.95fr);
  gap: 22px;
  padding: 40px 42px 36px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 56px rgba(32, 35, 70, 0.1);
}

.slsb-page .hero-showcase {
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.72fr);
  gap: 18px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  left: -48px;
  top: 54px;
  width: 72px;
  height: 164px;
  border-radius: 0 28px 28px 0;
  background: linear-gradient(180deg, #f68efb, #e372f0);
  opacity: 0.7;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: 40px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd26e, #ff8f00 72%);
  opacity: 0.85;
}

.home-page .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.home-page .hero h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.slsb-page .hero h1 {
  max-width: 24ch;
  font-size: clamp(2.3rem, 3.6vw, 3.6rem);
  line-height: 1;
}

.slsb-page .hero-copy {
  max-width: min(88ch, 100%);
}

.home-page .eyebrow {
  color: #9f47d4;
}

.home-page .date-line {
  color: #111525;
}

.home-page .subtitle {
  max-width: 58ch;
  font-size: 1rem;
}

.slsb-page .subtitle {
  max-width: 72ch;
}

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

.hero-single-column .hero-copy {
  max-width: min(78ch, 100%);
}

.hero-single-column h1 {
  max-width: 14ch;
}

.slsb-page .hero-single-column h1 {
  max-width: 24ch;
}

.hero-single-column .subtitle {
  max-width: 68ch;
}

.hero-visual-panel {
  display: grid;
  gap: 22px;
  padding: 0;
  background: transparent;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  padding: 26px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 24%, rgba(64, 188, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 48%, #fbfbff 100%);
  overflow: hidden;
}

.hero-image-card {
  position: absolute;
  inset: 56px 18px 24px 112px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(222, 238, 255, 0.94)),
    linear-gradient(125deg, #d9e7ff, #f8fbff);
  box-shadow: inset 0 0 0 1px rgba(111, 132, 190, 0.12);
  overflow: hidden;
}

.hero-image-card-journal {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(227, 239, 255, 0.7)),
    url("https://images.pexels.com/photos/4271628/pexels-photo-4271628.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(114, 155, 210, 0.08)),
    linear-gradient(130deg, rgba(255, 255, 255, 0.26) 0 30%, rgba(137, 176, 220, 0.16) 31% 48%, transparent 49%),
    linear-gradient(90deg, rgba(248, 251, 255, 0.88), rgba(248, 251, 255, 0.18) 58%, rgba(248, 251, 255, 0.04));
}

.hero-image-overlay::before,
.hero-image-overlay::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-image-overlay::before {
  right: 78px;
  top: 86px;
  width: 96px;
  height: 96px;
  border: 10px solid rgba(118, 214, 255, 0.46);
}

.hero-image-overlay::after {
  right: 26px;
  bottom: 42px;
  width: 124px;
  height: 124px;
  border: 12px solid rgba(145, 227, 255, 0.26);
}

.hero-image-copy {
  position: absolute;
  left: 26px;
  top: 24px;
  max-width: 240px;
  z-index: 2;
}

.hero-image-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.94;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-sphere {
  position: absolute;
  border-radius: 50%;
  box-shadow: inset -14px -14px 20px rgba(0, 0, 0, 0.12), 0 18px 24px rgba(47, 73, 155, 0.12);
}

.sphere-a {
  left: 18px;
  top: 198px;
  width: 84px;
  height: 84px;
  background: radial-gradient(circle at 30% 30%, #5af2ff, #00a4d9 72%);
}

.sphere-b {
  left: 138px;
  bottom: 34px;
  width: 58px;
  height: 58px;
  background: radial-gradient(circle at 30% 30%, #7cecff, #2a89ff 72%);
}

.sphere-c {
  right: 24px;
  top: 14px;
  width: 68px;
  height: 68px;
  background: radial-gradient(circle at 30% 30%, #ffe06b, #ff9900 72%);
}

.hero-stat-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 8px 0 0;
}

.hero-stat-list li {
  padding: 18px 18px 16px;
  border: none;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 28px rgba(23, 31, 68, 0.08);
}

.hero-stat-list strong {
  font-size: 1.7rem;
}

.home-page .section {
  padding: 34px;
}

.home-page .section h2,
.home-page .footer h3 {
  color: #1b2437;
}

.home-page .section-copy p,
.home-page .footer p,
.home-page .date-card p,
.home-page .feature-card p,
.home-page .committee-card p,
.home-page .program-card li,
.home-page .venue-card p,
.home-page .registration-card p {
  color: #657085;
}

.home-page .date-card,
.home-page .feature-card,
.home-page .committee-card,
.home-page .program-card,
.home-page .venue-card,
.home-page .registration-card {
  border: 1px solid rgba(164, 180, 211, 0.18);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: 0 14px 28px rgba(40, 49, 92, 0.06);
}

.home-page .date-grid,
.home-page .committee-grid {
  gap: 22px;
}

.home-page .split-section {
  gap: 22px;
}

.section-hero .hero-image-copy h2 {
  max-width: 12ch;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.section-hero-panel .hero-stat-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-hero-visual {
  min-height: 360px;
}

.section-hero .hero-copy h1 {
  max-width: none;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  white-space: nowrap;
}

.section-hero-copy-card {
  left: 24px;
  right: 24px;
  top: auto;
  bottom: 26px;
  max-width: 320px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(28, 36, 49, 0.12);
  backdrop-filter: blur(10px);
}

.section-hero-copy-card p:last-child {
  margin: 10px 0 0;
  color: #546073;
  font-size: 0.96rem;
  line-height: 1.55;
}

.section-hero-panel .hero-stat-list li {
  min-height: 128px;
}

.section-hero-panel .hero-stat-list strong {
  display: block;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-hero-panel .hero-stat-list span {
  display: block;
  margin-top: 10px;
  color: #5c6470;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(260px, 0.95fr);
  gap: 20px;
  padding: 34px;
  margin-bottom: 24px;
}

.hero h1,
.section h2,
.dashboard-panel h1 {
  margin: 8px 0 0;
  font-family: "Playfair Display", serif;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.94;
  max-width: 12ch;
}

.section h2,
.dashboard-panel h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.eyebrow,
.section-kicker,
.panel-label,
.role,
.profile-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--primary);
  font-weight: 800;
}

.date-line {
  margin: 16px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.subtitle {
  margin: 1rem 0 2rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 60ch;
}

.hero-panel {
  padding: 22px;
  border-radius: calc(var(--radius) - 6px);
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.4));
}

.stat-list,
.highlight-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stat-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(28, 36, 49, 0.08);
}

.stat-list li:last-child,
.highlight-list li:last-child,
.contact-list li:last-child {
  border-bottom: 0;
}

.stat-list strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease;
}

.btn {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #d48a51);
  color: #fff;
  box-shadow: 0 14px 28px rgba(196, 106, 43, 0.25);
}

.ghost-btn {
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: rgba(255, 255, 255, 0.52);
  color: var(--primary-dark);
}

.btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
}

.section {
  padding: 30px;
  margin-bottom: 24px;
}

.section-heading {
  margin-bottom: 18px;
}

.date-grid,
.committee-grid,
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.date-card,
.feature-card,
.committee-card,
.speaker-card,
.program-card,
.venue-card,
.registration-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255, 255, 255, 0.54);
}

.date-card p,
.committee-card p,
.feature-card p,
.speaker-card p,
.program-card li,
.venue-card p,
.registration-card p {
  color: var(--muted);
  line-height: 1.65;
}

.date-card h3,
.committee-card h3,
.feature-card h3,
.speaker-card h3,
.program-card h3,
.venue-card h2,
.registration-card h2 {
  margin: 8px 0 0;
}

.speaker-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.speaker-card-image {
  width: 104px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(237, 245, 255, 0.82);
  order: 2;
}

.speaker-card-image-placeholder {
  display: grid;
  place-items: center;
  width: 104px;
  height: 120px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(232, 244, 255, 0.95), rgba(245, 250, 255, 0.98));
  color: rgba(21, 94, 117, 0.65);
  order: 2;
}

.speaker-card-image-placeholder svg {
  width: 42px;
  height: 42px;
}

.speaker-card-copy {
  min-width: 0;
  order: 1;
}

.speaker-card-copy h3 {
  margin-top: 0;
  font-size: 1.02rem;
  line-height: 1.2;
}

.venue-map-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255, 255, 255, 0.7);
}

.venue-map-heading {
  margin-bottom: 16px;
}

.venue-map-heading h2 {
  margin-top: 6px;
}

.venue-map-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(191, 211, 240, 0.82);
  background: rgba(240, 247, 255, 0.72);
}

.venue-map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.speaker-card-role {
  margin: 5px 0 3px;
  color: #0b5876;
  font-weight: 700;
  line-height: 1.35;
}

.pillar-marquee-track:hover {
  animation-play-state: paused;
}

.section-card-image-wrap {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin-bottom: 14px;
  border-radius: 20px;
  background: rgba(237, 245, 255, 0.82);
  overflow: hidden;
}

.section-card-image {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
}

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

.feature-stack,
.program-list {
  display: grid;
  gap: 18px;
}

.program-card ul,
.dashboard-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.highlight-list li,
.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(28, 36, 49, 0.08);
}

.address {
  font-weight: 700;
  color: var(--text);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 24px;
  padding: 28px 30px 40px;
  margin-bottom: 30px;
  color: var(--muted);
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.registration-information-section {
  display: grid;
  gap: 24px;
}

.registration-cta-panel {
  padding: 24px 28px 12px;
  border-top: 2px solid rgba(20, 48, 86, 0.9);
  text-align: center;
}

.registration-cta-eyebrow {
  display: inline-block;
  padding: 8px 14px;
  margin: -42px auto 18px;
  background: #1a2230;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.registration-cta-panel h2,
.registration-support-card h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #123f73;
  text-align: center;
}

.registration-cta-panel .content-link {
  font-size: 1.05rem;
}

.registration-cta-note {
  margin: 22px 0 0;
  font-size: 1.05rem;
  color: #6c737f;
  text-align: center;
}

.registration-support-card {
  padding: 28px 26px;
  border-left: 4px solid #2d83c2;
  border-radius: calc(var(--radius) - 6px);
  background: #e8f4ff;
}

.registration-support-card p {
  color: #54606f;
  line-height: 1.7;
}

.registration-support-meta {
  margin-top: 18px;
}

.registration-support-meta p {
  margin: 8px 0;
  color: #1f2c3e;
}

.registration-support-meta a {
  color: #d94343;
  text-decoration: none;
}

.footer-note {
  align-self: end;
}

.footer-note .content-link {
  color: var(--primary-dark);
}

.dashboard-body {
  min-height: 100vh;
}

.dashboard-shell {
  width: 100%;
  max-width: none;
}

.admin-topbar {
  position: static;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  z-index: 30;
  margin-bottom: 20px;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(32, 35, 70, 0.08);
}

.admin-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.admin-topbar-actions {
  justify-content: flex-end;
}

.admin-topbar .brand-text {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.admin-topbar .nav-link {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #2f3747;
}

.admin-topbar .nav-link:hover {
  color: #0b5876;
}

.admin-topbar .dropdown-menu {
  left: 0;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(10, 25, 52, 0.12);
  transform: none;
}

.admin-topbar .dropdown-menu::before {
  display: none;
}

.admin-topbar .dropdown-menu a {
  padding: 12px 16px;
  border-radius: 12px;
  color: #20404f;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: none;
}

.admin-topbar .dropdown-menu a:hover {
  background: rgba(15, 118, 110, 0.1);
  color: #0b5876;
}

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

.admin-page-manager-card {
  margin-top: 22px;
  margin-bottom: 22px;
}

.admin-sidebar {
  position: static;
  display: grid;
  gap: 18px;
  padding: 24px 20px;
}

.admin-sidebar-head h2 {
  margin: 8px 0 0;
  font-size: 1.35rem;
}

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

.admin-sidebar-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
  color: #12324a;
  font-weight: 700;
}

.admin-sidebar-nav a:hover {
  background: rgba(15, 118, 110, 0.08);
}

.admin-sidebar-nav a.is-active {
  background: rgba(15, 118, 110, 0.1);
  color: #0b5876;
}

.custom-page-row.is-target {
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.08);
}

.speaker-editor-block {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(164, 180, 211, 0.18);
  border-radius: 18px;
  background: rgba(244, 249, 255, 0.72);
}

.speaker-editor-list {
  gap: 12px;
}

.speaker-admin-row {
  gap: 12px;
  padding: 16px;
}

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

.speaker-admin-content {
  display: grid;
  gap: 14px;
}

.custom-program-row {
  gap: 14px;
}

.custom-program-row-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.custom-program-row .custom-program-row-actions {
  position: static;
}

.custom-program-row .custom-program-delete-btn {
  width: auto;
  height: auto;
  padding: 0.75rem 1.1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  color: #b42318;
}

.custom-program-row .custom-program-delete-btn::before {
  content: none;
}

.home-layout-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.home-layout-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 180, 211, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-layout-item.is-dragging {
  opacity: 0.55;
}

.home-layout-item.drag-before {
  border-top-color: rgba(15, 111, 214, 0.55);
  box-shadow: inset 0 3px 0 rgba(15, 111, 214, 0.25);
}

.home-layout-item.drag-after {
  border-bottom-color: rgba(15, 111, 214, 0.55);
  box-shadow: inset 0 -3px 0 rgba(15, 111, 214, 0.25);
}

.home-layout-copy {
  display: grid;
  gap: 3px;
}

.home-layout-meta {
  color: rgba(30, 45, 74, 0.56);
  font-size: 0.92rem;
}

.pillar-admin-row {
  gap: 12px;
}

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

.pillar-admin-content {
  display: grid;
  gap: 14px;
}

.pillar-admin-preview-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 16px;
  border: 1px solid rgba(164, 180, 211, 0.2);
  border-radius: 20px;
  background: rgba(244, 249, 255, 0.78);
}

.pillar-admin-preview-card.is-empty {
  opacity: 0.65;
}

.pillar-image-clear {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  z-index: 2;
}

.pillar-image-clear.is-hidden {
  display: none;
}

.pillar-image-clear span {
  font-size: 1.2rem;
  line-height: 1;
}

.pillar-admin-preview-image {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 14px;
}

.pillar-admin-row .pillar-row-actions {
  position: static;
  margin-top: 4px;
}

.pillar-admin-row .pillar-row-actions .pillar-delete-btn {
  width: auto;
  height: auto;
  padding: 0.75rem 1.1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  color: #b42318;
}

.pillar-admin-row .pillar-row-actions .pillar-delete-btn::before {
  content: none;
}

.speaker-media-field {
  gap: 10px;
}

.media-preview-speaker img {
  width: 84px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
}

.editor-section[id] {
  scroll-margin-top: 24px;
}

.dashboard-panel,
.dashboard-card {
  padding: 30px;
  border: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 52px rgba(32, 35, 70, 0.08);
  backdrop-filter: none;
}

.dashboard-card {
  margin-top: 0;
}

.registration-portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 320px;
  gap: 22px;
  align-items: start;
}

.registration-form {
  padding: 24px;
}

.registration-gate {
  display: grid;
  gap: 16px;
  max-width: 480px;
}

.registration-qr-panel {
  padding: 24px;
}

.registration-qr-card {
  display: grid;
  place-items: center;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(164, 180, 211, 0.22);
  border-radius: 24px;
  background: rgba(247, 251, 255, 0.94);
}

.registration-qr-image {
  width: min(100%, 220px);
  height: auto;
  display: block;
}

.dashboard-qr-card {
  max-width: 260px;
}

.registration-lookup-card h1,
.registration-portal-card h1 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-family: "Playfair Display", serif;
}

.admin-card {
  overflow: visible;
}

.admin-empty-state {
  min-height: 220px;
  align-content: start;
}

.editor-section {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(164, 180, 211, 0.2);
  border-radius: calc(var(--radius) - 6px);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.94), rgba(255, 255, 255, 0.98));
}

.page-manager-grid,
.page-manager-toolbar {
  display: grid;
  gap: 18px;
}

.page-manager-block {
  display: grid;
  gap: 10px;
}

.page-manager-block-current {
  padding: 18px;
  border: 1px solid rgba(164, 180, 211, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.page-manager-label-row {
  display: grid;
  gap: 6px;
}

.page-manager-label {
  color: var(--primary-dark);
  font-weight: 800;
}

.page-manager-helper {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.page-manager-controls,
.page-create-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.page-create-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.page-manager-controls-combined {
  grid-template-columns: minmax(280px, 1fr) auto auto auto;
}

.page-select-form {
  min-width: 0;
}

.page-select-form select,
.page-create-form input,
.page-manager-controls-combined > input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(164, 180, 211, 0.4);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  font: inherit;
  box-shadow: 0 10px 22px rgba(32, 35, 70, 0.04);
}

.page-create-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(164, 180, 211, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.page-create-panel[hidden] {
  display: none;
}

.page-create-field {
  min-width: 0;
}

.page-create-actions {
  align-items: end;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(164, 180, 211, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #0b5876;
  box-shadow: 0 10px 22px rgba(32, 35, 70, 0.05);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn:hover {
  background: rgba(15, 118, 110, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(32, 35, 70, 0.08);
}

.icon-btn-danger {
  color: #b42318;
}

.icon-btn-danger:hover {
  background: rgba(180, 35, 24, 0.08);
}

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

.menu-editor {
  display: grid;
  gap: 16px;
}

.menu-editor-header {
  display: flex;
  justify-content: flex-end;
}

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

.nav-tree-root,
.nav-tree-list {
  display: grid;
  gap: 12px;
}

.nav-tree-root {
  min-height: 120px;
  padding: 14px;
  border: 1px dashed rgba(164, 180, 211, 0.34);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
}

.nav-tree-root.is-empty::before {
  content: "No menus yet. Click Add Main Menu to start.";
  color: var(--muted);
  padding: 8px 4px;
}

.nav-tree-item {
  position: relative;
}

.nav-tree-item-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(164, 180, 211, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(32, 35, 70, 0.04);
}

.nav-tree-item-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.nav-tree-fields {
  align-items: start;
}

.nav-tree-actions {
  display: inline-flex;
  gap: 8px;
}

.drag-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px dashed rgba(164, 180, 211, 0.55);
  border-radius: 14px;
  color: var(--primary-dark);
  background: rgba(245, 249, 255, 0.8);
  cursor: grab;
}

.drag-handle:active {
  cursor: grabbing;
}

.drag-handle svg {
  width: 18px;
  height: 18px;
}

.nav-tree-children-wrap {
  display: grid;
  gap: 0;
  padding-left: 56px;
}

.nav-tree-children {
  min-height: 8px;
  padding: 0;
  border: none;
  border-radius: 18px;
  background: transparent;
}

.nav-tree-children:not(:empty) {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding: 10px;
  border: 1px dashed rgba(164, 180, 211, 0.28);
  background: rgba(247, 251, 255, 0.72);
}

.nav-tree-item.is-dragging {
  opacity: 0.45;
}

.nav-tree-item.drag-before::before,
.nav-tree-item.drag-after::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 3px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.55);
}

.nav-tree-item.drag-before::before {
  top: -6px;
}

.nav-tree-item.drag-after::after {
  bottom: -6px;
}

.nav-tree-children.drag-nest,
.nav-tree-root.drag-nest {
  min-height: 58px;
  margin-top: 10px;
  padding: 10px;
  border-color: rgba(15, 118, 110, 0.5);
  background: rgba(229, 246, 244, 0.9);
}

.menu-row {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(164, 180, 211, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.key-value-editor {
  display: grid;
  gap: 16px;
}

.key-value-row {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(164, 180, 211, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.key-value-row .actions {
  position: absolute;
  top: 16px;
  right: 16px;
}

.key-value-row .actions .ghost-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 12px;
  font-size: 0;
  color: #b42318;
}

.key-value-row .actions .ghost-btn::before {
  content: "×";
  font-size: 1.4rem;
  line-height: 1;
}

.key-value-row .actions .ghost-btn:hover {
  background: rgba(180, 35, 24, 0.08);
}

.menu-children-input {
  min-height: 120px;
}

.editor-heading h2 {
  margin: 8px 0 0;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

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

.login-card {
  display: grid;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.login-shell {
  padding-top: 28px;
}

.login-shell .dashboard-card {
  margin-top: 0;
}

.login-card {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.98));
}

.login-card-single {
  position: relative;
  overflow: hidden;
}

.login-card-single::before,
.login-card-single::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.login-card-single::before {
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 35% 35%, #ffd76a, #f4a401 72%);
  opacity: 0.95;
}

.login-card-single::after {
  left: -26px;
  bottom: -26px;
  width: 92px;
  height: 92px;
  background: radial-gradient(circle at 35% 35%, #66ecff, #0a9ee0 72%);
  opacity: 0.88;
}

.login-card-head h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-family: "Playfair Display", serif;
}

.login-card-head h1 {
  margin: 10px 0 0;
  max-width: 10ch;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.95;
  font-family: "Playfair Display", serif;
}

.login-primary-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.login-back-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #0b5876;
  font-weight: 700;
}

.login-back-link:hover {
  text-decoration: underline;
}

.login-google-btn {
  min-width: 220px;
  gap: 12px;
  border: 1px solid rgba(66, 133, 244, 0.14);
  background: #fff;
  color: #1f1f1f;
  box-shadow: 0 12px 24px rgba(66, 133, 244, 0.08);
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
}

.google-mark svg {
  width: 16px;
  height: 16px;
}

.login-google-btn:hover {
  background: #f8fbff;
}

.login-admin-form {
  padding: 22px;
  border: 1px solid rgba(164, 180, 211, 0.22);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(255, 255, 255, 1));
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

code {
  background: rgba(15, 118, 110, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 0.35rem;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.autosave-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  justify-self: end;
  position: sticky;
  top: 18px;
  z-index: 30;
  padding: 10px 14px;
  border: 1px solid rgba(164, 180, 211, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #12324a;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(32, 35, 70, 0.08);
  backdrop-filter: blur(10px);
}

.admin-inline-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
}

.admin-inline-status-error {
  background: rgba(196, 106, 43, 0.12);
  color: #8a4312;
}

.autosave-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.85);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
  flex-shrink: 0;
}

.autosave-status[data-state="saving"] .autosave-indicator {
  background: rgba(59, 130, 246, 0.92);
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.14);
  animation: autosavePulse 1s ease-in-out infinite;
}

.autosave-status[data-state="error"] .autosave-indicator {
  background: rgba(220, 38, 38, 0.88);
  box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.12);
  animation: none;
}

@keyframes autosavePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.8);
    opacity: 0.65;
  }
}

@media (max-width: 960px) {
  .autosave-status {
    justify-self: start;
    top: 12px;
  }
}

.field-block {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.field-block span {
  color: var(--primary-dark);
}

.field-block small {
  color: var(--muted);
  font-weight: 500;
}

.field-block input,
.field-block textarea,
.field-block select,
.button-reset {
  font: inherit;
}

.field-block input,
.field-block textarea,
.field-block select {
  width: 100%;
  border: 1px solid rgba(164, 180, 211, 0.4);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
}

.media-field {
  align-content: start;
}

.file-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 18px;
  border: 1px solid rgba(164, 180, 211, 0.4);
  border-radius: 16px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  font-weight: 700;
}

.file-trigger input[type="file"] {
  display: none;
}

.media-preview {
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 16px;
  border: 1px solid rgba(164, 180, 211, 0.28);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.92), rgba(255, 255, 255, 0.96));
}

.media-preview.is-hidden {
  display: none;
}

.media-preview img {
  max-width: 100%;
  max-height: 140px;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

.media-preview-banner img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

.inline-form {
  align-content: start;
}

.login-divider {
  position: relative;
  text-align: center;
  color: var(--muted);
}

.login-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(28, 36, 49, 0.08);
}

.login-divider span {
  position: relative;
  padding: 0 12px;
  background: rgba(255, 250, 244, 0.9);
}

.field-block textarea {
  min-height: 120px;
  overflow: hidden;
  scrollbar-width: none;
  resize: none;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.95rem;
  line-height: 1.6;
}

.field-block textarea::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.field-block textarea.menu-children-input {
  min-height: 120px;
}

.key-value-row textarea {
  min-height: 120px;
  font-family: inherit;
  line-height: 1.5;
}

.status-banner {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.success-banner {
  background: rgba(15, 118, 110, 0.12);
  color: var(--primary-dark);
}

.error-banner {
  background: rgba(196, 106, 43, 0.12);
  color: #8a4312;
}

.admin-help {
  color: var(--muted);
  line-height: 1.7;
}

.button-reset {
  appearance: none;
  cursor: pointer;
}

@media (max-width: 960px) {
  .topbar-main,
  .nav,
  .topbar-actions,
  .hero,
  .split-section,
  .footer,
  .contact-list li,
  .profile-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .split-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .nav-tree-item-head {
    grid-template-columns: 1fr;
  }

  .nav-tree-children-wrap {
    padding-left: 0;
  }

  .page-manager-controls,
  .page-create-form {
    grid-template-columns: 1fr;
  }

  .page-manager-controls-combined {
    grid-template-columns: 1fr;
  }

  .page-create-panel {
    grid-template-columns: 1fr;
  }

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

  .admin-sidebar {
    position: static;
  }

  .admin-topbar {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 16px;
  }

  .admin-nav {
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .admin-topbar .nav-dropdown {
    display: inline-flex;
    align-items: center;
  }

  .admin-topbar .nav-link,
  .admin-topbar .nav-dropdown {
    width: auto;
  }

  .admin-topbar-actions {
    justify-content: flex-start;
  }

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

  .registration-portal-layout {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: static;
  }

  .hero h1 {
    max-width: none;
  }

  .home-page .page-shell {
    padding: 16px;
  }

  .login-card {
    padding: 24px 20px;
  }

  .hero-showcase {
    padding: 24px 20px;
  }

  .hero-showcase::before,
  .hero-showcase::after {
    display: none;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-image-card {
    inset: 52px 12px 18px 72px;
  }

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

  .section-hero-panel .hero-stat-list {
    grid-template-columns: 1fr;
  }

  .speaker-card {
    grid-template-columns: 1fr;
  }

  .speaker-card-image,
  .speaker-card-image-placeholder {
    width: 100%;
    max-width: 180px;
    justify-self: end;
  }
}
