html {
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(225deg, #E0F0FF 0%, #E0F0FF 25%, #ffffff 90%);
  background: #f1f7fc;
  background-attachment: fixed;
}

.site-header-content {
  padding: 0px 25px;
}
.site-header {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 6px;
}

.site-subheader {
  font-size: 18px;
  font-weight: 400;
  margin: 4px 0;
}

/* ==================== GLOBAL TWO-COLUMN FLEXBOX LAYOUT ==================== */
/* =============================================================================
   SITE LAYOUT  (two-column sidebar + main)
   ============================================================================= */

.site-filter-wrapper {
  display: flex;
  max-width: 100%;
  margin-top: 10px;
  gap: 24px;
}

/* Make Left Sidebar stay fixed on screen while right main contents scroll */
.sidebar-nav {
  min-width: 275px;
  width: 10%;
  flex-shrink: 0;
  position: sticky;
  top: 112px;
  align-self: flex-start;
  height: calc(100vh - 112px);
  overflow-y: auto;
  margin-left: 25px;
}

/* Right Main Content Window Area Flex Allocation */
.main-content-window {
  padding: 0px 24px 24px 0px;
  flex-grow: 1;
  min-width: 0; /* Prevents long titles from overflowing flex boundaries */
}

/* =============================================================================
   SIDEBAR NAVIGATION
   ============================================================================= */
/* Master Nav Sections (Building Blocks / Skills) */
.master-nav-header {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #161616;
  cursor: pointer;
  user-select: none;
}

.master-nav-section {
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 4px;
}

.master-nav-section:last-of-type {
  border-bottom: none;
}

.section-title {
  margin: 4px 0;
  font-weight: 600;
}

/* Individual Accordion Compartments */
.accordion-group {
  border-top: 1px solid #e0e0e0;
}
.nav-section .accordion-group:last-of-type {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #161616;
  cursor: pointer;
}
.accordion-header::-webkit-details-marker {
  display: none; /* Disables default Safari indicator arrow */
}

/* Pure CSS Chevron Arrow Layout */
.accordion-header::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #525252;
  border-bottom: 1.5px solid #525252;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
details[open] .accordion-header::after {
  transform: rotate(-135deg); /* Flips chevron cleanly upwards when opened */
}

/* Checkbox Alignment & Nested Text Containers */
.accordion-content {
  padding: 0px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #393939;
  cursor: pointer;
  line-height: 1.1;
  margin-bottom: 4px;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.filter-count {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #393939;
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
}
/* ==================== CONTENT ELEMENT DECORATIONS ==================== */
.building-blocks-card {
  margin-top: 12px;
  padding: 10px;
  border: 2px solid #e0e0e0;
}

.building-blocks-card h2 {
  margin: 0px;
  font-weight: 400;
  color: black;
}

.lead-text {
  margin: 6px 0px;
  font-size: 16px;
  line-height: 1.4;
  color: #525252;
}

/* Bob Framework Partner Card Component */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 6px;
  margin-top: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
}

.info-card-tagline {
  margin: 0 0 8px 0;
  color: #161616;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-card-tagline img {
  flex-shrink: 0;
}

.info-card-tagline-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
  font-size: 18px;
  font-weight: 500;
}

.info-card-tagline-text > span {
  font-weight: 500;
  font-size: 14px;
  color: #525252;
  line-height: 1.4;
  margin-bottom: 6px;
}

.cta-link {
  color: #0f62fe;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
}
.cta-link:hover {
  text-decoration: underline;
}

/* Content Grid Layout Arrangement */
.demo-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
  gap: 20px;
}

.demo-cards-header {
  font-size: 28px;
  margin-bottom: 6px;
}

.demo-cards-subheader {
  font-size: 18px;
  margin-bottom: 12px;
}

/* Filter toolbar above accordion list */
/* Asset type filter box */
.demo-filter {
  padding: 6px 12px 0px 12px;  
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
}

.asset-type-filter-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.asset-type-filter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.asset-type-filter-header h3 {
  margin: 5px 0 0 0;
}

