/* ===== USE CASE SECTION ===== */
.usecase-section[hidden],
a[href="#usecase"][hidden] {
  display: none !important;
}

.usecase-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 0;
}
.usecase-section .features-heading-row {
  padding-bottom: 0;
}
.usecase-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--t-h2);
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 45px;
  margin: 0;
  width: 100%;
  max-width: 1440px;
  text-align: left;
}
.usecase-nav.fb-tabs.terminal-tabs {
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1440px;
  margin: 32px 0 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.usecase-nav.fb-tabs.terminal-tabs::-webkit-scrollbar {
  display: none;
}
.usecase-nav .fb-tab.tab {
  flex-shrink: 0;
  white-space: nowrap;
  cursor: pointer;
}
.usecase-content-box {
  width: 100%;
  max-width: 1440px; /* Align with --page-max content column */
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 60px 32px;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  margin: 48px 0 0 0;
}
.usecase-content-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.usecase-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 521px;
}
.usecase-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 42px;
  margin: 0 0 16px 0;
  background: linear-gradient(87.88deg, #ffffff 0.14%, #999999 74.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.usecase-desc {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 24px;
  color: #a7aeb9;
  margin: 0;
}
.usecase-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.usecase-tag {
  background: rgba(114, 223, 243, 0.02);
  border: 0.4px solid var(--border);
  border-radius: 0;
  padding: 4px 8px;
  font-family: 'Menlo', var(--font-code);
  font-size: 11px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
  box-shadow: inset 0px 0px 10px 0px rgba(114,223,243,0.3);
}
.usecase-illustration {
  width: 458px;
  height: 273px;
  position: relative;
}
.usecase-content-glow {
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 562px;
  height: 95px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(114, 223, 243, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

