/* Demo Meeting Plan — aligned with the shared Demo Console / Features design. */
:root {
  --page-bg: #1e1e1e;
  --panel: rgba(91, 91, 91, 0.223);
  --panel-soft: rgba(117, 117, 117, 0.126);
  --panel-dark: #2c2c2c;
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #b0b0b0;
  --blue: #78aef8;
  --orange: #f68356;
  --green: #65d6a9;
  --yellow: #f2cf67;
  --red: #ef8c8c;
}

html {
  scroll-behavior: smooth;
  background-color: var(--page-bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background-color: var(--page-bg);
  background-image: none;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

#protected-content {
  background-color: var(--page-bg);
}

.main_content_container {
  min-height: calc(100vh - 230px);
}

.centered-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  margin-top: 160px;
  text-align: center;
}

.demo_menu_bar .logo {
  cursor: pointer;
}

.welcome-heading {
  position: absolute;
  top: 95px;
  display: none;
  font-size: 24px;
}

.brand-heading {
  position: absolute;
  top: 75px;
  margin: 0;
  font-family: "Mitr", sans-serif;
  font-size: 26px;
  font-weight: 500;
}

main {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 52px;
  text-align: left;
}

.page-title {
  margin: 0 0 18px;
  font-family: "Mitr", sans-serif;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.hero,
.section {
  width: 100%;
  margin: 0 0 18px;
  padding: 26px 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: none;
}

.hero {
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h2,
.section h2 {
  margin: 0;
  color: #fff;
  font-family: "Mitr", sans-serif;
  font-weight: 500;
}

.hero h2 {
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.25;
}

.hero-copy {
  max-width: 820px;
  margin: 12px auto 0;
  color: #d6d6d6;
  font-size: 15px;
  line-height: 1.6;
}

.hero-quote {
  max-width: 900px;
  margin: 22px auto 0;
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  background: rgba(30, 30, 30, 0.52);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.meta-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(44, 44, 44, 0.72);
  text-align: left;
}

.meta-card span {
  display: block;
  color: #b8b8b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-card strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}

nav.section {
  padding: 14px;
  background: var(--panel-soft);
}

.toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  overflow: visible;
}

.toc a {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 38px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid #555;
  border-radius: 50px;
  background: var(--panel-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s;
}

.toc a:hover,
.toc a:focus-visible {
  border-color: #707070;
  background: #3a3a3a;
  outline: none;
}

.section {
  scroll-margin-top: 90px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.section-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #30445f;
  color: #b7d4ff;
  font-size: 13px;
  font-weight: 700;
}

.section h2 {
  font-size: 22px;
  line-height: 1.25;
}

.section-heading p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.summary-card,
.mini-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(44, 44, 44, 0.6);
  box-shadow: none;
}

.summary-card h3,
.mini-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Mitr", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.summary-card h3 span {
  display: inline-flex;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #634539;
  color: #ffb798;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.summary-card ul,
.detail-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-card li,
.detail-body li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 20px;
  color: #d6d6d6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.summary-card li:last-child,
.detail-body li:last-child {
  margin-bottom: 0;
}

.summary-card li::before,
.detail-body li::before {
  position: absolute;
  top: 0;
  left: 2px;
  color: #9cc2f7;
  content: "•";
}

.timeline-wrap {
  overflow-x: auto;
}

.agenda-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.agenda-table th,
.agenda-table td {
  padding: 13px;
  border-bottom: 1px solid var(--border);
  color: #d6d6d6;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.agenda-table th {
  color: #b7d4ff;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.agenda-table td:first-child {
  color: var(--yellow);
  font-weight: 700;
  white-space: nowrap;
}

.callout {
  margin: 12px 0;
  padding: 14px 16px;
  border: 1px solid rgba(120, 174, 248, 0.24);
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  background: rgba(120, 174, 248, 0.07);
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.6;
}

.callout.warning {
  border-color: rgba(239, 140, 140, 0.25);
  border-left-color: var(--red);
  background: rgba(239, 140, 140, 0.07);
}

.callout.success {
  border-color: rgba(101, 214, 169, 0.25);
  border-left-color: var(--green);
  background: rgba(101, 214, 169, 0.07);
}

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

details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(44, 44, 44, 0.58);
}

details[open] {
  background: rgba(44, 44, 44, 0.82);
}

summary {
  position: relative;
  min-height: 56px;
  padding: 17px 90px 17px 16px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 12px;
  min-width: 58px;
  padding: 6px 10px;
  border: 1px solid rgba(120, 174, 248, 0.5);
  border-radius: 16px;
  background: rgba(120, 174, 248, 0.16);
  color: #d8e8ff;
  content: "View";
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}

details[open] summary::after {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  content: "Hide";
}

summary:hover::after,
summary:focus-visible::after {
  border-color: #78aef8;
  background: rgba(120, 174, 248, 0.27);
}

summary:focus-visible {
  outline: 2px solid rgba(120, 174, 248, 0.7);
  outline-offset: -2px;
}

.detail-body {
  padding: 0 16px 18px;
  border-top: 1px solid var(--border);
}

.detail-body h4 {
  margin: 18px 0 8px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.detail-body p,
.mini-card p {
  margin: 10px 0;
  color: #d6d6d6;
  font-size: 14px;
  line-height: 1.65;
}

#access-gate {
  min-height: 100vh;
  background: var(--page-bg);
}

.access-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: none;
}

footer {
  width: 100%;
  padding: 40px 20px 5px;
  border: 0;
  background-color: rgba(30, 30, 30, 0.501);
  text-align: center;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
}

footer a {
  color: inherit;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

footer p {
  margin: auto;
  padding-bottom: 5px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
}

footer .account-label {
  color: rgb(178, 178, 178);
  font-weight: 600;
}

#footer-user-id {
  overflow-wrap: anywhere;
  font-size: 10px;
}

.demo-console-sign-out {
  display: block;
  margin: 0 auto 14px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.demo-console-sign-out:hover,
.demo-console-sign-out:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  outline: none;
}

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

@media (max-width: 700px) {
  .centered-container {
    margin-top: 145px;
  }

  main {
    width: calc(100% - 24px);
  }

  .hero,
  .section {
    padding: 21px 18px;
  }

  .summary-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 11px;
  }
}

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

  .toc {
    justify-content: flex-start;
  }

  .toc a {
    min-height: 36px;
    padding: 7px 12px;
  }
}

@media print {
  body,
  #protected-content {
    background: #fff;
    color: #111;
  }

  .demo_menu_bar,
  .brand-heading,
  #access-gate,
  nav.section,
  footer {
    display: none !important;
  }

  .centered-container {
    margin-top: 0;
  }

  main {
    width: 100%;
    padding: 0;
  }

  .hero,
  .section,
  details,
  .summary-card,
  .mini-card,
  .meta-card {
    border-color: #bbb;
    background: #fff;
    color: #111;
    box-shadow: none;
  }

  .hero h2,
  .section h2,
  .summary-card h3,
  .mini-card h3,
  summary,
  .meta-card strong {
    color: #111;
  }

  .hero-copy,
  .detail-body p,
  .section-heading p,
  .mini-card p,
  .summary-card li,
  .detail-body li,
  .agenda-table td {
    color: #333;
  }
}