.clear-all-btn {
  font-size: 13px;
  color: #0f62fe;
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 5px;
}

.clear-all-btn:hover {
  color: #0043ce;
}


.cards-empty-state {
  font-size: 16px;
  color: #525252;
}

/* Individual Block Content Tiles */
.card-item {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  border-radius: 8px;
}

.card-item:hover {
  border-color: #0f62fe;
  background-color: #F9FCFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-item-description {
  margin: 10px 0px;
  font-size: 16px;
  color: black;
  font-weight: 700;
  color: #161616;
}

.card-item-description p {
  font-weight: normal;
  font-size: 14px;
  color: #161616;
  margin: 4px;
}

.card-item img {
  border: 1px solid lightgray;
  width: 100%;
}

/* Floating Visual Tag Pills Container Layout */
.pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Base building-block pill (span = unlinked, a = linked) */
.pill-tag-bb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 10px;
  white-space: nowrap;
  flex-wrap: nowrap;
  text-decoration: none;
  cursor: default;
}

a.pill-tag-bb {
  cursor: pointer;
}

a.pill-tag-bb:hover {
  filter: brightness(0.93);
  text-decoration: none;
}

/* Category colour variants */
.pill-tag-bb-ai {
  background-color: #EAD0FF;
  color: #5E26C0;
}

.pill-tag-bb-data {
  background-color: #DCDCFF;
  color: #3E3CB8;
}

.pill-tag-bb-automation {
  background-color: #CCDDFF;
  color: #2850B8;
}

.pill-tag-bb img {
  width: 16px;
  border: none;
  outline: none;
  box-shadow: none;
}

.explore-demo {
  margin-top: 8px;
  color: #0f62fe;
}

/* ==================== GLOBAL HEADER ==================== */
.global-header-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
}

.global-header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 30px;
  border-bottom: 1px solid #e0e0e0;
}

.global-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  color: #161616;
}

.global-header-brand-logo-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.global-header-brand-logo {
  width: 52px;
  height: auto;
  display: block;
}

.global-header-brand-divider {
  width: 1px;
  height: 32px;
  background: #c6c6c6;
  flex-shrink: 0;
}

.global-header-brand-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.global-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  min-height: 20px;
  color: #525252;
  font-size: 14px;
  min-width: 0;
  background: #f1f7fc;
}

.global-header-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2f66d0;
  text-decoration: none;
  font-weight: 500;
}

.global-header-home:hover {
  text-decoration: underline;
}

.global-header-breadcrumb-separator {
  color: #8d8d8d;
  font-size: 16px;
  line-height: 1;
}

.global-header-use-cases {
  color: #2f66d0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.global-header-use-cases:hover {
  text-decoration: underline;
}

.global-header-current {
  color: #525252;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-actions-divider {
  color: #c6c6c6;
  font-size: 14px;
  line-height: 1;
  user-select: none;
}

.header-btn {
  background: none;
  border: none;
  color: black;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  padding: 4px 0;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.header-btn:hover {
  text-decoration: underline;
}

/* ==================== DEBUG MODE BADGE ==================== */
.debug-mode-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: #da1e28;
  border-radius: 3px;
  padding: 2px 7px;
  line-height: 1.6;
  user-select: none;
  white-space: nowrap;
}

/* ==================== CONTACT DRAWER ==================== */
body.drawer-open {
  overflow: hidden;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
}

.drawer-overlay.is-open {
  display: block;
}

.contact-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.contact-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.drawer-title {
  font-size: 20px;
  font-weight: 400;
  color: #161616;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #525252;
  line-height: 1;
  padding: 4px;
}

.drawer-close:hover {
  color: #161616;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
}

/* ==================== CARD AS LINK ==================== */
a.card-item {
  text-decoration: none;
  cursor: pointer;
  display: flex;
}

