.offline-section {
  background:
    radial-gradient(circle at top right, rgba(247, 148, 29, 0.16), transparent 26%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900));
  color: #fff;
  overflow: hidden;
  position: relative;
}

.offline-section__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 80px;
}

.section-tag--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.offline-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.offline-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.offline-list svg {
  color: var(--orange);
}

.offline-section__devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
}

.device {
  background: var(--slate-900);
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.device--laptop {
  width: 360px;
  height: 240px;
}

.device--phone {
  width: 130px;
  height: 240px;
  border-width: 6px;
}

.device__screen {
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(9, 22, 43, 0.96);
}

.device__offline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(247, 148, 29, 0.12);
  border: 1px solid rgba(247, 148, 29, 0.3);
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.offline-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.device__mock-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}

.device__mock-row {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.device__mock-row--short {
  width: 62%;
}

.device__mock-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.device__mock-card {
  height: 60px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}
