/* DAT Meeting 122 — onepage */
@font-face {
  font-family: 'Chula';
  src: url('../../fonts/CHULALONGKORNBold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

:root {
  --dm-ink: #0b1220;
  --dm-ink-soft: #1a2438;
  --dm-violet: #5b2d8e;
  --dm-violet-bright: #7c3aed;
  --dm-magenta: #a21caf;
  --dm-cyan: #0ea5a8;
  --dm-gold: #c9a227;
  --dm-paper: #f4f6fa;
  --dm-paper-2: #e8edf5;
  --dm-white: #ffffff;
  --dm-text: #1e293b;
  --dm-muted: #64748b;
  --dm-line: rgba(15, 23, 42, 0.08);
  --dm-radius: 18px;
  --dm-font-display: 'Chula', 'Noto Sans Thai', sans-serif;
  --dm-font-body: 'Noto Sans Thai', 'Sarabun', sans-serif;
  --dm-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dm-nav-h: 68px;
}

html {
  scroll-behavior: smooth;
}

body.dm-page {
  background: var(--dm-white);
  color: var(--dm-text);
}

body.dm-page,
body.dm-page .dm-hero,
body.dm-page .dm-nav,
body.dm-page .dm-section,
body.dm-page .dm-section h1,
body.dm-page .dm-section h2,
body.dm-page .dm-section h3,
body.dm-page .dm-section p,
body.dm-page .dm-section a,
body.dm-page .dm-section span,
body.dm-page .dm-section strong,
body.dm-page .dm-section li,
.dm-hero,
.dm-nav,
.dm-section {
  font-family: var(--dm-font-body) !important;
}

body.dm-page .dm-hero__title,
body.dm-page .dm-heading,
body.dm-page .dm-register .portal-card-title {
  font-family: var(--dm-font-display) !important;
}

/* ---------- Hero (content-height banner) ---------- */
.dm-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--dm-white);
  isolation: isolate;
}

.dm-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dm-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
}

.dm-hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 75% at 50% 42%, rgba(58, 20, 95, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10, 14, 26, 0.78) 0%, rgba(12, 18, 32, 0.86) 45%, rgba(10, 14, 26, 0.92) 100%);
}

.dm-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.dm-hero__glow--a {
  width: min(38vw, 380px);
  height: min(38vw, 380px);
  top: -16%;
  left: 50%;
  margin-left: calc(min(38vw, 380px) / -2);
  background: radial-gradient(circle, rgba(162, 28, 175, 0.32) 0%, transparent 70%);
  animation: dm-hero-float 12s ease-in-out infinite alternate;
}

.dm-hero__glow--b {
  width: min(34vw, 320px);
  height: min(34vw, 320px);
  bottom: -20%;
  left: 50%;
  margin-left: calc(min(34vw, 320px) / -2);
  background: radial-gradient(circle, rgba(14, 165, 168, 0.22) 0%, transparent 70%);
  animation: dm-hero-float 14s ease-in-out infinite alternate-reverse;
}

.dm-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 65% 70% at 50% 50%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 65% 70% at 50% 50%, #000 25%, transparent 78%);
  pointer-events: none;
}

@keyframes dm-hero-float {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(4%) scale(1.04); }
}

.dm-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.15rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 2rem) 0;
}

.dm-hero__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  max-width: 46rem;
  margin: 0 auto;
  width: 100%;
}

.dm-hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
  text-align: left;
}

.dm-hero__logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.dm-hero__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.dm-hero__org {
  margin: 0;
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1.35;
}

.dm-hero__org-sub {
  margin: 0;
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.dm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0.22rem 0.58rem 0.28rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 215, 140, 0.92);
  background: rgba(240, 215, 140, 0.08);
  border: 1px solid rgba(240, 215, 140, 0.2);
}