/* ==================== DEMO DETAIL PAGE ==================== */
.demo-detail-page {
  margin: 0;
  padding: 6px 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.demo-detail-content {
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  margin-top: 10px;
}

.demo-detail-column-left {
  flex: 1 1 0;
  min-width: 300px;
  position: sticky;
  top: 112px;
  align-self: flex-start;
}

.demo-detail-column-right {
  flex: 0 0 75%;
  margin-bottom: 900px;
}

.pill-demo {
  font-size: 18px;
  padding: 4px 10px;
  margin-bottom: 6px;
  border-radius: 6px;
  background: black;
  color: white;
}


.demo-name {
  font-size: 32px;
  font-weight: normal;
  margin: 0 0 6px 0;
  line-height: 1.2;
}


.demo-intro-summary {
  max-width: 1250px;
  font-size: 16px;
  line-height: 1.4;
  margin: 8px 0;
}

/* ── Slideshow ── */
.demo-slideshow {
  position: relative;
  margin-bottom: 0;
  border: 1px solid #c1c7cd;
  border-radius: 6px;
  overflow: hidden;
}

.demo-slides {
  position: relative;
  width: 100%;
}

.demo-slide {
  display: none;
}

.demo-slide.is-active {
  display: block;
}

.demo-slideshow img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.demo-slide-prev,
.demo-slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
}

.demo-slide-prev:hover,
.demo-slide-next:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

.demo-slide-prev {
  left: 10px;
}

.demo-slide-next {
  right: 10px;
}

.demo-slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 24px;
}

.demo-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  padding: 0;
}

.demo-slide-dot.is-active {
  background: #000000;
}

/* Slide zoom trigger */
.demo-slide-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  line-height: 0;
}

/* Lightbox overlay */
.demo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.demo-lightbox[hidden] {
  display: none;
}

.demo-lightbox-img {
  max-width: min(125%, 95vw);
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  border-radius: 4px;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.demo-lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 9001;
}

.demo-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.demo-detail-title {
  font-size: 32px;
  font-weight: 400;
  color: #161616;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.demo-detail-summary {
  font-size: 16px;
  color: black;
  line-height: 1.6;
  margin: 0;
}

.demo-detail-description {
  font-size: 14px;
  color: black;
  line-height: 1.4;
  margin: 6px 0;
}

.demo-action-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin: 8px 0;
}

.demo-btn-icon {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain;
  flex-shrink: 0;
  display: inline !important;
}

.demo-btn-icon-height {
  height: 18px !important;
  object-fit: contain;
  flex-shrink: 0;
  display: inline !important;
}

.demo-btn-simple {
  background: white;
  color: #161616;
  border: 1px solid #161616;
}

.demo-btn-simple:hover {
  background: #f0f0f0;
  border-color: #161616;
  color: #161616;
}

.demo-contact-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin: 16px 0 8px 0;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f8f8;
}

.demo-contact-card-link {
  font-size: 14px;
  font-weight: 500;
  color: #2850B8;
  text-decoration: none;
}

.demo-contact-card-link:hover {
  text-decoration: underline;
}

.info-box-link {
  font-size: 14px;
  font-weight: 500;
  color: #2850B8;
  text-decoration: none;
}

.demo-meta-card {
  margin-top: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0px 10px 10px 10px;
  background: #ffffff;
}

.demo-meta-card-title {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: black;
  margin-bottom: 8px;
}

.demo-meta-columns {
  display: flex;
  flex-direction: row;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px;
}

.demo-meta-section {
  flex: 1 1 0;
  min-width: 0;
}

.demo-meta-section + .demo-meta-section {
  border-left: 2px solid #c1c7cd;
  padding-left: 8px;
  margin-left: 0;
}

.demo-meta-heading {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #2850B8;
  margin: 0 10px 8px 0;
  padding: 0px 8px 8px 0;
  border-bottom: 2px solid #c1c7cd;
}

