﻿.technology-cycle-intro-inline .technology-cycle-intro-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
}
.technology-cycle-intro-inline .technology-cycle-intro-left {
  flex: 1 1 0;
  min-width: 0;
}
.technology-cycle-intro-inline .technology-cycle-intro-right {
  flex: 0 0 auto;
  max-width: 250px;
  display: flex;
  justify-content: center;
}
@media (max-width: 599px) {
  .technology-cycle-intro-inline .technology-cycle-intro-row {
    flex-direction: column;
  }
  .technology-cycle-intro-inline .technology-cycle-intro-right {
    max-width: 100%;
  }
}

.TBScoreCardContainer {
  overflow: visible;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  font-family: inherit;
  max-width: 420px;
  min-width: 320px;
}
.TBScoreCardContainer .scoreCardHeader {
  font-weight: 700;
  white-space: nowrap;
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 0.6rem;
}
.TBScoreCardContainer .TBScoreCardSVG {
  width: 100%;
  height: auto;
  max-width: 380px;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer {
  transform: translate(10px, 10px);
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreText {
  fill: #334155;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreTrack {
  stroke: #cbd5e1;
  stroke-width: 4;
  stroke-linecap: round;
  fill: none;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreOrbWrapper {
  transform-box: fill-box;
  transform-origin: 0 15px;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreOrbWrapper-1 {
  animation: tb-orb-slide 4.2s ease-in-out infinite 0s;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreOrbWrapper-2 {
  animation: tb-orb-slide 5.7s ease-in-out infinite 1.3s;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreOrbWrapper-3 {
  animation: tb-orb-slide 3.9s ease-in-out infinite 2.4s;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreOrbWrapper-4 {
  animation: tb-orb-slide 5.3s ease-in-out infinite 0.8s;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreOrbOutline {
  fill: none;
  stroke: #64748b;
  stroke-width: 1.5;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreOrb {
  stroke: none;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreOrbWrapper-1 .scoreOrb {
  animation: tb-orb-color 4.2s ease-in-out infinite 0s;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreOrbWrapper-2 .scoreOrb {
  animation: tb-orb-color 5.7s ease-in-out infinite 1.3s;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreOrbWrapper-3 .scoreOrb {
  animation: tb-orb-color 3.9s ease-in-out infinite 2.4s;
}
.TBScoreCardContainer .TBScoreCardSVG .indexContainer .indexRow .scoreOrbWrapper-4 .scoreOrb {
  animation: tb-orb-color 5.3s ease-in-out infinite 0.8s;
}

@keyframes tb-orb-slide {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(200px, 0);
  }
}
@keyframes tb-orb-color {
  0%, 100% {
    fill: #ef4444;
  }
  25% {
    fill: #eab308;
  }
  50% {
    fill: #14bdff;
  }
  75% {
    fill: #eab308;
  }
}
.TBScoreDescription {
  display: block;
}
.TBScoreDescription .mud-typography {
  white-space: normal;
  display: block;
}
.TBScoreDescription p {
  margin-bottom: 0;
}

.tb-tablet-rotate {
  width: 220px;
  height: 220px;
  position: relative;
  margin: 0 auto;
  flex-shrink: 0;
  overflow: hidden;
}
.tb-tablet-rotate .tabletRotateContainer {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.tb-tablet-rotate .tabletImgContainer {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 50%;
  top: 50%;
  margin-left: -100px;
  margin-top: -100px;
  transform-origin: 50% 50%;
  animation: tb-tablet-spin 10s infinite linear;
  opacity: 0;
  animation-fill-mode: forwards;
}
.tb-tablet-rotate .tabletImgContainer .tabletImg {
  width: 70px;
  height: auto;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -35px;
  transform-origin: 50% 50%;
  animation: tb-tablet-spin-reverse 10s infinite linear;
}
.tb-tablet-rotate .tabletImgContainer:nth-child(1) {
  animation-delay: 0s;
}
.tb-tablet-rotate .tabletImgContainer:nth-child(1) .tabletImg {
  animation-delay: 0s;
}
.tb-tablet-rotate .tabletImgContainer:nth-child(2) {
  animation-delay: 2.5s;
}
.tb-tablet-rotate .tabletImgContainer:nth-child(2) .tabletImg {
  animation-delay: 2.5s;
}
.tb-tablet-rotate .tabletImgContainer:nth-child(3) {
  animation-delay: 5s;
}
.tb-tablet-rotate .tabletImgContainer:nth-child(3) .tabletImg {
  animation-delay: 5s;
}
.tb-tablet-rotate .tabletImgContainer:nth-child(4) {
  animation-delay: 7.5s;
}
.tb-tablet-rotate .tabletImgContainer:nth-child(4) .tabletImg {
  animation-delay: 7.5s;
}

@keyframes tb-tablet-spin {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}
@keyframes tb-tablet-spin-reverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.technology-features-stack {
  margin-top: 2rem;
}

.technology-design-score-section {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, rgba(20, 189, 255, 0.08) 0%, rgba(20, 189, 255, 0.02) 100%);
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 599px) {
  .technology-design-score-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.technology-risk-quote {
  border-left: 4px solid rgba(20, 189, 255, 0.65);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  background: rgba(248, 250, 252, 0.9);
  border-radius: 0 8px 8px 0;
}

.technology-risk-simulation {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 960px) {
  .technology-risk-simulation {
    grid-template-columns: 1fr 1fr;
  }
}

.technology-risk-panel {
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  border: 1px solid #e2e8f0;
}
.technology-risk-panel--narrow {
  background: linear-gradient(180deg, #fff5f5 0%, #fff 100%);
  border-color: rgba(239, 68, 68, 0.28);
}
.technology-risk-panel--robust {
  background: linear-gradient(180deg, rgba(20, 189, 255, 0.07) 0%, #fff 100%);
  border-color: rgba(20, 189, 255, 0.35);
}

.technology-risk-panel-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.technology-risk-row {
  margin-bottom: 0.85rem;
}
.technology-risk-row:last-child {
  margin-bottom: 0;
}

.technology-risk-row-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.technology-risk-bar-track {
  height: 11px;
  border-radius: 9999px;
  background: #e2e8f0;
  overflow: hidden;
}

.technology-risk-bar-fill {
  height: 100%;
  border-radius: 9999px;
  min-width: 4px;
}

.technology-risk-panel--narrow .technology-risk-bar-fill {
  background: linear-gradient(90deg, #fb923c, #ef4444);
}

.technology-risk-panel--robust .technology-risk-bar-fill {
  background: linear-gradient(90deg, #22c55e, #14bdff);
}

.technology-risk-caption {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