.dm-hero__title {
  margin: 0 0 0.7rem;
  font-family: var(--dm-font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  max-width: none;
}

.dm-hero__title-em {
  background: linear-gradient(120deg, #fff 20%, #e9d5ff 55%, #99f6e4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dm-hero__title-soft {
  font-weight: 500;
  opacity: 0.78;
  font-size: 0.78em;
}

.dm-hero__lead {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
}

.dm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.dm-hero__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0.35rem auto 0;
  padding: 0.35rem 0 0;
  max-width: 52rem;
  width: 100%;
  border-top: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.dm-hero__fact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.28rem;
  padding: 0.15rem 0.55rem;
  min-width: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  transition: opacity 0.3s ease;
}

.dm-hero__fact:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 12%;
  right: 0;
  bottom: 12%;
  width: 1px;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 12%,
      rgba(233, 213, 255, 0.55) 50%,
      rgba(255, 255, 255, 0.08) 88%,
      transparent 100%
    );
  box-shadow:
    1px 0 0 rgba(14, 165, 168, 0.12),
    0 0 12px rgba(196, 181, 253, 0.18);
  opacity: 0.9;
}

.dm-hero__fact:hover {
  background: transparent;
  opacity: 0.92;
}

.dm-hero__fact-icon {
  flex-shrink: 0;
  width: auto;
  height: auto;
  display: inline-flex;
  place-items: center;
  border-radius: 0;
  font-size: 1.45rem;
  line-height: 1;
  color: rgba(233, 213, 255, 0.9);
  background: none;
  box-shadow: none;
  margin-bottom: 0.05rem;
}

.dm-hero__fact--venue .dm-hero__fact-icon,
.dm-hero__fact--credit .dm-hero__fact-icon,
.dm-hero__fact--format .dm-hero__fact-icon {
  background: none;
}

.dm-hero__fact-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  min-width: 0;
  width: 100%;
}

.dm-hero__fact-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.dm-hero__fact-value {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
}

.dm-hero__fact-note {
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.52);
  max-width: 16ch;
}

.dm-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform 0.35s var(--dm-ease), box-shadow 0.35s var(--dm-ease), background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.dm-btn--primary {
  background: linear-gradient(135deg, #7c3aed 0%, #a21caf 55%, #0ea5a8 140%);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.35);
}

.dm-btn--primary:hover {
  transform: translateY(-2px);
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(124, 58, 237, 0.45);
}

.dm-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.dm-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
  transform: translateY(-2px);
}

.dm-btn--disabled {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none !important;
  background: rgba(148, 163, 184, 0.45) !important;
}

@media (max-width: 980px) {
  .dm-hero__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.85rem;
  }

  .dm-hero__fact:nth-child(2)::after {
    display: none;
  }

  .dm-hero__fact:nth-child(-n+2)::before {
    content: '';
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 0;
    height: 1px;
    background:
      linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 12%,
        rgba(233, 213, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.08) 88%,
        transparent 100%
      );
    box-shadow: 0 1px 0 rgba(14, 165, 168, 0.1);
  }

  .dm-hero__fact:nth-child(-n+2) {
    padding-bottom: 0.85rem;
    border-bottom: none;
  }
}

@media (max-width: 560px) {
  .dm-hero__facts {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .dm-hero__fact:not(:last-child)::after {
    display: none;
  }

  .dm-hero__fact:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: 0;
    height: 1px;
    background:
      linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 12%,
        rgba(233, 213, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.08) 88%,
        transparent 100%
      );
  }

  .dm-hero__fact:not(:last-child) {
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: none;
  }

  .dm-hero__fact:nth-child(-n+2) {
    border-bottom: none;
  }

  .dm-hero__brand {
    flex-direction: column;
    text-align: center;
  }

  .dm-hero__brand-text {
    align-items: center;
  }

  .dm-hero__fact-note {
    max-width: none;
  }
}

/* ---------- Sections ---------- */
.dm-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  scroll-margin-top: 1rem;
  background: var(--dm-white);
}

.dm-section .container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  max-width: none;
  padding: 0;
}

.dm-section__head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.dm-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dm-violet);
}

.dm-heading {
  margin: 0 0 0.9rem;
  font-family: var(--dm-font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dm-ink);
}