.demo-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.demo-meta-list li {
  font-size: 15px;
  font-weight: 400;
  color: #1f2328;
  line-height: 1.4;
  padding: 8px 0;
  margin-right: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.demo-meta-list li:last-child {
  border-bottom: none;
}

.demo-meta-list a {
  color: #1f2328;
  text-decoration: none;
}

.demo-meta-list a:hover {
  text-decoration: underline;
}

.demo-meta-no-link {
  color: #57606a;
}

.demo-detail-missing {
  color: #525252;
  font-size: 16px;
}

.demo-video--specs {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  margin-top: 16px;
}

.demo-video--specs .demo-detail-video,
.demo-video--specs .demo-detail-specifications {
  flex: 1 1 0;
  min-width: 0;
}

/* YouTube / external iframe — matches native <video> width behaviour */
.demo-video-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.demo-detail-specifications {
  margin-top: 0;
  background: white;
  padding: 10px;
  border: 2px solid #c1c7cd;
}

.demo-detail-specifications-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-weight: 600;
  color: black;
  font-size: 24px;
  margin-bottom: 5px;
}

.demo-detail-specifications-title img {
  min-width: 35px;
  max-width: 35px;
  flex-shrink: 0;
  flex-grow: 0;
  object-fit: contain;
}

.demo-detail-specifications-description {
  color: black;
  font-size: 16px;
  margin-bottom: 10px;
}

.demo-detail-specifications > a > img {
  width: 100%;
  border: 2px solid #c1c7cd;
}

/* Back link in header */
.global-header-back {
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-family: inherit;
  white-space: nowrap;
  margin-right: 30px;
}

.global-header-back:hover {
  opacity: 1;
  text-decoration: underline;
}

/* =============================================================================
   Step wrappers
   ============================================================================= */

.demo-step-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-step {
  font-size: 14px;
  margin: 0 0 12px 0;
  line-height: 1.2;
  border: 1px solid #c1c7cd;
  border-radius: 8px;
  padding: 16px 8px 0 12px;
  background: white;
  scroll-margin-top: 120px;
}

.demo-step-title {
  font-size: 20px;
  margin: 0 0 12px 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #2850B8;
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

/* =============================================================================
   info-box > a > img / info-box > button.demo-slide-zoom > img
   (architecture / spec flow images)
   ============================================================================= */

.info-box > a > img,
.info-box > button.demo-slide-zoom,
.info-box > button.demo-slide-zoom > img {
  width: 100%;
  border: 2px solid #c1c7cd;
}

/* =============================================================================
   DEMO CARD LIST PAGE
   ============================================================================= */

.demo-results-count {
  font-size: 16px;
  font-weight: 400;
  color: #161616;
  margin-bottom: 16px;
}

/* Downsize pills rendered inside card tiles */
.card-item .pill-tag-bb {
  font-size: 12px;
  padding: 4px 10px;
}

.card-item .pill-tag-bb img {
  width: 12px;
}

.demo-metadata-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.demo-metadata-list li {
  font-size: 15px;
  color: #1f2328;
  line-height: 1.4;
  padding: 8px 0;
  margin-right: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.demo-metadata-list li:last-child {
  border-bottom: none;
}

.demo-metadata-list-bullets {
  padding-left: 0;
}

.demo-metadata-list-bullets li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 0;
}

.demo-metadata-list-bullets li::before {
  content: "\2022";
  font-size: 18px;
  line-height: 1;
  color: #1f2328;
  flex-shrink: 0;
}

.demo-metadata-list-bullets li a {
  flex: 1;
  display: block;
  padding: 6px 0;
}

.demo-metadata-list-bullets li:last-child a {
  border-bottom: none;
}

.demo-metadata-list a {
  color: #1f2328;
  text-decoration: none;
}

.demo-metadata-list a:hover {
  text-decoration: underline;
}

.demo-metadata-no-link {
  color: #57606a;
}


/* =============================================================================
   STEP 1  — info boxes (video + slideshow)
   ============================================================================= */

.info-boxes-wrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: stretch;
  margin-top: 8px;
}

.info-box {
  flex: 0 0 calc(50% - 32px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid #c1c7cd;
  border-radius: 8px;
  background: #ffffff;
  margin-bottom: 8px;
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #161616;
  margin-bottom: 5px;
}

.info-box-title {
  font-size: 18px;
  font-weight: 600;
}

.info-box-subtitle {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 5px;
}

.info-box-header img {
  width: 30px;
  min-width: 30px;
}

.demo-section-nav {
  gap: 6px;
  padding: 8px;
}

.demo-section-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #393939;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.demo-section-nav-link:hover {
  background: #f4f4f4;
  text-decoration: none;
}

