/*=====================================================*/
/*  BEYOND ERP — page styles                           */
/*  Depends on assets/css/ai/common.css                */
/*=====================================================*/

/*----------------------------*/
/* TODAY / TOMORROW LAYOUT    */
/*----------------------------*/
.bey-tt-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 40px;
}

.bey-tt__media {
  position: relative;
  margin: 0;
}

.bey-tt__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--ai-line);
  box-shadow: 0 30px 60px rgba(20, 20, 20, 0.12);
}

.bey-tt__media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(20, 20, 20, 0.88);
  border-left: 3px solid var(--ai-primary);
  border-radius: 12px;
  font-family: var(--ai-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  color: #FFF;
}

.bey-tt__media figcaption i,
.bey-tt__media figcaption svg {
  width: 20px;
  height: 20px;
  color: var(--ai-primary);
  stroke-width: 2.2;
  flex-shrink: 0;
}

.bey-tt__toggle {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 30px;
  padding: 6px;
  background: var(--ai-cream);
  border: 1px solid var(--ai-line);
  border-radius: 12px;
}

.bey-tt__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  background: none;
  border: 0;
  border-radius: 8px;
  font-family: var(--ai-heading);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ai-muted);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.bey-tt__btn i,
.bey-tt__btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.bey-tt__btn:hover {
  color: var(--ai-ink);
}

.bey-tt__btn.is-active {
  background: var(--ai-ink);
  color: #FFF;
  box-shadow: 0 3px 0 0 var(--ai-primary);
}

.bey-tt__btn.is-active i,
.bey-tt__btn.is-active svg {
  color: var(--ai-primary);
}

.bey-tt__panel {
  display: none;
}

.bey-tt__panel.is-active {
  display: block;
  animation: bey-panel-in 0.4s ease;
}

@keyframes bey-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bey-tt__intro {
  margin: 0 0 22px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65 !important;
  color: var(--ai-ink-soft);
}

.bey-tt__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 28px;
  margin-bottom: 24px;
}

.bey-tt__list li {
  font-size: 15px;
}

.bey-tt__note {
  margin: 0;
  margin-top: 25px;
  padding: 18px 22px;
  border-left: 3px solid var(--ai-primary);
  background: var(--ai-cream);
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  line-height: 1.7 !important;
  color: var(--ai-muted);
}

/*----------------------------*/
/* COMPARE CLOSING NOTE       */
/*----------------------------*/
.bey-compare-note {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.7 !important;
  color: var(--ai-ink-soft);
}

.bey-compare-note strong {
  color: var(--ai-primary-deep);
}

/*----------------------------*/
/* FUTURE BOS EMPHASIS        */
/*----------------------------*/
.bey-em {
  font-style: normal;
  color: var(--ai-primary);
}

/*----------------------------*/
/* SYSTEMS STATEMENT          */
/*----------------------------*/
.bey-statement {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto !important;
}

.bey-statement__line {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ai-line-dark);
  border-radius: 14px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.bey-statement__line:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--ai-primary-rgb), 0.5);
}

.bey-statement__who {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  font-family: var(--ai-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ai-primary) !important;
}

.bey-statement__who i,
.bey-statement__who svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
  flex-shrink: 0;
}

.bey-statement__line p {
  margin: 0;
  font-family: var(--ai-heading);
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25 !important;
  color: #FFF;
}

.bey-statement__line p em {
  font-style: normal;
  color: var(--ai-primary);
}

.bey-statement__closer {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 16.5px;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

/*----------------------------*/
/* RESPONSIVE                 */
/*----------------------------*/
@media (max-width: 1023px) {
  .bey-tt-layout {
    grid-template-columns: 1fr;
  }

  .bey-tt__media {
    max-width: 560px;
  }

  .bey-tt__media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767px) {

  .bey-tt__toggle {
    width: 100%;
  }

  .bey-tt__btn {
    flex: 1;
    justify-content: center;
    padding: 11px 12px;
  }

  .bey-tt__list {
    grid-template-columns: 1fr;
  }

  .bey-statement__line {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .bey-statement__who {
    min-width: 0;
  }
}