.dm-lead {
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--dm-muted);
}

/* Schedule timeline */
.dm-schedule {
  position: relative;
  overflow: hidden;
  background: #f5f7fc;
}

.dm-schedule__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 10% 10%, rgba(124, 58, 237, 0.1), transparent 58%),
    radial-gradient(ellipse 55% 45% at 90% 80%, rgba(14, 165, 168, 0.09), transparent 55%),
    linear-gradient(180deg, #f8f9fd 0%, #eef2f9 55%, #f5f7fc 100%);
}

.dm-schedule > .container {
  position: relative;
  z-index: 1;
}

.dm-schedule__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 auto 1.75rem;
  max-width: 920px;
}

.dm-schedule__tab {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  text-align: left;
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
  transition: transform 0.3s var(--dm-ease), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.dm-schedule__tab:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 45, 142, 0.2);
}

.dm-schedule__tab.is-active {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(91, 45, 142, 0.22);
}

.dm-schedule__tab--violet.is-active {
  background: linear-gradient(145deg, #7c3aed, #5b2d8e);
}

.dm-schedule__tab--magenta.is-active {
  background: linear-gradient(145deg, #a21caf, #7c3aed);
}

.dm-schedule__tab--teal.is-active {
  background: linear-gradient(145deg, #0ea5a8, #0f766e);
}

.dm-schedule__tab-day {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.dm-schedule__tab.is-active .dm-schedule__tab-day {
  opacity: 0.9;
  color: #fff;
}

.dm-schedule__tab-date {
  display: block;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 700;
  color: var(--dm-ink);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dm-schedule__tab.is-active .dm-schedule__tab-date {
  color: #fff;
}

.dm-schedule__tab-week {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dm-muted);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dm-schedule__tab.is-active .dm-schedule__tab-week {
  color: rgba(255, 255, 255, 0.9);
}

.dm-schedule__panel {
  display: none;
  max-width: 860px;
  margin: 0 auto;
}

.dm-schedule__panel.is-active {
  display: block;
  animation: dm-schedule-in 0.45s var(--dm-ease);
}

@keyframes dm-schedule-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dm-timeline {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0.5rem;
  position: relative;
}

.dm-timeline__item {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: start;
  position: relative;
  padding-bottom: 1.15rem;
}

.dm-timeline__item:last-child {
  padding-bottom: 0;
}

.dm-timeline__rail {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 100%;
}

.dm-timeline__rail::before {
  content: '';
  position: absolute;
  top: 0.55rem;
  bottom: -1.15rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.35), rgba(14, 165, 168, 0.25));
}

.dm-timeline__item:last-child .dm-timeline__rail::before {
  display: none;
}

.dm-timeline__dot {
  position: relative;
  z-index: 1;
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 1.15rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #7c3aed, #0ea5a8);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.dm-timeline__item--break .dm-timeline__dot {
  background: #94a3b8;
  box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.18);
}

.dm-timeline__item--ceremony .dm-timeline__dot,
.dm-timeline__item--award .dm-timeline__dot {
  background: linear-gradient(145deg, #c9a227, #a16207);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}

.dm-timeline__item--meeting .dm-timeline__dot {
  background: linear-gradient(145deg, #2563eb, #7c3aed);
}

.dm-timeline__card {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 1rem 1.15rem 1.1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.dm-timeline__item--break .dm-timeline__card {
  background: #f8fafc;
  box-shadow: none;
}

.dm-timeline__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  margin-bottom: 0.65rem;
}

.dm-timeline__time {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dm-violet);
  background: rgba(91, 45, 142, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  line-height: 1.2;
  white-space: nowrap;
}

.dm-timeline__title {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dm-ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dm-timeline__detail {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--dm-text);
}

.dm-timeline__chair,
.dm-timeline__speaker {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--dm-text);
}

.dm-timeline__chair i,
.dm-timeline__speaker i {
  margin-top: 0.12rem;
  color: var(--dm-violet);
  flex-shrink: 0;
}

.dm-timeline__note {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  color: var(--dm-muted);
  line-height: 1.5;
}

.dm-schedule__poster {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  /*
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  */
}

.dm-schedule__poster-head {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.dm-schedule__poster-title {
  margin: 0 0 0.45rem;
  font-family: var(--dm-font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 700;
  color: var(--dm-ink);
}

.dm-schedule__poster-lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--dm-muted);
}

@media (max-width: 800px) {
  .dm-schedule__tabs {
    grid-template-columns: 1fr;
  }
}

/* Gallery / Promotion */
.dm-gallery {
  position: relative;
  overflow: hidden;
  background: #f5f7fc;
  color: var(--dm-text);
}

.dm-gallery__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 12% 15%, rgba(124, 58, 237, 0.1), transparent 58%),
    radial-gradient(ellipse 60% 50% at 90% 85%, rgba(14, 165, 168, 0.09), transparent 55%),
    linear-gradient(180deg, #f8f9fd 0%, #eef2f9 55%, #f5f7fc 100%);
}

.dm-gallery > .container {
  position: relative;
  z-index: 1;
}

.dm-gallery .dm-kicker {
  color: var(--dm-violet);
}

.dm-gallery .dm-heading {
  color: var(--dm-ink);
}

.dm-gallery .dm-lead {
  color: var(--dm-muted);
}

.dm-gallery__stage {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  align-items: center;
}

.dm-promo {
  width: min(760px, 100%);
  margin: 0;
}

.dm-promo--featured {
  width: min(880px, 100%);
}

.dm-promo__frame {
  position: relative;
  border-radius: 24px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dm-promo__link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #e8edf5;
  text-decoration: none !important;
}

.dm-promo__link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.75s var(--dm-ease), filter 0.45s ease;
}

.dm-promo__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.38) 100%);
  opacity: 0.35;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.dm-promo__action {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translate(-50%, 12px);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(91, 45, 142, 0.14);
  color: var(--dm-violet);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s var(--dm-ease);
  white-space: nowrap;
}