.demo-section-nav-link.is-active {
  background: #e8eef9;
  color: #2850B8;
  font-weight: 600;
}

.demo-section-nav-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #e8eaed;
  color: #393939;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.demo-section-nav-link.is-active .demo-section-nav-number {
  background: #2f66d0;
  color: #ffffff;
}

.demo-section-nav-text {
  flex: 1;
}

/* Pill-style action button — base */
.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
  background: #ffffff;
  color: #161616;
  border: 1px solid #9f9f9f;
}

.demo-btn:hover {
  background: #f0f0f0;
}

/* Pill-style action button — working demo */
.try-demo-btn {
  background: #2850B8;
  color: white;
}

.try-demo-btn:hover {
  background: #5e83df;
}

.try-demo-btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.demo-script-drawer {
  width: 560px;
}

.demo-script-body {
  padding-top: 24px;
  padding-bottom: 24px;
}

.demo-script-paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: #161616;
  margin: 0 0 16px;
  white-space: pre-wrap;
}

.demo-script-paragraph:last-child {
  margin-bottom: 0;
}

.demo-script-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.demo-script-save-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid #c1c7cd;
  border-radius: 4px;
  font-size: 13px;
  color: #525252;
  cursor: pointer;
  padding: 4px 9px;
  line-height: 1;
}

.demo-script-save-btn:hover {
  color: #161616;
  border-color: #8d8d8d;
}

.demo-script-save-btn.is-saved {
  color: #198038;
  border-color: #198038;
}

/* =============================================================================
   DEMO DETAIL PAGE
   ============================================================================= */

.demo-card-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-card-details-title {
  font-size: 15px;
  font-weight: 600;
  color: black;
  margin: 0;
}

.demo-card-details-subtitle {
  font-size: 14px;
  color: #57606a;
  margin: 0;
}

.demo-card-contact-icon {
  flex-shrink: 0;
  padding-top: 2px;
}

.demo-card-download-icon {
  flex-shrink: 0;
  width: 32px;
  padding-top: 1px;
}

.skill-download-link {
  font-size: 14px;
  font-weight: 500;
  color: #2850B8;
  text-decoration: none;
  margin-bottom: 8px;
}

.skill-download-link:hover {
  text-decoration: underline;
}


/* =============================================================================
   DEMO DETAIL PAGE  — solution components card
   ============================================================================= */

.demo-metadata {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0 10px 10px;
  background: #ffffff;
}

.demo-architecture-title {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #161616;
}

.demo-components-title {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #161616;
}

/* ==================== LANDING PAGE ==================== */

.landing-wrapper {
  display: flex;
  flex: 1;
}

.landing-hero-panel {
  flex: 0 0 30%;
  box-sizing: border-box;
  background: #f1f7fc;
  display: flex;
  padding: 40px 60px;
}

.landing-hero-headline {
  font-size: 58px;
  font-weight: 200;
  line-height: 1.15;
  color: #161616;
  margin: 0;
  letter-spacing: -0.01em;
}

.landing-content-panel {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 80px 60px;
  background: #ffffff;
}

.landing-intro-text {
  font-size: 22px;
  line-height: 1.5;
  color: #161616;
  margin: 0 0 18px;
}

.landing-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 24px;
  background: #2f66d0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s ease;
}

.landing-cta-btn:hover {
  background: #2f66d0;
}

/* ==================== LANDING FOOTER ==================== */

.landing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #161616;
  color: #c6c6c6;
  font-size: 13px;
  padding: 18px 40px;
}

.landing-footer-left {
  color: #c6c6c6;
}

.landing-footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-footer-links a {
  color: #c6c6c6;
  text-decoration: none;
}

.landing-footer-links a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.landing-footer-sep {
  color: #6f6f6f;
}