.dm-promo__action i {
  font-size: 1.1rem;
}

.dm-promo__index {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 2;
  min-width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  padding: 0 0.45rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(91, 45, 142, 0.12);
  color: var(--dm-violet);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.dm-promo__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  padding: 0 0.35rem;
}

.dm-promo__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dm-violet);
}

.dm-promo__hint {
  font-size: 0.88rem;
  color: var(--dm-muted);
}

.dm-promo__link:hover img,
.dm-promo__link:focus-visible img {
  transform: scale(1.035);
  filter: brightness(1.05);
}

.dm-promo__link:hover .dm-promo__veil,
.dm-promo__link:focus-visible .dm-promo__veil {
  opacity: 0.75;
}

.dm-promo__link:hover .dm-promo__action,
.dm-promo__link:focus-visible .dm-promo__action {
  opacity: 1;
  transform: translate(-50%, 0);
}

.dm-promo:hover .dm-promo__frame {
  box-shadow:
    0 28px 56px rgba(91, 45, 142, 0.14),
    0 0 0 1px rgba(91, 45, 142, 0.12);
}

/* Registration paths */
.dm-register {
  position: relative;
  overflow: hidden;
  background: #eef1f8;
  color: var(--dm-text);
}

.dm-register__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 50% at 18% 8%, rgba(124, 58, 237, 0.11), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 88%, rgba(14, 165, 168, 0.1), transparent 55%),
    linear-gradient(180deg, #f3f5fb 0%, #e8ecf6 50%, #eef1f8 100%);
}

.dm-register > .container {
  position: relative;
  z-index: 1;
}

.dm-register .dm-kicker {
  color: var(--dm-violet);
}

.dm-register .dm-heading {
  color: var(--dm-ink);
}

.dm-register .dm-lead {
  color: var(--dm-muted);
}

/* Registration portal — meeting cards | divider | exhibition visitor */
.dm-register-portal {
  position: relative;
}

.dm-register-portal__shell {
  position: relative;
  padding: 8px;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.14) 0%,
    rgba(14, 165, 233, 0.1) 42%,
    rgba(225, 29, 72, 0.08) 100%
  );
  box-shadow:
    0 25px 50px -12px rgba(15, 23, 42, 0.12),
    0 0 25px rgba(99, 102, 241, 0.06);
}

.dm-register-portal__shell::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  pointer-events: none;
  z-index: 0;
}

.dm-register-portal__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 2fr) auto minmax(0, 1fr);
  gap: 12px 8px;
  align-items: stretch;
  padding: 18px;
}

.dm-register-portal__group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dm-register-portal__group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 4px 12px;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dm-violet);
  font-family: var(--dm-font-body);
}

.dm-register-portal__group-label i {
  font-size: 1.05rem;
  line-height: 1;
}

.dm-register-portal__group--expo .dm-register-portal__group-label {
  color: #047857;
}

.dm-register-portal__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  flex: 1;
}

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

.dm-register-portal__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  align-self: stretch;
  width: 42px;
  padding: 42px 0 8px;
}

.dm-register-portal__divider-rule {
  flex: 1;
  width: 1px;
  min-height: 16px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(91, 45, 142, 0.28) 18%,
    rgba(4, 120, 87, 0.35) 82%,
    transparent 100%
  );
}

.dm-register-portal__divider-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin: 10px 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #047857;
  border: 1px solid rgba(4, 120, 87, 0.22);
  box-shadow: 0 6px 16px rgba(4, 120, 87, 0.12);
  font-size: 1.05rem;
}

.dm-register .portal-card {
  padding: 28px 26px 24px;
  margin-bottom: 0;
  font-family: var(--dm-font-body);
  height: 100%;
}

.dm-register .portal-card-title,
.dm-register .portal-card-desc,
.dm-register .portal-card-list li {
  font-family: var(--dm-font-body);
}

.dm-register .portal-card-list li i {
  color: #6366f1;
}

.dm-register .portal-card.theme-accent .portal-card-list li i {
  color: #0ea5e9;
}

.dm-register .portal-card.theme-emerald .portal-card-list li i {
  color: #10b981;
}

.dm-register-portal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dm-register-portal__btn-outline--primary:hover {
  color: #4338ca !important;
  border-color: rgba(99, 102, 241, 0.35);
}

.dm-register-portal__btn-outline--accent:hover {
  color: #0369a1 !important;
  border-color: rgba(14, 165, 233, 0.35);
}

.dm-register-portal.is-disabled .portal-card {
  opacity: 0.72;
  pointer-events: none;
  filter: grayscale(0.15);
}

.dm-register-portal.is-disabled .portal-btn[aria-disabled="true"] {
  opacity: 0.85;
  cursor: not-allowed;
  pointer-events: none;
}

/* Documents */
.dm-docs {
  background:
    linear-gradient(180deg, #f8fafc 0%, #fff 45%, #f5f7fc 100%);
}

.dm-file-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;

  margin-left: auto;
  margin-right: auto;
}

.dm-file {
  margin: 0;
}

.dm-file__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background: var(--dm-white);
  border: 1px solid var(--dm-line);
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.3s var(--dm-ease), box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.dm-file__link:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 45, 142, 0.28);
  box-shadow: 0 16px 36px rgba(91, 45, 142, 0.1);
}

.dm-file__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--dm-paper);
  font-size: 1.4rem;
}

.dm-file__icon .ri-file-pdf-line { color: #dc2626; }
.dm-file__icon .ri-file-excel-line { color: #059669; }
.dm-file__icon .ri-file-word-line { color: #2563eb; }
.dm-file__icon .ri-file-ppt-line { color: #ea580c; }
.dm-file__icon .ri-file-video-line { color: #7c3aed; }
.dm-file__icon .ri-global-line { color: #0ea5a8; }
.dm-file__icon .ri-file-zip-line { color: #db2777; }
.dm-file__icon .ri-image-line { color: #d97706; }
.dm-file__icon .ri-file-code-line { color: #64748b; }

.dm-file__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dm-file__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dm-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dm-file__size {
  font-size: 0.85rem;
  color: var(--dm-muted);
}

.dm-file__dl {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(91, 45, 142, 0.08);
  color: var(--dm-violet);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.dm-file__link:hover .dm-file__dl {
  background: linear-gradient(135deg, var(--dm-violet), var(--dm-cyan));
  color: #fff;
  transform: scale(1.05);
}

/* Reveal motion */
.dm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--dm-ease), transform 0.8s var(--dm-ease);
}

.dm-reveal.is-in {
  opacity: 1;
  transform: none;
}

.dm-reveal--delay-1 { transition-delay: 0.08s; }
.dm-reveal--delay-2 { transition-delay: 0.16s; }
.dm-reveal--delay-3 { transition-delay: 0.24s; }
.dm-reveal--delay-4 { transition-delay: 0.32s; }
.dm-reveal--delay-5 { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .dm-hero__glow--a,
  .dm-hero__glow--b {
    animation: none !important;
  }

  .dm-schedule__panel.is-active {
    animation: none;
  }

  .dm-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .dm-register-portal__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    padding: 14px;
    gap: 8px;
  }

  .dm-register-portal__cards--2 {
    grid-template-columns: 1fr;
  }

  .dm-register-portal__divider {
    flex-direction: row;
    width: auto;
    padding: 6px 8px 14px;
  }

  .dm-register-portal__divider-rule {
    width: auto;
    height: 1px;
    min-height: 0;
    flex: 1;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(91, 45, 142, 0.28) 18%,
      rgba(4, 120, 87, 0.35) 82%,
      transparent 100%
    );
  }

  .dm-register-portal__divider-badge {
    margin: 0 10px;
  }

  .dm-register-portal__group-label {
    margin: 4px 2px 10px;
  }
}

@media (max-width: 640px) {
  .dm-hero__inner {
    width: calc(100% - 1.75rem);
    padding: 1.15rem 0 1.35rem;
  }

  .dm-hero__logo {
    width: 58px;
    height: 58px;
  }

  .dm-hero__title {
    max-width: none;
  }


  .dm-promo__frame {
    padding: 7px;
    border-radius: 18px;
  }

  .dm-promo__link {
    border-radius: 12px;
  }

  .dm-promo__action {
    opacity: 1;
    transform: translate(-50%, 0);
    bottom: 0.85rem;
    font-size: 0.8rem;
    padding: 0.55rem 0.9rem;
  }

  .dm-promo__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .dm-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Compact footer on this page only */
body.dm-page footer.footer-dark.pt-50px,
body.dm-page footer.footer-dark {
  padding-top: 28px !important;
  padding-bottom: 18px !important;
}

body.dm-page footer.footer-dark .fs-22 {
  font-size: 16px !important;
  margin-bottom: 8px !important;
}

body.dm-page footer.footer-dark .fs-17,
body.dm-page footer.footer-dark .fs-17 li,
body.dm-page footer.footer-dark .fs-17 a {
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}

body.dm-page footer.footer-dark .fs-17 li {
  margin-bottom: 2px;
}

body.dm-page footer.footer-dark ul {
  margin-bottom: 0;
}

body.dm-page footer.footer-dark .elements-social,
body.dm-page footer.footer-dark .social-icon-style-02 {
  margin-top: 10px !important;
}

body.dm-page footer.footer-dark.pb-20px,
body.dm-page footer.footer-dark.pt-20px,
body.dm-page footer.footer-dark + footer,
body.dm-page footer ~ footer.footer-dark {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

body.dm-page .footer-bottom {
  padding-top: 12px !important;
}

body.dm-page footer p.fs-14 {
  font-size: 12px !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

body.dm-page footer .row.mb-1,
body.dm-page footer .mb-1 {
  margin-bottom: 0 !important;
}

body.dm-page footer .xs-mb-20px {
  margin-bottom: 0 !important;
}

